/* Christ First CEO, One-Offer Profit Kit
   Palette drawn from the brand photography:
   ivory #FBF6EE, sand #F3E8D8, blush #F6D9C8, ink #14222B,
   sea #0C5E65, deep sea #0A3B44, gold #C8912F, lit gold #E4B357 */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/CormorantGaramond.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/CormorantGaramond-Italic.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/Jost.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Parisienne';
  src: url('../assets/fonts/Parisienne.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ivory: #FBF6EE;
  --sand: #F3E8D8;
  --blush: #F6D9C8;
  --ink: #14222B;
  --ink-soft: #3C4C55;
  --sea: #0C5E65;
  --sea-deep: #0A3B44;
  --mist: #A7C4C4;
  --gold: #C8912F;
  --gold-hi: #E4B357;
  --hairline: rgba(20, 34, 43, 0.16);
  --display: 'Cormorant Garamond', Georgia, serif;
  --utility: 'Jost', 'Avenir Next', sans-serif;
  --script: 'Parisienne', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--utility);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 6vw; }

/* ---------- Shared type ---------- */
.kicker {
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.005em;
}
h2.display { font-size: clamp(34px, 4.4vw, 56px); margin-top: 18px; }
h2.display em { font-style: italic; }

.btn {
  display: inline-block;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  color: #17242B;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(200, 145, 47, 0.35); }
.btn-light { background: var(--ivory); color: var(--ink); }
.btn-light:hover { box-shadow: 0 14px 34px rgba(9, 20, 28, 0.35); }

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Fixed ocean ---------- */
#ocean, #oceanFallback {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#oceanFallback { object-fit: cover; display: none; }
#oceanFallback.show { display: block; }

/* ---------- Entry veil ---------- */
#veil {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 1.3s ease;
}
#veil.gone { opacity: 0; pointer-events: none; }

.veil-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 95% at 50% 42%, rgba(8, 15, 22, 0.04), rgba(8, 15, 22, 0.42) 88%);
  pointer-events: none;
}
.veil-inner { position: relative; padding: 0 8vw; }

.veil-line {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--ivory);
  margin-top: 6px;
  text-shadow: 0 2px 22px rgba(9, 18, 26, 0.55);
}

.entry-cross {
  display: inline-block;
  margin: 0 0 10px;
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 0;
  border-radius: 50%;
  padding: 26px;
  position: relative;
}
.entry-cross::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(228, 179, 87, 0.0);
  transition: transform 0.5s ease, border-color 0.5s ease;
}
.entry-cross:hover::before, .entry-cross:focus-visible::before { transform: scale(1.12); border-color: rgba(228, 179, 87, 0.75); }
.entry-cross svg {
  width: 86px;
  height: 122px;
  filter: drop-shadow(0 0 24px rgba(255, 217, 138, 0.30));
}
.entry-cross .cross-halo {
  animation: haloPulse 3.2s ease-in-out infinite;
  transform-origin: 50% 46%;
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1.05); }
}

.veil-step {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(10, 18, 26, 0.28);
  border: 1px solid rgba(251, 246, 238, 0.75);
  padding: 15px 38px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(3px);
  text-shadow: 0 1px 12px rgba(9, 18, 26, 0.4);
}
.veil-step:hover { background: rgba(251, 246, 238, 0.92); color: var(--ink); text-shadow: none; }

.veil-hint {
  margin-top: 20px;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.55);
  text-shadow: 0 1px 10px rgba(9, 18, 26, 0.5);
}

.veil-skip {
  position: absolute;
  right: 30px;
  bottom: 26px;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.78);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.25s ease;
  text-shadow: 0 1px 10px rgba(9, 18, 26, 0.5);
}
.veil-skip:hover { color: var(--ivory); }

/* ---------- Sound toggle ---------- */
.sound-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(10, 22, 30, 0.42);
  border: 1px solid rgba(251, 246, 238, 0.32);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  backdrop-filter: blur(6px);
}
.sound-toggle.show { opacity: 1; pointer-events: auto; }

/* ---------- Site shell ---------- */
.site { position: relative; z-index: 1; }

.chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}
.topbar {
  background: var(--sea-deep);
  color: rgba(251, 246, 238, 0.92);
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  height: 38px;
  line-height: 38px;
  padding: 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 1.2s ease 0.3s, margin-top 0.45s ease;
}
.topbar.tucked { margin-top: -38px; }
.topbar b { color: var(--gold-hi); font-weight: 600; }
body.open .topbar { opacity: 1; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4vw;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 1.2s ease 0.5s, transform 1.2s ease 0.5s, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}
body.open .nav { opacity: 1; transform: none; }
.nav .brand, .nav-links a { text-shadow: 0 1px 14px rgba(9, 18, 26, 0.45); }
.nav.solid .brand, .nav.solid .nav-links a { text-shadow: none; }
.nav .brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  color: #17242B;
  padding: 13px 25px;
  border-radius: 2px;
  white-space: nowrap;
  transition: filter 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { filter: brightness(1.07); transform: translateY(-1px); }
.nav.solid {
  background: rgba(251, 246, 238, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--hairline);
  backdrop-filter: blur(10px);
}


/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--ivory);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg, rgba(9, 18, 26, 0.44) 0%, rgba(9, 18, 26, 0.10) 46%, rgba(9, 18, 26, 0) 62%),
    linear-gradient(to top, rgba(9, 18, 26, 0.34), rgba(9, 18, 26, 0) 26%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 6vw 90px;
  opacity: 0;
  transform: translateY(30px);
}
.hero .kicker { color: var(--gold-hi); text-shadow: 0 1px 14px rgba(9, 18, 26, 0.5); }
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1.02;
  margin-top: 22px;
  text-shadow: 0 2px 30px rgba(9, 18, 26, 0.45);
}
.hero h1 span { display: block; }
.hero h1 .l2 { font-style: italic; color: var(--gold-hi); }
.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(251, 246, 238, 0.94);
  text-shadow: 0 1px 16px rgba(9, 18, 26, 0.5);
}
.price-row { display: flex; align-items: center; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.price {
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  color: rgba(251, 246, 238, 0.95);
  text-shadow: 0 1px 14px rgba(9, 18, 26, 0.5);
}
.hero .micro {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.72);
}
.scroll-cue {
  opacity: 0;
  transition: opacity 1.2s ease 0.5s;
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.75);
  padding-bottom: 34px;
}
.scroll-cue::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, rgba(251, 246, 238, 0.85), rgba(251, 246, 238, 0));
  animation: cueDrop 2.2s ease-in-out infinite;
}
body.dawn .scroll-cue { opacity: 1; }
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}

/* ---------- Everything below the hero sits on solid ground ---------- */
.pagebody { position: relative; background: var(--ivory); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 60px 0 64px; border-bottom: 1px solid var(--hairline); }
.mq-track { display: flex; gap: 18px; width: max-content; animation: mq 52s linear infinite; }
.mq-track img {
  width: clamp(210px, 22vw, 320px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
}
@keyframes mq { to { transform: translateX(-50%); } }

/* ---------- Problem ---------- */
.problem { padding: 130px 0 120px; }
.problem-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.problem .lead {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.9vw, 38px);
  line-height: 1.28;
  margin-top: 20px;
}
.problem .support {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 52ch;
}
.arch {
  width: 100%;
  max-width: 440px;
  justify-self: end;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 999px 999px 3px 3px;
}

/* ---------- What is inside ---------- */
.inside { background: var(--sand); padding: 130px 0 140px; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.inside-rows { margin-top: 70px; border-top: 1px solid var(--hairline); }
.row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  padding: 40px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.row .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.row h3 {
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.row p { margin-top: 10px; font-size: 17px; font-weight: 300; color: var(--ink-soft); max-width: 64ch; }

/* ---------- Scripture photo band ---------- */
.scripture {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    linear-gradient(rgba(16, 27, 35, 0.38), rgba(16, 27, 35, 0.52)),
    url('../assets/img/fallback-ocean.webp');
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  padding: 140px 6vw;
}
.scripture .kicker { color: var(--gold-hi); }
.scripture blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(27px, 3.6vw, 46px);
  line-height: 1.32;
  max-width: 27ch;
  margin: 26px auto 0;
}
.attribution {
  display: block;
  margin-top: 26px;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mist);
}

/* ---------- Proof ---------- */
.proof {
  background: linear-gradient(165deg, #0C4B55 0%, var(--sea-deep) 70%, #08303A 100%);
  color: var(--ivory);
  padding: 140px 0;
}
.proof .kicker { color: var(--gold-hi); }
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 32px;
  margin-top: 78px;
  text-align: center;
}
.metric .val {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1;
}
.metric.gold .val { color: var(--gold-hi); }
.metric .lab {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mist);
}
.proof-line {
  margin: 74px auto 0;
  max-width: 48ch;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(19px, 2vw, 24px);
  color: rgba(251, 246, 238, 0.88);
}

