/* =================================================================
   fivesixfourteen — styles
   -----------------------------------------------------------------
   Structure:
     1. Design tokens (colours, type, spacing)  ← edit palette here
     2. Base / reset
     3. Layout helpers
     4. Reveal animation (IntersectionObserver hooks)
     5. Components, top to bottom (hero → footer)
     6. Responsive (mobile-first; stacking handled in media queries)
     7. prefers-reduced-motion fallbacks
   ================================================================= */

/* 1 · DESIGN TOKENS ------------------------------------------------ */
:root {
  /* Palette — change the brand here */
  --white:      #FFFFFF;
  --ink:        #1A1A1A;   /* near-black text */
  --ink-soft:   #5A5A5A;   /* muted text */
  --tomato:     #E63329;   /* bright, slightly warm red accent */
  --tomato-dk:  #C42017;   /* pressed / hover state */
  --line:       #ECECEC;   /* hairline borders */
  --placeholder-bg: #F4F4F4;
  --paper:      #F0EAE4;   /* warm studio off-white — matches the footage */

  /* Typography */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale (clamp: min, preferred, max) */
  --fs-hero:   clamp(2.75rem, 8vw, 6rem);
  --fs-h2:     clamp(2rem, 5vw, 3.75rem);
  --fs-lead:   clamp(1.35rem, 3vw, 2.1rem);
  --fs-body:   clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-small:  0.85rem;

  /* Film chapters — one shared heading + sub-line scale so every
     content section (chapters 2–5) matches. The sub is clearly
     smaller than the heading. */
  --fs-film-title: clamp(1.9rem, 3.6vw, 2.8rem);
  --fs-film-sub:   clamp(1.15rem, 1.7vw, 1.45rem);

  /* Spacing rhythm */
  --section-pad: clamp(6rem, 16vh, 13rem);
  --wrap-max: 1120px;
  --wrap-pad: clamp(1.25rem, 5vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --header-h: 68px;
}

/* 2 · BASE / RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Offset anchor jumps so section tops aren't hidden under the fixed header. */
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; }

.accent { color: var(--tomato); }

/* 3 · LAYOUT HELPERS ----------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-pad);
}

/* --- Site header / nav --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* Always see-through — no background, ever. */
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  font-family: var(--serif);   /* same face as the hero headline */
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 16px rgba(240, 234, 228, 0.85); /* legible over any clip */
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__link:hover { color: var(--tomato); }
.nav__link--cta {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.nav__link--cta:hover { background: var(--ink); color: var(--white); }

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 22px; height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

section { position: relative; }

/* 4 · REVEAL ANIMATION --------------------------------------------- */
/* Elements with .reveal start hidden + nudged down. JS adds
   .is-visible when they scroll into view (see app.js). */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 5 · COMPONENTS --------------------------------------------------- */

/* --- Scroll progress rail --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;                 /* width set by JS */
  background: var(--tomato);
  transition: width 0.1s linear;
}


/* --- Image / asset placeholders --- */
.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--placeholder-bg);
  border: 1px dashed #D8D8D8;
  border-radius: 16px;
  color: var(--ink-soft);
  overflow: hidden;
}
.placeholder__label {
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
  opacity: 0.75;
}
/* Hero tomato: a large solid red circle so layout reads pre-asset. */
.placeholder--tomato {
  width: clamp(180px, 34vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  background: var(--tomato);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 80px rgba(230, 51, 41, 0.28);
}
.placeholder--tomato .placeholder__label { color: rgba(255,255,255,0.9); }
.placeholder--ingredient {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
}
.placeholder--dish {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-block: clamp(2rem, 5vw, 3.5rem);
}
.placeholder--card { aspect-ratio: 4 / 3; border-radius: 12px; }

/* --- Full-bleed film chapters (scroll-scrubbed video) --- */
.film {
  position: relative;
  min-height: 100svh;
  padding: 0;
}
/* JS adds .is-scrub once the clip's duration is known: the height beyond
   100svh is the scroll distance the clip is scrubbed across. Without JS /
   reduced motion the chapter stays one full-screen panel (its first frame). */
.film.is-scrub {
  height: 230vh;
  min-height: 0;
}
/* Paper "breath" between chapters — a calm gap you scroll through.
   Does NOT affect the clips themselves (they stay full-bleed). */
.film + .film { margin-top: clamp(6rem, 20vh, 18rem); }
.film__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.film__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* full-bleed: fill the screen edge-to-edge */
  background: var(--paper);  /* matches the graded footage while loading */
}

