@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap");

:root {
  --ink: #14211d;
  --ink-soft: #45554e;
  --forest-950: #081b17;
  --forest-900: #102a23;
  --forest-800: #174136;
  --forest-700: #24614f;
  --moss: #86a875;
  --sky: #b9d2d2;
  --cream: #f4f0e6;
  --paper: #fbfaf6;
  --gold: #d9a94d;
  --gold-light: #f4d996;
  --rust: #a95e39;
  --line: rgba(20, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(8, 27, 23, 0.18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--forest-950);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.65 var(--sans);
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 100px;
  background: white;
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: 100%;
  min-height: 78px;
  padding: 14px max(24px, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  color: var(--forest-950);
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  z-index: 90;
}

.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  background: linear-gradient(to bottom, rgba(4, 17, 13, .78), transparent);
  border: 0;
  backdrop-filter: none;
}

.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a { font-size: .88rem; font-weight: 600; letter-spacing: .02em; }
.site-header nav a:hover { color: var(--gold-light); }
.site-header > .button { justify-self: end; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  letter-spacing: .01em;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.02; font-size: .7rem; text-transform: uppercase; letter-spacing: .17em; }
.brand strong { font-size: 1rem; font-weight: 700; letter-spacing: .08em; }

.hero {
  min-height: min(900px, 100svh);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--forest-950);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.015);
  animation: hero-settle 2.4s ease-out both;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 19, 15, .92) 0%, rgba(5, 19, 15, .54) 44%, rgba(5, 19, 15, .12) 76%),
    linear-gradient(0deg, rgba(5, 19, 15, .68), transparent 50%);
}
.hero__content {
  position: relative;
  width: var(--content);
  margin: 70px auto 0;
  padding: 90px 0;
}
.hero h1 {
  max-width: 900px;
  margin: 14px 0 24px;
  font: 600 clamp(4rem, 9vw, 8.6rem)/.85 var(--serif);
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--gold-light); font-weight: 500; }
.hero__lede {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}
.hero__wayfinder {
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgba(255,255,255,.68);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}
.hero__wayfinder span + span::before { content: "·"; margin-right: 24px; }
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.75);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero__scroll b { font-size: 1rem; animation: bounce 1.6s ease-in-out infinite; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--forest-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--gold-light); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--forest-900);
  border-radius: 100px;
  color: white;
  background: var(--forest-900);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); background: var(--forest-700); border-color: var(--forest-700); }
.button--small { min-height: 42px; padding: 0 18px; font-size: .8rem; }
.button--glass { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.52); backdrop-filter: blur(10px); }
.button--glass:hover { background: rgba(255,255,255,.22); border-color: white; }
.button--light { color: var(--forest-950); background: white; border-color: white; }
.button--light:hover { color: white; background: var(--forest-700); border-color: var(--forest-700); }
.button--gold { color: var(--forest-950); background: var(--gold-light); border-color: var(--gold-light); }
.button--gold:hover { color: white; background: var(--gold); border-color: var(--gold); }
.button--outline-light { color: white; background: transparent; border-color: rgba(255,255,255,.58); }
.button--outline-light:hover { background: rgba(255,255,255,.13); border-color: white; }

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--forest-700);
  font-size: .87rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(36, 97, 79, .28);
}
.text-link:hover { color: var(--rust); border-color: var(--rust); }
.text-link--large { font-size: 1rem; }

.intro-strip {
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: white;
  background: var(--forest-900);
  border-top: 1px solid rgba(255,255,255,.12);
}
.intro-strip p { margin: 0; color: rgba(255,255,255,.8); }
.intro-strip strong { color: white; }
.intro-strip div { display: flex; gap: 24px; white-space: nowrap; color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.content-section { width: var(--content); margin: 0 auto; padding: 112px 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 48px;
}
.section-heading h2,
.map-preview h2,
.passport-section h2,
.app-roadmap h2,
.cta-band h2,
.two-column-story h2,
.learning-band h2 {
  margin: 0;
  font: 600 clamp(2.5rem, 5vw, 5rem)/.98 var(--serif);
  letter-spacing: -.04em;
}
.section-heading > p { max-width: 480px; margin: 0; color: var(--ink-soft); font-size: 1.04rem; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 16px;
  min-height: 640px;
}
.feature-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background: var(--forest-900);
}
.feature-card--large { grid-row: 1 / 3; }
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 20, 16, .9), transparent 65%);
}
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.feature-card:hover img { transform: scale(1.045); }
.feature-card > div { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; }
.feature-card p { margin: 0 0 6px; color: var(--gold-light); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.feature-card h3 { margin: 0 0 8px; font: 600 clamp(1.7rem, 3vw, 3.2rem)/1 var(--serif); }
.feature-card > div span { font-size: .78rem; font-weight: 700; }
.feature-card__count { position: absolute; z-index: 2; top: 18px; right: 18px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.35); border-radius: 100px; background: rgba(5,20,16,.45); backdrop-filter: blur(8px); font-size: .68rem; font-weight: 600; }
.centered-action { margin-top: 34px; text-align: center; }

