/* =====================================================================
   MAYA OF SOUTHERN BELIZE — UNIFIED STYLESHEET
   Theme: Green & White
   Works standalone in browser AND inside WordPress / Elementor.
   ===================================================================== */

/* ========== 1. RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Aggressive top-spacing kill: zero out html margins/padding so nothing
      WP / OceanWP / HostGator can push our header down. ─────────────────────── */
html,
html.wp-toolbar { margin: 0 !important; padding: 0 !important; }

#wpadminbar,
#wpadminbar *,
#top-bar-wrap, .top-bar-wrap,
#top-bar, .top-bar,
#oceanwp-topbar, .oceanwp-topbar,
.nfd-notice, .nfd-banner,
#site-header-above,
.site-above-header,
.notice-bar { display: none !important; }

/* Header pinned to absolute top of viewport. Using position:fixed (instead of
   sticky) so a flaky positioning context cannot push it down by even 1px. */
body > header.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  z-index: 100 !important;
}

/* Body: zero margin, but reserve top padding equal to header height so
   content isn't hidden behind the fixed header. */
html body { margin: 0 !important; padding-top: 73px !important; padding-bottom: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
@media (max-width: 768px) {
  html body { padding-top: 65px !important; }
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; border-radius: 4px; }

/* ========== 2. DESIGN TOKENS ========== */
:root {
  /* Greens (primary palette) */
  --forest:        #1f3626;
  --forest-mid:    #2a4533;
  --forest-light:  #3b5c44;
  --sage:          #6b8c5c;
  --sage-light:    #a8bf9a;
  --sage-pale:     #c8d4a8;

  /* Whites & accents */
  --white:         #ffffff;
  --off-white:     #f9faf6;
  --cream:         #eef2dd;
  --cream-warm:    #f0ead0;
  --card-bg:       #f4f6ec;

  /* Text */
  --text-dark:     #14241a;
  --text-mid:      #3d5245;
  --text-muted:    #6b8070;

  /* Lines & shadows */
  --border:        rgba(31,54,38,0.10);
  --border-mid:    rgba(31,54,38,0.20);
  --shadow-sm:     0 2px 6px rgba(31,54,38,0.06);
  --shadow-md:     0 8px 24px rgba(31,54,38,0.10);
  --shadow-lg:     0 16px 40px rgba(31,54,38,0.14);

  /* Layout */
  --max-w:         1200px;
  --max-w-narrow:  860px;
  --gutter:        clamp(20px, 4vw, 40px);
  --header-h:      72px;

  /* Type */
  --font-heading: 'Playfair Display', 'Merriweather', Georgia, serif;
  --font-body:    'DM Sans', 'Inter', system-ui, sans-serif;
  --font-italic:  'Lora', Georgia, serif;
}

/* ========== 3. TYPOGRAPHY ========== */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--sage-light); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
.h1 { font-size: clamp(38px, 5.5vw, 64px); line-height: 1.08; }
.h2 { font-size: clamp(28px, 3.6vw, 44px); }
.h3 { font-size: clamp(22px, 2.6vw, 30px); }
.h4 { font-size: clamp(17px, 1.8vw, 22px); }
.lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.75; color: var(--text-mid); font-weight: 300; }
em.italic, .italic { font-family: var(--font-italic); font-style: italic; font-weight: 400; }

/* ========== 4. BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover { background: var(--forest-mid); border-color: var(--forest-mid); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-cream {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.btn-cream:hover { background: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ========== 5. HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(31,54,38,0.08);
  transition: box-shadow 0.25s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(31,54,38,0.08); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--forest);
  flex-shrink: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.brand-logo svg { width: 20px; height: 20px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: 10.5px;
  color: var(--sage);
  letter-spacing: 0.03em;
  margin-top: 1px;
}
.nav-primary {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-primary a {
  display: block;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  border-radius: 6px;
  transition: opacity 0.18s;
  position: relative;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-primary a:hover { opacity: 0.65; }
.nav-primary a.active { font-weight: 600; }
.nav-primary a.active::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 9px 22px; font-size: 13px; font-weight: 600; }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(31,54,38,0.18);
  transition: background 0.2s, border-color 0.2s;
}
.menu-toggle:hover { background: var(--cream); border-color: var(--sage); }
.menu-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile drawer — hidden off-screen until .open is toggled. Hide via
   opacity+visibility+pointer-events (not just transform) so a short drawer
   can't peek through. */