/* Default caption: centred in the lower band (the hero title card).
   Top + bottom fade to --paper so chapters blend seamlessly into each
   other and into the page (kept full-bleed left/right — no side gutters). */
.film__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(240, 234, 228, 1) 0%,
      rgba(240, 234, 228, 1) 5%,
      rgba(240, 234, 228, 0) 28%),
    linear-gradient(to top,
      rgba(240, 234, 228, 1) 0%,
      rgba(240, 234, 228, 1) 4%,
      rgba(240, 234, 228, 0.5) 17%,
      rgba(240, 234, 228, 0) 38%);
}
.film__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 var(--wrap-pad) clamp(7rem, 18vh, 11rem);
}
.film__headline {
  font-size: var(--fs-hero);
  max-width: 16ch;
}
.film__title {
  font-size: var(--fs-film-title);
  line-height: 1.1;
  max-width: 20ch;
}

/* Left-anchored caption variant — sits beside the action (content
   chapters such as the pasta-making clip). */
.film--left .film__scrim {
  background:
    linear-gradient(to bottom,
      rgba(240, 234, 228, 1) 0%,
      rgba(240, 234, 228, 1) 5%,
      rgba(240, 234, 228, 0) 28%),
    linear-gradient(to top,
      rgba(240, 234, 228, 1) 0%,
      rgba(240, 234, 228, 1) 4%,
      rgba(240, 234, 228, 0) 30%),
    linear-gradient(to right,
      rgba(240, 234, 228, 0.94) 0%,
      rgba(240, 234, 228, 0.55) 24%,
      rgba(240, 234, 228, 0) 56%);
}
.film--left .film__caption {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  max-width: min(46%, 540px);
  padding: var(--header-h) clamp(1.5rem, 5vw, 4rem) 0 clamp(2rem, 7vw, 7rem);
}

/* Wider cap for the long smash line. */
.film__title--wide { max-width: 26ch; }

/* Long left-aligned statement (smash): same size as other headings,
   just a touch more width for the long line. */
.film__title--statement {
  max-width: 22ch;
}

/* Cycling caption (chapter 2): phrases stack and cross-fade with scroll. */
.film__cycle {
  display: grid;
}
.film__phrase {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  max-width: 28ch;
}
/* Fallback (no JS / reduced motion): show the first phrase. */
.film__phrase:first-child { opacity: 1; }

/* Cycle item heading (chapter 2) — shares the film heading scale. */
.film__cycle-title {
  font-size: var(--fs-film-title);
  line-height: 1.1;
  margin: 0;
}

/* Intro copy lines on the fork finale: lighter & wider than the climax.
   Serif to match the rest of the site's display copy. */
.film__phrase--lead {
  font-family: var(--serif);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.25;
  max-width: 24ch;
  align-self: center;
}

/* Supporting sub-line beneath a chapter heading (chapters 2–4): a calmer
   sans line, clearly smaller than the heading. One shared rule keeps the
   cycle sub-line (.film__cycle-sub) and the static sub-line (.film__sub)
   identical across every section. Inherits left alignment from .film--left. */
.film__sub,
.film__cycle-sub {
  margin: clamp(0.6rem, 1.6vh, 1rem) 0 0;
  font-family: var(--sans);
  font-size: var(--fs-film-sub);
  font-weight: 400;
  line-height: 1.4;
  max-width: 30ch;
  color: var(--ink-soft);
}

