:root{
  --green-900:#103d24;
  --green-800:#14512e;
  --green:#1a6b3c;
  --green-600:#237d48;
  --green-light:#e8f5ee;
  --gold:#b8860b;
  --gold-light:#fdf6e3;
  --red:#b42318;
  --red-light:#fff0ee;
  --ink:#1c1c1c;
  --muted:#5e665f;
  --border:#dfe5e0;
  --surface:#fff;
  --background:#f7f9f7;
  --shadow:0 10px 30px rgba(18,55,32,.08);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:var(--background);
  font-size:15px;
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

button{
  cursor:pointer;
}

.container{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:#fff;
  color:var(--green-900);
  border-radius:6px;
  z-index:999;
}

/* =========================================================
   HEADER AND NAVIGATION
   ========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(12px);
}

.header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  min-width:250px;
}

.brand-mark{
  width:42px;
  height:42px;
  border:2px solid var(--green);
  border-radius:50%;
  display:grid;
  place-items:center;
  position:relative;
  color:var(--green);
  font-weight:700;
  font-size:11px;
  letter-spacing:.05em;
  flex:0 0 auto;
}

.brand-mark::before{
  content:"⚑";
  position:absolute;
  top:-6px;
  right:-4px;
  font-size:13px;
  background:#fff;
  padding:0 1px;
  color:var(--gold);
}

.brand-name{
  display:block;
  font-size:15px;
  font-weight:700;
  color:var(--green-900);
  line-height:1.15;
}

.brand-address{
  display:block;
  margin-top:2px;
  font-size:10.5px;
  color:var(--muted);
  line-height:1.25;
}

.nav{
  display:flex;
  align-items:center;
  gap:3px;
}

.nav > a,
.nav-trigger{
  border:0;
  background:transparent;
  padding:9px 10px;
  border-radius:7px;
  color:#465149;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
}

.nav > a:hover,
.nav-trigger:hover,
.nav > a:focus-visible,
.nav-trigger:focus-visible{
  background:var(--green-light);
  color:var(--green-900);
  outline:none;
}

.nav-dropdown{
  position:relative;
}

.nav-menu{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  width:230px;
  padding:8px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:var(--shadow);
  display:none;
}

.nav-dropdown.open .nav-menu{
  display:block;
}

.nav-menu a{
  display:block;
  padding:9px 10px;
  border-radius:6px;
  font-size:13px;
  color:#404940;
}

.nav-menu a:hover{
  background:var(--green-light);
  color:var(--green-900);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.rwa-login-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  min-width:96px;
  padding:10px 16px;
}

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
  color:var(--green-900);
  font-size:20px;
}

.mobile-panel{
  display:none;
  border-top:1px solid var(--border);
  padding:10px 20px 16px;
  background:#fff;
}

.mobile-panel.open{
  display:block;
}

.mobile-panel a{
  display:block;
  padding:11px 10px;
  border-radius:7px;
  color:#344037;
  font-size:14px;
  font-weight:600;
}

.mobile-panel a:hover{
  background:var(--green-light);
}

.mobile-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:10px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid transparent;
  border-radius:8px;
  padding:11px 16px;
  font-size:14px;
  font-weight:700;
  transition:.18s ease;
}

.btn-primary{
  background:var(--green);
  color:#fff;
}

.btn-primary:hover{
  background:var(--green-800);
}

.btn-white{
  background:#fff;
  color:var(--green-900);
}

.btn-white:hover{
  background:#f4fbf6;
}

.btn-outline{
  border-color:var(--green);
  background:#fff;
  color:var(--green);
}

.btn-outline:hover{
  background:var(--green-light);
}

.btn-soft{
  border-color:#cce2d4;
  background:var(--green-light);
  color:var(--green-900);
}

.btn-soft:hover{
  background:#d9efe1;
}

.btn-danger{
  background:var(--red);
  color:#fff;
}

.btn-danger:hover{
  background:#8d1b13;
}

.btn-small{
  padding:8px 12px;
  font-size:12px;
}

/* =========================================================
   IMPORTANT NOTICE STRIP
   ========================================================= */

.notice-strip{
  background:var(--green-900);
  color:#fff;
}

.notice-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-size:12px;
}

.notice-label{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#f6d77a;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.notice-text{
  color:rgba(255,255,255,.9);
}

.notice-link{
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
  white-space:nowrap;
}

/* =========================================================
   SHARED BANNER IMAGE SETTINGS
   Same photograph and same focal alignment everywhere.
   ========================================================= */

