/* ============================================================
   Boucher Brothers — Apple × Luxury Travel design system
   Porcelain & ink, ocean-blue action, serif whispers.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-italic-400.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-italic-500.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-normal-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-normal-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;

  --porcelain: #f5f5f7;
  --white: #ffffff;
  --ink: #0a0d12;
  --graphite: #1d1d1f;
  --mist: #86868b;
  --quiet: #6e6e73;
  --hairline: rgba(10, 13, 18, 0.10);
  --hairline-dark: rgba(255, 255, 255, 0.14);

  --ocean: #015595;
  --ocean-deep: #023a63;
  --ocean-ink: #062133;
  --sky: #6fb0de;
  --sand: #ede5d8;
  --champagne: #c9b28a;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --gutter: clamp(22px, 5vw, 64px);
  --measure: 68ch;

  --dur: 0.7s;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
::selection { background: rgba(1, 85, 149, 0.18); }

/* ---------- Type ---------- */
.display {
  font-weight: 700;
  font-size: clamp(2.9rem, 7.2vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.headline {
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.subhead {
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  letter-spacing: 0.01em;
  color: var(--ocean);
  display: block;
  margin-bottom: 18px;
}
.lede {
  font-size: clamp(1.12rem, 1.7vw, 1.375rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--quiet);
  max-width: var(--measure);
}
.body-copy { max-width: var(--measure); color: var(--quiet); }
.body-copy + .body-copy { margin-top: 1.1em; }
.body-copy strong { color: var(--ink); font-weight: 600; }

.on-dark .display, .on-dark .headline, .on-dark .subhead { color: var(--white); }
.on-dark .lede, .on-dark .body-copy { color: rgba(255, 255, 255, 0.72); }
.on-dark .body-copy strong { color: var(--white); }
.on-dark .eyebrow { color: var(--sky); }

.serif-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.22;
  letter-spacing: 0.002em;
}

/* ---------- Layout ---------- */
.shell { width: min(1240px, 100% - var(--gutter) * 2); margin-inline: auto; }
.shell-wide { width: min(1440px, 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: clamp(84px, 12vw, 160px); }
.section-tight { padding-block: clamp(64px, 8vw, 110px); }
.stack-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stack-center .lede { margin-inline: auto; }

.bg-porcelain { background: var(--porcelain); }
.bg-ink { background: var(--ink); }
.bg-ocean-ink { background: var(--ocean-ink); }
.bg-sand { background: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 1.02rem; font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn-primary { background: var(--ocean); color: #fff; box-shadow: 0 10px 30px rgba(1, 85, 149, 0.28); }
.btn-primary:hover { background: #0464ab; box-shadow: 0 14px 36px rgba(1, 85, 149, 0.34); }
.btn-ghost { border: 1px solid var(--hairline); color: var(--ink); background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: rgba(10,13,18,0.28); }
.on-dark .btn-ghost { border-color: var(--hairline-dark); color: #fff; background: rgba(255,255,255,0.06); }
.on-dark .btn-ghost:hover { border-color: rgba(255,255,255,0.42); }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,0.22); }
.btn-light:hover { background: var(--porcelain); }

.text-link {
  color: var(--ocean); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.text-link::after { content: '›'; font-size: 1.15em; transition: transform 0.3s var(--ease); }
.text-link:hover::after { transform: translateX(3px); }
.on-dark .text-link { color: var(--sky); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  height: 56px;
  display: flex; align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled, .nav.solid {
  background: rgba(10, 13, 18, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.nav-inner {
  width: min(1240px, 100% - 44px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav-links a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.012em;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease;
  padding-block: 6px;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-cta {
  font-size: 0.8rem; font-weight: 500;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.25s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(255, 255, 255, 0.26); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-burger span { width: 20px; height: 1.6px; background: #fff; transition: transform 0.3s var(--ease), opacity 0.3s ease; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10, 13, 18, 0.94);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 34px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: #fff; font-size: 2rem; font-weight: 600; letter-spacing: -0.02em;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a.active { color: var(--sky); }

body.menu-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(78deg, rgba(6, 15, 24, 0.66) 0%, rgba(6, 15, 24, 0.38) 36%, rgba(6, 15, 24, 0.04) 66%),
    linear-gradient(to bottom, rgba(6, 15, 24, 0.36) 0%, rgba(6, 15, 24, 0.02) 38%, rgba(6, 15, 24, 0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(1240px, 100% - var(--gutter) * 2);
  margin: 0 auto;
  padding-bottom: clamp(64px, 9vw, 120px);
}
.hero-content .display { color: #fff; max-width: 12ch; text-wrap: balance; }
.hero-content .eyebrow { color: rgba(255, 255, 255, 0.88); }
.hero-content .lede { color: rgba(255, 255, 255, 0.85); margin-top: 22px; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-short { min-height: 74svh; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------- Stats band ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif); font-weight: 500; font-style: normal;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1; letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: lining-nums;
}
.stat-num sup { font-size: 0.45em; vertical-align: 0.75em; color: var(--ocean); }
.stat-label { margin-top: 12px; font-size: 0.92rem; color: var(--quiet); letter-spacing: 0.01em; }
.on-dark .stat-num { color: #fff; }
.on-dark .stat-num sup { color: var(--sky); }
.on-dark .stat-label { color: rgba(255,255,255,0.6); }

/* ---------- Card rail (horizontal scroll) ---------- */
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.rail-nav { display: flex; gap: 10px; }
.rail-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 13, 18, 0.06);
  color: var(--ink); font-size: 1.2rem;
  transition: background 0.25s ease, opacity 0.25s ease;
}
.rail-btn:hover { background: rgba(10, 13, 18, 0.12); }
.rail-btn[disabled] { opacity: 0.32; cursor: default; }
.on-dark .rail-btn { background: rgba(255,255,255,0.1); color: #fff; }
.on-dark .rail-btn:hover { background: rgba(255,255,255,0.2); }

.rail {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 26px;
  margin: -6px -6px 0;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }

.card {
  position: relative;
  flex: 0 0 min(76vw, 348px);
  aspect-ratio: 4 / 5.1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: 0 8px 26px rgba(10, 13, 18, 0.1);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(10, 13, 18, 0.18); }
.card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover img { transform: scale(1.045); }
.card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(5, 10, 16, 0.78) 0%, rgba(5, 10, 16, 0.12) 46%, rgba(5, 10, 16, 0.06) 100%);
}
.card-body { padding: 26px; }
.card-kicker { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.85); }
.card-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.015em; margin-top: 4px; }
.card-text { margin-top: 8px; font-size: 0.93rem; line-height: 1.5; color: rgba(255, 255, 255, 0.82); }
.card-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 0.95rem; color: #fff; }
.card-link::after { content: '›'; transition: transform 0.3s var(--ease); }
.card:hover .card-link::after { transform: translateX(3px); }

/* ---------- Split editorial ---------- */
.split {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.split-media { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.4; transition: transform 1.4s var(--ease); }
.split-media.landscape img { aspect-ratio: 5 / 4; }
.split-media:hover img { transform: scale(1.03); }
.split.flip .split-media { order: 2; }
.split .headline { text-wrap: balance; }
.split .lede { margin-top: 20px; }
.split .body-copy { margin-top: 16px; }
.split .btn, .split .text-link { margin-top: 26px; }

/* ---------- Pathway (dual doors) ---------- */
.pathways { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pathway {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; isolation: isolate;
}
.pathway img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.pathway:hover img { transform: scale(1.04); }
.pathway::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(5,10,16,0.82), rgba(5,10,16,0.05) 55%); }
.pathway-body { padding: clamp(26px, 3.4vw, 44px); }
.pathway-body .serif-line { font-size: clamp(1.4rem, 2vw, 1.85rem); color: rgba(255,255,255,0.86); }
.pathway-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; margin-top: 6px; }
.pathway-text { max-width: 46ch; margin-top: 12px; color: rgba(255,255,255,0.8); font-size: 0.98rem; }
.pathway .btn { margin-top: 22px; align-self: flex-start; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; position: relative; padding-block: 8px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--mist); white-space: nowrap;
  letter-spacing: 0.01em;
}
.on-dark .marquee-track span { color: rgba(255,255,255,0.4); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--white); border-radius: var(--radius-md);
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--hairline);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,13,18,0.08); }
.on-ink .feature, .bg-ink .feature, .bg-ocean-ink .feature { background: rgba(255,255,255,0.05); border-color: var(--hairline-dark); }
.feature-num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.5rem; color: var(--champagne);
}
.feature h3 { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.01em; margin-top: 10px; color: var(--ink); }
.feature p { margin-top: 10px; font-size: 0.95rem; color: var(--quiet); }
.on-dark .feature h3 { color: #fff; }
.on-dark .feature p { color: rgba(255,255,255,0.65); }

/* ---------- Full-bleed statement ---------- */
.statement {
  position: relative; min-height: 78svh;
  display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.statement .hero-media img { transform: scale(1.06); }
.statement-scrim { position: absolute; inset: 0; background: rgba(6, 15, 24, 0.58); }
.statement-content { position: relative; z-index: 2; width: min(980px, 100% - var(--gutter) * 2); margin-inline: auto; text-align: center; }

/* ---------- Gallery mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 18px; }
.mosaic figure { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mosaic figure:hover img { transform: scale(1.05); }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--hairline); }
.accordion details { border-bottom: 1px solid var(--hairline); }
.accordion summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; cursor: pointer;
  font-size: 1.1rem; font-weight: 600; color: var(--ink);
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--mist);
  transition: transform 0.35s var(--ease);
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .acc-body { padding: 0 4px 26px; color: var(--quiet); max-width: 62ch; }
.acc-body a, .feature p a { color: var(--ocean); font-weight: 500; }

/* ---------- Tier cards ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  background: var(--white); border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
}
.tier.featured {
  background: var(--ocean-ink); color: #fff; border-color: transparent;
  box-shadow: 0 28px 60px rgba(2, 33, 51, 0.35);
}
.tier-place { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ocean); }
.tier.featured .tier-place { color: var(--sky); }
.tier h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.015em; margin-top: 6px; color: var(--ink); }
.tier.featured h3 { color: #fff; }
.tier-note { margin-top: 8px; font-size: 0.92rem; color: var(--quiet); }
.tier.featured .tier-note { color: rgba(255,255,255,0.68); }
.tier ul { margin-top: 22px; display: grid; gap: 12px; flex: 1; }
.tier li { display: flex; gap: 12px; font-size: 0.97rem; color: var(--graphite); align-items: baseline; }
.tier.featured li { color: rgba(255,255,255,0.88); }
.tier li::before { content: '·'; color: var(--ocean); font-weight: 700; font-size: 1.4em; line-height: 1; }
.tier.featured li::before { color: var(--sky); }
.tier .btn { margin-top: 28px; justify-content: center; }
.tier-price {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-family: var(--serif); font-weight: 500;
  font-size: 1.9rem; color: var(--ink); line-height: 1;
}
.tier-price span { font-family: var(--sans); font-size: 0.85rem; color: var(--quiet); font-weight: 400; margin-left: 6px; }
.tier.featured .tier-price { border-top-color: var(--hairline-dark); color: #fff; }
.tier.featured .tier-price span { color: rgba(255,255,255,0.6); }
.tier-choose {
  margin-top: 22px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist);
}
.tier-choose + ul { margin-top: 12px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: 0.01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
  background: var(--white);
  font: inherit; color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(1, 85, 149, 0.12);
}
.form-note { font-size: 0.85rem; color: var(--mist); }

/* ---------- Leader list ---------- */
.leaders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 44px; }
.leader { padding: 26px 0; border-bottom: 1px solid var(--hairline); }
.leader h3 { font-size: 1.15rem; font-weight: 600; color: var(--ink); letter-spacing: -0.008em; }
.leader .role { font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--ocean); margin-top: 2px; }
.leader p { margin-top: 10px; font-size: 0.93rem; color: var(--quiet); }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--hairline);
  font-size: 0.9rem; color: var(--graphite);
  background: var(--white);
}
.on-dark .chip { border-color: var(--hairline-dark); color: rgba(255,255,255,0.82); background: rgba(255,255,255,0.05); }

/* ---------- Destination cards ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dest {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; color: #fff;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.dest img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.dest:hover img { transform: scale(1.05); }
.dest::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(5,10,16,0.75), transparent 55%); }
.dest-body { padding: 26px; }
.dest-body .place { font-family: var(--serif); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.8); }
.dest-body h3 { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.015em; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .headline { text-wrap: balance; }
.cta-band .lede { margin: 18px auto 0; }
.cta-band .hero-actions { justify-content: center; margin-top: 36px; }

/* ---------- Footer ---------- */
.footer { background: var(--porcelain); border-top: 1px solid var(--hairline); font-size: 0.85rem; color: var(--quiet); }
.footer-inner { width: min(1240px, 100% - var(--gutter) * 2); margin-inline: auto; padding-block: 56px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand img { height: 26px; width: auto; filter: invert(1) brightness(0.2); }
.footer-brand p { margin-top: 16px; max-width: 34ch; }
.footer h4 { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 14px; letter-spacing: 0.01em; }
.footer li { margin-bottom: 9px; }
.footer a { transition: color 0.2s ease; }
.footer a:hover { color: var(--ink); }
.footer-base {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: 0.78rem; color: var(--mist);
}
.footer-base .serif-note { font-family: var(--serif); font-style: italic; font-size: 0.95rem; }

/* ---------- Spacing & structural utilities ---------- */
.push { margin-top: 44px; }
.push-lg { margin-top: 54px; }
.push-xl { margin-top: clamp(64px, 8vw, 90px); }
.mt-xs { margin-top: 14px; }
.mt-sm { margin-top: 20px; }
.mt-md { margin-top: 26px; }
.mt-lg { margin-top: 36px; }
.mb-md { margin-bottom: 18px; }
.mb-lg { margin-bottom: 44px; }
.headline-sm { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.shell-narrow { max-width: 820px; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.reg { font-size: 0.45em; vertical-align: super; letter-spacing: 0; }
.statement-lede { margin: 26px auto 0; }

/* ---------- Misc ---------- */
.hr-hairline { border: 0; border-top: 1px solid var(--hairline); }
.kicker-rule {
  display: flex; align-items: center; gap: 18px;
  color: var(--mist); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.kicker-rule::after { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.on-dark .kicker-rule { color: rgba(255,255,255,0.45); }
.on-dark .kicker-rule::after { background: var(--hairline-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid, .tiers, .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .split, .pathways, .leaders { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 86svh; }
}
@media (max-width: 560px) {
  .feature-grid, .tiers, .dest-grid, .form-grid, .mosaic { grid-template-columns: 1fr; }
  .mosaic .wide { grid-column: auto; }
  .card { flex-basis: 84vw; }
  body { font-size: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .card img, .split-media img, .dest img, .pathway img { transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
