/* ==========================================================================
   Fairway Finders Foundation — brand stylesheet
   Colors sampled from supplied brand assets.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: 'Anton';
  src: url('../assets/fonts/Anton.woff2') format('woff2');
  /* single-weight poster face — map every requested weight to it so
     the browser never synthesizes a faux bold */
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/Archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --green: #123B2E;
  --green-deep: #0A2318;
  --cream: #FAF6EC;
  --cream-dim: rgba(250, 246, 236, 0.68);
  --orange: #F2620F;
  --orange-hot: #FF7A24;
  --ink: #16281F;          /* body text on cream */
  --ink-soft: #3D5247;

  --pole: var(--cream);
  --ink-deep: var(--green-deep);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', sans-serif;

  --cut: clamp(24px, 4vw, 56px);   /* diagonal section cut depth */
  --pad-section: clamp(4.5rem, 9vw, 8.5rem);
  --container: 1180px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--orange); color: var(--cream); }

/* Grain overlay for texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(10, 35, 24, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(250, 246, 236, 0.1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.nav-icon { width: 40px; height: 40px; }
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-dim);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--orange-hot); }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85em 1.7em;
  font-size: 0.9rem;
  /* pennant-cut corner echoing the flag */
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--orange);
  color: var(--cream);
}
.btn-primary:hover { background: var(--orange-hot); transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(250, 246, 236, 0.4);
  clip-path: none;
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--cream); }
.btn-nav {
  background: var(--orange);
  color: var(--cream);
  font-size: 0.78rem;
  padding: 0.7em 1.5em;
}
.btn-nav:hover { background: var(--orange-hot); }
.btn-lg { font-size: 1.05rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: 2rem;
  padding: clamp(6rem, 14vh, 9rem) clamp(1.2rem, 6vw, 5rem) 5rem;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(242, 98, 15, 0.14) 0%, transparent 55%),
    radial-gradient(100% 100% at 10% 100%, rgba(10, 35, 24, 0.9) 0%, transparent 60%),
    var(--green);
}
.kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 1.6rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.96;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  transform: skewX(-4deg); /* echoes the flag's lean */
  transform-origin: left bottom;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}
/* line-mask load reveal */
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  animation: line-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.22s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.34s; }
.hero-title .line:nth-child(4) span { animation-delay: 0.46s; }
@keyframes line-up { to { transform: translateY(0); } }

.hero-sub {
  max-width: 46ch;
  margin-top: 1.8rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--cream-dim);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-flag {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo {
  width: min(100%, 360px);
  /* leaning slab echoing the flag's tilt */
  clip-path: polygon(6% 3%, 100% 0, 94% 97%, 0 100%);
  animation: photo-drift 9s ease-in-out infinite;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes photo-drift {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(1deg) translateY(6px); }
}
.hero-signpost {
  position: absolute;
  width: min(52%, 210px);
  left: -8%;
  bottom: -6%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
  animation: signpost-float 7s ease-in-out infinite;
}
@keyframes signpost-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.2deg); }
}
/* pennants slide out from the pole on load */
.hero-signpost .pennant {
  transform-origin: 44px 0;
  transform: scaleX(0);
  animation: pennant-out 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-signpost .p1 { animation-delay: 0.65s; }
.hero-signpost .p2 { animation-delay: 0.8s; }
.hero-signpost .p3 { animation-delay: 0.95s; }
@keyframes pennant-out { to { transform: scaleX(1); } }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 2px;
  height: 56px;
  background: rgba(250, 246, 236, 0.18);
  overflow: hidden;
}
.scroll-cue span {
  display: block;
  width: 100%;
  height: 40%;
  background: var(--orange);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}

/* ==========================================================================
   Ticker
   ========================================================================== */
