/* ============================================================
   STOdesk — cinematic editorial
   Narrative arc: golden savanna film → daylight editorial →
   dusk film → pricing light → green portal band → charcoal close.
   Type: Fraunces (display, optical sizing) + Poppins (UI/body).
   ============================================================ */

:root {
  --charcoal: #2B2B28;
  --ink: #232320;
  --green: #1E3A2F;
  --green-deep: #16291F;
  --brass: #B08D4A;
  --brass-ink: #846628;   /* brass for text on light grounds — 4.85:1 on ivory */
  --brass-light: #D9B97A;
  --ivory: #F7F3EA;
  --paper: #FBF8F1;
  --sand: #E4D9BE;
  --white: #FFFFFF;
  --ink-70: rgba(43,43,40,.72);
  --ink-45: rgba(43,43,40,.62);
  --line: rgba(43,43,40,.14);
  --line-soft: rgba(43,43,40,.08);
  --iv-80: rgba(247,243,234,.84);
  --iv-55: rgba(247,243,234,.55);
  --iv-line: rgba(247,243,234,.16);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Poppins', -apple-system, Helvetica, sans-serif;
  --ease: cubic-bezier(.22,.61,.21,1);
  --max: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--brass); color: var(--white); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(22px, 4vw, 56px); }

/* ---------- type voices ---------- */
.display {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: "opsz" 110;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.display em, h2 em { font-style: italic; font-weight: 340; color: var(--brass-ink); }
.film em, .dark-ed em, .final em, .tier.featured em { color: var(--brass-light); }
h2 {
  font-family: var(--serif); font-weight: 420; line-height: 1.08;
  letter-spacing: -0.012em; font-size: clamp(34px, 4.4vw, 58px);
  text-wrap: balance;
}
h3 { font-size: 18px; font-weight: 600; line-height: 1.35; }
.lede { font-size: clamp(16.5px, 1.45vw, 19px); color: var(--ink-70); max-width: 58ch; }

.kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass-ink); margin-bottom: 26px;
}
.kicker::before { content: ''; width: 44px; height: 1px; background: var(--brass); }
.dark-ed .kicker, .film .kicker { color: var(--brass-light); }

.secnum {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(60px, 7vw, 104px); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px var(--brass);
  opacity: .85; display: block; margin-bottom: 8px;
}

/* ---------- chrome ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(22px, 3.4vw, 48px);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.solid {
  background: rgba(247,243,234,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-top: 12px; padding-bottom: 12px;
}
.brand img { height: 54px; width: auto; transition: filter .35s; }
.site-header:not(.solid) .brand img { filter: brightness(0) invert(1) opacity(.96); }
.hnav { display: flex; align-items: center; gap: 30px; }
.hnav a:not(.btn) {
  font-size: 13px; font-weight: 500; letter-spacing: .04em; text-decoration: none;
  color: var(--iv-80); transition: color .25s;
}
.site-header.solid .hnav a:not(.btn) { color: var(--ink-70); }
.hnav a:not(.btn):hover { color: var(--brass-light); }
.site-header.solid .hnav a:not(.btn):hover { color: var(--charcoal); }

.btn {
  display: inline-block; cursor: pointer; text-decoration: none; border: 1px solid transparent;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; letter-spacing: .015em;
  padding: 14px 30px; border-radius: 999px;
  transition: transform .22s var(--ease), background .22s, color .22s, border-color .22s, box-shadow .22s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn-dark { background: var(--charcoal); color: var(--ivory); }
.btn-dark:hover { background: var(--green); box-shadow: 0 18px 38px -18px rgba(30,58,47,.6); }
.site-header:not(.solid) .btn-dark { background: var(--ivory); color: var(--charcoal); }
.site-header:not(.solid) .btn-dark:hover { background: var(--white); }
.btn-ivory { background: var(--ivory); color: var(--charcoal); }
.btn-ivory:hover { background: var(--white); }
.btn-line { border-color: rgba(247,243,234,.45); color: var(--ivory); background: transparent; }
.btn-line:hover { border-color: var(--ivory); }
.btn-line.on-light { border-color: var(--ink-45); color: var(--charcoal); }
.btn-line.on-light:hover { border-color: var(--charcoal); }

/* side chapter rail */
.rail {
  position: fixed; left: 26px; top: 50%; transform: translateY(-50%);
  z-index: 80; display: flex; flex-direction: column; gap: 18px;
}
.rail a {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink-45);
  text-indent: -9999px; overflow: hidden; transition: transform .25s, background .25s;
}
.rail a.active { background: var(--brass); transform: scale(1.5); }
.on-dark-rail .rail a:not(.active) { background: var(--iv-55); }

