/* AMAL SAREY — structural + visual rules. Tokens only, per design/DESIGN.md. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Author display rules (e.g. .appointment's flex) would silently defeat the hidden
   attribute — without this guard the closed panel still covers the page invisibly. */
[hidden] { display: none !important; }

html {
  background: var(--color-bg);
  scroll-behavior: auto; /* Lenis owns smoothing when JS runs */
}

body {
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-support);
  font-weight: 500;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- real photography fill (hero, portraits, layered, finale, footer) ---------- */
.media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.scrim--hero { background: linear-gradient(to bottom, rgba(32,31,29,0.05) 0%, rgba(32,31,29,0.1) 55%, rgba(32,31,29,0.5) 100%); }
.scrim--footer { background: linear-gradient(to bottom, rgba(32,31,29,0.35), rgba(32,31,29,0.55)); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--color-on-dark);
  padding: var(--s-2) var(--s-3);
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus {
  left: var(--s-3);
  top: var(--s-3);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ---------- docked header (hands off from the hero lockup) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* No shading behind the docked wordmark (Faysal, 2026-08-14) — chrome-less like Poeza.
     If the dark wordmark ever vanishes over a bright patch of photography, prefer a subtle
     text-shadow/scrim on the wordmark itself, never a gradient bar. */
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition-standard), transform var(--transition-standard);
  pointer-events: none;
}
.site-header.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.site-header__link { display: block; padding: var(--s-3); }
.site-header__wordmark { height: 22px; width: auto; }

/* ---------- hero lockup (real asset, as-is, centered mid-viewport) ---------- */
.hero__lockup img {
  /* TEMP FIX (2026-08-13): amal-sarey-lockup-white.svg is byte-identical to the black
     variant (dark ink, not reversed) — a bug in the brand asset export, not a redraw.
     Flagged to Faysal; remove this filter once real white-ink SVGs are regenerated. */
  filter: invert(1);
}
.hero__lockup {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Sized to stay inside the desktop video column (~100vh × 9/16 wide) and to read as
     quietly as the Poeza reference wordmark — was min(72vw, 560px), too loud. */
  width: min(64vw, 340px);
  transition: opacity var(--transition-standard), transform var(--transition-standard);
}
.hero__lockup.is-fading { opacity: 0; transform: translate(-50%, calc(-50% - 24px)); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
}
/* TRIPTYCH (Faysal trying option 02, 2026-08-14). Mobile: the vertical footage fills the
   viewport natively, wings hidden (CSS backgrounds in the media query below — phones never
   fetch them). Desktop (≥768px): the sharp video column sits centered at full height with
   two real-photography wings behind it, veiled toward paper so the moving center dominates.
   Other options: 01 letterbox = delete .hero__wing rules; 03 straight crop = also delete
   the .hero__frame ≥768px block. */
.hero__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__wing { display: none; }
@media (min-width: 768px) {
  .hero__frame {
    left: 50%;
    right: auto;
    width: auto;
    aspect-ratio: 9 / 16;
    transform: translateX(-50%);
  }
  .hero__wing {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.55) contrast(0.92);
  }
  .hero__wing--left { left: 0; background-image: url('../assets/photography/portrait-1b.webp'); }
  .hero__wing--right { right: 0; background-image: url('../assets/photography/portrait-2b.webp'); }
  .hero__wing::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-veil);
  }
}
.hero__tagline {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: var(--s-7);
  transform: translateX(-50%);
  margin: 0;
  font-size: var(--size-support);
  letter-spacing: var(--tracking-statement);
  text-transform: uppercase;
  color: var(--color-on-dark);
}
.hero__scroll-cue {
  position: absolute;
  bottom: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-on-dark);
  opacity: 0.7;
}

/* ---------- about — homepage intro (Draft B, content/copy.md, verbatim).
   Stays inside the landing's two-size grammar: a 12px caps statement whisper
   between the hero and the first kinetic shout. ---------- */
.about {
  max-width: var(--column-narrow);
  margin: 0 auto;
  padding: var(--s-9) var(--s-3);
  text-align: center;
}
.about__label {
  margin: 0 0 var(--s-4);
  font-family: var(--font-support);
  font-weight: 500;
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.about__statement {
  margin: 0 0 var(--s-5);
  font-size: var(--size-support);
  line-height: var(--lh-support-statement);
  letter-spacing: var(--tracking-statement);
  text-transform: uppercase;
  color: var(--color-text-primary);
}

/* ---------- kinetic pinned sections ---------- */
.kinetic {
  position: relative;
  height: 300vh;
}
.kinetic__track {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-3);
  padding: 0 var(--s-3);
  overflow: hidden;
}
.kinetic__line {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--size-display);
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  color: var(--color-text-strong);
}
.kinetic__line em { font-style: italic; }
.kinetic__line--a { text-align: left; }
.kinetic__line--b { text-align: center; }
.kinetic__line--c { text-align: right; }