.mobile-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--gutter) 28px;
  transform: translateY(-100vh);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s, visibility 0s linear 0.35s;
  z-index: 99;
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s, visibility 0s;
}
.mobile-drawer ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-drawer a:hover, .mobile-drawer a.active {
  background: var(--cream);
  color: var(--forest);
}
.mobile-drawer .btn { width: 100%; margin-top: 16px; }

/* ========== 6. FOOTER ========== */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 72px var(--gutter) 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(232,237,216,0.025) 0% 25%, transparent 0% 50%);
  background-size: 60px 60px;
  transform: rotate(45deg) scale(1.5);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand-logo { background: var(--cream); color: var(--forest); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-tagline { color: var(--sage-light); }
.footer-desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(238,242,221,0.78);
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 14px;
  color: rgba(238,242,221,0.78);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-col p { font-size: 14px; color: rgba(238,242,221,0.78); line-height: 1.75; }
.footer-col p strong { color: var(--cream); font-weight: 500; display: block; margin-top: 8px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: var(--cream);
}
.footer-social a:hover { background: var(--sage); transform: translateY(-2px); padding-left: 0; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(238,242,221,0.6);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(238,242,221,0.6); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ========== 7. SHARED COMPONENTS ========== */
.section { padding: clamp(56px, 8vw, 96px) var(--gutter); }
.section-narrow { padding: clamp(48px, 6vw, 72px) var(--gutter); }
.container { max-width: var(--max-w); margin: 0 auto; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-header.left { text-align: left; margin-left: 0; }
.divider-line { height: 3px; width: 60px; background: var(--sage); border-radius: 2px; margin: 0 auto 24px; }
.divider-line.left { margin-left: 0; }

/* Photo frames (image with fallback placeholder) */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 60%, var(--sage) 100%);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame .photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.photo-frame img.loaded ~ .photo-placeholder { display: none; }
.photo-placeholder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(238,242,221,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(238,242,221,0.5);
}
.photo-placeholder-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.4; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Skip link (accessibility) */
/* Visually-hidden skip-link — invisible until keyboard-focused */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  background: var(--forest);
  color: var(--white);
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

/* Generic page hero */
.page-hero {
  background: var(--forest);
  color: var(--white);
  padding: clamp(70px, 10vw, 120px) var(--gutter) clamp(70px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(232,237,216,0.04) 0% 25%, transparent 0% 50%);
  background-size: 60px 60px;
  transform: rotate(45deg) scale(1.5);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}
.page-hero-inner.center { text-align: center; max-width: 800px; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero h1 em.italic { color: var(--sage-pale); }
.page-hero p { color: rgba(238,242,221,0.85); font-size: clamp(16px, 1.7vw, 18px); line-height: 1.75; max-width: 660px; }
.page-hero-inner.center p { margin-left: auto; margin-right: auto; }
.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sage-light);
  margin-bottom: 22px;
}
.page-hero .breadcrumb a { color: var(--sage-light); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb-sep { opacity: 0.5; }

/* Generic CTA banner */
.cta-banner {
  background: var(--forest);
  padding: clamp(56px, 7vw, 80px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner.sage { background: var(--sage); }
.cta-banner.cream { background: var(--cream); color: var(--text-dark); }
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(232,237,216,0.04) 0% 25%, transparent 0% 50%);
  background-size: 60px 60px;
  transform: rotate(45deg) scale(1.5);
  pointer-events: none;
}
.cta-banner.cream::before { display: none; }
.cta-banner-inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner.cream h2 { color: var(--text-dark); }
.cta-banner p { color: rgba(238,242,221,0.85); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
.cta-banner.cream p { color: var(--text-mid); }

/* ========== 8. HOME PAGE ========== */
/* Hero */
.home-hero {
  background:
    linear-gradient(135deg, rgba(31,54,38,0.72) 0%, rgba(68,97,67,0.60) 100%),
    url('../images/hero-bg.jpg') center / cover no-repeat,
    linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--white);
  padding: clamp(80px, 12vw, 140px) var(--gutter) clamp(80px, 10vw, 120px);
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.home-hero::before { display: none; }
.home-hero-inner {
  position: relative;
  max-width: 760px;
  animation: fadeUp 0.9s ease both;
}
.home-hero h1 { color: var(--white); font-size: clamp(40px, 6vw, 72px); margin-bottom: 24px; }
.home-hero h1 em.italic { color: var(--sage-pale); }
.home-hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(238,242,221,0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
}

/* Stats bar */
.home-stats {
  background: var(--forest-mid);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.home-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.home-stat:last-child { border-right: none; }
.home-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.home-stat-label { font-size: 13px; color: var(--sage-light); }

/* About split */
.home-about {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.home-about .photo-frame { min-height: 480px; }
.home-about .text {
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Initiatives grid */
.home-init { background: var(--cream); padding: clamp(56px, 8vw, 96px) var(--gutter); }
.init-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.init-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.init-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.init-card.dark {
  background: var(--forest);
  color: var(--cream);
  border-color: transparent;
}
.init-card.dark:hover { background: var(--forest-mid); }
.init-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.25s, color 0.25s;
}
.init-card:hover .init-icon { background: var(--sage); color: var(--white); }
.init-card.dark .init-icon { background: rgba(255,255,255,0.1); color: var(--cream); }
.init-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.init-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.init-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.init-card.dark .init-desc { color: var(--sage-light); }
.init-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: auto;
}
.init-card.dark .init-link { color: var(--cream); }
.init-link::after { content: '→'; transition: transform 0.2s; }
.init-card:hover .init-link::after { transform: translateX(4px); }

/* Advocacy split (home) */
.home-advocacy {
  background: var(--forest);
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.home-advocacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(232,237,216,0.03) 0% 25%, transparent 0% 50%);
  background-size: 60px 60px;
  transform: rotate(45deg) scale(1.5);
  pointer-events: none;
}
.home-advocacy > * { position: relative; }
.home-advocacy h2 { color: var(--white); }
.home-advocacy p { color: rgba(238,242,221,0.85); font-size: 16px; line-height: 1.75; }
.home-advocacy .photo-frame { border-radius: 14px; min-height: 360px; border: 1px solid rgba(255,255,255,0.08); }

/* Governance grid */
.home-gov { background: var(--white); padding: clamp(56px, 8vw, 96px) var(--gutter); }
.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--max-w);
  margin: 52px auto 0;
}
.gov-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 38px 30px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.gov-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.gov-card .num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 14px;
  line-height: 1;
}
.gov-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.gov-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
.gov-card .gov-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.gov-card .gov-link:hover { color: var(--forest); }
.gov-card .gov-link::after { content: '→'; transition: transform 0.2s; }
.gov-card:hover .gov-link::after { transform: translateX(3px); }

