/* ============================================================
   Sean Barney — seanbarney.com
   Art direction: Saul Bass title card. Cut-paper shapes, one
   condensed display face shouting, everything else whispering.
   ============================================================ */

/* Self-hosted so the page makes no third-party requests.
   Both families are SIL Open Font License — see fonts/OFL.txt and
   fonts/OFL-bigshouldersdisplay.txt. Each family ships as a single
   variable-font file; one @font-face block per family declares the
   full weight axis so the browser instances whatever weight is asked
   for from one fetch, instead of re-parsing the same file per weight. */
@font-face {
  font-family: 'Big Shoulders Display';
  src: url('fonts/big-shoulders-display-variable.woff2') format('woff2-variations'),
       url('fonts/big-shoulders-display-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Jost;
  src: url('fonts/jost-variable.woff2') format('woff2-variations'),
       url('fonts/jost-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────────── */

:root {
  --ink:   oklch(0.17 0.015 40);
  --paper: oklch(0.93 0.035 85);
  --hot:   oklch(0.56 0.20 34);
  --gold:  oklch(0.76 0.15 78);

  /* Paper at reduced opacity, for secondary text on ink. */
  --paper-78: oklch(0.93 0.035 85 / 0.78);
  --paper-60: oklch(0.93 0.035 85 / 0.60);
  --paper-40: oklch(0.93 0.035 85 / 0.40);
  --ink-28:   oklch(0.17 0.015 40 / 0.28);

  /* The display face. Swap the stack to re-voice the whole site:
     Anton, Impact           — heavier, blunter
     Oswald, 'Trade Gothic'  — narrower, more editorial
     'Archivo Black'         — wider, less condensed             */
  --cut:  'Big Shoulders Display', 'Trade Gothic Condensed', sans-serif;
  --body: Jost, Futura, 'Century Gothic', sans-serif;

  --shell: 1360px;
  --gutter: 24px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cut: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ── Reset / base ───────────────────────────────────────────── */

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

/* Beat the display values set by component classes below. */
[hidden] { display: none !important; }

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

a { color: var(--hot); text-decoration: none; }
a:hover { color: var(--gold); }

::selection { background: var(--hot); color: var(--paper); }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: var(--gutter); top: -100px;
  z-index: 60;
  background: var(--hot);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 16px;
  transition: top 140ms var(--ease-cut);
}
.skip-link:focus { top: 12px; color: var(--ink); }

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

.hot  { color: var(--hot); }
.gold { color: var(--gold); }

/* ── Motion ─────────────────────────────────────────────────── */

@keyframes bass-rise    { from { transform: translateY(101%); }      to { transform: translateY(0); } }
@keyframes bass-wipe    { from { clip-path: inset(0 100% 0 0); }     to { clip-path: inset(0 0 0 0); } }
@keyframes bass-stretch { from { transform: scaleX(0); }             to { transform: scaleX(1); } }
@keyframes bass-glow    { from { opacity: 0; }                       to { opacity: 1; } }
@keyframes bass-open    { from { transform: rotate(34deg) scale(1.14); } to { transform: rotate(0) scale(1); } }
@keyframes bass-blink   { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0.12; } }

.anim-rise    { display: inline-block; animation: bass-rise    760ms  var(--delay) var(--ease-out) both; }
.anim-wipe    { animation: bass-wipe    900ms  var(--delay) var(--ease-cut) both; }
.anim-glow    { animation: bass-glow    600ms  var(--delay) ease-out both; }
.anim-open    { animation: bass-open   1200ms  var(--delay) var(--ease-out) both; }
.anim-stretch { animation: bass-stretch 560ms  var(--delay) var(--ease-cut) both; transform-origin: center; }

.rule__bar.anim-wipe { animation-duration: 1000ms; }

/* Land every entrance on its final frame rather than freezing it
   mid-flight, which `animation-play-state: paused` would do. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* ── Shared type ────────────────────────────────────────────── */

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold); }

