/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: #F5F5F3;
  color: #1A1A1A;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ─── TOKENS ───────────────────────────────────────────────────── */
:root {
  --blue:        #2B5CE6;
  --navy:        #0D1F4E;
  --pale:        #EAEFFD;
  --base:        #F5F5F3;
  --ink:         #1A1A1A;
  --mid:         #5A6072;
  --gold:        #E8B84B;
  --border:      rgba(0,0,0,0.09);
  --white:       #ffffff;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-pill: 100px;
  --wrap:        1200px;
  --pad:         clamp(24px, 5vw, 64px);
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────────── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ─── LAYOUT HELPERS ───────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(64px, 8vw, 120px) 0; }

/* ─── REVEAL ANIMATION ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem !important;
  transition: opacity 0.15s !important;
}
.nav-cta:hover { opacity: 0.88; }
.nav-cta-mobile { display: none; }
.nav-mobile-right { display: none; }

/* ─── HAMBURGER & MOBILE MENU ──────────────────────────────────── */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  padding: 14px var(--pad);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, background 0.15s;
}
.mobile-menu-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }

/* ─── HERO (DESKTOP) ───────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: clamp(560px, 80vh, 820px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: var(--navy);
  /* Mirror the nav: cap at half of --wrap, pad with --pad on the left */
  padding: clamp(56px, 8vw, 100px) clamp(32px, 4vw, 64px) clamp(56px, 8vw, 100px) max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad)));
}
.hero-left-inner {
  max-width: 480px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-style: italic;
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 9vw, 120px);
  color: var(--white);
  line-height: 0.87;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-h1 em { font-style: normal; color: var(--gold); }
.hero-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-block;
}
.btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.28);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(13,31,78,0.7) 30%, rgba(13,31,78,0.2) 65%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-badge-img {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 3;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
/* Mobile hero elements — hidden on desktop */
.hero-mobile-bg,
.hero-mobile-content { display: none; }

/* ─── STATS BAND ───────────────────────────────────────────────── */
.stats-band {
  background: var(--blue);
  padding: clamp(32px, 5vw, 60px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-item {
  background: var(--blue);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  text-align: center;
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  line-height: 1.4;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.stat-source {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  margin-top: 5px;
  font-style: italic;
}

/* ─── WHAT IS SAF ──────────────────────────────────────────────── */
.what-section { background: var(--base); padding: clamp(72px, 10vw, 140px) 0; }
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.what-label-col { display: flex; flex-direction: column; gap: 20px; }
.what-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.86;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.what-big em { font-style: normal; color: var(--blue); display: block; }
.what-body p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 16px;
}
.what-body p:last-child { margin-bottom: 0; }
.what-body strong { color: var(--ink); font-weight: 600; }

/* ─── WHY SAF MATTERS ──────────────────────────────────────────── */
.why-section { background: var(--navy); padding: clamp(72px, 10vw, 120px) 0; }
.why-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.why-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white);
  line-height: 0.9;
  text-transform: uppercase;
}
.why-intro {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  font-weight: 300;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.07);
}
.why-card {
  background: rgba(255,255,255,0.04);
  padding: clamp(28px, 3.5vw, 44px);
  border-top: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.why-card:hover { background: rgba(255,255,255,0.07); border-top-color: var(--gold); }
.why-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(43,92,230,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card-icon svg { opacity: 0.9; }
.why-card-h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.why-card-p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300; }

/* ─── DOMESTIC SAF ─────────────────────────────────────────────── */
.domestic-section { background: var(--pale); padding: clamp(72px, 10vw, 120px) 0; }
.domestic-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 72px);
  flex-wrap: wrap;
}
.domestic-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 0.9;
  max-width: 520px;
  margin-top: 10px;
}
.domestic-intro { font-size: 0.9rem; color: var(--mid); line-height: 1.7; max-width: 360px; }
.domestic-list { display: flex; flex-direction: column; gap: 2px; }
.domestic-item {
  background: var(--white);
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 36px);
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.domestic-item:hover { border-left-color: var(--blue); }
.domestic-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
  opacity: 0.35;
}
.domestic-item-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.domestic-item-p { font-size: 0.95rem; color: var(--mid); line-height: 1.7; }