.hero,
.page-hero{
  position:relative;
  isolation:isolate;
  color:#fff;

  background-image:url('../../images/gvc-banner.jpg');
  background-repeat:no-repeat;
  background-size:cover;

  /* Shared focal point for home and internal pages */
  background-position:center 38%;
}

/* Remove prior green / dark pseudo-element overlays */
.hero::before,
.page-hero::before{
  display:none !important;
}

/* =========================================================
   HOME PAGE HERO
   ========================================================= */

.hero{
  min-height:460px;
}

.hero-inner{
  min-height:460px;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);
  align-items:center;
  gap:44px;
  padding:70px 0;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.32);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hero h1{
  max-width:700px;
  margin:16px 0 14px;
  font-family:"DM Serif Display",Georgia,serif;
  font-size:48px;
  font-weight:400;
  line-height:1.08;
  text-shadow:0 2px 12px rgba(0,0,0,.34);
}

.hero p{
  max-width:650px;
  color:rgba(255,255,255,.92);
  font-size:16px;
  line-height:1.75;
  text-shadow:0 1px 6px rgba(0,0,0,.26);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:25px;
}

.hero-card{
  padding:25px;
  border:1px solid rgba(255,255,255,.26);
  border-radius:14px;
  background:rgba(255,255,255,.13);
  box-shadow:0 12px 36px rgba(0,0,0,.14);
  backdrop-filter:blur(7px);
}

