/* ═══════════════════════════════════════════════════════════════════
   THE POCKET RUN™ 5K — Premium Stylesheet v2
   Navy #002147 + Red #CC0000 · Instrument Serif + Satoshi
   ═══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:         #002147;
  --navy-deep:    #001530;
  --navy-mid:     #002d63;
  --red:          #CC0000;
  --red-hover:    #A80000;
  --gold:         #B8892A;
  --silver:       #7A8A96;
  --off-white:    #F8F7F4;
  --text-dark:    #1A1A2E;
  --text-muted:   #6B7280;
  --white:        #FFFFFF;

  /* Fluid type */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --sp-1:  0.25rem; --sp-2:  0.5rem;  --sp-3:  0.75rem; --sp-4:  1rem;
  --sp-5:  1.25rem; --sp-6:  1.5rem;  --sp-8:  2rem;    --sp-10: 2.5rem;
  --sp-12: 3rem;    --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   180ms var(--ease-out);
  --t-med:    300ms var(--ease-out);

  --content-wide:   1280px;
  --content-mid:    1080px;
  --content-narrow: 760px;
  --gutter:         clamp(var(--sp-6), 5vw, var(--sp-16));
}

/* Semantic tokens — light */
:root, [data-theme="light"] {
  --bg:           var(--off-white);
  --bg-alt:       #EEECEA;
  --bg-card:      #FFFFFF;
  --bg-dark:      var(--navy-deep);
  --text:         var(--text-dark);
  --text-2:       var(--text-muted);
  --text-inv:     var(--white);
  --border:       rgba(0,33,71,0.12);
  --nav-text:     rgba(255,255,255,0.85);
}

/* Semantic tokens — dark */
[data-theme="dark"] {
  --bg:           #0d1117;
  --bg-alt:       #111827;
  --bg-card:      #161b24;
  --bg-dark:      #000d1f;
  --text:         #E8E6E1;
  --text-2:       #9CA3AF;
  --text-inv:     var(--white);
  --border:       rgba(255,255,255,0.08);
  --nav-text:     rgba(255,255,255,0.85);
}

/* ─── BASE ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  hanging-punctuation: first last;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color var(--t-med), color var(--t-med);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast), opacity var(--t-fast); }
::selection { background: rgba(204,0,0,0.15); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ─── UTILITIES ─────────────────────────────────────────────────────── */
.section-container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(var(--sp-12), 6vw, var(--sp-20));
}
.section-container--narrow { max-width: var(--content-narrow); }

.section-overline {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-3);
}
.section-overline--light { color: rgba(255,110,110,0.9); }

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--sp-8);
  line-height: 1.05;
}
.section-heading--white { color: var(--white); }

.section-intro {
  font-size: var(--text-base);
  color: var(--text-2);
  margin-top: calc(-1 * var(--sp-4));
  margin-bottom: var(--sp-12);
  max-width: 60ch;
}

.inline-link { color: var(--red); border-bottom: 1px solid currentColor; }
.inline-link:hover { opacity: 0.75; }

.text-link-light { color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.4); transition: border-color var(--t-fast); }
.text-link-light:hover { border-color: rgba(255,255,255,0.8); }