/* ---------- film sections (canvas scrub) ---------- */
.film { position: relative; }
.film .sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.film canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.film .grade { position: absolute; inset: 0; pointer-events: none; }
#film-hero { height: 520vh; background: #1a140d; }
#film-hero .grade {
  background: linear-gradient(180deg, rgba(26,20,13,.48) 0%, rgba(26,20,13,.18) 30%, rgba(26,20,13,.30) 62%, rgba(26,20,13,.80) 100%);
}
#film-form { height: 420vh; background: #181816; }
#film-form .grade { background: radial-gradient(120% 90% at 50% 50%, rgba(24,24,22,0) 40%, rgba(24,24,22,.72) 100%); }

.film .overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  text-align: center; padding: 0 6vw; pointer-events: none;
}
.film .overlay::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 48% at 50% 50%, rgba(26,20,13,.52), rgba(26,20,13,0) 74%);
}
.film .line {
  grid-area: 1 / 1; opacity: 0; will-change: opacity, transform;
  color: var(--white); position: relative;
  text-shadow: 0 2px 26px rgba(26,20,13,.5);
}
.film .line .display { font-size: clamp(44px, 6.6vw, 96px); text-wrap: balance; }
.film .line .sub {
  font-family: var(--sans); font-size: clamp(15px, 1.5vw, 19px);
  color: var(--iv-80); max-width: 52ch; margin: 26px auto 0;
}
.film .line .overline {
  font-size: 12px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ivory); display: block; margin-bottom: 22px;
}
#film-form .line .display { font-size: clamp(36px, 5vw, 76px); }

.hero-foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 clamp(22px, 3.4vw, 48px) 30px;
  color: var(--iv-55); font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
}
.scroll-hint { display: flex; flex-direction: column; align-items: center; gap: 10px; transition: opacity .4s; }
.scroll-hint::after {
  content: ''; width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--brass-light), transparent);
  animation: drip 2.1s var(--ease) infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero-ctas { position: absolute; left: 50%; bottom: 12vh; transform: translateX(-50%); display: flex; gap: 14px; z-index: 6; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility 0s .5s; pointer-events: none; }
.hero-ctas.show { opacity: 1; visibility: visible; transition: opacity .5s var(--ease), visibility 0s; pointer-events: auto; }

/* ---------- marquee ---------- */
.marquee { background: var(--green); color: var(--sand); overflow: hidden; padding: 16px 0; border-block: 1px solid var(--green-deep); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: slide 36s linear infinite; }
.marquee span { white-space: nowrap; font-size: 12.5px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; padding: 0 34px; opacity: .92; }
.marquee b { color: var(--brass-light); font-weight: 600; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- editorial sections ---------- */
section.ed { padding: clamp(90px, 11vw, 150px) 0; position: relative; }
.ed-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.ed-head { grid-column: 1 / 8; }
.ed-aside { grid-column: 9 / 13; align-self: end; }
.ed-aside .lede { font-size: 15.5px; }

/* audiences */
.aud { margin-top: clamp(50px, 6vw, 90px); display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.aud-card { border-top: 1px solid var(--charcoal); padding-top: 30px; }
.aud-card.a1 { grid-column: 1 / 5; }
.aud-card.a2 { grid-column: 5 / 9; }
.aud-card.a3 { grid-column: 9 / 13; }
.aud-card .idx { font-family: var(--serif); font-style: italic; color: var(--brass-ink); font-size: 15px; display: block; margin-bottom: 18px; }
.aud-card h3 { font-family: var(--serif); font-weight: 480; font-size: 23px; margin-bottom: 12px; }
.aud-card p { color: var(--ink-70); font-size: 15px; }

/* photo bands */
.photo-band { position: relative; height: 72vh; overflow: hidden; }
.photo-band img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.photo-band figcaption {
  position: absolute; left: clamp(22px, 3.4vw, 48px); bottom: 26px;
  color: var(--ivory); font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  display: flex; gap: 12px; align-items: center;
}
.photo-band figcaption::before { content: ''; width: 36px; height: 1px; background: var(--brass-light); }
.photo-band .scrim { position: absolute; inset: 0; background: linear-gradient(200deg, rgba(43,43,40,0) 55%, rgba(43,43,40,.55) 100%); }

/* features — editorial rows */
.frows { margin-top: clamp(50px, 6vw, 80px); border-top: 1px solid var(--line); }
.frow {
  display: grid; grid-template-columns: 80px 1fr 1.25fr; gap: 30px;
  padding: 38px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.frow .fnum { font-family: var(--serif); font-style: italic; color: var(--brass-ink); font-size: 19px; }
.dark-ed .frow .fnum { color: var(--brass-light); }
.frow h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 2vw, 26px); }
.frow p { color: var(--ink-70); font-size: 15.5px; max-width: 56ch; }
.frow .flabel { display: block; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 8px; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; margin-top: clamp(56px, 7vw, 90px); }
.stat { border-left: 1px solid var(--line); padding-left: 26px; }
.stat-num { font-family: var(--serif); font-weight: 350; font-size: clamp(44px, 4.6vw, 64px); line-height: 1; color: var(--green); }
.stat p { font-size: 13.5px; color: var(--ink-70); margin-top: 10px; max-width: 24ch; }

/* dark editorial (inside / after film-form) */
.dark-ed { background: #181816; color: var(--ivory); }
.dark-ed h2 { color: var(--ivory); }
.dark-ed .lede, .dark-ed p { color: var(--iv-80); }
.dark-ed .frow { border-color: var(--iv-line); }
.dark-ed .frow .flabel { color: var(--iv-55); }
.dark-ed .frow p { color: var(--iv-80); }
.dark-ed .frows { border-color: var(--iv-line); }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(28px, 4vw, 56px); margin-top: clamp(50px, 6vw, 80px); }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--line); }
.step .snum {
  position: absolute; top: -0.62em; left: 0; background: var(--ivory); padding-right: 16px;
  font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--brass-ink);
}
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-70); }