.hero-card-label{
  color:rgba(255,255,255,.74);
  font-size:11px;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.hero-card h2{
  margin:10px 0 14px;
  font-family:"DM Serif Display",Georgia,serif;
  font-size:27px;
  font-weight:400;
  line-height:1.2;
}

.hero-card p{
  font-size:13.5px;
  line-height:1.65;
}

.hero-card a{
  display:inline-flex;
  margin-top:16px;
  font-size:13px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
}

/* =========================================================
   INTERNAL PAGE BANNERS
   Notices, About RWA, Committee, Membership, Feedback,
   Contact and RWA Panel.
   ========================================================= */

.page-hero{
  min-height:300px;
  display:flex;
  align-items:center;
  padding:62px 0;
}

.page-hero h1{
  margin:0;
  font-family:"DM Serif Display",Georgia,serif;
  font-size:42px;
  font-weight:400;
  line-height:1.14;
  text-shadow:0 2px 12px rgba(0,0,0,.34);
}

.page-hero p{
  max-width:720px;
  margin-top:10px;
  color:rgba(255,255,255,.92);
  font-size:16px;
  line-height:1.7;
  text-shadow:0 1px 6px rgba(0,0,0,.26);
}

.page-hero .eyebrow{
  margin-bottom:12px;
}

/* =========================================================
   SECTIONS AND CONTENT
   ========================================================= */

.section{
  padding:72px 0;
}

.section-alt{
  background:#fff;
}

.section-soft{
  background:var(--green-light);
}

.section-kicker{
  margin-bottom:8px;
  color:var(--green);
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.section-title{
  color:#152c1d;
  font-family:"DM Serif Display",Georgia,serif;
  font-size:34px;
  font-weight:400;
  line-height:1.2;
}

.section-intro{
  max-width:700px;
  margin-top:10px;
  color:var(--muted);
  font-size:15px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:30px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.card{
  padding:24px;
  border:1px solid var(--border);
  border-radius:13px;
  background:#fff;
}

.card h3{
  margin-bottom:8px;
  color:#193825;
  font-size:17px;
}

.card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

.card ul{
  margin-top:10px;
  list-style:none;
}

.card li{
  padding:7px 0;
  border-bottom:1px solid #eef1ee;
  color:var(--muted);
  font-size:14px;
}

.card li:last-child{
  border-bottom:0;
}

.card li::before{
  content:"✓";
  margin-right:8px;
  color:var(--green);
  font-weight:700;
}

.callout{
  padding:16px 18px;
  border-left:4px solid var(--green);
  border-radius:0 8px 8px 0;
  background:var(--green-light);
  color:#294b36;
  font-size:14px;
  line-height:1.65;
}

.callout.warn{
  border-left-color:var(--gold);
  background:var(--gold-light);
  color:#5c4a0a;
}

.callout.danger{
  border-left-color:var(--red);
  background:var(--red-light);
  color:#75221c;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.service-card{
  display:block;
  min-height:185px;
  padding:23px;
  border:1px solid var(--border);
  border-radius:13px;
  background:#fff;
  box-shadow:0 2px 0 rgba(14,50,28,.02);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.service-card:hover{
  transform:translateY(-3px);
  border-color:#bdd8c6;
  box-shadow:var(--shadow);
}

.service-icon{
  display:grid;
  width:39px;
  height:39px;
  place-items:center;
  border-radius:10px;
  background:var(--green-light);
  font-size:20px;
}

.service-card h3{
  margin:14px 0 7px;
  color:#183524;
  font-size:16px;
}

.service-card p{
  color:var(--muted);
  font-size:13.5px;
  line-height:1.6;
}

.service-card span{
  display:inline-block;
  margin-top:12px;
  color:var(--green);
  font-size:13px;
  font-weight:700;
}

/* =========================================================
   UPDATES AND INFORMATION PANEL
   ========================================================= */

.update-list{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:start;
}

.updates{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:13px;
  background:#fff;
}

.update{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:14px;
  align-items:center;
  padding:17px 18px;
  border-bottom:1px solid #edf0ed;
}

.update:last-child{
  border-bottom:0;
}

.update-type{
  min-width:72px;
  padding:5px 7px;
  border-radius:5px;
  background:var(--green-light);
  color:var(--green);
  font-size:10px;
  font-weight:700;
  letter-spacing:.05em;
  text-align:center;
  text-transform:uppercase;
}

.update-title{
  color:#26372b;
  font-size:14px;
  font-weight:700;
}

.update-meta{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:12px;
}

.update-arrow{
  color:var(--green);
  font-weight:700;
}

.info-panel{
  padding:25px;
  border:1px solid #c9dfd1;
  border-radius:13px;
  background:var(--green-light);
}

.info-panel h3{
  margin-bottom:9px;
  color:var(--green-900);
  font-size:19px;
}

.info-panel p{
  color:#3e5947;
  font-size:14px;
  line-height:1.7;
}

.info-panel ul{
  margin-top:16px;
  list-style:none;
}

.info-panel li{
  padding:8px 0;
  border-top:1px solid rgba(26,107,60,.16);
  color:#34523e;
  font-size:13.5px;
}

.info-panel li::before{
  content:"✓";
  margin-right:8px;
  color:var(--green);
  font-weight:700;
}

/* =========================================================
   TABLES AND BADGES
   ========================================================= */

.table-wrap{
  overflow-x:auto;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
}

.table{
  width:100%;
  min-width:640px;
  border-collapse:collapse;
  font-size:14px;
}

.table th{
  padding:12px 14px;
  background:var(--green);
  color:#fff;
  text-align:left;
  font-weight:700;
}

.table td{
  padding:12px 14px;
  border-bottom:1px solid #edf0ed;
  vertical-align:top;
}

.table tr:last-child td{
  border-bottom:0;
}

.table tr:hover td{
  background:#fbfdfb;
}

.badge{
  display:inline-block;
  padding:4px 9px;
  border-radius:999px;
  background:var(--green-light);
  color:var(--green);
  font-size:11px;
  font-weight:700;
}

.badge.gold{
  background:var(--gold-light);
  color:#735b06;
}

.badge.red{
  background:var(--red-light);
  color:var(--red);
}

/* =========================================================
   FORMS
   ========================================================= */

.form-wrap{
  max-width:820px;
  margin:0 auto;
}

.form-card{
  margin-bottom:18px;
  padding:28px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow);
}

.form-card h2{
  margin-bottom:4px;
  color:#183524;
  font-size:20px;
}

.form-card > p{
  margin-bottom:21px;
  color:var(--muted);
  font-size:13px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-bottom:15px;
}

.form-grid.one{
  grid-template-columns:1fr;
}

.field{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.field label{
  color:#34463a;
  font-size:13px;
  font-weight:700;
}

.field input,
.field select,
.field textarea{
  width:100%;
  padding:10px 11px;
  border:1px solid var(--border);
  border-radius:7px;
  outline:none;
  background:#fff;
  color:var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(26,107,60,.10);
}

.field textarea{
  min-height:100px;
  resize:vertical;
}

.hint{
  color:var(--muted);
  font-size:11px;
}

.required{
  color:var(--red);
}

.radio-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.radio-row label{
  font-size:14px;
  font-weight:500;
}

.radio-row input,
.check-row input{
  accent-color:var(--green);
}

.check-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#405348;
  font-size:13px;
  line-height:1.55;
}

.check-row input{
  width:17px;
  height:17px;
  margin-top:4px;
  flex:0 0 auto;
}

.form-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--border);
}

.form-message{
  display:none;
  margin-top:14px;
  padding:12px 14px;
  border-radius:8px;
  font-size:13px;
}

.form-message.show{
  display:block;
}

.form-message.ok{
  background:var(--green-light);
  color:var(--green-900);
}

.form-message.err{
  background:var(--red-light);
  color:#7e1f18;
}

/* =========================================================
   STATUS AND RWA PANEL
   ========================================================= */

.status-box{
  max-width:620px;
  margin:0 auto;
  padding:28px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow);
}

