@charset "utf-8";

/* ==========================================================================
   TRU GRAPHICS — retrospective
   System type only (SF on Apple platforms). No webfonts, no self-hosted faces,
   no external requests of any kind. Opens correctly from file:// and a server.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ground and ink. Committed monochrome: the colour on this page comes from
     the films themselves — laser magenta, cyan busts, an orange robot arm. */
  --bg:            #000000;
  --bg-raise:      #0A0A0B;
  --ink:           #FFFFFF;   /* 21:1  */
  --ink-2:         #B9B9B9;   /* 10.7:1 — body prose */
  --ink-3:         #8C8C8C;   /* 6.2:1  — meta, rails, captions */

  --red:           #E1121C;   /* 4.3:1 on black — large type and grounds only */
  --red-lift:      #FF3A42;   /* 6.0:1 — focus ring, hover */
  --bone:          #EFEFEC;   /* the type-only cards */
  --bone-ink:      #0B0B0C;
  --bone-ink-2:    #45453F;

  --line:          rgba(255, 255, 255, 0.14);
  --line-soft:     rgba(255, 255, 255, 0.07);

  /* Spacing scale — 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 96 / 128 / 160 */
  --s-4: 4px;   --s-8: 8px;    --s-12: 12px;  --s-16: 16px;  --s-24: 24px;
  --s-32: 32px; --s-48: 48px;  --s-64: 64px;  --s-96: 96px;  --s-128: 128px;
  --s-160: 160px;

  --gutter:   clamp(16px, 4vw, 48px);
  --wrap:     1240px;
  --wrap-wide: 1760px;
  --section:  clamp(84px, 11vw, 160px);
  --grid-gap: clamp(6px, 0.7vw, 10px);

  /* Type. Weight, size and tracking carry the whole hierarchy. */
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.6rem, 7.4vw, 5.5rem);
  --fs-band:    clamp(2.1rem, 6.8vw, 5rem);
  --fs-stat:    clamp(2.75rem, 5.4vw, 4.75rem);
  --fs-h2:      clamp(1.75rem, 3.6vw, 2.75rem);
  --fs-h3:      clamp(1.125rem, 1.6vw, 1.375rem);
  --fs-lead:    clamp(1.125rem, 1.5vw, 1.375rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9375rem;
  --fs-meta:    0.75rem;
  --fs-tag:     0.6875rem;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Semantic stacking order */
  --z-media: 1;
  --z-scrim: 2;
  --z-content: 3;
  --z-hit: 4;      /* the card's own click target, over its caption */
  --z-header: 50;
  --z-skip: 100;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, dl, dd, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--red-lift);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--red); color: #fff; }

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.u-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.u-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute;
  top: var(--s-8);
  left: var(--s-8);
  z-index: var(--z-skip);
  padding: 10px 16px;
  background: var(--ink);
  color: #000;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus-visible { transform: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--wide { max-width: var(--wrap-wide); }

.label {
  margin: 0;
  font-size: var(--fs-meta);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.rule {
  width: 44px;
  height: 2px;
  border: 0;
  margin: 0 0 var(--s-24);
  background: var(--red);
}

.ext { width: 0.62em; height: 0.62em; margin-left: 0.45em; vertical-align: 0.02em; }

/* --------------------------------------------------------------------------
   4. Typographic roles
   -------------------------------------------------------------------------- */
.display {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  letter-spacing: -0.011em;
  color: var(--ink);
}

.prose p {
  max-width: 62ch;
  color: var(--ink-2);
  line-height: 1.62;
  text-wrap: pretty;
}
.prose p + p { margin-top: var(--s-16); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 320ms var(--ease), border-color 320ms var(--ease);
}
.site-header.is-stuck {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-16);
  height: 64px;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wordmark { display: block; flex: none; line-height: 0; }
.wordmark img { width: auto; height: 19px; }

.site-nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}
.site-nav a {
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 180ms var(--ease);
}
.site-nav a:hover { color: var(--ink); }

/* One control that stops every film on the page — WCAG 2.2.2, in the site's
   own language rather than a browser control bar. */