/* ========== 9. ABOUT PAGE — accordions ========== */
.about-content { padding: clamp(48px, 6vw, 72px) var(--gutter); max-width: var(--max-w-narrow); margin: 0 auto; }
.about-intro { text-align: center; max-width: 720px; margin: 0 auto 56px; color: var(--text-muted); font-size: 16px; line-height: 1.85; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-mid);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.accordion-item:hover { border-color: var(--sage); }
.accordion-item.open { border-color: var(--sage); box-shadow: var(--shadow-md); }
.accordion-summary {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
  width: 100%;
  text-align: left;
}
.accordion-summary:hover { background: var(--off-white); }
.accordion-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--sage);
  min-width: 38px;
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
}
.accordion-item.open .accordion-num { color: var(--forest); }
.accordion-text { flex: 1; }
.accordion-text h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--forest);
  margin-bottom: 6px;
  line-height: 1.3;
}
.accordion-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--sage);
  margin-bottom: 8px;
  line-height: 1.5;
}
.accordion-preview { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.accordion-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 4px;
  color: var(--sage);
}
.accordion-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.accordion-item.open .accordion-icon { background: var(--forest); transform: rotate(180deg); color: var(--white); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-content-inner {
  padding: 0 28px 32px 86px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}
.accordion-item.open .accordion-content-inner { opacity: 1; transform: none; }
.accordion-content-inner p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.accordion-content-inner p:last-child { margin-bottom: 0; }
.accordion-content-inner h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--forest);
  margin: 24px 0 10px;
}
.pull-quote {
  border-left: 3px solid var(--sage);
  background: var(--cream);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
}
.pull-quote p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px !important;
  color: var(--forest) !important;
  margin: 0 !important;
  line-height: 1.65;
}