.marker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.marker__wedge {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.marker__wedge--ink   { background: var(--ink); }
.marker__wedge--hot   { background: var(--hot); }
.marker__wedge--gold  { background: var(--gold); }
.marker__wedge--paper { background: var(--paper); }

.section-title {
  margin-top: 10px;
  font-family: var(--cut);
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.84;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  appearance: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background-color 140ms ease, color 140ms ease;
}
.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 15px 20px;
}
.btn--ink:hover { background: var(--hot); color: var(--ink); }
.btn--outline {
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 12px 17px;
}
.btn--outline:hover { background: var(--hot); color: var(--ink); }
.btn--paper {
  margin-top: 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  padding: 12px 16px;
}
.btn--paper:hover { background: var(--gold); color: var(--ink); }

/* Halftone bleeds — the printed-poster tell. */
.halftone {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.halftone--hot {
  top: -140px; right: -140px;
  width: 460px; height: 460px;
  background: repeating-radial-gradient(circle, var(--hot) 0 14px, transparent 14px 30px);
  opacity: 0.5;
}
.halftone--gold {
  left: -180px; bottom: -180px;
  width: 420px; height: 420px;
  background: repeating-radial-gradient(circle, var(--gold) 0 10px, transparent 10px 26px);
  opacity: 0.35;
}

/* ── Header ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  border-bottom: 3px solid var(--paper);
}
.site-header__inner {
  padding-block: 10px;
  display: flex;
  justify-content: flex-end;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav__link { color: var(--paper); }
.nav__link:hover { color: var(--hot); }
.nav__link--cta {
  background: var(--hot);
  color: var(--ink);
  padding: 3px 10px;
}
.nav__link--cta:hover { background: var(--gold); color: var(--ink); }

/* ── Title card ─────────────────────────────────────────────── */

.titlecard {
  position: relative;
  overflow: hidden;
  border-bottom: 14px solid var(--paper);
}
.titlecard__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.44fr);
  gap: 40px;
  align-items: stretch;
  min-height: min(88svh, 900px);
}
.titlecard__lede {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 48px;
}

.wordmark {
  margin: 26px 0 0;
  font-family: var(--cut);
  font-weight: 900;
  font-size: clamp(70px, 15.5vw, 232px);
  line-height: 0.8;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: var(--paper);
}
.wordmark__line { display: block; overflow: hidden; }
.wordmark__tilt-a { display: inline-block; transform: rotate(-3deg); color: var(--hot); }
.wordmark__tilt-b { display: inline-block; transform: rotate(4deg) translateY(-0.02em); }

.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 26px;
}
.rule__bar  { height: 12px; flex: 1; background: var(--hot); }
.rule__dot  { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); }
.rule__tick { height: 4px; width: 90px; background: var(--paper); }

.titlecard__roles {
  max-width: 22ch;
  margin-bottom: 30px;
  font-family: var(--cut);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}
.titlecard__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.titlecard__blurb {
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--paper-78);
}

.stats { display: flex; }
.stat { padding: 12px 18px; color: var(--ink); }
.stat--hot   { background: var(--hot); }
.stat--paper { background: var(--paper); }
.stat__figure {
  font-family: var(--cut);
  font-weight: 900;
  font-size: 40px;
  line-height: 0.9;
}
.stat__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* The signature: a shutter iris cranking open on load. */
.titlecard__mark {
  position: relative;
  display: flex;
  padding-left: 8px;
}
.iris {
  position: relative;
  flex: 1;
  min-height: 340px;
  overflow: hidden;
}
.iris__disc, .iris__shutter, .iris__ring {
  position: absolute;
  left: 6%; right: 6%;
  top: 50%; margin-top: -44%;
  aspect-ratio: 1;
  border-radius: 50%;
}
.iris__disc    { background: var(--gold); }
.iris__shutter { overflow: hidden; }
.iris__ring    { border: 5px solid var(--paper); }
.iris__blade {
  position: absolute;
  inset: 0;
  background: var(--ink);
  clip-path: polygon(50% 50%, 100% 8%, 100% 66%);
  transform: rotate(var(--turn));
}
.iris__core {
  position: absolute;
  left: 27%; right: 27%;
  top: 50%; margin-top: -23%;
  aspect-ratio: 1;
  background: var(--gold);
  clip-path: polygon(50% 2%, 92% 26%, 92% 74%, 50% 98%, 8% 74%, 8% 26%);
}
.iris__base {
  position: absolute;
  left: 26%; right: 26%;
  bottom: 5%;
  height: 6%;
  background: var(--hot);
}

/* ── One — the producer ─────────────────────────────────────── */