/* ─── FADE-IN ANIMATIONS ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }

/* ─── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform 100ms;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--red   { background: var(--red);       color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); color: var(--white); }

.btn--ghost { background: rgba(0,21,48,0.35); color: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.65); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.75); color: var(--white); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ─── NAV ───────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t-med), backdrop-filter var(--t-med), box-shadow var(--t-med);
}
.site-nav--scrolled {
  background: rgba(0,21,48,0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
[data-theme="light"] .site-nav--scrolled {
  background: rgba(248,247,244,0.92);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); transition: filter var(--t-fast); }
[data-theme="light"] .site-nav--scrolled .logo-img { filter: none; }

.nav-links { display: flex; align-items: center; gap: var(--sp-6); }
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--nav-text);
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--white); }
.nav-link--cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-link--cta:hover { background: var(--red-hover); }

[data-theme="light"] .site-nav--scrolled .nav-link { color: var(--text-dark); }
[data-theme="light"] .site-nav--scrolled .nav-link:hover { color: var(--navy); }

.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.theme-toggle:hover { color: var(--white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
[data-theme="light"] .site-nav--scrolled .theme-toggle { color: var(--text-dark); border-color: rgba(0,0,0,0.2); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; padding: 4px; }
.hamburger-bar { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.85); transition: transform var(--t-fast), opacity var(--t-fast); }
.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.07); padding: var(--sp-4) var(--gutter) var(--sp-6); }
.mobile-menu.is-open { display: flex; }
.mobile-link { padding: var(--sp-4) 0; font-size: var(--text-base); font-weight: 500; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-link:hover { color: var(--white); }
.mobile-link--cta { color: var(--red); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-grid {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 130px;
  padding-bottom: var(--sp-24);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 0;
  min-height: 100dvh;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding-right: var(--sp-10);
  justify-content: center;
}

.hero-overline {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 24px rgba(0,15,35,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: var(--text-lg);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.01em;
  max-width: 38ch;
  margin-top: calc(-1 * var(--sp-2));
  text-shadow: 0 1px 12px rgba(0,15,35,0.8), 0 1px 3px rgba(0,0,0,0.6);
}

/* Countdown */
.countdown { display: flex; align-items: flex-end; gap: var(--sp-3); flex-wrap: wrap; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: var(--sp-1); }
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 3ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.countdown-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.65); text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.countdown-sep { font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 3.2rem); color: rgba(255,255,255,0.45); line-height: 1; padding-bottom: 0.45em; align-self: flex-start; padding-top: 0.12em; }

.hero-ctas { display: flex; gap: var(--sp-3); flex-wrap: nowrap; align-items: center; }
.hero-ctas .btn { padding: 0.8rem 1.5rem; font-size: 0.75rem; }

/* Hero image */
.hero-image-panel { position: relative; overflow: hidden; min-height: 600px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; position: absolute; inset: 0; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,21,48,0.92) 0%, rgba(0,21,48,0.50) 42%, rgba(0,21,48,0.08) 100%);
}

.hero-scroll-cue {
  position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ─── INFO BAR ──────────────────────────────────────────────────────── */
.info-bar { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
[data-theme="dark"] .info-bar { background: #0a0f18; }

.info-bar-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(var(--sp-8), 4vw, var(--sp-12));
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.info-item {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
}

.info-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  color: var(--red); opacity: 0.85;
}

.info-text { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); }
.info-value { font-family: var(--font-display); font-size: var(--text-lg); color: var(--text); line-height: 1.2; }

.info-divider { width: 1px; background: var(--border); align-self: stretch; margin-block: var(--sp-2); flex-shrink: 0; }

/* ─── ABOUT / FOUNDER ───────────────────────────────────────────────── */
.about { background: var(--bg); padding-block: clamp(var(--sp-12), 6vw, var(--sp-20)); overflow: hidden; }

.about-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: start;
}

.about-photo-wrap { position: relative; overflow: hidden; }
.about-photo { width: 100%; height: 580px; object-fit: cover; object-position: center top; }
.about-photo-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); }

.credentials { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-8); }
.pill { display: inline-block; padding: 0.32rem 0.85rem; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.04em; border-radius: var(--radius-full); white-space: nowrap; line-height: 1.5; }
.pill--gold   { background: var(--gold);   color: var(--white); }
.pill--silver { background: var(--silver); color: var(--white); }
.pill--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
[data-theme="dark"] .pill--outline { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }

.founder-bio { display: flex; flex-direction: column; gap: var(--sp-5); color: var(--text-2); margin-bottom: var(--sp-8); }
.founder-bio p { font-size: var(--text-base); line-height: 1.75; }
.bio-lead { font-family: var(--font-display); font-size: var(--text-lg) !important; color: var(--text) !important; font-style: italic; }
.bio-red  { color: var(--red) !important; font-family: var(--font-display); font-style: italic; font-size: var(--text-lg) !important; }

.founder-pullquote {
  border-left: 3px solid var(--red);
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--red);
  line-height: 1.3;
  background: rgba(204,0,0,0.04);
  quotes: none;
}
[data-theme="dark"] .founder-pullquote { background: rgba(204,0,0,0.07); }
.founder-pullquote cite { display: block; margin-top: var(--sp-3); font-size: var(--text-sm); font-style: normal; color: var(--text-2); letter-spacing: 0.04em; }