.kinetic .word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

/* ---------- editorial portrait pair ---------- */
.portrait-pair {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-8) var(--s-3);
  max-width: var(--container-max);
  margin: 0 auto;
}
.portrait-pair__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface);
}

/* ---------- presence grid + CTA ---------- */
.presence {
  padding: var(--s-8) var(--s-3);
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}
.presence__grid {
  list-style: none;
  margin: 0 0 var(--s-7);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
.presence__tile {
  min-height: 180px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.cta {
  display: inline-block;
  position: relative;
  font-family: var(--font-support);
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-strong);
  padding-bottom: 4px;
  transition: opacity var(--transition-standard);
}
.cta:hover, .cta:focus-visible { opacity: 0.6; }
/* Invisible hit-area extension so the text-only CTA meets the 44px touch-target minimum
   without changing its visual size. */
.cta::after {
  content: '';
  position: absolute;
  inset: -14px -10px;
}

/* ---------- layered frames composition ---------- */
.layered {
  position: relative;
  height: 300vh;
}
.layered__track {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
/* Inset, not full-bleed (deviation from blueprint §6 — Faysal 2026-08-18): Poeza keeps
   the page's white visible around the grainy backdrop; --layered-inset is that margin. */
.layered__backdrop {
  position: absolute;
  inset: var(--layered-inset);
  overflow: hidden;
}
/* Concentric frames, regularized Poeza rhythm (Faysal 2026-08-18): each layer is the
   previous one inset by exactly --layered-gap-y top+bottom and --layered-gap-x left+
   right — so every step, backdrop included, shows the identical margin per axis.
   Sizing comes from inset, not width/aspect; the scale() only animates the reveal. */
.layered__frame {
  position: absolute;
  overflow: hidden;
  transform: scale(0.4);
  opacity: 0;
  will-change: transform, opacity;
}
.layered__frame--1 {
  inset: calc(var(--layered-inset) + var(--layered-gap-y))
         calc(var(--layered-inset) + var(--layered-gap-x));
}
.layered__frame--2 {
  inset: calc(var(--layered-inset) + 2 * var(--layered-gap-y))
         calc(var(--layered-inset) + 2 * var(--layered-gap-x));
}
.layered__frame--3 {
  inset: calc(var(--layered-inset) + 3 * var(--layered-gap-y))
         calc(var(--layered-inset) + 3 * var(--layered-gap-x));
}
/* ≥768px serves native-landscape (AI-extended) sources via <picture>, which want
   default centering; below that the portrait originals crop to the frame, so anchor
   the crop where the subject is (faces sit high in frames 2/3). */
@media (max-width: 767px) {
  .layered__backdrop img { object-position: 50% 40%; }
  .layered__frame--2 img { object-position: 50% 15%; }
  .layered__frame--3 img { object-position: 50% 10%; }
}
/* Portrait tablets crop the landscape sources into near-square frames; the frame-2
   model stands at ~62% of her extended canvas, so anchor there to keep her centered. */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .layered__frame--2 img { object-position: 62% 50%; }
}

/* ---------- finale — type-only breathing room (photo removed 2026-08-15: three
   full-bleed image sections ran back to back; the bare page IS the pause) ---------- */
.finale {
  position: relative;
  height: 200vh; /* shorter pin than the 300vh statements: one line, one breath */
}
.finale__track {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--s-3);
}
.finale .word {
  display: inline-block;
  will-change: transform, opacity, filter;
}
.finale__line {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--size-serif-moment);
  color: var(--color-text-strong);
  letter-spacing: var(--tracking-display);
}

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  text-align: center;
  padding: var(--s-3);
}
.footer__statement {
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  font-size: var(--size-support);
  line-height: var(--lh-support-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-on-dark);
}
.cta--footer { position: relative; z-index: 2; color: var(--color-on-dark); border-bottom-color: var(--color-on-dark); }
.scroll-top {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-support);
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-on-dark);
  opacity: 0.7;
  padding: var(--s-2);
  min-height: 44px;
  min-width: 44px;
  transition: opacity var(--transition-standard);
}
.scroll-top:hover, .scroll-top:focus-visible { opacity: 1; }

/* ---------- footer nav link ---------- */
.nav-link {
  display: inline-block;
  padding: var(--s-3) var(--s-2);
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-strong);
  text-decoration: none;
  transition: opacity var(--transition-standard);
}
.nav-link:hover, .nav-link:focus-visible { opacity: 0.6; }
.nav-link--footer { position: relative; z-index: 2; color: var(--color-on-dark); }

