/* =====================================================================
   Andy Bharadwaj — "Continuum" personal portfolio
   Production stylesheet. Recreated pixel-for-pixel from the approved
   design "04 Continuum.dc.html" (design handoff bundle).
   Tokens, typography, spacing, motion and copy are all authoritative.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; }

/* ---------- Design tokens: Light (default) ---------- */
:root {
  --bg:#ECE5D6; --bg2:#E5DCC9; --ink:#1B1915; --ink2:#4A463C; --muted:#857F6F;
  --line:rgba(27,25,21,0.14); --line-soft:rgba(27,25,21,0.08); --accent:#9A3B2E;
  --card:#EFE8D8; --card-line:rgba(27,25,21,0.10); --chip:#ECE5D6;
  --nav:rgba(236,229,214,0.82); --shadow:rgba(27,25,21,0.20);

  --ease: cubic-bezier(0.16,1,0.3,1);
  --grad: linear-gradient(90deg,#8FA4C4,#D69A3E);
}

/* ---------- Design tokens: Dark ---------- */
body[data-theme="dark"] {
  --bg:#17140F; --bg2:#1E1A13; --ink:#EFE8DA; --ink2:#C6BCA6; --muted:#8B8271;
  --line:rgba(239,232,218,0.14); --line-soft:rgba(239,232,218,0.07); --accent:#D98A5C;
  --card:#221D15; --card-line:rgba(239,232,218,0.09); --chip:#221D15;
  --nav:rgba(23,20,15,0.82); --shadow:rgba(0,0,0,0.55);
}

html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Spectral', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  transition: background .6s ease, color .6s ease;
}

a { color: var(--accent); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { opacity: 0.72; }
::selection { background: rgba(154,59,46,0.20); color: var(--ink); }

img { display: block; }

/* ---------- Shared helpers ---------- */
.ink    { color: var(--ink); }
.accent { color: var(--accent); }
.muted  { color: var(--muted); }
.mono   { font-family: 'JetBrains Mono', monospace; }

.kicker {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent);
}