.photo-strip {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-top: clamp(var(--sp-10), 5vw, var(--sp-16));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.photo-strip-item { display: flex; flex-direction: column; gap: var(--sp-3); overflow: hidden; }
.strip-photo { width: 100%; height: 250px; object-fit: cover; object-position: center top; transition: transform 0.5s var(--ease-out); }
.photo-strip-item:hover .strip-photo { transform: scale(1.03); }
.strip-caption { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.09em; color: var(--text-2); text-transform: uppercase; }

/* ─── THE CAUSE ─────────────────────────────────────────────────────── */
.cause { background: var(--navy-deep); position: relative; overflow: hidden; }

.cause-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(var(--sp-12), 6vw, var(--sp-20));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 5vw, var(--sp-16));
  align-items: center;
}

.cause-content { display: flex; flex-direction: column; gap: var(--sp-6); }
.cause-body { font-size: var(--text-base); line-height: 1.75; color: rgba(255,255,255,0.92); max-width: 52ch; }
.cause-quote {
  border-left: 3px solid var(--red);
  padding-left: var(--sp-6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
  quotes: none;
}

.rwanda-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); aspect-ratio: 1; }
.rwanda-cell { overflow: hidden; }
.rwanda-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.rwanda-cell:hover .rwanda-img { transform: scale(1.05); }

/* ─── RACE EXPERIENCE ───────────────────────────────────────────────── */
.experience { background: var(--bg-alt); }
[data-theme="dark"] .experience { background: var(--bg-alt); }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

.exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.exp-card:hover { border-color: var(--red); transform: translateY(-3px); }
[data-theme="dark"] .exp-card { background: rgba(255,255,255,0.03); }

.exp-icon { width: 36px; height: 36px; color: var(--red); }
.exp-icon svg { width: 100%; height: 100%; }
.exp-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em; color: var(--text-2); text-transform: uppercase; line-height: 1.4; }

/* ─── THE FASTEST 40 ────────────────────────────────────────────────── */
.fastest40 {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.fastest40::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 80px
  );
  pointer-events: none;
}

.fastest40-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(var(--sp-12), 6vw, var(--sp-20));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-20));
  align-items: center;
  position: relative;
  z-index: 1;
}

.fastest40-content { display: flex; flex-direction: column; gap: var(--sp-6); }
.fastest40-body { font-size: var(--text-base); line-height: 1.75; color: rgba(255,255,255,0.90); max-width: 52ch; }
.fastest40-note { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.62); text-transform: uppercase; }
.ovr-lockup { display: flex; align-items: center; gap: var(--sp-3); margin-block: var(--sp-4); }
.ovr-lockup-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); white-space: nowrap; }
.ovr-logo { height: 28px; width: auto; filter: brightness(0) invert(1); mix-blend-mode: screen; opacity: 0.85; transition: opacity 0.2s; }
.ovr-logo:hover { opacity: 1; }

.fastest40-visual {
  display: flex; flex-direction: column; align-items: flex-end; gap: var(--sp-4);
}
.fastest40-stat {
  display: flex; align-items: baseline; gap: var(--sp-3);
  line-height: 1;
}
.fastest40-stat-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color var(--t-med);
}
.fastest40:hover .fastest40-stat-num { color: rgba(204,0,0,0.35); }
.fastest40-stat-label {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.fastest40-rule { width: 100%; height: 1px; background: rgba(255,255,255,0.15); }
.fastest40-tagline { font-family: var(--font-display); font-size: var(--text-lg); color: rgba(255,255,255,0.85); font-style: italic; }

/* ─── ROUTE MAP ─────────────────────────────────────────────────────── */
.route { background: var(--bg); }

/* Route visual */
.route-visual {
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.route-stats-row {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.route-stat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-1); padding: var(--sp-6) var(--sp-4); text-align: center;
}
.route-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--text); line-height: 1;
}
.route-stat-unit { font-size: var(--text-sm); font-weight: 700; color: var(--red); letter-spacing: 0.1em; }
.route-stat-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.route-stat-divider { width: 1px; background: var(--border); align-self: stretch; margin-block: var(--sp-4); }

.route-path-wrap {
  padding: var(--sp-8) var(--sp-6);
  background: var(--bg);
}
.route-path-svg { width: 100%; height: auto; display: block; }
.route-bg-line { stroke: var(--border); }
.route-main-line { stroke: var(--red); stroke-dasharray: none; }
.route-dot { fill: var(--red); }
.route-dot--start { fill: var(--navy); stroke: var(--red); stroke-width: 2; }
.route-dot--mid { fill: var(--border); stroke: var(--text-2); stroke-width: 1.5; }
.route-label {
  font-family: var(--font-display); font-size: 11px; fill: var(--text-2);
  font-weight: 600; letter-spacing: 0.1em; text-anchor: middle; text-transform: uppercase;
}
.route-label-sm { font-size: 10px; fill: var(--text-2); letter-spacing: 0.05em; text-anchor: middle; }