/* ========== 10. INITIATIVES PAGE ========== */
.initiatives-page .cards-section { padding: 56px var(--gutter) 32px; max-width: var(--max-w); margin: 0 auto; }
.initiatives-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.initiative-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 26px;
  border: 1.5px solid var(--border-mid);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.3s, background 0.3s;
  text-align: left;
}
.initiative-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.initiative-card.active { border-color: var(--forest); box-shadow: var(--shadow-md); background: var(--cream); }
.initiative-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.initiative-card:hover .card-icon, .initiative-card.active .card-icon {
  background: var(--forest);
  color: var(--cream);
}
.initiative-card .card-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.initiative-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--forest);
  line-height: 1.3;
}
.initiative-card .card-summary { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.initiative-card .card-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  background: var(--cream);
  border-radius: 6px;
  padding: 9px 16px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}
.initiative-card:hover .card-btn, .initiative-card.active .card-btn { background: var(--forest); color: var(--white); }
.initiatives-page .detail-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--gutter) 80px;
  display: none;
}
.initiatives-page .detail-section.open { display: block; animation: fadeUp 0.5s ease both; }
.tab-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border-mid);
  margin-bottom: 28px;
}
.tab-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px 6px 0 0;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.tab-btn:hover { background: var(--cream); color: var(--forest); }
.tab-btn.active { background: var(--forest); color: var(--white); }
.detail-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.detail-header {
  background: var(--forest);
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.detail-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(232,237,216,0.04) 0% 25%, transparent 0% 50%);
  background-size: 60px 60px;
  transform: rotate(45deg) scale(1.5);
  pointer-events: none;
}
.detail-header > * { position: relative; }
.detail-header .tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.55;
}
.detail-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
  line-height: 1.25;
}
.detail-body {
  padding: clamp(28px, 4vw, 44px);
}
.detail-body p { font-size: 15.5px; color: var(--text-mid); line-height: 1.85; max-width: 720px; margin-bottom: 18px; }
.detail-body p:last-child { margin-bottom: 0; }
.detail-footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 20px clamp(28px, 4vw, 44px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.detail-footer button {
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}
.back-btn { color: var(--text-muted); border: 1.5px solid var(--border-mid); }
.back-btn:hover { background: var(--cream); color: var(--forest); }
.next-btn { color: var(--forest); background: var(--cream); }
.next-btn:hover { background: var(--forest); color: var(--white); }

/* ========== 11. ADVOCACY PAGE ========== */
.advocacy-tabs-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--gutter);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}
.advocacy-tabs-bar .inner {
  display: flex;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: auto;
}
.advocacy-tab {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 18px 24px;
  border-bottom: 3px solid transparent;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.advocacy-tab:hover { color: var(--forest); border-bottom-color: var(--sage-light); }
.advocacy-tab.active { color: var(--forest); border-bottom-color: var(--forest); }
.advocacy-tab svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.tab-panel { display: none; }
.tab-panel.active-panel { display: block; animation: fadeUp 0.45s ease both; }
.tab-panel[hidden] { display: none !important; }
.adv-section { padding: clamp(48px, 6vw, 80px) var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.adv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  margin-bottom: 56px;
  min-height: 460px;
  border: 1px solid var(--border);
}
.adv-split .photo-frame { min-height: 420px; }
.adv-split.intl .photo-frame { background: linear-gradient(160deg, #1a2f3d 0%, #2a4553 60%, #4a7a8a 100%); }
.adv-split-text {
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adv-split-text .tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--sage);
  margin-bottom: 18px;
  line-height: 1.5;
}
.adv-split-text p { font-size: 15.5px; color: var(--text-mid); line-height: 1.8; max-width: 580px; }
.adv-split-text p + p { margin-top: 14px; }

/* News cards (advocacy) */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card .photo-frame { height: 180px; }
.news-card .photo-frame.alt-2 { background: linear-gradient(135deg, var(--forest-light) 0%, var(--sage) 100%); }
.news-card .photo-frame.alt-3 { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-pale) 100%); }
.news-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(31,54,38,0.85);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.news-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.news-card-body h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.7; flex: 1; }
.news-card .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.news-card .read-more:hover { gap: 10px; }