.film-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  color: var(--ink-3);
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.film-switch:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.32); }
.film-switch svg { width: 9px; height: 9px; flex: none; }
.film-switch .glyph-pause { display: block; }
.film-switch .glyph-play { display: none; }
.film-switch[aria-pressed="false"] .glyph-pause { display: none; }
.film-switch[aria-pressed="false"] .glyph-play { display: block; }
.film-switch__off { display: none; }
.film-switch[aria-pressed="false"] .film-switch__on { display: none; }
.film-switch[aria-pressed="false"] .film-switch__off { display: block; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  margin-top: -64px;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: var(--z-media); }
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}

/* Gradients only, and never past 35%: the film is the point. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: var(--z-scrim);
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 24%);
}

.hero__body {
  position: relative;
  z-index: var(--z-content);
  width: 100%;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(var(--s-64), 9vh, var(--s-128));
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-24);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  /* A tight halo does the legibility work at the stroke edge; the wide glow
     alone left the type at 1.9:1 over the brightest part of the frame. This
     buys the contrast at the glyph instead of by darkening the film. */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.72), 0 1px 18px rgba(0, 0, 0, 0.75);
}
.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero__title {
  max-width: 15ch;
  margin-bottom: var(--s-32);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.62), 0 2px 40px rgba(0, 0, 0, 0.6);
}

/* The signature: a solid box set on the phrase, not a soft marker sweep.
   Flat brand red, square corners, no gradient and no texture — the whole point
   is that it reads as a printed block, so any softness undoes it.

   The box is padding on an inline span, so the H1's own box, its line breaks
   and the layout are untouched. `box-decoration-break: clone` gives each
   wrapped line its own block rather than one shape spanning the ragged edge.

   The hero's text-shadow exists to hold white type over moving footage; inside
   the block there is no footage to fight, and the shadow only muddies the
   edge, so it is removed here. White on #E1121C measures 4.88:1. */
.hl {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background: var(--red);
  /* Tight to the letters: enough air that the type is not pinched, little
     enough that the block still reads as set on the words. */
  /* Air on the sides, tight top and bottom: the block should sit on the words
     rather than swallow them, and an italic needs a little more room on the
     right where the letters lean out of the box. */
  padding: 0.04em 0.22em 0.08em 0.16em;
  margin-left: -0.02em;
  border-radius: 0;
  text-shadow: none;
  color: #fff;
  font-style: italic;
  /* The italic leans; a hair of extra tracking stops the lean crowding the
     letter that follows it and keeps the block edge clean. */
  letter-spacing: -0.028em;
  /* The block is one object and must never be split across two lines — a
     broken red rectangle reads as a mistake, not a device. */
  white-space: nowrap;
}

/* "Creative" rides a touch higher than its line box so the gap to the block
   reads as intended spacing rather than the two colliding. A transform, not a
   margin: the line box is untouched, so nothing below it moves. */
.hl-lead {
  display: inline-block;
  transform: translateY(-0.09em);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-12); }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 200ms var(--ease), color 200ms var(--ease),
              border-color 200ms var(--ease);
}
.btn--solid { background: var(--ink); color: #000; }
.btn--solid:hover { background: var(--red); color: #fff; }
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  background: rgba(0, 0, 0, 0.28);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(0, 0, 0, 0.6); }

/* --------------------------------------------------------------------------
   7. Intro + the title film
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section); }

/* Top-aligned, never centred. The film is a 9:16 poster and the statement
   beside it is four short lines; centring the short block against the tall one
   opened ~220px of dead ground above the heading and pushed it two thirds of
   the way down the section. */
.intro__grid {
  display: grid;
  gap: clamp(var(--s-48), 6vw, var(--s-96));
  align-items: start;
}

.intro__brand {
  display: block;
  margin-bottom: var(--s-12);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.intro__title {
  margin-bottom: var(--s-32);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

/* The title film — custom sound control and progress line, never a
   browser control bar.

   It is 9:16, so its height is a function of the width it is given. Left
   uncapped it ran 1256px tall at 768 — taller than the tablet holding it.
   Every rule below caps it against the viewport instead, so the frame is
   always a poster you can see whole. */
.reel {
  width: 100%;
  max-width: min(100%, calc(74svh * 9 / 16));
}

.reel__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}
.reel__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-content);
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
}
/* Driven by scaleX, not width: the bar redraws on every rAF tick and a width
   transition relayouts the frame each time. */
.reel__progress {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 220ms linear;
}