.route-address {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--border);
  font-size: var(--text-sm); color: var(--text-2); font-weight: 500;
}
.route-address svg { color: var(--red); flex-shrink: 0; }

@media (max-width: 600px) {
  .route-stats-row { flex-wrap: wrap; }
  .route-stat { min-width: 50%; }
  .route-stat-divider { display: none; }
}

/* ─── SCHEDULE ──────────────────────────────────────────────────────── */
.schedule { background: var(--bg-alt); }
[data-theme="dark"] .schedule { background: var(--bg-alt); }

.timeline { position: relative; padding-left: 140px; display: flex; flex-direction: column; }
.timeline::before {
  content: '';
  position: absolute; left: 120px; top: 10px; bottom: 10px; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
}

.timeline-item {
  position: relative;
  display: flex; align-items: flex-start;
  padding-block: var(--sp-6);
}
.timeline-item:not(:last-child) { border-bottom: 1px solid var(--border); }

.timeline-time {
  position: absolute; left: -140px; width: 110px; text-align: right;
  font-size: var(--text-sm); font-weight: 500; color: var(--text-2); letter-spacing: 0.02em; padding-top: 2px;
}
.timeline-dot {
  position: absolute; left: -26px; top: calc(var(--sp-6) + 4px);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg-alt); border: 2px solid var(--border);
}
[data-theme="dark"] .timeline-dot { background: var(--bg-alt); border-color: rgba(255,255,255,0.2); }
.timeline-dot--red { background: var(--red) !important; border-color: var(--red) !important; box-shadow: 0 0 0 4px rgba(204,0,0,0.12); width: 14px; height: 14px; left: -28px; }

.timeline-event { display: flex; flex-direction: column; gap: var(--sp-1); }
.timeline-title { font-family: var(--font-display); font-size: var(--text-lg); color: var(--text); line-height: 1.2; }
.timeline-item--featured .timeline-title { color: var(--navy); font-size: var(--text-xl); }
[data-theme="dark"] .timeline-item--featured .timeline-title { color: var(--white); }
.timeline-detail { font-size: var(--text-sm); color: var(--text-2); }
.timeline-badge { display: inline-block; background: var(--red); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); align-self: flex-start; }

/* ─── IMPACT TRACKER ────────────────────────────────────────────────── */
.impact { background: var(--navy-deep); }

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }

.impact-card {
  display: flex; flex-direction: column; gap: var(--sp-3);
  padding: var(--sp-8) var(--sp-6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.impact-card:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); }

.impact-num-wrap { display: flex; align-items: baseline; gap: var(--sp-1); }
.impact-prefix { font-family: var(--font-display); font-size: var(--text-xl); color: var(--red); }
.impact-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.impact-num--tbd  { font-size: var(--text-xl); color: rgba(255,255,255,0.5); font-style: italic; }
.impact-num--range { font-size: var(--text-xl); color: rgba(255,255,255,0.75); }
.impact-num--live { font-size: var(--text-2xl); color: var(--red); }
.impact-label { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.06em; color: rgba(255,255,255,0.88); }
.impact-sub { font-size: var(--text-xs); color: rgba(255,255,255,0.60); letter-spacing: 0.04em; }
.impact-cta { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; color: var(--red); text-transform: uppercase; border-bottom: 1px solid currentColor; align-self: flex-start; }
.impact-cta:hover { opacity: 0.75; }

/* ─── PARTNER SECTION ───────────────────────────────────────────────── */
.partners { background: var(--bg); }

.partner-tiers { display: flex; flex-direction: column; gap: var(--sp-6); }

.partner-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.partner-row--3 { grid-template-columns: 1fr 1fr 1fr; }

.partner-tier { display: flex; flex-direction: column; gap: var(--sp-3); }
.tier-header { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: var(--sp-2); flex-wrap: wrap; }
.tier-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2); }
.tier-desc { font-size: var(--text-xs); color: var(--text-2); opacity: 0.7; }
.tier-spots { font-size: var(--text-xs); color: var(--text-2); opacity: 0.7; white-space: nowrap; }
.tier-spots s { text-decoration: line-through; opacity: 0.5; }
.tier-spots-sold { color: var(--red); font-weight: 700; opacity: 1; text-transform: uppercase; letter-spacing: 0.08em; }