/* Section eyebrow (number + label) */
.eyebrow { display: flex; align-items: baseline; gap: 14px; }
.eyebrow__num {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 300;
  font-size: 26px; color: var(--accent);
}
.eyebrow__label {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Motion keyframes ---------- */
@keyframes c-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes c-rise  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* Hero on-load entrance */
[data-load] { animation: c-rise 1s var(--ease) both; }

/* Scroll reveals — JS arms these via .reveal-armed on <html> once an
   IntersectionObserver is running. Without JS (or with reduced motion)
   the content is always fully visible; the end state is never hidden. */
[data-reveal] { opacity: 1; transform: none; }
html.reveal-armed [data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.reveal-armed [data-reveal].is-in { opacity: 1; transform: none; }

/* =====================================================================
   Scroll progress bar
   ===================================================================== */
.progress-track {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  z-index: 130; background: var(--line-soft);
}
.progress-fill {
  height: 100%; width: 100%; transform: scaleX(0); transform-origin: 0 50%;
  background: var(--grad); will-change: transform;
}

/* =====================================================================
   Top nav
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px,4vw,56px);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav__wordmark {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
}
.nav__cluster { display: flex; align-items: center; gap: clamp(14px,2.4vw,30px); }
.nav__link {
  color: var(--ink2); font-family: 'Archivo', sans-serif; font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.nav__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--bg);
  font-family: 'Archivo', sans-serif; font-size: 11.5px; letter-spacing: 0.06em;
  font-weight: 600; padding: 9px 16px; border-radius: 999px;
}
.nav__divider { width: 1px; height: 20px; background: var(--line); }

/* Theme toggle */
.toggle {
  position: relative; display: inline-flex; align-items: center;
  width: 54px; height: 28px; padding: 0;
  background: var(--chip); border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer; transition: background .5s ease, border-color .2s ease;
}
.toggle__icon { position: relative; z-index: 2; flex: 1; display: grid; place-items: center; }
[data-sun], [data-moon] { color: var(--muted); transition: color .35s ease; }
body:not([data-theme="dark"]) [data-sun] { color: var(--bg); }
body[data-theme="dark"] [data-moon] { color: var(--bg); }
.toggle__knob {
  position: absolute; top: 2px; left: 2px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,0.28);
  transform: translateX(var(--knob-x, 0px));
  transition: transform .42s var(--ease), background .5s ease;
}
body[data-theme="dark"] .toggle { --knob-x: 26px; }

/* =====================================================================
   Reading index (fixed bottom-left)
   ===================================================================== */
.reading-index {
  position: fixed; left: clamp(20px,4vw,56px); bottom: 20px; z-index: 120;
  display: flex; align-items: center; gap: 11px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.04em; color: var(--muted);
}
.reading-index__num { color: var(--accent); }
.reading-index__rule { width: 26px; height: 1px; background: var(--line); }
.reading-index__name {
  font-family: 'Archivo', sans-serif; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 10px;
}

/* =====================================================================
   Buttons / link pills
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.04em; padding: 15px 24px; border-radius: 999px;
}
.btn--solid   { background: var(--ink); color: var(--bg); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--line); }

.link-pill {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  padding: 13px 22px; border-radius: 999px; background: var(--ink); color: var(--bg);
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em; text-decoration: none;
}
.link-pill__sub { opacity: 0.6; }

/* =====================================================================
   COVER
   ===================================================================== */
.cover {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px clamp(24px,6vw,90px) 80px;
}
.cover__grid {
  width: 100%; max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1.18fr 0.82fr; gap: clamp(30px,5vw,76px); align-items: center;
}
.cover__kicker { margin-bottom: 28px; }
.cover__title {
  margin: 0; font-family: 'Newsreader', serif; font-weight: 300;
  font-size: clamp(52px,9vw,128px); line-height: 0.92; letter-spacing: -0.022em; color: var(--ink);
}
.cover__tagline {
  margin: 30px 0 0; font-family: 'Newsreader', serif; font-style: italic; font-weight: 300;
  font-size: clamp(20px,2.5vw,31px); line-height: 1.28; color: var(--ink2); max-width: 26ch;
}
.cover__lede {
  margin: 22px 0 0; font-size: clamp(16px,1.4vw,18.5px); line-height: 1.7;
  color: var(--ink2); max-width: 48ch;
}
.cover__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.cover__photo { position: relative; }
.cover__photo-frame {
  position: relative; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden;
  background: var(--bg2); box-shadow: 0 26px 64px var(--shadow);
}
.cover__photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.cover__cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.cover__cue-arrow { animation: c-float 2.2s ease-in-out infinite; }

/* =====================================================================
   THESIS
   ===================================================================== */
.thesis {
  padding: clamp(70px,10vw,140px) clamp(24px,6vw,90px);
  border-top: 1px solid var(--line);
}
.thesis__wrap { max-width: 940px; margin: 0 auto; }
.thesis__statement {
  margin: 0; font-family: 'Newsreader', serif; font-weight: 300;
  font-size: clamp(24px,3vw,40px); line-height: 1.4; letter-spacing: -0.005em;
  color: var(--ink); text-wrap: pretty;
}
.thesis__dropcap {
  float: left; font-family: 'Newsreader', serif; font-weight: 400;
  font-size: 5.2em; line-height: 0.76; padding: 8px 16px 0 0; color: var(--accent);
}

/* =====================================================================
   ASCEND — pinned scroll-scrub
   ===================================================================== */
.ascend {
  position: relative; height: 620vh; background: var(--bg2);
  border-top: 1px solid var(--line);
}
.ascend__stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.ascend__grid {
  position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(24px,6vw,90px); display: grid;
  grid-template-columns: 1fr 0.82fr; align-items: center; gap: clamp(24px,5vw,72px);
}
.ascend__col { position: relative; }

/* Beats — absolutely stacked, cross-fade one at a time */
.beats { position: relative; min-height: 288px; }
.beat { position: absolute; inset: 0; }
.beat__counter {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent);
  margin-bottom: 16px;
}
.beat__title {
  margin: 0 0 16px; font-family: 'Newsreader', serif; font-weight: 300;
  font-size: clamp(30px,4vw,52px); line-height: 1.04; letter-spacing: -0.02em; color: var(--ink);
}
.beat__body {
  margin: 0; font-size: clamp(16px,1.4vw,18px); line-height: 1.7; color: var(--ink2);
}
.beat__body--w42 { max-width: 42ch; }
.beat__body--w40 { max-width: 40ch; }