/* ---------- pricing ---------- */
#pricing { background: var(--paper); }
.toggle { display: flex; align-items: center; gap: 14px; margin: 46px 0 54px; font-size: 14px; }
.toggle .save { color: var(--brass-ink); font-weight: 600; font-size: 12.5px; letter-spacing: .04em; }
.switch { width: 50px; height: 27px; border-radius: 999px; background: var(--ink-45); border: none; position: relative; cursor: pointer; transition: background .25s; }
.switch[aria-checked="true"] { background: var(--green); }
.switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: var(--white); transition: transform .25s var(--ease); }
.switch[aria-checked="true"]::after { transform: translateX(23px); }

.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; align-items: stretch; }
.tier {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 42px 36px; display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -32px rgba(43,43,40,.35); }
.tier.featured { background: var(--green); border-color: var(--green); color: var(--ivory); }
.tier.featured .pop {
  position: absolute; top: 20px; right: 22px; color: var(--brass-light);
  font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid rgba(217,185,122,.5); padding: 5px 12px; border-radius: 999px;
}
.tier .tname { font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-ink); margin-bottom: 22px; }
.tier .price { font-family: var(--serif); font-weight: 350; font-size: 54px; line-height: 1; }
.tier .price small { font-family: var(--sans); font-size: 13.5px; font-weight: 400; color: var(--ink-45); margin-left: 4px; }
.tier.featured .price small { color: var(--iv-55); }
.tier .zar { font-size: 12.5px; color: var(--ink-45); margin-top: 8px; }
.tier.featured .zar { color: var(--iv-55); }
.tier .tfor { font-size: 14px; margin-top: 18px; color: var(--ink-70); }
.tier.featured .tfor { color: var(--iv-80); }
.tier ul { list-style: none; margin: 26px 0 34px; flex: 1; }
.tier li { padding: 9px 0 9px 28px; font-size: 14px; color: var(--ink-70); position: relative; }
.tier.featured li { color: var(--iv-80); }
.tier li::before {
  content: ''; position: absolute; left: 0; top: 15px; width: 14px; height: 8px;
  border-left: 2px solid var(--brass); border-bottom: 2px solid var(--brass); transform: rotate(-45deg);
}
.tier .btn { text-align: center; }

.hotel-band {
  margin-top: 26px; border-radius: 18px; background: var(--charcoal); color: var(--ivory);
  padding: clamp(36px, 4.5vw, 56px); display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: center;
}
.hotel-band .tname { color: var(--brass-light); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 16px; }
.hotel-band h3 { font-family: var(--serif); font-weight: 450; font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 14px; }
.hotel-band p { color: var(--iv-80); font-size: 15px; }
.hotel-band .hb-price { text-align: right; }
.hotel-band .price { font-family: var(--serif); font-size: 54px; font-weight: 350; }
.hotel-band .price small { font-size: 13.5px; font-family: var(--sans); color: var(--iv-55); }
.hotel-band .zar { color: var(--iv-55); font-size: 12.5px; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; padding: 28px 4px; font-family: var(--serif); font-weight: 500; font-size: clamp(18px, 1.8vw, 22px);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--serif); font-weight: 300; font-size: 30px; color: var(--brass-ink); transition: transform .3s var(--ease); flex-shrink: 0; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 4px 30px; color: var(--ink-70); max-width: 64ch; font-size: 15.5px; }