.reel__sound {
  position: absolute;
  right: var(--s-12);
  bottom: var(--s-16);
  z-index: var(--z-content);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.reel__sound:hover { border-color: rgba(255, 255, 255, 0.5); background: rgba(0, 0, 0, 0.72); }
.reel__sound svg { width: 12px; height: 12px; flex: none; }
.reel__sound .glyph-on { display: none; }
.reel__sound[aria-pressed="true"] .glyph-on { display: block; }
.reel__sound[aria-pressed="true"] .glyph-off { display: none; }
.reel__sound .reel__soundOn { display: none; }
.reel__sound[aria-pressed="true"] .reel__soundOn { display: block; }
.reel__sound[aria-pressed="true"] .reel__soundOff { display: none; }

.reel__cap {
  margin-top: var(--s-12);
  font-size: var(--fs-meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* The word column — the third part of the intro, answering the title across
   the film. Every word is already on this page; none was written for the
   rotation. The whole list is always rendered and only colour changes, so the
   column cannot shift as words of different lengths take their turn. */
.cycle { display: grid; gap: clamp(2px, 0.4vw, 9px); }

.cycle__word {
  /* 24px floor: the active word can be --red (4.3:1), which only clears AA as
     large text, so it must never render smaller than 24px. */
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.028em;
  color: var(--ink-3);
  transition: color 420ms var(--ease);
}
.cycle__word.is-on  { color: var(--ink); }
.cycle__word.is-alt { color: var(--red); }

/* --------------------------------------------------------------------------
   8. Casa Luna — one photograph, one viewport, full strength
   -------------------------------------------------------------------------- */
.plate {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.plate__img {
  position: absolute;
  inset: 0;
  z-index: var(--z-media);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Only the strip the caption sits on is touched. */
.plate__scrim {
  position: absolute;
  inset: auto 0 0 0;
  z-index: var(--z-scrim);
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0) 100%);
}
.plate__rail {
  position: absolute;
  inset: clamp(28px, 4vh, 44px) var(--gutter) auto var(--gutter);
  z-index: var(--z-content);
  display: flex;
  justify-content: space-between;
  gap: var(--s-16);
}
.plate__rail .label { color: rgba(255, 255, 255, 0.82); text-shadow: 0 1px 14px rgba(0, 0, 0, 0.9); }

.plate__body {
  position: relative;
  z-index: var(--z-content);
  width: 100%;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(var(--s-48), 7vh, var(--s-96));
}
.plate__title {
  font-size: clamp(2.25rem, 5.6vw, 4.25rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.7);
}
.plate__meta {
  margin-top: var(--s-12);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.85);
}

/* --------------------------------------------------------------------------
   9. The work grid
   -------------------------------------------------------------------------- */
.work { padding-block: var(--section); }

.work__rail {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-16);
  padding-bottom: var(--s-16);
}
.work__rail + .grid { margin-top: 0; }
.work__rail--foot { padding: var(--s-16) 0 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: row dense;
  gap: var(--grid-gap);
}

.card {
  position: relative;
  grid-column: span 3;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  background: #060607;
}
.card--tall { aspect-ratio: 9 / 16; }
.card--lg   { grid-column: span 4; }
.card--wide { grid-column: span 6; }

.card__figure { height: 100%; margin: 0; }

.card__media {
  position: absolute;
  inset: 0;
  z-index: var(--z-media);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Base scrim only — the top three-fifths of every card is untouched footage. */
.card__scrim {
  position: absolute;
  inset: 0;
  z-index: var(--z-scrim);
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.42) 18%, rgba(0, 0, 0, 0) 46%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 22%);
}

.card__tag {
  position: absolute;
  top: clamp(10px, 1vw, 16px);
  left: clamp(10px, 1vw, 16px);
  z-index: var(--z-content);
  /* Stops long client names (Refresh Your Mood) running under the corner
     mark on a two-up card. */
  max-width: calc(100% - 44px);
  font-size: var(--fs-tag);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}

.card__mark {
  position: absolute;
  top: clamp(10px, 1vw, 16px);
  right: clamp(10px, 1vw, 16px);
  z-index: var(--z-content);
  width: 11px;
  height: 11px;
  color: rgba(255, 255, 255, 0.66);
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.9));
}

/* Sound. The whole card is the target — click it and that film takes the
   page's audio — so the button is the card, and the only thing it draws is
   the state chip in the corner the register mark used to hold. One glyph per
   card either way: a mark on the silent films, a sound state on the ten that
   have something to play. */