.tier-slot {
  background: var(--bg-card);
  border: 1.5px dashed var(--border);
  height: 110px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.tier-slot:hover { border-color: var(--navy); background: rgba(0,33,71,0.03); }
[data-theme="dark"] .tier-slot:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.tier-slot--lg { height: 160px; }
.tier-slot--sm { height: 80px; }

.tier-available { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); opacity: 0.45; }
.tier-slot--confirmed { border-color: var(--navy); background: rgba(0,33,71,0.04); cursor: default; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: var(--sp-1); padding: var(--sp-4); }
.tier-slot--confirmed:hover { border-color: var(--navy); background: rgba(0,33,71,0.04); }
.tier-confirmed-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 400; color: var(--navy); letter-spacing: -0.01em; }
.tier-confirmed-badge { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.tier-partner-logo { height: 44px; width: auto; max-width: 140px; object-fit: contain; border-radius: 4px; }
.tier-partner-logo--ovr { filter: brightness(0); height: 28px; }
.info-rtp-logo { height: 52px; width: auto; display: block; margin-top: 4px; }

.partner-cta-row {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-4);
  padding: var(--sp-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-top: var(--sp-4);
  text-align: center;
}
.partner-cta-text { font-size: var(--text-base); color: var(--text-2); max-width: 50ch; }

/* ─── TRUST ─────────────────────────────────────────────────────────── */
.trust { background: var(--bg-alt); }
[data-theme="dark"] .trust { background: #090d14; }

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.trust-item {
  display: flex; align-items: flex-start; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--t-fast);
}
.trust-item:hover { border-color: rgba(0,33,71,0.3); }
[data-theme="dark"] .trust-item:hover { border-color: rgba(255,255,255,0.15); }

.trust-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.trust-check svg { width: 11px; height: 11px; color: white; }
.trust-text { font-size: var(--text-sm); font-weight: 500; color: var(--text); line-height: 1.5; max-width: none; }

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq { background: var(--bg); }

.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-6) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none; border: none; cursor: pointer;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--navy); }
[data-theme="dark"] .faq-q:hover { color: var(--white); }
.faq-q[aria-expanded="true"] { color: var(--red); }

.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--t-med); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a {
  padding-bottom: var(--sp-6);
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.75;
  overflow: hidden;
  transition: max-height var(--t-med), opacity var(--t-med);
}
.faq-a[hidden] { display: none; }
.faq-a p { max-width: 65ch; }

/* ─── MEDIA & LIVESTREAM ────────────────────────────────────────────── */
.media { background: var(--navy); }

.media-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(var(--sp-12), 6vw, var(--sp-20));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(var(--sp-10), 5vw, var(--sp-16));
  align-items: center;
}

.media-content { display: flex; flex-direction: column; gap: var(--sp-6); }
.media-body { font-size: var(--text-base); line-height: 1.75; color: rgba(255,255,255,0.92); max-width: 54ch; }
.media-social { font-family: var(--font-display); font-style: italic; font-size: var(--text-lg); color: rgba(255,255,255,0.80); max-width: none; }
.media-social strong { color: rgba(255,255,255,0.95); font-style: normal; }

.media-visual { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }
.media-icon-wrap { width: 100px; height: 100px; border: 2px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.media-icon-wrap svg { width: 48px; height: 48px; color: rgba(255,255,255,0.25); }
.media-live-badge { background: var(--red); color: var(--white); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.15em; padding: 0.35rem 0.9rem; border-radius: var(--radius-full); }

/* ─── CONTACT ───────────────────────────────────────────────────────── */
.contact { background: var(--bg); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: clamp(var(--sp-12), 7vw, var(--sp-24));
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-list { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-8); }
.contact-item { display: flex; flex-direction: column; gap: var(--sp-1); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--border); }
.contact-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-2); }
.contact-value { font-family: var(--font-display); font-size: var(--text-lg); color: var(--text); }

.waitlist-block {
  padding: var(--sp-8);
  border-top: 3px solid var(--red);
  background: var(--bg-alt);
  display: flex; flex-direction: column; gap: var(--sp-5);
}
[data-theme="dark"] .waitlist-block { background: rgba(255,255,255,0.03); }
.waitlist-text { font-size: var(--text-sm); color: var(--text-2); line-height: 1.6; }