.ticker {
  background: var(--orange);
  color: var(--green-deep);
  overflow: hidden;
  transform: rotate(-1.4deg) scale(1.02);
  padding: 0.65rem 0;
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ticker-track i { font-style: normal; font-size: 0.6em; opacity: 0.7; }
@keyframes ticker-scroll {
  to { transform: translateX(-33.333%); }
}

/* ==========================================================================
   Shared section styles
   ========================================================================== */
.section-cream {
  background: var(--cream);
  color: var(--ink);
  padding: calc(var(--pad-section) + var(--cut)) 0;
  clip-path: polygon(0 var(--cut), 100% 0, 100% calc(100% - var(--cut)), 0 100%);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.4rem;
}
.section-label.light { color: var(--orange-hot); }
.arrow-mark {
  width: 44px;
  height: 15px;
  color: var(--orange);
  flex: none;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  color: var(--green);
}
.section-title.light { color: var(--cream); }
.section-intro {
  max-width: 52ch;
  margin-top: 1.4rem;
  font-size: 1.05rem;
  color: var(--cream-dim);
}
.section-intro.dark { color: var(--ink-soft); }

/* ==========================================================================
   Mission
   ========================================================================== */
.mission-statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 26ch;
  color: var(--green);
}
.mission-statement mark {
  background: none;
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}
.mission-flex {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: 2.6rem;
}
.mission-photo {
  max-width: 300px;
  justify-self: end;
  clip-path: polygon(0 0, 100% 4%, 96% 100%, 4% 96%);
  transform: rotate(-2deg);
}
.mission-photo img { width: 100%; height: auto; }
.mission-body {
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--orange);
  padding-left: 1.6rem;
}

/* ==========================================================================
   Programmes — The Four Fairways
   ========================================================================== */
.programmes { padding: var(--pad-section) 0; }
.prog-list {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  width: min(var(--container), 92vw);
  margin-inline: auto;
}
.prog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(70px, 160px) minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.8rem, 3.5vw, 3rem) 0;
  border-top: 1px solid rgba(250, 246, 236, 0.14);
}
.prog:last-child { border-bottom: 1px solid rgba(250, 246, 236, 0.14); }
.prog-num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250, 246, 236, 0.3);
  transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
}
.prog:hover .prog-num {
  color: var(--orange);
  -webkit-text-stroke-color: var(--orange);
}
.prog-head { display: flex; align-items: center; gap: 1rem; }
.prog-head .arrow-mark {
  width: 52px;
  height: 17px;
  color: var(--orange);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.prog:hover .prog-head .arrow-mark { transform: translateX(10px); }
.prog-head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--cream);
}
.prog-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.7rem;
}
.prog-body p:not(.prog-tag) {
  color: var(--cream-dim);
  max-width: 56ch;
}

/* ==========================================================================
   Journey
   ========================================================================== */
.journey-track {
  list-style: none;
  width: min(var(--container), 92vw);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.6rem;
  position: relative;
}
/* dashed path connecting the dots */
.journey-track::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 2%;
  right: 2%;
  border-top: 2px dashed rgba(18, 59, 46, 0.35);
}
.journey-step { position: relative; padding-top: 2rem; }
.journey-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 6px rgba(18, 59, 46, 0.25);
}
.journey-dot.flag { background: var(--orange); }
.journey-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.journey-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Impact
   ========================================================================== */
.impact {
  background: var(--green-deep);
  padding: var(--pad-section) 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.stat { border-top: 3px solid var(--orange); padding-top: 1.2rem; }
.stat-num, .stat-plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1;
  color: var(--orange);
}
.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.impact-note {
  margin-top: 2.6rem;
  font-size: 0.8rem;
  color: rgba(250, 246, 236, 0.45);
}

/* ==========================================================================
   Sponsors
   ========================================================================== */