.card__sound {
  position: absolute;
  inset: 0;
  z-index: var(--z-hit);
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
/* The card clips its own overflow, so the ring has to draw inwards. */
.card__sound:focus-visible {
  outline: 2px solid var(--red-lift);
  outline-offset: -4px;
}
.card__sound[aria-pressed="true"] {
  box-shadow: inset 0 0 0 2px var(--red);
}

.card__chip {
  position: absolute;
  top: clamp(5px, 0.55vw, 11px);
  right: clamp(5px, 0.55vw, 11px);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.72);
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.9));
  transition: background 180ms var(--ease), color 180ms var(--ease);
}
.card__chip svg { width: 12px; height: 12px; }
.card__sound .glyph-on { display: none; }
.card__sound[aria-pressed="true"] .glyph-on { display: block; }
.card__sound[aria-pressed="true"] .glyph-off { display: none; }

/* Live: the one card carrying audio. Red is the page's signal colour and
   only ever one card can be in this state. */
.card__sound[aria-pressed="true"] .card__chip {
  background: var(--red);
  color: #fff;
  filter: none;
}

@media (hover: hover) {
  .card__sound:hover .card__chip { color: var(--ink); }
  .card__sound[aria-pressed="true"]:hover .card__chip { background: var(--red-lift); }
}