/* ─── MAP SECTION ──────────────────────────────────────────────── */
.map-section { background: var(--base); padding: clamp(72px, 10vw, 120px) 0; }
.map-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 52px);
}
.map-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 0.9;
  margin-top: 10px;
}
.map-intro { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }
.map-visual {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.map-projects-list { display: flex; flex-direction: column; gap: 3px; }
.map-project-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.map-project-item:hover,
.map-project-item.active { border-color: var(--blue); background: var(--pale); }
.map-project-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.map-project-name { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 1px; }
.map-project-meta { font-size: 0.68rem; color: var(--mid); line-height: 1.3; }
.map-svg-wrap { display: flex; flex-direction: column; gap: 14px; }
.map-svg { width: 100%; height: auto; display: block; }
.map-dot { cursor: pointer; }
.map-dot .dot-pulse { transition: r 0.2s ease, opacity 0.2s ease; }
.map-dot .dot-inner { transition: r 0.2s ease; }
.map-dot:hover .dot-pulse,
.map-dot.active .dot-pulse { r: 14; opacity: 0.3; }
.map-dot:hover .dot-inner,
.map-dot.active .dot-inner { r: 7; }
.map-legend { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.map-legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.68rem; color: var(--mid); }
.map-legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
@media (max-width: 780px) {
  .map-visual { grid-template-columns: 1fr; }
  .map-svg-wrap { max-width: 240px; margin: 0 auto; }
  .map-header { grid-template-columns: 1fr; }
}

/* ─── ASKS ─────────────────────────────────────────────────────── */
.asks-section { background: var(--navy); padding: clamp(72px, 10vw, 120px) 0 0; overflow: hidden; }
.asks-header {
  margin-bottom: clamp(48px, 6vw, 72px);
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  flex-wrap: wrap;
}
.asks-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.9;
  flex: 1;
  min-width: 280px;
}
.asks-preamble {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 400px;
  flex: 1;
  min-width: 260px;
  font-weight: 300;
}
.asks-list { display: flex; flex-direction: column; }
.ask-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.ask-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ask-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  opacity: 0.15;
  line-height: 1;
  padding-top: 4px;
}
.ask-h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.ask-p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; max-width: 680px; }
.asks-closing {
  margin: clamp(48px, 6vw, 72px) calc(-1 * var(--pad)) 0;
  padding: clamp(40px, 5vw, 64px) var(--pad) clamp(56px, 7vw, 88px);
  background: var(--blue);
}
.asks-closing-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 720px;
  margin-bottom: 8px;
}
.asks-closing-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ─── SUPPORT ────────────────────────────────────────────────── */
.support-section { background: var(--pale); padding: clamp(72px, 10vw, 120px) 0; }
.support-header { margin-bottom: clamp(48px, 6vw, 72px); }
.support-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 0.9;
  margin-top: 10px;
}
.support-steps { display: flex; flex-direction: column; gap: 2px; }
.support-step {
  background: var(--white);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: clamp(28px, 3.5vw, 44px);
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.support-step:hover { border-left-color: var(--blue); }
.support-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
  padding-top: 4px;
}
.support-step-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.support-step-p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; max-width: 600px; margin-bottom: 20px; }
.support-step-p a { color: var(--blue); }
.support-step-p a:hover { text-decoration: underline; }
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.share-linkedin { background: #0A66C2; color: var(--white); }
.share-x { background: var(--ink); color: var(--white); }
.share-fb { background: #1877F2; color: var(--white); }
.support-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 6px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.support-btn-outline:hover { background: var(--blue); color: var(--white); }

/* ─── SUPPORTERS ───────────────────────────────────────────────── */
.supporters-section {
  background: var(--base);
  padding: clamp(48px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--border);
}
.supporters-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  margin-bottom: 28px;
}
.supporters-row { display: flex; gap: clamp(10px, 1.5vw, 18px); flex-wrap: wrap; justify-content: center; align-items: center; }
.supporter-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.supporter-pill:hover { border-color: var(--blue); color: var(--blue); }

/* ─── FOOTER ───────────────────────────────────────────────────── */
.footer { background: #07132E; padding: clamp(28px, 4vw, 44px) 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
}
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.4); }

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Switch hero to mobile layout */
  .hero {
    display: block;
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-left { display: none; }
  .hero-left-inner { display: none; }
  .hero-right { display: none; }
  .hero-mobile-bg {
    display: block;
    position: absolute;
    inset: 0;
  }
  .hero-mobile-bg .hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 35%;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--navy) 0%, rgba(13,31,78,0.92) 35%, rgba(13,31,78,0.6) 65%, rgba(13,31,78,0.3) 100%);
  }
  .hero-mobile-badge {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
  .hero-mobile-content {
    display: block;
    position: relative;
    z-index: 2;
    padding: 48px 20px 40px;
  }
  .hero-mobile-content .hero-eyebrow { color: var(--gold); margin-bottom: 12px; }
  .hero-mobile-content .hero-h1 { font-size: clamp(64px, 18vw, 88px); margin-bottom: 20px; }
  .hero-mobile-content .hero-desc { font-size: 0.95rem; max-width: 360px; margin-bottom: 28px; }

  .what-inner { grid-template-columns: 1fr; }
  .why-header { grid-template-columns: 1fr; }
  .map-header { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .domestic-item { grid-template-columns: 40px 1fr; }
  .nav-links { display: none; }
  .nav-mobile-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-cta-mobile {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .why-cards { grid-template-columns: 1fr; }
  .asks-header { flex-direction: column; gap: 16px; }
  .support-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