/* Ascend eyebrow uses italic number 26px — match section eyebrow already. */
.ascend__col .eyebrow { margin-bottom: 30px; }

.ascend__stats {
  margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.stat__value { font-family: 'Newsreader', serif; font-weight: 300; font-size: 28px; color: var(--ink); }
.stat__label {
  font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-top: 3px;
}

/* The phone */
.ascend__phone-col { position: relative; display: flex; justify-content: center; align-items: center; }
.phone { position: relative; width: clamp(262px,25.5vw,302px); will-change: transform, opacity; }
.phone__frame {
  position: relative; border-radius: clamp(46px,4.8vw,56px);
  background: linear-gradient(135deg,#6a6d73 0%,#2a2c30 14%,#141517 34%,#0a0b0d 52%,#181a1d 68%,#33363b 84%,#5a5d63 100%);
  padding: clamp(8px,0.85vw,10px);
  box-shadow: 0 46px 100px var(--shadow), 0 10px 26px rgba(0,0,0,0.32),
              inset 0 0 0 1px rgba(255,255,255,0.28), inset 0 -1px 2px rgba(0,0,0,0.6);
}
.phone__screen {
  position: relative; width: 100%; aspect-ratio: 390/844;
  border-radius: clamp(39px,4.1vw,47px); overflow: hidden; background: #000;
}
.phone__shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; opacity: 0;
}
.phone__glare {
  position: absolute; inset: 0; z-index: 25; pointer-events: none;
  background: linear-gradient(128deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 12%, transparent 30%, transparent 100%);
}
.phone__island {
  position: absolute; top: clamp(10px,1.1vw,13px); left: 50%; transform: translateX(-50%);
  width: 34%; max-width: 108px; height: clamp(23px,2.4vw,28px);
  background: #000; border-radius: 999px; z-index: 30;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
/* Side buttons */
.phone__btn { position: absolute; border-radius: 2px; background: linear-gradient(180deg,#54575c,#1a1b1e); }
.phone__btn--silent   { left: -2.5px; top: 19%; width: 3px;   height: 3.4%; box-shadow: inset 1px 0 1px rgba(255,255,255,0.35); }
.phone__btn--vol-up   { left: -3px;   top: 27%; width: 3.5px; height: 8%;   box-shadow: inset 1px 0 1px rgba(255,255,255,0.35); }
.phone__btn--vol-down { left: -3px;   top: 37%; width: 3.5px; height: 8%;   box-shadow: inset 1px 0 1px rgba(255,255,255,0.35); }
.phone__btn--power    { right: -3px;  top: 30%; width: 3.5px; height: 11%;  box-shadow: inset -1px 0 1px rgba(255,255,255,0.35); }
/* Progress rail */
.phone__rail {
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  height: 170px; width: 3px; border-radius: 999px; background: var(--line);
}
.phone__rail-fill {
  width: 100%; height: 100%; border-radius: 999px;
  background: linear-gradient(180deg,#8FA4C4,#D69A3E);
  transform: scaleY(0); transform-origin: 0 0;
}

/* =====================================================================
   AT SCALE (Docusign)
   ===================================================================== */
.scale {
  padding: clamp(80px,11vw,150px) clamp(24px,6vw,90px);
  border-top: 1px solid var(--line);
}
.scale__wrap { max-width: 1160px; margin: 0 auto; }
.scale .eyebrow { margin-bottom: 36px; }
.scale__grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(28px,5vw,72px); align-items: start;
}
.scale__title {
  margin: 0 0 24px; font-family: 'Newsreader', serif; font-weight: 300;
  font-size: clamp(30px,4.4vw,56px); line-height: 1.06; letter-spacing: -0.018em; color: var(--ink);
}
.scale__para {
  margin: 0 0 18px; font-size: clamp(16px,1.4vw,18.5px); line-height: 1.75; color: var(--ink2);
}
.scale__para--last { margin: 0; }

/* Cards row */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 36px; }
.card { position: relative; border-radius: 12px; background: var(--card); }
.card__big {
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: clamp(30px,3.6vw,44px); line-height: 1; color: var(--accent);
}
.card__label {
  margin-top: 10px; font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink2); line-height: 1.35;
}
.card--stat { padding: 20px 18px 16px; border: 1px solid var(--line); border-top: 2.5px solid var(--accent); }
.card--patent {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px 18px 0; border: 1.5px solid var(--accent); text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.card--patent:hover { transform: translateY(-3px); box-shadow: 0 14px 30px var(--shadow); }
.card__cta {
  margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 0; border-top: 1px solid var(--line);
  font-family: 'Archivo', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
}
.card__arrow { display: inline-block; transition: transform .3s ease; }
.card--patent:hover .card__arrow { transform: translate(2px,-2px); }

/* Metrics column */
.metrics { display: flex; flex-direction: column; }
.metric { padding: 20px 0; border-top: 1px solid var(--line); }
.metric--last { border-bottom: 1px solid var(--line); }
.metric__value {
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: clamp(38px,4vw,54px); line-height: 1; color: var(--ink);
}
.metric__label {
  margin-top: 7px; font-family: 'Archivo', sans-serif; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/* =====================================================================
   THE ARC (timeline)
   ===================================================================== */
.arc {
  padding: clamp(80px,11vw,150px) clamp(24px,6vw,90px);
  background: var(--bg2); border-top: 1px solid var(--line);
}
.arc__wrap { max-width: 940px; margin: 0 auto; }
.arc .eyebrow { margin-bottom: 48px; }
.arc__list { display: flex; flex-direction: column; }
.arc__row {
  display: grid; grid-template-columns: 118px 1fr; gap: clamp(16px,3vw,40px);
  padding: 26px 0; border-top: 1px solid var(--line);
}
.arc__row--last { border-bottom: 1px solid var(--line); }
.arc__date {
  font-family: 'Archivo', sans-serif; font-size: 12px; letter-spacing: 0.08em;
  color: var(--accent); padding-top: 6px;
}
.arc__title {
  margin: 0 0 6px; font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(22px,2.6vw,30px); color: var(--ink);
}
.arc__body { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink2); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact {
  padding: clamp(90px,12vw,170px) clamp(24px,6vw,90px) 70px;
  border-top: 1px solid var(--line);
}
.contact__wrap { max-width: 940px; margin: 0 auto; }
.contact .eyebrow { margin-bottom: 40px; }
.contact__title {
  margin: 0 0 24px; font-family: 'Newsreader', serif; font-weight: 300;
  font-size: clamp(40px,7vw,92px); line-height: 0.98; letter-spacing: -0.02em; color: var(--ink);
}
.contact__lede {
  margin: 0 0 42px; font-family: 'Newsreader', serif; font-style: italic; font-weight: 300;
  font-size: clamp(19px,2.3vw,27px); line-height: 1.4; color: var(--ink2); max-width: 38ch;
}
.contact__block { margin-top: 4px; display: flex; flex-direction: column; align-items: center; }
.contact__group-label {
  font-family: 'Archivo', sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-align: center;
}
.contact__block .contact__group-label:first-child { margin-bottom: 14px; }
.contact__sep { width: 44px; height: 1px; background: var(--line); margin: 30px 0; }
.contact__sep + .contact__group-label { margin-bottom: 16px; }

.mail-link {
  font-family: 'Newsreader', serif; font-weight: 300; font-size: clamp(20px,2.4vw,30px);
  letter-spacing: -0.012em; line-height: 1; color: var(--ink); text-decoration: none;
  background-image: linear-gradient(var(--accent),var(--accent));
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .45s var(--ease), color .3s ease;
}
.mail-link:hover { background-size: 100% 1px; color: var(--accent); }

.channels { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 11px; }
.chan {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink2);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.chan:hover { color: var(--bg); background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

.footer {
  margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line);
  text-align: center; font-family: 'Archivo', sans-serif; font-size: 11px;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 820px) {
  .cover__grid { grid-template-columns: 1fr; gap: 34px; }
  .cover__photo { max-width: 340px; margin: 0 auto; }
  .scale__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .nav { padding-left: 16px; padding-right: 16px; }
  .nav__link { display: none; }
  .reading-index { display: none; }

  /* Ascend: a pinned side-by-side scrub can't fit a real phone beside the text at
     phone widths (it forced a shrunken, clipped phone and the beat text bled into
     the stats). So un-pin the whole section on mobile and let it flow: the beats
     read as a normal stack and the FULL desktop-size iPhone sits BELOW the text,
     between the beats and the stats. */
  .ascend { height: auto; }
  .ascend__stage { position: static; height: auto; overflow: visible; display: block; }
  .ascend__grid {
    grid-template-columns: 1fr; gap: 36px; align-items: stretch;
    padding-top: clamp(72px, 16vw, 120px); padding-bottom: clamp(72px, 16vw, 120px);
  }
  /* Flatten the text column (display:contents) so its children become grid items
     and the phone can be ordered between the beats and the stats. */
  .ascend__col { display: contents; }
  .ascend__col > .eyebrow { order: 1; }
  .beats { order: 2; position: static; min-height: 0; }
  .beat { position: static; inset: auto; opacity: 1 !important; transform: none !important; }
  .beat + .beat { margin-top: 40px; }
  .beat__body { max-width: none; }
  .ascend__stats { order: 4; margin-top: 0; }
  /* Scope the grid ordering + gap reset to the Ascend pill only, so the Docusign
     pill in the Work section keeps its normal top margin (was hugging the cards). */
  .ascend .link-pill { order: 5; margin-top: 0; justify-self: start; }

  /* Phone: a sticky mini-scrub below the text. The full desktop-size iPhone eases
     in, pins, and cycles through ALL 4 screens as you scroll this region (driven by
     JS `updateMobilePhone`). Motion is the point — it's decoupled from the beats.
     Sticky `top` centers the ~548px-tall phone in the viewport (no dead space below). */
  .ascend__phone-col { order: 3; height: 260vh; display: block; }
  .phone { position: sticky; top: calc(50vh - 274px); margin: 0 auto; }

  .arc__row { grid-template-columns: 78px 1fr; gap: 16px; }
}

/* ---- Short-viewport (laptop) cover: scale the hero so content never collides
   with the fixed reading index / scroll cue. Big monitors (>=880px tall) keep the
   full-size hero untouched. Two-column layout only (min-width:821px). ---- */
@media (min-width: 821px) and (max-height: 860px) {
  .cover { padding-top: 88px; padding-bottom: 92px; }
  .cover__kicker { margin-bottom: 18px; }
  .cover__title { font-size: clamp(46px, 6vw, 90px); line-height: 0.95; }
  .cover__tagline { font-size: clamp(19px, 1.9vw, 25px); margin-top: 18px; }
  .cover__lede { margin-top: 14px; line-height: 1.55; font-size: clamp(15px, 1.2vw, 16.5px); }
  .cover__actions { margin-top: 22px; }
}
@media (min-width: 821px) and (max-height: 740px) {
  .cover { padding-top: 78px; padding-bottom: 88px; }
  .cover__title { font-size: clamp(42px, 5vw, 74px); }
  .cover__lede { font-size: clamp(14px, 1.1vw, 16px); }
}

/* =====================================================================
   Reduced motion — show everything statically
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-load] { animation: none !important; opacity: 1 !important; transform: none !important; }
  html.reveal-armed [data-reveal],
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cover__cue-arrow { animation: none !important; }
  body { transition: none !important; }
}