/* Timeline */
.timeline-section { background: var(--off-white); padding: clamp(56px, 8vw, 96px) var(--gutter); }
.timeline {
  max-width: 860px;
  margin: 48px auto 0;
  position: relative;
  padding-left: 44px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage-light), var(--sage), var(--sage-light));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 38px;
  padding-left: 22px;
}
.timeline-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid var(--sage-light);
}
.timeline-item.landmark .timeline-dot {
  width: 18px;
  height: 18px;
  left: -38px;
  top: 4px;
  background: var(--cream);
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(31,54,38,0.12);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-family: var(--font-italic);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline-item p { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; max-width: 600px; }

/* Bodies grid */
.bodies-section { background: var(--card-bg); padding: clamp(56px, 8vw, 96px) var(--gutter); }
.bodies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: var(--max-w);
  margin: 40px auto 0;
}
.body-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 24px 26px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.body-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.body-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.body-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.body-card h4 {
  font-family: var(--font-italic);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.body-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ========== 12. CONTACT PAGE ========== */
.quick-bar {
  background: var(--forest-mid);
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
}
.quick-bar a {
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-light);
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-bar a:last-child { border-right: none; }
.quick-bar a:hover { background: rgba(255,255,255,0.06); color: var(--cream); }
.quick-bar a .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

.contact-section { padding: clamp(56px, 8vw, 96px) var(--gutter); }
.contact-section.alt { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.contact-section .container { max-width: var(--max-w); margin: 0 auto; }

/* Org cards */
.orgs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.org-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.org-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.org-card-header {
  background: var(--forest);
  padding: 26px 30px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.org-acronym {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.org-fullname { font-size: 13px; color: var(--sage-light); }
.org-card-body { padding: 26px 30px 30px; }
.org-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 22px;
}
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}
.contact-list .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list .ico svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-list .info { flex: 1; padding-top: 4px; }
.contact-list .info .label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-list .info a { color: var(--forest); font-weight: 500; transition: color 0.2s; }
.contact-list .info a:hover { color: var(--sage); }

/* Form */
.form-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  margin-top: 48px;
}
.contact-form {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 44px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group label .req { color: var(--sage); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--border-mid);
  border-radius: 10px;
  padding: 12px 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(122,154,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group .hint { font-size: 12px; color: var(--text-muted); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 13px;
}
.form-group select { padding-right: 36px; cursor: pointer; appearance: none; -webkit-appearance: none; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.checkbox-group input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: var(--forest); }
.checkbox-group label { font-size: 13px; color: var(--text-mid); line-height: 1.55; cursor: pointer; }
.submit-btn {
  width: 100%;
  padding: 14px 28px;
  background: var(--forest);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
}
.submit-btn:hover { background: var(--forest-mid); }
.submit-btn:active { transform: scale(0.99); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.submit-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 14px; line-height: 1.55; }
.form-success {
  background: var(--cream);
  border: 1px solid var(--sage);
  color: var(--forest);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; animation: fadeUp 0.4s ease both; }
.form-success svg { flex-shrink: 0; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; }

.info-panel { display: flex; flex-direction: column; gap: 20px; }
.info-block {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 26px;
  border: 1px solid var(--border);
}
.info-block h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block h4 .ico {
  width: 28px;
  height: 28px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-block h4 .ico svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row .day { color: var(--text-muted); }
.info-row .hours { font-weight: 500; color: var(--text-dark); }
.info-row .hours.closed { color: var(--text-muted); font-style: italic; font-weight: 400; }
.info-row .hours.open { color: var(--forest); }
.response-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(122,154,110,0.15);
  color: var(--forest);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  margin-top: 12px;
}
.response-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.lang-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.lang-badge {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 20px;
  border: 1.5px solid var(--border-mid);
  color: var(--text-mid);
  background: var(--white);
}

/* Map */
.map-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  margin-top: 48px;
}
.map-cards { display: flex; flex-direction: column; gap: 16px; }
.map-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 22px;
}
.map-card h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-card h5 svg { width: 16px; height: 16px; fill: none; stroke: var(--sage); stroke-width: 1.8; }
.map-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }
.map-card p + p { margin-top: 8px; }
.map-card .map-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid var(--sage-pale);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.map-card .map-action:hover { color: var(--sage); }
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 380px;
  background: var(--forest-mid);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: none; display: block; }