.card__cap {
  position: absolute;
  inset: auto clamp(10px, 1vw, 18px) clamp(10px, 1.1vw, 18px) clamp(10px, 1vw, 18px);
  z-index: var(--z-content);
}
.card__title {
  font-size: clamp(0.9375rem, 1.35vw, 1.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.026em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}
.card__meta {
  margin-top: 5px;
  font-size: var(--fs-tag);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}

/* Type-only cards. They carry the three real numbers and break the rhythm
   of the footage. */
/* No aspect-ratio: a definite height would opt these out of the row stretch
   and leave a hole beside the films. */
.card--stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-24);
  aspect-ratio: auto;
  padding: clamp(16px, 1.8vw, 34px);
}
.card--red  { background: var(--red); color: #fff; }
.card--bone { background: var(--bone); color: var(--bone-ink); }

.stat__figure {
  font-size: var(--fs-stat);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.045em;
}
.card--bone .stat__figure { color: var(--red); }

.stat__label {
  display: block;
  margin-top: var(--s-8);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.stat__note {
  max-width: 34ch;
  font-size: var(--fs-sm);
  line-height: 1.45;
}
.card--red .stat__note  { color: #fff; }
.card--bone .stat__note { color: var(--bone-ink-2); }

.stat__index {
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.card--red .stat__index  { color: rgba(255, 255, 255, 0.85); }
.card--bone .stat__index { color: var(--bone-ink-2); }

/* --------------------------------------------------------------------------
   10. Studio — text beside a film panel at full strength
   -------------------------------------------------------------------------- */
.studio__grid {
  display: grid;
  gap: clamp(var(--s-48), 5vw, var(--s-96));
  align-items: stretch;
}

.capes { margin-top: var(--s-48); }
.cape {
  padding: var(--s-24) 0;
  border-top: 1px solid var(--line-soft);
}
.cape:last-child { border-bottom: 1px solid var(--line-soft); }
.cape__term {
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cape__desc {
  max-width: 52ch;
  margin-top: 6px;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.55;
}

.craft { margin-top: var(--s-48); }
.craft__line {
  max-width: 46ch;
  margin-top: var(--s-16);
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8) var(--s-16);
  margin-top: var(--s-16);
}
.disciplines li {
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.028em;
}
/* The separator belongs to the item it follows, not the one it precedes —
   as a ::before it wrapped with the next item and orphaned a red square at
   the start of a line. */
.disciplines li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin-left: var(--s-16);
  vertical-align: 0.3em;
  background: var(--red);
}

/* A 16:9 band below the two-column breakpoint. A 320px min-height made a
   near-square box out of a 16:9 clip and cropped the sides off it. */
.studio__film {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #060607;
}
.studio__film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   11. Index — the credit block
   No logo wall. Thirty-odd names carry more weight set in the page's own
   type than they would as borrowed trademarks at thirty different
   resolutions. The names are the texture; nothing else is added to them.
   -------------------------------------------------------------------------- */
.index__note {
  max-width: 46ch;
  margin-top: var(--s-16);
  font-size: var(--fs-sm);
  color: var(--ink-2);
}

.index__set { margin-top: clamp(var(--s-48), 5vw, var(--s-96)); }

.index__row {
  padding: clamp(var(--s-24), 2.6vw, var(--s-48)) 0;
  border-top: 1px solid var(--line-soft);
}
.index__row:last-child { border-bottom: 1px solid var(--line-soft); }

.index__label { margin-bottom: var(--s-16); }

/* Separators are deliberately absent. At this size the column gap is five
   times a word space, which reads as a list without a glyph — and a glyph
   between wrapping items always strands itself at a line edge. */
.index__names {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 0.9vw, 14px) clamp(20px, 2.4vw, 40px);
}
.index__names li {
  font-size: clamp(1.25rem, 2.1vw, 1.875rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.028em;
  transition: color 150ms var(--ease);
}

/* Pointer only: these are names, not controls. Nothing here is focusable, and
   giving 31 inert names a tab stop each would put 31 dead stops in front of
   the three real links at the foot of the page. */
@media (hover: hover) {
  .index__names li:not(.index__more):hover { color: var(--red); }
}
.index__names li:not(.index__more):focus-visible { color: var(--red); }

/* A count, not a name. It trails the row at meta weight and rail colour so it
   never reads as another client. */
.index__names .index__more {
  align-self: center;
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   12. Band + archive contact sheet
   -------------------------------------------------------------------------- */
.band { padding-block: clamp(var(--s-96), 13vw, 200px) var(--s-48); }
.band__title {
  font-size: var(--fs-band);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--red);
  text-wrap: balance;
}
.band__note {
  max-width: 46ch;
  margin-top: var(--s-24);
  font-size: var(--fs-lead);
  color: var(--ink-2);
}

.sheet {
  display: grid;
  grid-template-columns: 4fr 3fr 2fr 3fr;
  gap: var(--grid-gap);
  height: clamp(220px, 27vw, 460px);
  margin-top: clamp(var(--s-48), 6vw, var(--s-96));
  padding-inline: var(--gutter);
}
.sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   13. Closing
   -------------------------------------------------------------------------- */
.closing__stage {
  position: relative;
  min-height: clamp(420px, 64svh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.closing__film {
  position: absolute;
  inset: 0;
  z-index: var(--z-media);
}
.closing__film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.closing__scrim {
  position: absolute;
  inset: 0;
  z-index: var(--z-scrim);
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.18) 30%, rgba(0, 0, 0, 0) 66%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 30%);
}
.closing__head {
  position: relative;
  z-index: var(--z-content);
  width: 100%;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(var(--s-32), 5vh, var(--s-64));
}
.closing__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.042em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.65);
}

.links { border-top: 1px solid var(--line-soft); }
.link-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-16);
  padding: clamp(var(--s-24), 3vw, var(--s-48)) 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.link-row:hover { color: var(--red-lift); }
.link-row__label {
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.link-row__hint {
  flex: none;
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.link-row:hover .link-row__hint { color: inherit; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding-block: clamp(var(--s-64), 8vw, var(--s-128)) var(--s-48);
  background: var(--bg-raise);
  border-top: 1px solid var(--line-soft);
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-48);
}
.site-footer .wordmark img { height: 30px; }

.foot-nav { display: flex; flex-wrap: wrap; gap: var(--s-12) var(--s-32); }
.foot-nav a {
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 180ms var(--ease);
}
.foot-nav a:hover { color: var(--ink); }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8) var(--s-16);
  margin-top: clamp(var(--s-48), 7vw, var(--s-96));
  padding-top: var(--s-24);
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-meta);
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   15. Motion
   -------------------------------------------------------------------------- */
/* Reveals are opt-in: without JS, and in any renderer that never fires the
   observer, the page is fully visible. */
.reveal-on [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms var(--ease) calc(var(--i, 0) * 70ms),
    transform 620ms var(--ease) calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
.reveal-on [data-reveal].is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.motion-on [data-hero] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 760ms var(--ease) calc(var(--d, 0) * 1ms),
    transform 760ms var(--ease) calc(var(--d, 0) * 1ms);
}
.motion-on.is-loaded [data-hero] { opacity: 1; transform: none; }
[data-hero="1"] { --d: 60; }
[data-hero="2"] { --d: 180; }
[data-hero="3"] { --d: 340; }

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
/* 900–1199px: two columns, with the word list under the copy. Three tracks
   here would leave the outer two around 240px — too narrow to set a heading in. */