.map-preview {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 720px;
  background: #dce9e7;
}
.map-preview__copy { padding: clamp(60px, 8vw, 120px) max(32px, calc((100vw - 1180px) / 2)); padding-right: clamp(40px, 7vw, 100px); }
.map-preview__copy h2 { max-width: 550px; margin-bottom: 24px; color: var(--forest-950); }
.map-preview__copy > p { color: var(--ink-soft); }
.check-list { padding: 0; margin: 30px 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid rgba(8,27,23,.12); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--forest-700); font-weight: 800; }
.map-preview__art {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 48%, rgba(255,255,255,.42) 49%, transparent 51%) 0 0 / 80px 80px,
    linear-gradient(-35deg, transparent 48%, rgba(23,65,54,.08) 49%, transparent 51%) 20px 20px / 110px 110px,
    #b9d2d2;
}
.map-preview__art::before {
  content: "";
  position: absolute;
  inset: -10%;
  opacity: .52;
  background:
    radial-gradient(circle at 18% 21%, transparent 0 55px, rgba(36,97,79,.33) 56px 58px, transparent 59px),
    radial-gradient(circle at 73% 62%, transparent 0 92px, rgba(36,97,79,.23) 93px 95px, transparent 96px);
}
.state-line {
  position: absolute;
  inset: 13% 15% 18%;
  display: grid;
  place-items: center;
  border: 3px solid rgba(16,42,35,.45);
  border-radius: 43% 57% 61% 39% / 42% 33% 67% 58%;
  transform: rotate(-8deg);
  box-shadow: inset 0 0 80px rgba(255,255,255,.38);
}
.state-line img { width: 42%; filter: drop-shadow(0 12px 24px rgba(8,27,23,.14)); }
.map-pin { position: absolute; width: 18px; height: 18px; border: 4px solid white; border-radius: 50%; background: var(--rust); box-shadow: 0 5px 14px rgba(8,27,23,.32); }
.map-pin--one { top: 17%; right: 10%; }
.map-pin--two { top: 44%; left: 36%; }
.map-pin--three { bottom: 20%; left: 25%; }
.map-pin--four { top: 30%; left: 12%; }
.map-pin--five { bottom: 26%; right: 21%; }
.map-place-card {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 12px;
  border-radius: 7px;
  background: rgba(251,250,246,.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.map-place-card img { width: 105px; height: 82px; border-radius: 4px; object-fit: cover; }
.map-place-card div { display: flex; flex-direction: column; justify-content: center; }
.map-place-card small { color: var(--forest-700); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.map-place-card strong { font: 600 1.5rem var(--serif); }
.map-place-card span { color: var(--ink-soft); font-size: .78rem; }

.passport-section {
  padding: clamp(80px, 10vw, 140px) max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
  color: white;
  background:
    radial-gradient(circle at 15% 15%, rgba(134,168,117,.16), transparent 30%),
    radial-gradient(circle at 80% 75%, rgba(217,169,77,.12), transparent 26%),
    var(--forest-950);
}
.passport-section h2 { margin-bottom: 26px; }
.passport-section p:not(.eyebrow):not(.fine-print) { color: rgba(255,255,255,.76); font-size: 1.05rem; }
.passport-mock { position: relative; min-height: 480px; perspective: 1200px; }
.passport-mock__cover,
.passport-mock__page {
  position: absolute;
  width: 62%;
  aspect-ratio: .72;
  padding: 36px;
  border-radius: 10px;
  box-shadow: 0 35px 80px rgba(0,0,0,.45);
}
.passport-mock__cover {
  z-index: 2;
  left: 6%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold-light);
  background: linear-gradient(145deg, #1c5748, #0d2b24);
  border: 1px solid rgba(244,217,150,.32);
  transform: rotate(-7deg);
}
.passport-mock__cover::after { content:""; position:absolute; inset:14px; border:1px solid rgba(244,217,150,.28); border-radius:5px; pointer-events:none; }
.passport-mock__cover img { width: 42%; margin: 42px auto 26px; filter: sepia(1) saturate(.7) brightness(1.5); }
.passport-mock__cover span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }
.passport-mock__cover strong { margin: 10px 0 auto; font: 600 2.2rem/1 var(--serif); text-align: center; }
.passport-mock__cover small { font-style: italic; }
.passport-mock__page {
  top: 0;
  right: 4%;
  color: var(--ink);
  background: #f4ecd5;
  transform: rotate(8deg);
}
.passport-mock__page p { margin: 0 0 24px; font: 600 1.2rem var(--serif); }
.stamp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.stamp-grid span { display: grid; place-items: center; aspect-ratio: 1; border: 3px double var(--rust); border-radius: 50%; color: var(--rust); font-size: .62rem; font-weight: 800; line-height: 1.15; text-align: center; text-transform: uppercase; transform: rotate(-9deg); }
.stamp-grid span:nth-child(2) { color: var(--forest-700); border-color: var(--forest-700); transform: rotate(8deg); }
.stamp-grid span:nth-child(3) { color: #476a91; border-color: #476a91; transform: rotate(-2deg); }
.stamp-grid .stamp--empty { color: rgba(20,33,29,.32); border-color: rgba(20,33,29,.2); border-style: dashed; }
.fine-print { max-width: 570px; margin-top: 20px; color: rgba(255,255,255,.52); font-size: .75rem; }

.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.editorial-grid article { position: relative; min-height: 420px; padding: clamp(32px, 5vw, 64px); overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--cream); }
.editorial-grid article:nth-child(2) { background: #dfe9e1; }
.editorial-grid__number { position: absolute; top: -34px; right: 12px; color: rgba(16,42,35,.07); font: 600 12rem var(--serif); }
.editorial-grid h3 { position: relative; max-width: 520px; margin: 8px 0 18px; font: 600 clamp(2rem, 4vw, 3.7rem)/1 var(--serif); }
.editorial-grid p { position: relative; max-width: 580px; }

.app-roadmap {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--forest-800);
}
.app-roadmap > div:first-child { display: grid; grid-template-columns: .35fr .65fr; gap: 60px; align-items: start; margin-bottom: 70px; }
.app-roadmap .eyebrow { color: var(--gold-light); }
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.roadmap-grid article { padding: 30px 34px 0 0; }
.roadmap-grid article + article { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.18); }
.roadmap-grid span { color: var(--gold-light); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.roadmap-grid h3 { margin: 12px 0; font: 600 1.6rem var(--serif); }
.roadmap-grid p { color: rgba(255,255,255,.7); }

.cta-band {
  padding: 86px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  color: white;
  background: var(--rust);
}
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band h2 { max-width: 780px; font-size: clamp(2.4rem, 4vw, 4.6rem); }
.cta-band .button-row { flex-shrink: 0; }

.site-footer {
  padding: 64px max(24px, calc((100vw - 1180px) / 2)) 32px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  color: white;
  background: var(--forest-950);
}
.site-footer > div > p { max-width: 520px; color: rgba(255,255,255,.62); font-size: .85rem; }
.site-footer > div > p a { color: white; border-bottom: 1px solid rgba(255,255,255,.35); }
.site-footer nav { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 12px 30px; font-size: .84rem; }
.site-footer__legal { grid-column: 1 / -1; margin-top: 22px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.46); font-size: .72rem; }
.mobile-nav { display: none; }

.page-hero {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--forest-900);
}
.page-hero--compact { padding-top: 90px; padding-bottom: 80px; }
.page-hero h1 { max-width: 900px; margin: 0; font: 600 clamp(3.2rem, 7vw, 7rem)/.92 var(--serif); letter-spacing: -.05em; }
.page-hero > p:last-child { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 1.1rem; }