/* ---------- Delivery ribbon ---------- */
.delivery {
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  color: #17242B;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 5vw;
}

/* ---------- Fit ---------- */
.fit { padding: 130px 0; }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 64px;
}
.card { border-radius: 5px; padding: 48px 44px; }
.card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 27px;
}
.card ul { list-style: none; margin-top: 26px; }
.card li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-size: 16.5px;
  font-weight: 300;
}
.card-yes { background: var(--sea-deep); color: var(--ivory); }
.card-yes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold-hi);
  font-family: var(--utility);
  font-weight: 600;
}
.card-not { border: 1px solid var(--hairline); color: var(--ink); }
.card-not li { color: var(--ink-soft); }
.card-not li::before {
  content: '\00B7';
  position: absolute;
  left: 6px;
  top: 8px;
  font-size: 26px;
  color: var(--gold);
}

/* ---------- Verse pull ---------- */
.verse {
  background: var(--blush);
  text-align: center;
  padding: 120px 6vw;
}
.verse blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.34;
  max-width: 30ch;
  margin: 0 auto;
}
.verse .attribution { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-section { padding: 130px 0 140px; }
.faq { max-width: 760px; margin: 56px auto 0; border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  font-size: 17px;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 26px;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 4px 26px; font-weight: 300; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Final call ---------- */
.buy {
  position: relative;
  background-image:
    linear-gradient(rgba(251, 246, 238, 0.32), rgba(246, 217, 200, 0.55)),
    url('../assets/img/wildflower-dawn.webp');
  background-size: cover;
  background-position: center;
  padding: 150px 6vw;
  display: flex;
  justify-content: center;
}
.buy-card {
  background: rgba(251, 246, 238, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: clamp(48px, 6vw, 76px);
  max-width: 660px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(20, 34, 43, 0.22);
}
.buy-recap {
  margin: 18px auto 0;
  max-width: 46ch;
  font-size: 15.5px;
  font-weight: 300;
  color: var(--ink-soft);
}
.buy-price {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  margin-top: 26px;
}
.buy-card .btn { margin-top: 30px; }
.guarantee {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Sticky mobile buy bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  text-align: center;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #17242B;
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  padding: 17px 16px calc(17px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 26px rgba(20, 34, 43, 0.28);
  transform: translateY(110%);
  transition: transform 0.4s ease;
}
.mobile-cta.show { transform: translateY(0); }
@media (max-width: 820px) {
  .mobile-cta { display: block; }
  .sound-toggle { bottom: 86px; right: 16px; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--sand);
  border-top: 1px solid rgba(200, 145, 47, 0.4);
  text-align: center;
  padding: 88px 6vw 64px;
  color: var(--ink-soft);
}
footer .flogo { width: 176px; margin: 0 auto; }
footer .tag {
  font-family: var(--script);
  font-size: clamp(25px, 2.7vw, 31px);
  color: var(--sea);
  margin-top: 28px;
}
footer .fine {
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(60, 76, 85, 0.72);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .arch { justify-self: center; max-width: 420px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .topbar { font-size: 10px; letter-spacing: 0.1em; }
  .tb-hide { display: none; }
  .nav { padding: 16px 5vw; }
  .nav .brand { font-size: 16px; }
  .nav-cta { padding: 11px 16px; font-size: 11px; letter-spacing: 0.16em; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(9, 18, 26, 0.34), rgba(9, 18, 26, 0.06) 52%),
      linear-gradient(94deg, rgba(9, 18, 26, 0.40) 0%, rgba(9, 18, 26, 0.10) 55%, rgba(9, 18, 26, 0) 72%),
      linear-gradient(to top, rgba(9, 18, 26, 0.34), rgba(9, 18, 26, 0) 26%);
  }
  .row { grid-template-columns: 64px 1fr; }
  .row .num { font-size: 32px; }
  .mq-track img { width: 46vw; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mq-track { animation: none; }
  .entry-cross .cross-halo { animation: none; }
  .scroll-cue::after { animation: none; }
  .reveal { transition: none; }
  .hero-inner { transition: none; }
}