@media (min-width: 900px) {
  .intro__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy  film"
      "cycle film";
    justify-content: start;
    align-items: center;
    column-gap: clamp(var(--s-48), 5vw, 88px);
    row-gap: clamp(var(--s-32), 3vw, var(--s-64));
  }
  .intro__copy { grid-area: copy; }
  .reel        { grid-area: film; }
  .cycle       { grid-area: cycle; }
  /* Generous enough to carry the column rather than trail off inside it —
     at 17px the prose ran out 300px short of its own track. */
  .intro__grid .prose p { font-size: var(--fs-lead); line-height: 1.55; }
  /* The studio's calling card, at real size: 84% of the viewport's height,
     ceiling 520px wide — under the 720px source, so it never upscales. */
  .reel { width: min(520px, calc(84svh * 9 / 16)); max-width: none; }
  .studio__grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr); }
  .studio__film { aspect-ratio: auto; min-height: 100%; }
}

/* 1200px and up: three parts. The two outer tracks are equal fractions, so
   the film's centre is the content box's centre, and the content box is
   centred in the viewport — the film sits on the exact middle of the screen.
   The word list mirrors the title: ranged right against the far rail, so the
   two sides answer each other across the film. */
@media (min-width: 1200px) {
  .intro__grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas: "copy film cycle";
    justify-content: stretch;
    row-gap: 0;
  }
  .cycle { text-align: right; justify-items: end; }
}

/* Phones: the vertical film runs edge to edge.
   The break-out is the wrap's own gutter negated — never `100vw`, which
   counts the scrollbar and would push the page sideways. */
@media (max-width: 480px) {
  .reel {
    width: auto;
    max-width: none;
    margin-inline: calc(var(--gutter) * -1);
  }
  /* Short phones would otherwise give 9:16 the whole screen and push the
     caption out of sight. The explicit width keeps the frame edge to edge and
     lets max-height win over the ratio, so `cover` crops top and bottom —
     without it the ratio is preserved by shrinking the width instead, and the
     frame stops reaching the glass. The film's type is centred, so it survives. */
  .reel__frame { width: 100%; max-height: 88svh; }
  /* Control and caption come back inside the page rail rather than sitting
     against the glass. */
  .reel__sound { right: var(--gutter); }
  .reel__cap { padding-inline: var(--gutter); }
}

@media (max-width: 1023px) {
  /* Two up, one ratio. Mixed ratios in a two-column row leave a hole under the
     shorter card, because an aspect-ratio height is definite and opts the item
     out of the row stretch. */
  .card,
  .card--tall,
  .card--lg {
    grid-column: span 6;
    aspect-ratio: 4 / 5;
  }
  .card--wide,
  .card--stat {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    min-height: 240px;
  }
  /* Fifteen films is an odd number, so two-up would always leave one card
     alone with a hole beside it. The lead card takes the full width instead:
     the count pairs off cleanly and the grid opens on one big poster. */
  .card--fill-sm { grid-column: 1 / -1; }
  .sheet {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .sheet img { aspect-ratio: 4 / 5; }
}

@media (max-width: 767px) {
  .site-header__inner { height: 56px; gap: var(--s-12); }
  .wordmark img { height: 16px; }
  .hero { margin-top: -56px; }
  /* Stacked, so a wrapping row can never strand a separator at a line edge —
     as a ::before it orphaned one at the start of line two, as an ::after it
     hung one off the end of line one. */
  .disciplines { display: grid; gap: var(--s-8); }
  .disciplines li:not(:last-child)::after { display: none; }
  .film-switch { padding: 6px 9px; }
  .film-switch__on, .film-switch__off { display: none; }
  .film-switch[aria-pressed="false"] .film-switch__off { display: none; }
  .card--stat { min-height: 0; }
  .sheet img { aspect-ratio: 1 / 1; }
}

@media (max-width: 400px) {
  .site-nav { gap: 10px; }
  .site-nav a { font-size: 0.6875rem; letter-spacing: 0.06em; }
}

/* --------------------------------------------------------------------------
   17. Reduced motion — nothing autoplays, nothing translates
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  .reveal-on [data-reveal],
  .motion-on [data-hero] { opacity: 1; transform: none; }
}

/* The three sites share a founder and little else; the line says so once. */
.founder { margin-top: var(--s-16); font-size: var(--fs-meta); letter-spacing: 0.02em; color: var(--ink-3); }
.founder__also a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.founder__also a:hover { color: var(--ink); border-bottom-color: var(--red); }


/* ==========================================================================
   Synth footer — the SynthCard material from trusynth.com.
   Ground #17120a, rim rgba(216,196,142,.16), the silk-brass WebGL foil, and
   the etched mark. Values are the source's own; the card fills the footer
   instead of holding the hero's 1.586 card ratio.
   ========================================================================== */
.synth {
  padding: clamp(20px, 3vw, 40px) clamp(16px, 4vw, 48px) clamp(28px, 4vw, 56px);
  background: transparent;
}

.synth__card {
  position: relative;
  container-type: inline-size;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: clamp(16px, 2.6vw, 28px);
  overflow: hidden;
  isolation: isolate;
  background: #17120a;
  border: 1px solid rgba(216, 196, 142, 0.16);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.85),
    0 8px 30px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(242, 232, 200, 0.14);
}
/* The lit top edge and shadowed bottom edge that give the metal its thickness. */
.synth__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 227, 0.35),
    inset 0 -1px 0 rgba(20, 14, 4, 0.5);
  z-index: 2;
}