/* ---------- final CTA + footer ---------- */
.final { background: var(--green); color: var(--ivory); text-align: center; padding: clamp(110px, 14vw, 180px) 0; position: relative; overflow: hidden; }
.final::before {
  content: 'STO'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 46vw; line-height: 1;
  color: rgba(247,243,234,.035); pointer-events: none;
}
.final h2 { color: var(--white); font-size: clamp(38px, 5vw, 68px); max-width: 18ch; margin: 0 auto 24px; }
.final .lede { color: var(--iv-80); margin: 0 auto 44px; }
.final .hero-note { font-size: 13px; color: var(--iv-55); margin-top: 20px; }

.site-footer { background: var(--charcoal); color: var(--iv-55); padding: 70px 0 36px; font-size: 13.5px; }
.site-footer .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.site-footer img { height: 84px; filter: brightness(0) invert(1) opacity(.92); }
.f-links { display: flex; gap: 30px; }
.f-links a { text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--ivory); }
.f-note { border-top: 1px solid rgba(247,243,234,.12); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; } .reveal.d2 { transition-delay: .18s; } .reveal.d3 { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .photo-band img { transform: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .ed-head { grid-column: 1 / 13; }
  .ed-aside { grid-column: 1 / 13; margin-top: 26px; }
  .aud-card.a1, .aud-card.a2, .aud-card.a3 { grid-column: span 12; }
  .frow { grid-template-columns: 52px 1fr; }
  .frow p { grid-column: 2; }
  .rail { display: none; }
}
@media (max-width: 760px) {
  .hnav a:not(.btn) { display: none; }
  .brand img { height: 44px; }
  .hotel-band { grid-template-columns: 1fr; }
  .hotel-band .hb-price { text-align: left; }
  .photo-band { height: 54vh; }
  .film .line .sub { font-size: 14.5px; }
  .hero-foot { font-size: 10px; }
}


/* ---------- header over dark acts ---------- */
.site-header.on-dark.solid { background: rgba(24,24,22,.88); box-shadow: 0 1px 0 rgba(247,243,234,.1); }
.site-header.on-dark .brand img { filter: brightness(0) invert(1) opacity(.96); }
.site-header.on-dark .hnav a:not(.btn) { color: var(--iv-80); }
.site-header.on-dark .hnav a:not(.btn):hover { color: var(--brass-light); }
.site-header.on-dark .btn-dark { background: var(--ivory); color: var(--charcoal); }
.on-dark-rail .rail a:not(.active) { background: var(--iv-55); }

/* ---------- mobile menu ---------- */
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--ivory); margin: 5px 0; transition: background .3s; }
.site-header.solid .menu-btn span, .site-header.menu-open .menu-btn span { background: var(--charcoal); }
.mnav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--ivory); border-bottom: 1px solid var(--line);
  padding: 10px clamp(22px, 3.4vw, 48px) 22px; flex-direction: column; gap: 4px;
}
.site-header.menu-open .mnav { display: flex; }
.site-header.menu-open { background: var(--ivory); }
.mnav a { text-decoration: none; font-size: 17px; font-weight: 500; color: var(--charcoal); padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
@media (max-width: 760px) {
  .menu-btn { display: block; }
}

/* ---------- inline CTAs (mid-journey) ---------- */
.inline-cta { margin-top: clamp(48px, 6vw, 72px); display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.inline-cta .note { font-size: 13px; color: var(--ink-45); }

/* ---------- report mock ---------- */
.report-mock { margin-top: clamp(56px, 7vw, 92px); display: grid; justify-items: center; gap: 18px; }
.rm-paper {
  width: min(620px, 100%); background: var(--white); border: 1px solid var(--line);
  border-radius: 6px; padding: 38px 42px; box-shadow: 0 36px 70px -42px rgba(43,43,40,.4);
}
.rm-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-45); padding-bottom: 16px; border-bottom: 2px solid var(--brass); }
.rm-paper h4 { font-family: var(--serif); font-weight: 480; font-size: 24px; margin: 20px 0 6px; }
.rm-sub { font-size: 12.5px; color: var(--ink-45); margin-bottom: 18px; }
.rm-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.rm-row b { font-weight: 600; }
.rm-row span { color: var(--ink-45); white-space: nowrap; }
.rm-foot { display: flex; justify-content: space-between; padding-top: 16px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-45); }
.report-mock figcaption { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-45); }

/* ---------- reduced motion: films become stills ---------- */
@media (prefers-reduced-motion: reduce) {
  .film { height: 100vh !important; }
  .film .line { opacity: 0 !important; }
  .film .line:last-of-type { opacity: 1 !important; transform: none !important; }
  .hero-ctas { opacity: 1; visibility: visible; pointer-events: auto; }
  .scroll-hint { display: none; }
}