.charity-box { position: sticky; top: 88px; }
.charity-box-inner {
  background: var(--navy-deep);
  padding: var(--sp-10) var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-5);
  position: relative; overflow: hidden;
}
.charity-box-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--red), rgba(204,0,0,0.3)); }
.charity-eyebrow { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,110,110,0.85); }
.charity-stat { font-size: var(--text-sm); color: rgba(255,255,255,0.88); line-height: 1.5; max-width: none; }
.charity-name { font-family: var(--font-display); font-size: var(--text-xl); color: var(--white); line-height: 1.15; max-width: none; }
.charity-reg { font-size: var(--text-xs); color: rgba(255,255,255,0.55); letter-spacing: 0.04em; max-width: none; }

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.06); }

.footer-inner {
  max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--gutter);
  padding-block: var(--sp-10);
  display: grid; grid-template-columns: auto 1fr auto;
  gap: var(--sp-8); align-items: center;
}
.footer-logo { display: flex; align-items: center; gap: var(--sp-5); }
.footer-logo .logo-img { filter: brightness(0) invert(1); opacity: 0.6; height: 28px; }
.footer-logo-row { display: flex; align-items: center; justify-content: center; gap: var(--sp-8); }
.footer-logo-main { filter: brightness(0) invert(1); opacity: 0.75; height: 32px; width: auto; }
.footer-partner-logo { height: 36px; width: auto; opacity: 0.65; transition: opacity 0.2s; }
.footer-partner-logo:hover { opacity: 1; }
.footer-partner-logo--ovr { filter: brightness(0) invert(1); height: 28px; }
.footer-partner-logo--rtp { height: 40px; }
.footer-partner-logo--ajax { height: 36px; filter: brightness(0) invert(1); }
.footer-rtp-logo { height: 36px; width: auto; border-left: 1px solid rgba(255,255,255,0.15); padding-left: var(--sp-5); border-radius: 4px; }

/* RTP Logo in cause + charity box */
.rtp-logo-wrap { margin-block: calc(-1 * var(--sp-2)); }
.rtp-logo { height: 64px; width: auto; display: block; border-radius: 6px; }
.charity-rtp-logo { height: 56px; width: auto; display: block; margin-bottom: var(--sp-3); border-radius: 6px; }
.footer-nav { display: flex; align-items: center; justify-content: center; gap: var(--sp-8); flex-wrap: wrap; }
.footer-link { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color var(--t-fast); }
.footer-link:hover { color: rgba(255,255,255,0.75); }
.footer-link--instagram { display: flex; align-items: center; gap: 5px; }
.media-social-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 0.2s; }
.media-social-link:hover { border-color: rgba(255,255,255,0.8); }
.footer-tagline { font-size: var(--text-xs); color: rgba(255,255,255,0.35); letter-spacing: 0.04em; text-align: right; max-width: none; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-block: var(--sp-4); text-align: center; }
.footer-fine { font-size: var(--text-xs); color: rgba(255,255,255,0.2); letter-spacing: 0.05em; max-width: none; }

/* ─── MOBILE STICKY BAR ─────────────────────────────────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--navy-deep);
  border-top: 1px solid rgba(204,0,0,0.5);
  padding: var(--sp-2) var(--gutter);
  padding-bottom: max(var(--sp-2), env(safe-area-inset-bottom));
}
.mobile-sticky-btn {
  display: block; width: 100%;
  background: var(--red); color: var(--white);
  text-align: center;
  padding: 0.7rem var(--sp-4);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background var(--t-fast);
}
.mobile-sticky-btn:hover { background: var(--red-hover); color: var(--white); }

/* ─── READ MORE BUTTON ──────────────────────────────────────────────── */
.read-more-btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: none; border: none; cursor: pointer;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.05em;
  color: var(--red); padding: 0;
  margin-top: var(--sp-2);
  transition: opacity var(--t-fast);
}
.read-more-btn:hover { opacity: 0.75; }
.read-more-btn svg { transition: transform 0.3s var(--ease-out); }
.read-more-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.founder-bio-full { margin-top: var(--sp-4); }
.founder-bio-full p { margin-bottom: var(--sp-3); font-size: var(--text-base); line-height: 1.8; color: var(--text); }