.synth__foil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
/* Without WebGL the card keeps its ground and rim and simply does not shimmer. */
.synth__card.is-flat .synth__foil { display: none; }

/* The content sits on the foil, in the source's own ink. */
.synth__face {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 6vw, 76px) clamp(20px, 4vw, 48px);
  text-align: center;
  color: #2b2210;
}
.synth__mark {
  width: clamp(96px, 11vw, 148px);
  height: auto;
  margin: 0 auto clamp(16px, 2.2vw, 24px);
}
.synth__label {
  margin: 0 0 10px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  font-size: clamp(9px, 0.95vw, 11px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(43, 34, 16, 0.72);
}
.synth__label b { font-weight: 700; color: #2b2210; }
.synth__body {
  max-width: 54ch;
  margin: 0 auto clamp(18px, 2.4vw, 26px);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(43, 34, 16, 0.82);
}
.synth__link {
  display: block;
  width: var(--etch-w, min(46cqw, 380px));
  margin: clamp(26px, 4vw, 54px) auto 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: clamp(9px, 0.95vw, 11px);
  font-weight: 600;
  /* Ranged to the mark above it: a fixed width plus text-align-last stretches
     the single line so its ends sit under the logo's ends. The tracking is a
     floor — justification adds to it, never below it. */
  letter-spacing: 0.14em;
  text-align: justify;
  text-align-last: justify;
  text-transform: uppercase;
  color: rgba(43, 34, 16, 0.78);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
/* No ring on a mouse click. :focus-visible fires for keyboard only, so the
   keyboard path keeps an indicator — removing that outright would strand
   anyone not using a pointer. */
.synth__link:focus { outline: none; }
.synth__link:hover { background: rgba(242, 232, 200, 0.42); border-color: rgba(43, 34, 16, 0.6); }
.synth__link:focus-visible { outline: 2px solid #2b2210; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .synth__link { transition: none; } }

/* The mark is embossed by the shader, not painted over it: the etch in the
   foil is the logo. The <img> stays in the markup for the no-WebGL fallback
   and for assistive tech, and is hidden once the foil is live — two copies of
   the same mark, one stamped and one flat, is what made it read as a smudge. */
.synth__card:not(.is-flat) .synth__mark { display: none; }
.synth__card.is-flat .synth__mark {
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}
/* With the etch centred in the card, the copy needs room to clear it. */
.synth__card:not(.is-flat) .synth__face { padding-top: clamp(96px, 15vw, 190px); }

/* The card carries the etched mark and one link. Nothing else earns a place,
   so the face is sized to those two rather than to copy that is no longer here. */
.synth__card:not(.is-flat) .synth__face { padding-top: clamp(112px, 17vw, 210px); }
.synth__face { padding-bottom: clamp(28px, 4vw, 52px); }

.synth__card a, .synth__card button { -webkit-tap-highlight-color: transparent; }