/* Small section label (e.g. "About us") above a caption. */
.film__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: clamp(0.9rem, 2vh, 1.5rem);
  text-shadow: 0 1px 16px rgba(240, 234, 228, 0.85);
}

/* Contact CTA buttons under the fork caption. */
.film__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: clamp(1.5rem, 4vh, 2.25rem);
}

/* Slight blur on the top & bottom edges of every chapter — softens the
   joins and hides any residual difference between clips. The blur fades
   out toward the centre; captions (z-index 2) stay sharp above it. */
.film__sticky::before,
.film__sticky::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 15%;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.film__sticky::before {
  top: 0;
  -webkit-mask: linear-gradient(to bottom, #000 0%, #000 30%, transparent 100%);
          mask: linear-gradient(to bottom, #000 0%, #000 30%, transparent 100%);
}
.film__sticky::after {
  bottom: 0;
  -webkit-mask: linear-gradient(to top, #000 0%, #000 30%, transparent 100%);
          mask: linear-gradient(to top, #000 0%, #000 30%, transparent 100%);
}

/* Scroll-down cue */
.scroll-cue {
  position: absolute;
  bottom: clamp(1.5rem, 5vh, 3rem);
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.scroll-cue__text {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}
.scroll-cue__line {
  width: 1px;
  height: 48px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
/* A tomato dot travels down the line, looping. */
.scroll-cue__line::after {
  content: "";
  position: absolute;
  left: -1.5px; top: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--tomato);
  animation: cueDrop 1.8s var(--ease) infinite;
}
@keyframes cueDrop {
  0%   { transform: translateY(-8px); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(48px); opacity: 0; }
}

/* --- 2 · The turn --- */
.turn { padding-block: var(--section-pad); }
.turn__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2.5rem, 6vw, 4rem);
}
.turn__subline {
  font-family: var(--serif);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.3;
  max-width: 24ch;
}
.turn__subline .accent { display: block; margin-top: 0.4em; }

/* --- 3–5 · Beats (alternating two-column) --- */
.beat { padding-block: var(--section-pad); }
.beat__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
/* Reversed beat puts the image first on desktop. */
.beat__grid--reverse .beat__text { order: 2; }
.beat__grid--reverse .placeholder { order: 1; }

.beat__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 1.1rem;
}
.beat__heading {
  font-size: var(--fs-h2);
  margin-bottom: 1.4rem;
}
.beat__body {
  font-size: var(--fs-body);
  color: var(--ink-soft);
  max-width: 46ch;
}

/* --- 6 · Featured work --- */
.work { padding-block: var(--section-pad); }
.section-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head__title { font-size: var(--fs-h2); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.card { display: flex; flex-direction: column; }
.card__title {
  font-size: 1.4rem;
  margin-top: 1.1rem;
}
.card__meta {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tomato);
  margin-top: 0.4rem;
}
.card__result {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

/* --- 7 · About --- */
.about { padding-block: var(--section-pad); }
.about__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.about__heading { font-size: var(--fs-h2); margin-bottom: 1.6rem; }
.about__body { font-size: var(--fs-body); color: var(--ink-soft); }
.about__kicker {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--ink);
  margin-top: 1.8rem;
}

/* --- 8 · The smash --- */
.smash {
  padding-block: var(--section-pad);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.smash__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CSS-drawn splatter placeholder. Sits behind the tagline. */
.splatter {
  position: relative;
  width: clamp(220px, 40vw, 420px);
  aspect-ratio: 1;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  /* Starts tiny + invisible; JS adds .splatter--burst to "smash". */
  transform: scale(0.2);
  opacity: 0;
}
.splatter--burst { animation: splat 0.55s var(--ease) forwards; }
@keyframes splat {
  0%   { transform: scale(0.2) rotate(-8deg); opacity: 0; }
  60%  { transform: scale(1.12) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.splatter__blob {
  position: absolute;
  background: var(--tomato);
  border-radius: 50%;
}
.splatter__blob--core { inset: 28%; }
.splatter__blob--1 { width: 22%; height: 22%; top: 6%;  left: 18%; }
.splatter__blob--2 { width: 16%; height: 16%; top: 14%; right: 10%; }
.splatter__blob--3 { width: 28%; height: 28%; bottom: 8%; right: 22%; }
.splatter__blob--4 { width: 14%; height: 14%; bottom: 16%; left: 12%; }
.splatter__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 1rem;
}

.smash__tagline {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  max-width: 18ch;
  /* Smash-text items start hidden; JS reveals after the splat. */
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.smash__follow {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5rem;
  max-width: 30ch;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease) 0.12s, transform 0.6s var(--ease) 0.12s;
}
.smash.is-smashed .smash__tagline,
.smash.is-smashed .smash__follow {
  opacity: 1;
  transform: none;
}

/* --- 9 · CTA --- */
.cta { padding-block: var(--section-pad); }
.cta__inner { text-align: center; }
.cta__heading { font-size: var(--fs-h2); }
.cta__sub {
  font-size: var(--fs-body);
  color: var(--ink-soft);
  margin-top: 1rem;
}
.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 1.05rem 2rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--primary {
  background: var(--tomato);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(230, 51, 41, 0.28);
}
.btn--primary:hover {
  background: var(--tomato-dk);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__brand { font-family: var(--serif); font-size: 1.15rem; }
.footer__note { font-size: var(--fs-small); color: var(--ink-soft); }
.footer__links { display: flex; gap: 1.25rem; }
.footer__link {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer__link:hover { color: var(--tomato); }

/* --- Legal pages (privacy, etc.) --- */
.legal {
  max-width: 760px;
  margin-inline: auto;
  padding-block: calc(var(--header-h) + 4rem) 5rem;
}
.legal__title {
  font-size: var(--fs-h2);
  margin-bottom: 0.5rem;
}
.legal__updated {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin-bottom: 3rem;
}
.legal h2 {
  font-size: 1.6rem;
  margin-top: 2.75rem;
  margin-bottom: 0.75rem;
}
.legal p { margin-bottom: 1.1rem; }
.legal ul {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--tomato); text-decoration: underline; }
.legal a:hover { color: var(--tomato-dk); }

/* 6 · RESPONSIVE --------------------------------------------------- */
@media (max-width: 768px) {
  /* Film captions drop into the lower band, full-width. */
  .film__caption {
    padding: 0 var(--wrap-pad) clamp(5rem, 16vh, 8rem);
  }
  .film--left .film__caption {
    max-width: none;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding-top: 0;
  }

  /* Header collapses to a hamburger + slide-down menu. */
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem var(--wrap-pad) 1rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__link--cta {
    border: none;
    border-radius: 0;
    padding: 0.9rem 0;
  }
  .nav__link--cta:hover { background: none; color: var(--tomato); }

  /* Stack all two-column layouts into a single column. */
  .beat__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .beat__grid--reverse .beat__text,
  .beat__grid--reverse .placeholder { order: initial; }
  .beat__text { text-align: center; }
  .beat__body { margin-inline: auto; }

  .cards { grid-template-columns: 1fr; }

  /* Buttons stack full-width and easy to tap. */
  .cta__buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* 7 · REDUCED MOTION ----------------------------------------------- */
/* Honour the OS setting: drop heavy motion, show static end-states. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* Reveal items appear immediately, no transform. */
  .reveal { opacity: 1; transform: none; transition: none; }

  /* Splatter + smash text shown statically. */
  .splatter { opacity: 1; transform: none; animation: none; }
  .smash__tagline, .smash__follow { opacity: 1; transform: none; transition: none; }

  /* Kill looping cue + progress transitions. */
  .scroll-cue__line::after { animation: none; }
  .scroll-progress__bar { transition: none; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