.about {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(52px, 7vh, 96px);
}
.about .shell { position: relative; }
.about__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 46px;
  align-items: start;
}
.about__thesis {
  margin-bottom: 26px;
  font-family: var(--cut);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.86;
  text-transform: uppercase;
}
.about__body {
  max-width: 58ch;
  font-size: 21px;
  line-height: 1.55;
}

.billing__slot { padding: 18px 20px; }
.billing__slot--ink  { background: var(--ink);  color: var(--paper); }
.billing__slot--hot  { background: var(--hot);  color: var(--ink); }
.billing__slot--gold { background: var(--gold); color: var(--ink); }
.billing__role {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.billing__slot--ink .billing__role { color: var(--gold); }
.billing__name {
  font-family: var(--cut);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

/* ── Two — selected work ────────────────────────────────────── */

.work {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 6.5vh, 84px);
}
.work__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  appearance: none;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--paper);
  color: var(--paper);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 14px;
  transition: background-color 140ms ease, color 140ms ease;
}
.chip[aria-pressed="true"] { background: var(--paper); color: var(--ink); }
.chip:hover { background: var(--paper); color: var(--ink); }

.chips--ink .chip {
  border-color: var(--ink);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 8px 11px;
}
.chips--ink .chip[aria-pressed="true"],
.chips--ink .chip:hover { background: var(--ink); color: var(--paper); }
.chip__count { opacity: 0.55; }

/* The projector plate: paper mat, 16:9 gate. */
.screen {
  background: var(--paper);
  padding: 10px;
  max-width: min(100%, max(680px, calc((100svh - 440px) * 1.7778)));
  margin-inline: auto;
}
.screen__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}
.screen__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  appearance: none;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}
button.poster { cursor: pointer; }
.poster__slash {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 34%;
  background: var(--hot);
  clip-path: polygon(0 0, 100% 10%, 62% 100%, 0 100%);
  opacity: 0.9;
}
.poster__ring {
  position: absolute;
  right: 6%; top: 12%;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 12px solid var(--gold);
}
.poster__note {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 7px 13px;
}

/* Play affordance: the section-marker wedge, rotated to point right.
   Same motif as the ▼ markers, so it reads as part of the system. */
.poster__wedge {
  position: relative;
  width: clamp(56px, 9vw, 104px);
  aspect-ratio: 1;
  background: var(--hot);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: background-color 160ms ease, transform 160ms var(--ease-cut);
}
button.poster:hover .poster__wedge,
button.poster:focus-visible .poster__wedge {
  background: var(--gold);
  transform: scale(1.08);
}
button.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0;
  transition: opacity 160ms ease;
}
button.poster:hover::after { opacity: 0.18; }

.poster--empty { cursor: default; }

.frame__chip--img {
  background-size: cover;
  background-position: center;
}

.poster__title {
  position: relative;
  font-family: var(--cut);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 78px);
  line-height: 0.86;
  text-transform: uppercase;
}

.screen__plate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 12px 4px 4px;
  color: var(--ink);
}
.screen__client {
  font-family: var(--cut);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}
.screen__meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
}

.filmstrip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 0 4px;
  scrollbar-width: thin;
}
.frame {
  flex: 0 0 auto;
  width: 152px;
  appearance: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  opacity: 0.5;
  transition: opacity 160ms ease;
}
.frame:hover, .frame:focus-visible, .frame[aria-current="true"] { opacity: 1; }
.frame__chip {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--chip);
}
.frame__text { display: block; padding: 9px 2px 0; }
.frame__client {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.frame__title {
  display: block;
  font-family: var(--cut);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--paper);
}
.work__count {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-60);
}

/* ── Three — the billing block ──────────────────────────────── */

.credits {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(48px, 6.5vh, 84px);
}
.credits__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.credits__summary {
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 13px;
}
.credits__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.search { display: block; }
.search__input {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 2px;
}
.search__input::placeholder { color: var(--ink); opacity: 0.55; }

.ledger__head,
.ledger__row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.9fr) 58px;
  gap: 18px;
}
.ledger__head {
  padding: 9px 0;
  border-top: 8px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ledger__year { text-align: right; }
.ledger__row {
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-28);
}
.ledger__title {
  font-family: var(--cut);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.06;
  text-transform: uppercase;
}
/* Executive Producer marker. Rides inside the title cell so the ledger
   grid stays four columns — 55 of 244 credits carry it, and a fifth
   column would print "Producer" on the other 189. */