/* Social */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.social-card {
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.social-card.fb::before { background: #1877F2; }
.social-card.ig::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.yt::before { background: #FF0000; }
.social-card.wa::before { background: #25D366; }
.social-card .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.social-card.fb .social-icon { background: #E8F0FE; color: #1877F2; }
.social-card.ig .social-icon { background: #FCE4EC; color: #dc2743; }
.social-card.yt .social-icon { background: #FFEBEE; color: #FF0000; }
.social-card.wa .social-icon { background: #E8F5E9; color: #25D366; }
.social-card .social-icon svg { width: 20px; height: 20px; fill: currentColor; }
.social-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.social-card .handle { font-size: 12.5px; color: var(--text-muted); margin-bottom: 12px; }
.social-card .desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.social-card .follow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
}
.social-card .follow::after { content: '→'; transition: transform 0.2s; }
.social-card:hover .follow::after { transform: translateX(3px); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--sage); }
.faq-item.open { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q .toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--forest); color: var(--white); }
.faq-q .toggle svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner {
  padding: 0 26px 22px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-a-inner a { color: var(--forest); font-weight: 500; border-bottom: 1px solid var(--sage-pale); }
.faq-a-inner a:hover { color: var(--sage); }

/* ========== 13. RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-primary { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .home-stats { grid-template-columns: repeat(2, 1fr); }
  .home-about { grid-template-columns: 1fr; }
  .home-advocacy { grid-template-columns: 1fr; gap: 36px; }
  .init-grid, .gov-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .adv-split { grid-template-columns: 1fr; }
  .adv-split .photo-frame { min-height: 240px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .bodies-grid { grid-template-columns: repeat(2, 1fr); }
  .form-split, .map-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid, .orgs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .home-stats { grid-template-columns: 1fr 1fr; }
  .home-stat { padding: 26px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .home-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .home-stat:nth-child(even) { border-right: none; }
  .home-stat:nth-last-child(-n+2) { border-bottom: none; }
  .init-grid, .gov-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .bodies-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .accordion-content-inner { padding: 0 22px 26px 22px; }
  .accordion-summary { padding: 20px 18px; gap: 14px; }
  .accordion-num { font-size: 18px; min-width: 28px; }
  .brand-tagline { display: none; }
  .brand-name { font-size: 15px; }
  .quick-bar { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .btn-row { width: 100%; flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .home-stat-num { font-size: 26px; }
}

/* Print */
@media print {
  .site-header, .site-footer, .menu-toggle, .mobile-drawer, .submit-btn, .quick-bar { display: none !important; }
  body { background: white; color: black; }
}