.place-index { display: grid; gap: 22px; }
.place-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 38px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.place-row__image { position: relative; display: block; aspect-ratio: 1.3; overflow: hidden; border-radius: 5px; background: var(--forest-900); }
.place-row__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.place-row__image:hover img { transform: scale(1.05); }
.place-row__image span { position: absolute; right: 10px; bottom: 10px; padding: 7px 10px; border-radius: 100px; color: white; background: rgba(8,27,23,.68); backdrop-filter: blur(8px); font-size: .68rem; font-weight: 700; }
.place-row h2 { margin: 0 0 10px; font: 600 2.2rem var(--serif); }
.place-row h2 a:hover { color: var(--rust); }
.place-row p:not(.eyebrow) { max-width: 760px; margin: 0 0 14px; color: var(--ink-soft); }

.destination-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--forest-950);
}
.destination-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; image-rendering: auto; transform: scale(1.05); filter: saturate(.9); }
.destination-hero__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,20,16,.95), rgba(5,20,16,.1) 80%); }
.destination-hero__content { position: relative; width: var(--content); margin: 0 auto; padding: 80px 0; }
.destination-hero h1 { max-width: 1000px; margin: 10px 0 8px; font: 600 clamp(3.5rem, 8vw, 7.5rem)/.9 var(--serif); letter-spacing: -.05em; }
.destination-hero__content > p:not(.eyebrow) { max-width: 750px; margin: 0 0 25px; color: rgba(255,255,255,.8); font-size: 1.15rem; }
.back-link { display: inline-block; margin-bottom: 50px; color: rgba(255,255,255,.78); font-size: .8rem; font-weight: 700; }
.two-column-story { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: start; }
.lede { margin: 18px 0 0; color: var(--ink-soft); font-size: 1.18rem; }
.field-note { padding: 34px; background: var(--cream); border-left: 4px solid var(--gold); }
.field-note p:not(.eyebrow) { color: var(--ink-soft); }
.learning-band { padding: 70px max(24px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; color: white; background: var(--forest-800); }
.learning-band .eyebrow { color: var(--gold-light); }
.learning-band p { color: rgba(255,255,255,.76); font-size: 1.08rem; }
.stop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stop-card { display: grid; grid-template-columns: 78px 1fr; align-items: center; min-height: 88px; overflow: hidden; border: 1px solid var(--line); border-radius: 5px; background: white; opacity: 0; animation: reveal .5s var(--delay) forwards; }
.stop-card:hover { border-color: var(--forest-700); box-shadow: 0 8px 24px rgba(8,27,23,.1); }
.stop-card img { width: 78px; height: 100%; min-height: 88px; object-fit: cover; }
.stop-card > span { padding: 12px; font-size: .8rem; font-weight: 600; line-height: 1.35; }
.stop-card small { display: block; margin-bottom: 4px; color: var(--forest-700); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }

.offline-page { min-height: 100svh; display: grid; place-items: center; padding: 30px; color: white; background: var(--forest-950); }
.offline-page main { max-width: 600px; text-align: center; }
.offline-page img { width: 120px; margin: 0 auto 28px; }
.offline-page h1 { margin: 0; font: 600 clamp(3rem, 8vw, 6rem) var(--serif); }
.offline-page p:not(.eyebrow) { color: rgba(255,255,255,.72); }

.roadmap-grid--light { color: var(--ink); border-top-color: var(--line); }
.roadmap-grid--light article + article { border-left-color: var(--line); }
.roadmap-grid--light span { color: var(--forest-700); }
.roadmap-grid--light p { color: var(--ink-soft); }
.source-list { display: grid; border-top: 1px solid var(--line); }
.source-list a { padding: 20px 0; display: grid; grid-template-columns: .7fr 1.3fr; gap: 30px; border-bottom: 1px solid var(--line); }
.source-list a:hover strong { color: var(--rust); }
.source-list span { color: var(--ink-soft); }
.partner-band { padding: 90px max(24px, calc((100vw - 1180px) / 2)); display: flex; justify-content: space-between; align-items: center; gap: 60px; color: white; background: var(--forest-900); }
.partner-band > div { max-width: 800px; }
.partner-band h2 { margin: 0 0 18px; font: 600 clamp(2.7rem, 5vw, 5rem)/.98 var(--serif); letter-spacing: -.04em; }
.partner-band p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.7); }
.partner-band > a { flex: 0 0 auto; }
.policy-copy { max-width: 850px; }
.policy-copy h2 { margin: 42px 0 10px; font: 600 2rem var(--serif); }
.policy-copy p { color: var(--ink-soft); font-size: 1.02rem; }