.ledger__ep {
  margin-left: 8px;
  padding: 1px 5px;
  border: 1px solid var(--hot);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hot);
  vertical-align: 3px;
  white-space: nowrap;
}
.ledger__director,
.ledger__company {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ledger__company { opacity: 0.62; }
.ledger__yr {
  font-family: var(--cut);
  font-weight: 800;
  font-size: 20px;
  text-align: right;
  color: var(--hot);
}
.ledger__empty {
  padding: 22px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.credits__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 22px;
}

/* ── Four — off the clock ───────────────────────────────────── */

.offclock {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 6.5vh, 84px);
}
.offclock .shell { position: relative; }
.offclock__title {
  margin-bottom: 30px;
  font-size: clamp(40px, 5.6vw, 90px);
  line-height: 0.86;
}
.offclock__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.offclock .eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
}
.offclock__stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.watched__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding: 11px 0;
  border-top: 2px solid var(--paper-40);
}
.watched__row:last-child { border-bottom: 2px solid var(--paper-40); }
.watched__title {
  font-family: var(--cut);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.02;
  text-transform: uppercase;
}
.watched__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.card-hot {
  display: block;
  background: var(--hot);
  color: var(--ink);
  padding: 26px;
  transition: background-color 140ms ease;
}
.card-hot:hover { background: var(--gold); color: var(--ink); }
.card-hot__kicker {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.card-hot__title {
  margin-bottom: 10px;
  font-family: var(--cut);
  font-weight: 900;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 0.9;
  text-transform: uppercase;
}
.card-hot__body { font-size: 18px; line-height: 1.45; }

.card-rack {
  border: 3px solid var(--paper);
  padding: 18px;
}
.card-rack .eyebrow { margin-bottom: 8px; font-size: 10px; }
.card-rack__body { font-size: 16px; line-height: 1.6; }
.caret {
  display: inline-block;
  width: 9px; height: 16px;
  margin-left: 5px;
  vertical-align: -2px;
  background: var(--hot);
  animation: bass-blink 1.1s step-end infinite;
}

/* ── End card ───────────────────────────────────────────────── */

.endcard {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(46px, 6.5vh, 80px);
}
.endcard__prompt {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.endcard__bar {
  flex: 0 0 auto;
  height: 10px; width: 120px;
  background: var(--hot);
}
.endcard__mail {
  display: block;
  font-family: var(--cut);
  font-weight: 900;
  font-size: clamp(34px, 8vw, 130px);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  word-break: break-word;
  color: var(--ink);
}
.endcard__mail:hover { color: var(--hot); }
.endcard__foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  border-top: 8px solid var(--ink);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.endcard__stamp { opacity: 0.6; }

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .about__grid,
  .offclock__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .credits__controls { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
  :root { --gutter: 18px; }

  .titlecard__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 0;
  }
  .titlecard__lede { padding: 40px 0 32px; order: 2; }

  /* The iris circle is sized off the container's width, so the
     container has to stay square or the circle gets cropped. */
  .titlecard__mark {
    order: 1;
    padding: 34px 0 0;
    width: min(72vw, 320px);
    margin-inline: auto;
  }
  .iris { min-height: 0; aspect-ratio: 1; }
  .wordmark { font-size: clamp(56px, 17vw, 140px); }

  /* Ledger rows become stacked cards: title, then the metadata
     line that would otherwise be three unreadable columns. */
  .ledger__head { display: none; }
  .ledger__rows { border-top: 8px solid var(--ink); }
  .ledger__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding: 14px 0;
  }
  .ledger__title { font-size: 22px; }
  .ledger__yr { text-align: left; font-size: 16px; }
}

@media (max-width: 620px) {
  .site-header__inner { justify-content: flex-start; }
  .nav { gap: 14px; font-size: 11px; letter-spacing: 0.16em; }

  .titlecard__foot { gap: 20px; }
  .titlecard__blurb { font-size: 16px; }
  .about__body { font-size: 18px; }

  .screen__plate { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .screen__meta { text-align: left; }

  .poster__ring { width: 76px; height: 76px; border-width: 8px; }

  .watched__row { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .watched__title { font-size: 24px; }

  .endcard__foot { grid-template-columns: minmax(0, 1fr); gap: 8px; }
}