/* ---------- shared overlay chrome (appointment panel + menu) ---------- */
.overlay-close {
  position: fixed;
  top: var(--s-3);
  right: var(--s-3);
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-support);
  font-weight: 500;
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-strong);
  transition: opacity var(--transition-standard);
}
.overlay-close:hover, .overlay-close:focus-visible { opacity: 0.6; }

/* ---------- appointment panel — Direction A "The Note" (Faysal, 2026-08-15):
   the panel IS the WhatsApp message composing itself; a serif sentence fills in
   as the client chooses. Copy = Draft D in content/copy.md, awaiting Amal. ---------- */
.appointment {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-bg);
  overflow-y: auto;
  display: flex;
  opacity: 0;
  transition: opacity var(--transition-standard);
}
.appointment.is-open { opacity: 1; }
/* A closing overlay keeps painting for its 400ms fade; without this it would swallow
   clicks meant for the page (or the panel a menu link just opened) beneath it. */
.appointment:not(.is-open), .menu:not(.is-open) { pointer-events: none; }
.appointment__inner {
  margin: auto;
  width: 100%;
  max-width: 900px;
  padding: var(--s-7) var(--s-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
}
.appointment__label {
  margin: 0;
  font-family: var(--font-support);
  font-weight: 500;
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.appointment__sentence {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--size-serif-moment);
  line-height: 1.35;
  letter-spacing: var(--tracking-display);
  color: var(--color-text-strong);
}
.appointment__slot { font-style: italic; }
.appointment__slot.is-empty {
  display: inline-block;
  min-width: 3.2em;
  border-bottom: 1px solid var(--color-text-muted);
  color: transparent;
}
.appointment__rows {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.appointment__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0 var(--s-3);
}
.appointment__q {
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-right: var(--s-2);
}
/* Anchors the visually-hidden radio to its own label (not the panel's corner), so
   focusing one scrolls the panel to the right place. */
.appointment__option { position: relative; }
.appointment__option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.appointment__option span {
  display: inline-block;
  padding: var(--s-3) var(--s-2); /* ≥44px effective tap target at 12px type */
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  position: relative;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: color var(--transition-standard);
}
/* "The Underline" (Faysal, 2026-08-18): a resting hairline marks every answer as
   clickable — the same signal as the site's CTA; selection turns it full ink.
   Drawn as a pseudo so it hugs the text while the padded ≥44px tap target stays. */
.appointment__option span::after {
  content: "";
  position: absolute;
  left: var(--s-2);
  right: var(--s-2);
  bottom: calc(var(--s-3) - 7px);
  height: 1px;
  background: var(--color-line-hairline);
  transition: background-color var(--transition-standard);
}
.appointment__option span:hover { color: var(--color-text-strong); }
.appointment__option input:checked + span {
  color: var(--color-text-strong);
}
.appointment__option input:checked + span::after {
  background: var(--color-text-strong);
}
.appointment__option input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.appointment__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

/* ---------- menu — "The Index Overlay" (Faysal, 2026-08-15): one MENU word opens a
   full-screen paper overlay; destinations set like the kinetic statements. ---------- */
.menu-toggle {
  position: fixed;
  top: var(--s-3);
  right: var(--s-3);
  z-index: 90;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-support);
  font-weight: 500;
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-strong);
  transition: opacity var(--transition-standard), color var(--transition-standard);
}
.menu-toggle:hover, .menu-toggle:focus-visible { opacity: 0.6; }
/* Phone: the hero video runs dark behind the corner while it is in view (JS toggles
   the class only when motion is allowed; the reduced-motion poster is light). */