@keyframes hero-settle { from { transform: scale(1.08); opacity: .55; } to { transform: scale(1.015); opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes reveal { to { opacity: 1; } }

@media (max-width: 980px) {
  :root { --content: min(100% - 36px, 760px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; }
  .site-header nav { display: none; }
  .hero__wayfinder { display: none; }
  .section-heading,
  .map-preview,
  .passport-section,
  .two-column-story,
  .learning-band { grid-template-columns: 1fr; }
  .map-preview__copy { padding-left: max(24px, calc((100vw - 760px) / 2)); padding-right: max(24px, calc((100vw - 760px) / 2)); }
  .passport-mock { order: 2; }
  .app-roadmap > div:first-child { grid-template-columns: 1fr; gap: 18px; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-grid article { padding: 28px 0; }
  .roadmap-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .stop-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .site-header { position: absolute; padding: 12px 16px; color: white; background: linear-gradient(to bottom, rgba(4,17,13,.76), transparent); border: 0; }
  .site-header:not(.site-header--overlay) { position: relative; color: var(--forest-950); background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-header > .button { display: none; }
  .brand img { width: 34px; height: 34px; }
  .brand strong { font-size: .86rem; }
  .hero { min-height: 850px; }
  .hero__image { object-position: 58% center; }
  .hero__scrim { background: linear-gradient(0deg, rgba(5,19,15,.95) 0%, rgba(5,19,15,.38) 85%); }
  .hero__content { align-self: end; margin: 0 auto; padding: 160px 0 115px; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .hero__lede { font-size: 1.04rem; }
  .hero .button-row { align-items: stretch; flex-direction: column; }
  .hero .button { width: 100%; }
  .hero__scroll { display: none; }
  .intro-strip { align-items: flex-start; flex-direction: column; }
  .intro-strip div { width: 100%; justify-content: space-between; gap: 8px; font-size: .6rem; }
  .content-section { padding: 78px 0; }
  .section-heading { gap: 18px; margin-bottom: 30px; }
  .section-heading h2, .map-preview h2, .passport-section h2, .app-roadmap h2, .cta-band h2, .two-column-story h2, .learning-band h2 { font-size: 2.75rem; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: none; min-height: auto; }
  .feature-card, .feature-card--large { grid-row: auto; min-height: 330px; }
  .feature-card h3 { font-size: 2.35rem; }
  .map-preview__art { min-height: 520px; }
  .passport-section { padding-left: 18px; padding-right: 18px; }
  .passport-mock { min-height: 390px; }
  .passport-mock__cover, .passport-mock__page { width: 65%; padding: 22px; }
  .passport-mock__cover img { margin-top: 24px; }
  .passport-mock__cover strong { font-size: 1.7rem; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-grid article { min-height: 380px; padding: 34px 26px; }
  .app-roadmap { padding: 80px 20px; }
  .cta-band { padding: 68px 20px; }
  .cta-band .button-row, .cta-band .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; padding: 54px 20px 28px; }
  .site-footer nav { grid-template-columns: 1fr; }
  .mobile-nav {
    position: fixed;
    z-index: 300;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 68px;
    padding-bottom: env(safe-area-inset-bottom);
    color: rgba(255,255,255,.7);
    background: rgba(8,27,23,.97);
    border-top: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
  }
  .mobile-nav a { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2px; font-size: .6rem; font-weight: 600; }
  .mobile-nav span { color: var(--gold-light); font-size: 1.15rem; line-height: 1; }
  .mobile-nav [aria-current="page"] { color: white; }
  .place-row { grid-template-columns: 110px 1fr; gap: 18px; align-items: start; }
  .place-row__image { aspect-ratio: .9; }
  .place-row h2 { font-size: 1.45rem; }
  .place-row p:not(.eyebrow) { display: none; }
  .place-row .button-row { display: block; }
  .place-row .text-link + .text-link { display: none; }
  .destination-hero { min-height: 680px; }
  .destination-hero__content { padding: 60px 0; }
  .destination-hero h1 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .two-column-story { gap: 28px; }
  .learning-band { padding: 60px 20px; gap: 20px; }
  .stop-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 20px 70px; }
  .roadmap-grid--light article + article { border-left: 0; border-top: 1px solid var(--line); }
  .source-list a { grid-template-columns: 1fr; gap: 4px; }
  .partner-band { padding: 70px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