.status-result{
  margin-top:20px;
}

.detail-row{
  display:grid;
  grid-template-columns:175px 1fr;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid #edf0ed;
  font-size:14px;
}

.detail-row:last-child{
  border-bottom:0;
}

.detail-label{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.login-card{
  max-width:460px;
  margin:0 auto;
  padding:30px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow);
  text-align:center;
}

.login-card h2{
  color:#183524;
  font-size:23px;
}

.login-card p{
  margin:6px 0 22px;
  color:var(--muted);
  font-size:14px;
}

.admin-toolbar{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.search-input{
  min-width:250px;
  padding:9px 12px;
  border:1px solid var(--border);
  border-radius:7px;
  outline:none;
}

.search-input:focus{
  border-color:var(--green);
}

.filter{
  padding:7px 13px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  font-size:12px;
  font-weight:700;
}

.filter.on{
  border-color:var(--green);
  background:var(--green);
  color:#fff;
}

.admin-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:24px;
}

.stat-card{
  padding:18px;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
}

.stat-card span{
  display:block;
  color:var(--muted);
  font-size:12px;
}

.stat-card strong{
  display:block;
  margin-top:4px;
  color:var(--green-900);
  font-size:28px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  padding:48px 0 20px;
  background:#0e2918;
  color:rgba(255,255,255,.72);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:32px;
}

.footer h3{
  margin-bottom:10px;
  color:#fff;
  font-size:15px;
}

.footer p,
.footer a{
  font-size:13px;
  line-height:1.7;
}

.footer a{
  display:block;
  margin:5px 0;
  color:rgba(255,255,255,.7);
}

.footer a:hover{
  color:#fff;
  text-decoration:underline;
}

.footer-reg{
  margin-top:12px;
  color:rgba(255,255,255,.55);
  font-size:12px;
}

.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  margin-top:30px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.13);
  color:rgba(255,255,255,.5);
  font-size:11.5px;
}

/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media(max-width:1040px){

  .nav{
    display:none;
  }

  .menu-toggle{
    display:inline-grid;
    place-items:center;
  }

  .hero-inner{
    grid-template-columns:1fr .75fr;
    gap:25px;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media(max-width:760px){

  .container{
    width:min(100% - 32px,1120px);
  }

  .brand{
    min-width:0;
  }

  .brand-address{
    display:none;
  }

  .header-actions{
    display:none;
  }

  .notice-inner{
    align-items:flex-start;
    flex-wrap:wrap;
    gap:5px 12px;
    padding:8px 0;
  }

  .notice-link{
    margin-left:auto;
  }

  .hero{
    min-height:auto;
  }

  .hero-inner{
    min-height:auto;
    grid-template-columns:1fr;
    gap:25px;
    padding:54px 0;
  }

  .hero-card{
    display:none;
  }

  .hero h1{
    font-size:38px;
  }

  .page-hero{
    min-height:240px;
    padding:48px 0;
  }

  .page-hero h1{
    font-size:34px;
  }

  .section{
    padding:52px 0;
  }

  .section-title{
    font-size:29px;
  }

  .section-head{
    display:block;
  }

  .section-head .btn{
    margin-top:16px;
  }

  .service-grid,
  .update-list,
  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }

  .update{
    grid-template-columns:auto 1fr;
  }

  .update-arrow{
    display:none;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .admin-stats{
    grid-template-columns:1fr 1fr;
  }

  .detail-row{
    grid-template-columns:1fr;
    gap:3px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:480px){

  .header-inner{
    min-height:64px;
  }

  .brand-mark{
    width:37px;
    height:37px;
    font-size:9px;
  }

  .brand-name{
    font-size:13px;
  }

  .hero h1{
    font-size:33px;
  }

  .hero p,
  .page-hero p{
    font-size:15px;
  }

  .hero-actions,
  .form-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .hero-actions .btn,
  .form-actions .btn{
    width:100%;
  }

  .page-hero{
    min-height:220px;
    padding:42px 0;
  }

  .page-hero h1{
    font-size:30px;
  }

  .service-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .mobile-actions{
    grid-template-columns:1fr;
  }

  .admin-stats{
    grid-template-columns:1fr;
  }

  .search-input{
    width:100%;
    min-width:100%;
  }
}