.sponsor-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(18, 59, 46, 0.06);
  border: 1px solid rgba(18, 59, 46, 0.14);
  padding: 1.8rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
}
.why-card p { font-size: 0.95rem; color: var(--ink-soft); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 3.5rem;
  align-items: stretch;
}
.tier {
  background: var(--cream);
  border: 2px solid var(--green);
  padding: 2.2rem 1.9rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(18, 59, 46, 0.18);
}
.tier.featured {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.tier-flag {
  position: absolute;
  top: -14px;
  left: 1.9rem;
  background: var(--orange);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35em 1em 0.35em 0.9em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}
.tier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--orange);
}
.tier-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin: 0.5rem 0 1.4rem;
  color: var(--green);
}
.tier.featured .tier-price { color: var(--cream); }
.tier-price span { font-size: 0.9rem; font-weight: 400; opacity: 0.6; }
.tier ul { list-style: none; }
.tier li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.94rem;
  position: relative;
  border-top: 1px dashed rgba(18, 59, 46, 0.2);
}
.tier.featured li { border-top-color: rgba(250, 246, 236, 0.2); }
.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 14px;
  height: 8px;
  background: var(--orange);
  clip-path: polygon(0 0, 70% 10%, 100% 50%, 70% 90%, 0 100%);
}
.sponsor-cta {
  margin-top: 3.6rem;
  text-align: center;
}
.sponsor-cta p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   Stories / gallery
   ========================================================================== */
.stories { padding: var(--pad-section) 0; }
.gallery {
  width: min(var(--container), 92vw);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 22vw, 260px);
  gap: 1rem;
}
.ph {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--green-deep);
}
.ph-a { grid-row: span 2; }
.ph-d { grid-column: span 2; }
/* stacked duotone/color pair — colour revealed on hover or keyboard focus */
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph img.color {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.ph:hover img.color,
.ph:focus-within img.color { opacity: 1; }
.ph-cta {
  grid-column: span 2;
  background: var(--orange);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  transition: background 0.25s ease;
}
.ph-cta:hover { background: var(--orange-hot); }
.ph-cta-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--green-deep);
}
.ph-cta-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}
.ph-cta-link .arrow-mark { color: var(--green-deep); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.ph-cta:hover .arrow-mark { transform: translateX(8px); }
.ph figcaption {
  position: relative;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: linear-gradient(transparent, rgba(10, 35, 24, 0.85));
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--green-deep);
  padding: var(--pad-section) 0 2rem;
  border-top: 4px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}
.footer-icon { width: 72px; height: 72px; margin-bottom: 1rem; }
.footer-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.footer-word span {
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: var(--cream-dim);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 1rem;
}
.footer-col p { margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--cream-dim); }
.footer-col a { text-decoration: none; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange-hot); }
.footer-fine {
  width: min(var(--container), 92vw);
  margin: 3.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(250, 246, 236, 0.12);
  font-size: 0.78rem;
  color: rgba(250, 246, 236, 0.4);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }
  .hero-flag { order: -1; justify-content: flex-start; }
  .hero-photo { width: min(48vw, 240px); }
  .hero-signpost { width: 46%; left: -10%; }
  .prog { grid-template-columns: minmax(60px, 90px) 1fr; }
  .prog-body { grid-column: 2; }
  .journey-track { grid-template-columns: 1fr; gap: 0; }
  .journey-track::before {
    top: 2%;
    bottom: 2%;
    left: 8px;
    right: auto;
    border-top: none;
    border-left: 2px dashed rgba(18, 59, 46, 0.35);
  }
  .journey-step { padding: 0 0 2rem 2.4rem; }
  .journey-dot { top: 4px; }
  .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sponsor-why, .tier-grid { grid-template-columns: 1fr; }
  .tier.featured { order: -1; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ph-d { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { gap: 1rem; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--green-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.1rem; }
  .btn-nav { margin-left: auto; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 64vw; }
  .ph-a { grid-row: span 1; }
  .ph-cta { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .mission-flex { grid-template-columns: 1fr; }
  .mission-photo { justify-self: start; max-width: 240px; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-title .line span { animation: none; transform: none; }
  .hero-signpost { animation: none; }
  .hero-photo { animation: none; }
  .hero-signpost .pennant { animation: none; transform: none; }
  .ticker-track { animation: none; }
  .scroll-cue { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