/* ─── SPONSOR PITCH ─────────────────────────────────────────────────── */
.sponsor-pitch { background: var(--navy-deep); }
.sponsor-pitch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20));
  align-items: center;
}
.sponsor-pitch-body {
  font-size: var(--text-base); line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-block: var(--sp-5);
  max-width: 52ch;
}
.sponsor-pitch-ctas { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.btn--outline-navy {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--outline-navy:hover { border-color: rgba(255,255,255,0.75); color: var(--white); background: rgba(255,255,255,0.06); }
.sponsor-pitch-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.sp-pillar {
  display: flex; flex-direction: column; gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.sp-pillar:hover { border-color: rgba(204,0,0,0.4); background: rgba(204,0,0,0.06); }
.sp-pillar-icon { font-size: 1.5rem; }
.sp-pillar-svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }
.sp-pillar-label { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .sponsor-pitch-inner { grid-template-columns: 1fr; }
  .sponsor-pitch-pillars { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

/* ≤1100px — tablet */
@media (max-width: 1100px) {
  .experience-grid { grid-template-columns: repeat(4, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .cause-inner { grid-template-columns: 1fr; }
  .rwanda-grid { aspect-ratio: 2/1; }
  .fastest40-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .fastest40-visual { align-items: flex-start; }
  .fastest40-stat-num { font-size: clamp(5rem, 10vw, 8rem); }
  .contact-grid { grid-template-columns: 1fr; }
  .charity-box { position: static; }
}

/* ≤900px */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-photo { height: 400px; }
  .partner-row { grid-template-columns: 1fr; }
  .partner-row--3 { grid-template-columns: 1fr 1fr; }
  .trust-list { grid-template-columns: 1fr; }
  .media-inner { grid-template-columns: 1fr; }
  .media-visual { display: none; }
  .footer-inner { grid-template-columns: auto auto; grid-template-rows: auto auto; }
  .footer-tagline { grid-column: 1 / -1; text-align: center; }
}

/* ≤768px — mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-sticky-bar { display: block; }

  body { padding-bottom: 72px; }
  /* Ensure sticky bar never covers last line of section content */
  section:last-of-type { padding-bottom: calc(clamp(var(--sp-12), 6vw, var(--sp-20)) + 72px); }

  /* Mobile hero: stacked layout — photo block on top, text block below on solid navy */
  .hero {
    min-height: auto;
    flex-direction: column;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto;
    padding-top: 0;
    padding-inline: 0;
    padding-bottom: 0;
    min-height: auto;
    gap: 0;
  }
  .hero-image-panel {
    position: relative;
    width: 100%;
    height: 380px;
    min-height: unset;
    z-index: 0;
    order: 1;
    margin-top: 64px; /* clear the fixed nav */
  }
  .hero-img { object-position: center 15%; }
  /* Fade bottom edge of photo into navy */
  .hero-img-overlay {
    background: linear-gradient(to bottom,
      rgba(0,21,48,0.25) 0%,
      rgba(0,21,48,0.10) 50%,
      rgba(0,21,48,0.85) 100%
    );
  }
  .hero::after { display: none; }
  .hero-content {
    order: 2;
    position: relative;
    z-index: 2;
    padding: var(--sp-8) var(--gutter) var(--sp-12);
    background: var(--navy-deep);
  }
  .hero-scroll-cue { display: none; }

  .countdown { gap: var(--sp-2); }
  .countdown-num { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .countdown-sep { font-size: clamp(1.4rem, 5vw, 2rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .info-item { min-width: 100%; }
  .info-divider { display: none; }
  .info-bar-inner { flex-direction: column; gap: 0; }
  .info-item { border-bottom: 1px solid var(--border); }

  .photo-strip { grid-template-columns: 1fr; }
  .strip-photo { height: 220px; }

  .experience-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline { padding-left: 100px; }
  .timeline::before { left: 82px; }
  .timeline-time { left: -100px; width: 72px; font-size: var(--text-xs); }
  .timeline-dot { left: -22px; }
  .timeline-dot--red { left: -24px; }

  .impact-grid { grid-template-columns: 1fr 1fr; }
  .partner-row--3 { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: 1fr; }

  .footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-4); }
  .footer-nav { justify-content: center; }
  .footer-tagline { text-align: center; }
}

/* ≤480px */
@media (max-width: 480px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .rwanda-grid { aspect-ratio: auto; }
  .rwanda-cell { aspect-ratio: 1; }
  .fastest40-stat-num { font-size: 5rem; }
}