@media (max-width: 767px) {
  .menu-toggle.is-over-hero { color: var(--color-on-dark); }
}
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-bg);
  overflow-y: auto;
  display: flex;
  opacity: 0;
  transition: opacity var(--transition-standard);
}
.menu.is-open { opacity: 1; }
.menu__inner {
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding: var(--s-7) var(--s-3) calc(var(--s-7) + var(--s-6));
}
.menu__link {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 1.5rem + 6vw, 7rem);
  line-height: 1.05;
  letter-spacing: var(--tracking-display);
  color: var(--color-text-strong);
  text-decoration: none;
  transition: opacity var(--transition-standard);
}
.menu__link:hover, .menu__link:focus-visible { opacity: 0.6; }
/* Word-by-word blur reveal — the same grammar as the kinetic statements. */
.menu__link .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  transition: opacity 0.6s var(--ease-out-cubic), transform 0.6s var(--ease-out-cubic), filter 0.6s var(--ease-out-cubic);
}
.menu.is-open .menu__link .word { opacity: 1; transform: none; filter: none; }
.menu.is-open .menu__link--a .word:nth-child(1) { transition-delay: 0.05s; }
.menu.is-open .menu__link--a .word:nth-child(2) { transition-delay: 0.12s; }
.menu.is-open .menu__link--b .word:nth-child(1) { transition-delay: 0.19s; }
.menu.is-open .menu__link--b .word:nth-child(2) { transition-delay: 0.26s; }
.menu.is-open .menu__link--c .word:nth-child(1) { transition-delay: 0.33s; }
.menu__link--a { text-align: left; }
.menu__link--b { text-align: center; }
.menu__link--b em { font-style: italic; }
.menu__link--c { text-align: right; font-style: italic; }
.menu__foot {
  position: fixed;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
button.cta {
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-text-strong);
  padding: 0 0 4px;
  cursor: pointer;
  font-weight: 500;
}
.appointment__alt {
  display: inline-block;
  padding: var(--s-2);
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: opacity var(--transition-standard);
}
.appointment__alt:hover, .appointment__alt:focus-visible { opacity: 0.6; }

/* ---------- maison page (long-form editorial; Draft A verbatim) ---------- */
/* Absolute, not fixed: on a reading page the wordmark scrolls away with the text —
   a fixed stencil wordmark collides with the serif column (caught on screenshot). */
.site-header--page { position: absolute; opacity: 1; transform: none; pointer-events: auto; }
.maison {
  max-width: var(--column-narrow);
  margin: 0 auto;
  padding: calc(96px + var(--s-6)) var(--s-3) var(--s-8);
}
.maison__label {
  margin: 0 0 var(--s-2);
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}
.maison__title {
  margin: 0 0 var(--s-6);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--size-serif-moment);
  line-height: 1.1;
  letter-spacing: var(--tracking-display);
  color: var(--color-text-strong);
  text-align: center;
}
.maison__title em { font-style: italic; }
.maison__body p {
  margin: 0 0 var(--s-4);
  font-family: var(--font-display);
  font-size: var(--size-body);
  line-height: var(--lh-body);
  color: var(--color-text-primary);
}
.maison__figure { margin: var(--s-6) 0; }
.maison__figure img { width: 100%; height: auto; }
.maison__cta {
  text-align: center;
  margin-top: var(--s-6);
}
.page-footer {
  padding: var(--s-7) var(--s-3);
  text-align: center;
}
.page-footer__link {
  display: inline-block;
  padding: var(--s-2);
  font-size: var(--size-support);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: opacity var(--transition-standard);
}
.page-footer__link:hover, .page-footer__link:focus-visible { opacity: 0.6; }

/* ---------- breakpoints ---------- */
/* Blueprint §4: pinned scroll-jack sections shorten to 200vh on mobile (less screen to
   fill); .layered gets the same treatment. JS reads offsets live, no retune needed. */
@media (max-width: 767px) {
  .kinetic, .layered { height: 200vh; }
}
/* Phone: display type steps down to the reference's mobile scale, sized so the longest
   unbreakable word ("APPOINTMENT.") never clips (see tokens.css). */
@media (max-width: 600px) {
  .kinetic__line { font-size: var(--size-display-phone); }
}
@media (min-width: 768px) {
  .presence__grid { grid-template-columns: repeat(5, 1fr); }
  .portrait-pair { flex-direction: row; padding: var(--s-8); }
  .portrait-pair__frame { width: var(--column-narrow); flex: none; }
  .kinetic__track, .portrait-pair, .presence { padding-left: var(--s-8); padding-right: var(--s-8); }
}

/* ---------- reduced motion: pins collapse, everything is simply visible ---------- */
@media (prefers-reduced-motion: reduce) {
  .appointment, .menu, .menu__link, .menu__link .word { transition: none; }
  .menu__link .word { opacity: 1; transform: none; filter: none; }
  .kinetic { height: auto; }
  .kinetic__track { position: relative; height: auto; padding: var(--s-8) var(--s-3); }
  .kinetic .word { transform: none !important; opacity: 1 !important; filter: none !important; }
  .finale { height: auto; }
  .finale__track { position: relative; height: 100vh; }
  .finale .word { transform: none !important; opacity: 1 !important; filter: none !important; }
  .layered { height: auto; }
  /* Full viewport, not 70vh: the vh-anchored frames (--layered-base) need the same
     canvas as the pinned track or the outer frame overflows. */
  .layered__track { position: relative; height: 100vh; }
  .layered__frame { opacity: 1 !important; transform: translate(-50%, -50%) scale(1) !important; }
}
