/* Lolli Brands Entertainment. "The Record, in full frame."
   Light frame, dark stage. Colour comes from the key art only.
   Type: Switzer (display + text), Courier Prime (sluglines, metadata), Six Caps (billing block). */

:root {
  --paper: #F4F1EA;
  --paper-2: #EAE6DC;
  --ink: #131211;
  --ink-2: #55524B;
  --rule: rgba(19, 18, 17, .16);
  --stage: #0B0A0D;
  --stage-2: #16131B;
  --on-stage: #F2EEE6;
  --on-stage-2: rgba(242, 238, 230, .64);
  --rule-stage: rgba(242, 238, 230, .16);
  --rec: #E5352B;                 /* the REC light: the only structural accent, used tiny */
  --accent: var(--rec);           /* overridden per title from its key art */

  --f-sans: "Switzer", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "Courier Prime", "Courier New", ui-monospace, monospace;
  --f-bill: "Six Caps", "Sofia Sans Extra Condensed", Impact, sans-serif;

  --t-hero: clamp(2.6rem, 9.6vw, 10.75rem);
  --t-h1: clamp(2.5rem, 6.4vw, 6.75rem);
  --t-h2: clamp(1.95rem, 4vw, 4.1rem);
  --t-h3: clamp(1.3rem, 1.9vw, 1.85rem);
  --t-lead: clamp(1.12rem, 1.45vw, 1.5rem);
  --t-body: 1.0625rem;
  --t-small: .8125rem;
  --t-slug: .76rem;

  --margin: clamp(18px, 3.4vw, 60px);
  --gutter: clamp(14px, 1.9vw, 30px);
  --header-h: 76px;

  --ease-productive: cubic-bezier(.2, 0, .38, .9);
  --ease-expressive: cubic-bezier(.4, .14, .3, 1);
  --ease-out: cubic-bezier(0, 0, .38, .9);
  --ease-in: cubic-bezier(.2, 0, 1, .9);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--f-sans); font-size: var(--t-body); line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, figure, ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--ink); color: var(--paper); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--paper); padding: 10px 16px; transition: top .2s var(--ease-out); }
.skip:focus { top: 12px; }

/* ---------- layout ---------- */
.wrap { padding-inline: var(--margin); }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); }
.stage { background: var(--stage); color: var(--on-stage); }
.frame { background: var(--paper); color: var(--ink); }
.frame-2 { background: var(--paper-2); color: var(--ink); }
section { position: relative; }
.pad { padding-block: clamp(72px, 11vw, 190px); }
.pad-s { padding-block: clamp(48px, 6vw, 110px); }

/* ---------- type ---------- */
.hero-t, .h1, .h2, .h3 { font-weight: 700; letter-spacing: -.042em; line-height: .92; text-wrap: balance; }
.hero-t { font-size: var(--t-hero); letter-spacing: -.05em; line-height: .88; }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); line-height: .96; letter-spacing: -.036em; }
.h3 { font-size: var(--t-h3); line-height: 1.08; letter-spacing: -.022em; font-weight: 600; }
.lead { font-size: var(--t-lead); line-height: 1.38; letter-spacing: -.012em; max-width: 46ch; text-wrap: pretty; }
.body { max-width: 62ch; text-wrap: pretty; }
.body p + p { margin-top: 1.05em; }
.muted { color: var(--ink-2); }
.stage .muted { color: var(--on-stage-2); }
.slug {
  font-family: var(--f-mono); font-size: var(--t-slug); letter-spacing: .07em; text-transform: uppercase;
  line-height: 1.35; display: inline-flex; gap: .7em; align-items: baseline;
}
.slug::before { content: ""; width: .62em; height: .62em; border-radius: 50%; background: currentColor; transform: translateY(-.02em); flex: none; }
.slug.no-dot::before { display: none; }
.mono { font-family: var(--f-mono); font-size: var(--t-small); letter-spacing: .03em; }
.num { font-variant-numeric: tabular-nums lining-nums; }

/* ---------- status tag (REC logic) ---------- */
.status { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .6em; padding: .5em .8em .42em; border: 1px solid currentColor; border-radius: 2px; line-height: 1; white-space: nowrap; }
.status i { width: .62em; height: .62em; border-radius: 50%; background: currentColor; display: block; flex: none; }
.status[data-s="In production"] i { background: var(--rec); box-shadow: 0 0 0 0 rgba(229, 53, 43, .6); animation: rec 1.9s var(--ease-productive) infinite; }
.status[data-s="Completed"] i { background: transparent; box-shadow: inset 0 0 0 2px currentColor; }
.status[data-s="Pre-production"] i { background: transparent; box-shadow: inset 0 0 0 1px currentColor; opacity: .7; }
@keyframes rec { 0% { box-shadow: 0 0 0 0 rgba(229, 53, 43, .55); } 70%, 100% { box-shadow: 0 0 0 .7em rgba(229, 53, 43, 0); } }

/* ---------- buttons and links ---------- */
.btn { white-space: nowrap; display: inline-flex; align-items: center; gap: .7em; font-weight: 600; font-size: .95rem; letter-spacing: -.01em; padding: 1.02em 1.5em .98em; border-radius: 999px; border: 1px solid currentColor; line-height: 1; transition: background-color .25s var(--ease-productive), color .25s var(--ease-productive), transform .18s var(--ease-out); }
.btn svg { width: 1em; height: 1em; transition: transform .3s var(--ease-expressive); }
.btn--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.stage .btn--solid { background: var(--on-stage); color: var(--stage); border-color: var(--on-stage); }
.btn:active { transform: scale(.975); }
@media (hover: hover) {
  .btn:hover { background: var(--ink); color: var(--paper); }
  .stage .btn:hover { background: var(--on-stage); color: var(--stage); border-color: var(--on-stage); }
  .btn--solid:hover { background: transparent; color: var(--ink); }
  .stage .btn--solid:hover { background: transparent; color: var(--on-stage); }
  .btn:hover svg { transform: translate(3px, -3px); }
}
.ul { background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; padding-bottom: .12em; transition: background-size .35s var(--ease-expressive); }
@media (hover: hover) { .ul:hover { background-size: 0 1px; background-position: 100% 100%; } }

/* ---------- header ---------- */
.hdr { position: fixed; inset: 0 0 auto 0; z-index: 80; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; padding-inline: var(--margin); color: var(--ink); transition: color .35s var(--ease-productive), transform .45s var(--ease-expressive), background-color .35s var(--ease-productive); }
.hdr[data-on="dark"] { color: var(--on-stage); }
.hdr.is-solid[data-on="light"] { background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); }
.hdr.is-solid[data-on="dark"] { background: color-mix(in srgb, var(--stage) 72%, transparent); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.hdr.is-hidden { transform: translateY(-101%); }
.brand { display: inline-flex; align-items: center; height: 40px; }
.brand img { height: 40px; width: auto; }
.brand .lg-dark, .hdr[data-on="dark"] .brand .lg-light { display: none; }
.hdr[data-on="dark"] .brand .lg-dark { display: block; }
.brand-txt { font-weight: 700; letter-spacing: -.04em; font-size: 1.35rem; line-height: .9; }
.brand-txt small { display: block; font-family: var(--f-mono); font-weight: 400; font-size: .56rem; letter-spacing: .24em; text-transform: uppercase; margin-top: .45em; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); font-weight: 500; font-size: .95rem; letter-spacing: -.01em; }
.nav a[aria-current="page"] { background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; padding-bottom: .15em; }
.nav .btn { padding: .78em 1.2em .74em; font-size: .9rem; }
.menu-btn { display: none; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: 10px 0 10px 14px; }
.menu { position: fixed; inset: 0; z-index: 79; background: var(--stage); color: var(--on-stage); display: grid; align-content: center; padding: calc(var(--header-h) + 24px) var(--margin) 48px; visibility: hidden; opacity: 0; transition: opacity .3s var(--ease-in), visibility 0s linear .3s; }
.menu.is-open { visibility: visible; opacity: 1; transition: opacity .4s var(--ease-out), visibility 0s; }
.menu a { display: block; font-weight: 700; font-size: clamp(2.6rem, 11vw, 5rem); letter-spacing: -.045em; line-height: 1.02; padding-block: .08em; }
.menu .slug { margin-top: 36px; color: var(--on-stage-2); }
@media (max-width: 860px) { .nav { display: none; } .menu-btn { display: block; } }

/* ---------- reveal vocabulary (two moves: mask rise, frame wipe) ---------- */
html.js .rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform 1.1s var(--ease-expressive); transition-delay: var(--d, 0s); }
html.js .rv.is-in { opacity: 1; transform: none; }
html.js .wipe { clip-path: inset(0 0 100% 0); transition: clip-path 1.25s var(--ease-expressive); transition-delay: var(--d, 0s); }
html.js .wipe > img, html.js .wipe > video, html.js .wipe > picture img { transform: scale(1.14); transition: transform 1.9s var(--ease-expressive); transition-delay: var(--d, 0s); }
html.js .wipe.is-in { clip-path: inset(0 0 0 0); }
html.js .wipe.is-in > img, html.js .wipe.is-in > video, html.js .wipe.is-in > picture img { transform: none; }
.line-mask { display: block; overflow: hidden; padding-bottom: .09em; margin-bottom: -.09em; }
.line-mask > span { display: block; }
html.js .line-mask > span { transform: translateY(108%); transition: transform 1.25s var(--ease-expressive); transition-delay: var(--d, 0s); }
html.js .is-in .line-mask > span, html.js .line-mask.is-in > span { transform: none; }

/* ---------- HERO: the reel that docks into the grid ---------- */
.dock { background: var(--stage); color: var(--on-stage); }
.dock__pin { position: relative; min-height: 100svh; overflow: clip; }
.dock__stage { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.dock__reel { position: absolute; inset: 0; z-index: 1; overflow: hidden; border-radius: 0; background: #000; will-change: top, left, width, height; }
.dock__reel video, .dock__reel img { width: 100%; height: 100%; object-fit: cover; }
.dock__reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 10, 13, .55) 0%, rgba(11, 10, 13, 0) 26%, rgba(11, 10, 13, 0) 48%, rgba(11, 10, 13, .82) 100%); opacity: var(--veil, 1); pointer-events: none; }
.dock__copy { position: absolute; z-index: 3; left: var(--margin); right: var(--margin); bottom: clamp(28px, 5.5vh, 70px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); align-items: end; }
.dock__copy h1 { grid-column: 1 / span 9; }
.dock__aside { grid-column: 10 / span 3; justify-self: end; text-align: right; display: grid; gap: 18px; justify-items: end; }
.dock__aside p { font-size: .98rem; line-height: 1.4; max-width: 26ch; color: var(--on-stage-2); }
.dock__top { position: absolute; z-index: 3; left: var(--margin); right: var(--margin); top: calc(var(--header-h) + 14px); display: flex; justify-content: space-between; gap: 20px; color: var(--on-stage-2); }
.dock__dest { position: absolute; z-index: 2; inset: 0; padding: calc(var(--header-h) + clamp(20px, 5vh, 56px)) var(--margin) clamp(24px, 4vh, 48px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); grid-template-rows: auto minmax(0, 1fr); row-gap: clamp(18px, 3.2vh, 40px); color: var(--ink); opacity: 0; pointer-events: none; }
.dock__dest-head { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.dock__slot { grid-column: 1 / span 7; align-self: stretch; min-height: 0; border-radius: 6px; }
.dock__side { grid-column: 9 / span 4; align-self: end; padding-bottom: clamp(8px, 2vh, 24px); display: grid; gap: clamp(14px, 2.4vh, 26px); }
.dock__side .big { font-weight: 700; font-size: clamp(3.4rem, 7vw, 7.4rem); letter-spacing: -.055em; line-height: .84; }
.dock__cap { margin-top: 14px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.scrollcue { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; color: var(--on-stage-2); }
.scrollcue i { width: 1px; height: 40px; background: currentColor; display: block; transform-origin: top; animation: cue 2.4s var(--ease-expressive) infinite; }
@keyframes cue { 0% { transform: scaleY(0); } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
/* static fallback (mobile, reduced motion, no JS): hero then the destination as a normal block */
html:not(.can-dock) .dock__pin { min-height: 0; }
html:not(.can-dock) .dock__stage { position: relative; height: 92svh; min-height: 560px; pointer-events: auto; }
html:not(.can-dock) .dock__copy { position: absolute; }
html:not(.can-dock) .dock__dest { position: relative; opacity: 1; pointer-events: auto; background: var(--paper); padding-top: clamp(48px, 8vw, 96px); grid-template-rows: auto; }
html:not(.can-dock) .dock__slot { display: none; }
html:not(.can-dock) .dock__side { grid-column: 1 / -1; }
@media (max-width: 1023px) {
  .dock__copy h1 { grid-column: 1 / -1; }
  .dock__aside { grid-column: 1 / -1; justify-self: start; text-align: left; justify-items: start; margin-top: 22px; }
  .dock__top .hide-s { display: none; }
}

/* ---------- THE STREAM: lopsided, work and proof interleaved ---------- */
.stream { padding-block: clamp(56px, 8vw, 140px) clamp(72px, 10vw, 180px); }
.stream__row { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); align-items: start; }
.stream__row + .stream__row { margin-top: clamp(56px, 9vw, 160px); }
.row-a > :first-child { grid-column: 1 / span 7; }
.row-a > :last-child { grid-column: 9 / span 4; margin-top: clamp(40px, 12vw, 220px); }
.row-b > :first-child { grid-column: 1 / span 4; margin-top: clamp(40px, 9vw, 170px); }
.row-b > :last-child { grid-column: 6 / span 7; }
.row-c > :first-child { grid-column: 2 / span 10; }
.brick { display: block; }
.brick__media { position: relative; overflow: hidden; border-radius: 6px; background: var(--paper-2); }
.brick__media img, .brick__media video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-expressive); }
.brick--wide .brick__media { aspect-ratio: 16 / 10; }
.brick--tall .brick__media { aspect-ratio: 4 / 5; }
.brick--cine .brick__media { aspect-ratio: 21 / 9; }
.brick__poster { position: absolute; right: clamp(12px, 1.6vw, 26px); bottom: clamp(12px, 1.6vw, 26px); width: clamp(84px, 12%, 170px); border-radius: 3px; box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .55); overflow: hidden; }
.brick__cap { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; align-items: start; margin-top: 16px; }
.brick__cap h3 { grid-column: 1; }
.brick__cap .status { grid-column: 2; grid-row: 1; }
.brick__meta { grid-column: 1 / -1; color: var(--ink-2); font-family: var(--f-mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.brick__line { grid-column: 1 / -1; max-width: 48ch; color: var(--ink-2); }
@media (hover: hover) { a.brick:hover .brick__media img, a.brick:hover .brick__media video { transform: scale(1.045); } }
.proof { border-top: 1px solid var(--rule); padding-top: 18px; display: grid; gap: 14px; }
.proof h3 { font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 700; letter-spacing: -.035em; line-height: 1; text-wrap: balance; }
.proof p { color: var(--ink-2); max-width: 40ch; }
.proof .brick__media { aspect-ratio: 4 / 3; margin-top: 6px; }
@media (max-width: 860px) {
  .row-a > *, .row-b > *, .row-c > * { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .row-a > :last-child, .row-b > :last-child { margin-top: 40px !important; }
  .row-b > :first-child { order: 2; margin-top: 40px !important; }
}

/* ---------- full-bleed plate ---------- */
.plate { position: relative; height: clamp(360px, 78vh, 900px); overflow: hidden; background: var(--stage); color: var(--on-stage); }
.plate > img, .plate > video { position: absolute; inset: 0; width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.plate::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 10, 13, .18), rgba(11, 10, 13, .0) 40%, rgba(11, 10, 13, .78)); }
.plate__cap { position: absolute; z-index: 2; left: var(--margin); right: var(--margin); bottom: clamp(22px, 4vw, 56px); display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.plate__cap .h2 { max-width: 16ch; }

/* ---------- THE RECORD band ---------- */
.record__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--rule-stage); margin-top: clamp(36px, 5vw, 80px); }
.record__cell { padding: clamp(22px, 3vw, 44px) 0 clamp(26px, 3.4vw, 52px); border-bottom: 1px solid var(--rule-stage); padding-right: var(--gutter); }
.record__cell b { display: block; font-weight: 700; font-size: clamp(4rem, 10.5vw, 11rem); letter-spacing: -.06em; line-height: .84; }
.record__cell span { display: block; margin-top: 14px; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-stage-2); max-width: 28ch; }
@media (max-width: 720px) { .record__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.laurels { display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(74px, 8.4vw, 132px), 1fr)); gap: clamp(18px, 2.6vw, 44px) clamp(14px, 2vw, 34px); margin-top: clamp(40px, 6vw, 96px); align-items: center; }
.laurels img { width: 100%; height: auto; filter: brightness(0) invert(1); opacity: .78; }
.frame .laurels img { filter: brightness(0); opacity: .8; }

/* ---------- THE SLATE: wall of covers + list ---------- */
.slate__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 28px; align-items: end; }
.slate__head > :first-child { grid-column: 1 / span 8; }
.slate__head .lead { grid-column: 9 / span 4; }
.tools { position: sticky; top: 0; transition: top .45s var(--ease-expressive); z-index: 20; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 14px; margin-top: clamp(28px, 4vw, 60px); background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--rule); }
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tab { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; padding: .72em .95em .64em; border: 1px solid var(--rule); border-radius: 2px; line-height: 1; transition: background-color .2s var(--ease-productive), color .2s var(--ease-productive), border-color .2s var(--ease-productive); }
.tab sup { font-size: .82em; margin-left: .45em; opacity: .62; vertical-align: baseline; }
.tab[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (hover: hover) { .tab:hover { border-color: var(--ink); } }
.wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(132px, 12.2vw, 210px), 1fr)); gap: clamp(8px, 1vw, 16px); margin-top: clamp(20px, 2.6vw, 40px); }
.cover { position: relative; display: block; aspect-ratio: 2 / 3; border-radius: 3px; overflow: hidden; background: var(--stage); color: var(--on-stage); transition: opacity .35s var(--ease-productive), transform .5s var(--ease-expressive), filter .35s var(--ease-productive); }
.cover img { width: 100%; height: 100%; object-fit: cover; }
.cover .status { position: absolute; left: 8px; top: 8px; font-size: .58rem; background: rgba(11, 10, 13, .72); color: var(--on-stage); border-color: transparent; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.cover--type { display: grid; align-content: end; padding: 14px; background: linear-gradient(160deg, var(--stage-2), var(--stage)); }
.cover--type::before { content: ""; position: absolute; left: 14px; right: 14px; top: 44px; height: 2px; background: var(--accent); }
.cover--type b { font-weight: 700; font-size: clamp(1.02rem, 1.5vw, 1.55rem); letter-spacing: -.035em; line-height: .96; text-wrap: balance; }
.cover--type em { font-style: normal; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-stage-2); margin-top: 8px; display: block; }
.cover.is-out { display: none; }
@media (hover: hover) {
  .wall:hover .cover { opacity: .34; filter: saturate(.4); }
  .wall .cover:hover { opacity: 1; filter: none; transform: translateY(-6px); }
}
.readout { min-height: 3.4em; margin-top: clamp(18px, 2.2vw, 32px); display: flex; justify-content: space-between; gap: 24px; align-items: baseline; flex-wrap: wrap; border-top: 1px solid var(--rule); padding-top: 16px; }
.readout b { font-weight: 700; font-size: clamp(1.5rem, 3vw, 3rem); letter-spacing: -.04em; line-height: 1; }
.readout span { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2); }
.stage .readout { border-color: var(--rule-stage); } .stage .readout span { color: var(--on-stage-2); }
/* list view */
.rows { margin-top: clamp(20px, 2.6vw, 40px); border-top: 1px solid var(--rule); }
.rowi { border-bottom: 1px solid var(--rule); }
.rowi.is-out { display: none; }
.rowi__btn { width: 100%; text-align: left; display: grid; grid-template-columns: 58px minmax(0, 1.6fr) minmax(0, 1fr) auto 28px; gap: var(--gutter); align-items: center; padding-block: 14px; }
.rowi__thumb { width: 58px; aspect-ratio: 2 / 3; border-radius: 2px; overflow: hidden; background: var(--stage); }
.rowi__thumb img { width: 100%; height: 100%; object-fit: cover; }
.rowi__t { font-weight: 700; font-size: clamp(1.25rem, 2.3vw, 2.35rem); letter-spacing: -.04em; line-height: 1; }
.rowi__t small { display: block; font-weight: 500; font-size: .92rem; letter-spacing: -.01em; color: var(--ink-2); margin-top: 6px; }
.rowi__m { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.rowi__x { width: 28px; height: 28px; position: relative; }
.rowi__x::before, .rowi__x::after { content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: transform .35s var(--ease-expressive); }
.rowi__x::after { transform: translate(-50%, -50%) rotate(90deg); }
.rowi[open-state="1"] .rowi__x::after { transform: translate(-50%, -50%) rotate(0deg); }
.rowi__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease-expressive); }
.rowi[open-state="1"] .rowi__body { grid-template-rows: 1fr; }
.rowi__in { overflow: hidden; }
.rowi__pad { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); padding: 6px 0 30px; }
.rowi__pad p { grid-column: 3 / span 6; max-width: 60ch; }
.rowi__pad .acts { grid-column: 10 / span 3; justify-self: end; display: grid; gap: 10px; justify-items: end; align-content: start; }
@media (max-width: 860px) {
  .rowi__btn { grid-template-columns: 46px minmax(0, 1fr) 24px; }
  .rowi__thumb { width: 46px; }
  .rowi__btn .rowi__m, .rowi__btn .status { display: none; }
  .rowi__pad p, .rowi__pad .acts { grid-column: 1 / -1; justify-self: start; justify-items: start; }
  .rowi__pad .acts { margin-top: 16px; }
  .slate__head > :first-child, .slate__head .lead { grid-column: 1 / -1; }
}
.view-toggle { display: inline-flex; border: 1px solid var(--rule); border-radius: 2px; overflow: hidden; }
.view-toggle button { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; padding: .72em .95em .64em; line-height: 1; }
.view-toggle button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
[data-view="wall"] .rows, [data-view="list"] .wall, [data-view="list"] .readout { display: none; }

/* ---------- cast strip ---------- */
.cast { display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(120px, 11vw, 180px), 1fr)); gap: clamp(10px, 1.2vw, 18px); margin-top: clamp(28px, 4vw, 64px); }
.cast figure { display: grid; gap: 10px; }
.cast .ph { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 3px; background: var(--paper-2); }
.stage .cast .ph { background: var(--stage-2); }
.cast img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; filter: grayscale(1) contrast(1.04); transition: filter .5s var(--ease-productive), transform 1.1s var(--ease-expressive); }
@media (hover: hover) { .cast figure:hover img { filter: none; transform: scale(1.04); } }
@media (hover: none) { .cast img { filter: none; } }
.cast figcaption { font-weight: 600; font-size: .92rem; letter-spacing: -.012em; line-height: 1.2; }
.names { columns: 4 200px; column-gap: var(--gutter); margin-top: clamp(28px, 4vw, 56px); font-weight: 600; font-size: clamp(1.05rem, 1.5vw, 1.4rem); letter-spacing: -.02em; line-height: 1.5; }

/* ---------- statement ---------- */
.statement .hero-t { max-width: 12ch; }
.statement__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 36px; margin-top: clamp(36px, 5vw, 80px); }
.statement__grid > div { grid-column: span 4; border-top: 1px solid var(--rule-stage); padding-top: 16px; }
.frame .statement__grid > div, .frame-2 .statement__grid > div { border-color: var(--rule); }
.statement__grid h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -.015em; margin-bottom: 8px; }
@media (max-width: 860px) { .statement__grid > div { grid-column: 1 / -1; } }

/* ---------- FILM PAGE ---------- */
.fhero { position: relative; min-height: 100svh; display: grid; align-items: end; background: var(--stage); color: var(--on-stage); overflow: hidden; }
.fhero__bg { position: absolute; inset: 0; }
.fhero__bg img, .fhero__bg video { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.fhero__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 78% 30%, rgba(11, 10, 13, 0) 0%, rgba(11, 10, 13, .55) 55%, rgba(11, 10, 13, .94) 100%), linear-gradient(180deg, rgba(11, 10, 13, .5), rgba(11, 10, 13, 0) 30%, rgba(11, 10, 13, .9)); }
.fhero__bg--tint { background: radial-gradient(90% 80% at 80% 20%, color-mix(in srgb, var(--accent) 34%, var(--stage)) 0%, var(--stage) 62%); }
.fhero__in { position: relative; z-index: 2; width: 100%; padding: calc(var(--header-h) + 40px) var(--margin) clamp(28px, 5vh, 64px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); align-items: end; row-gap: 28px; }
.fhero__txt { grid-column: 1 / span 8; display: grid; gap: clamp(16px, 2.4vh, 28px); }
.fhero__txt .hero-t { font-size: clamp(3rem, 9vw, 10rem); }
.fhero__meta { display: flex; gap: 12px 22px; flex-wrap: wrap; align-items: center; }
.fhero__poster { grid-column: 10 / span 3; justify-self: end; width: min(100%, 300px); aspect-ratio: 2 / 3; border-radius: 4px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8); background: var(--stage-2); }
.fhero__poster img { width: 100%; height: 100%; object-fit: cover; }
.fhero__rule { position: absolute; z-index: 2; left: var(--margin); right: var(--margin); bottom: 0; height: 2px; background: var(--accent); transform-origin: left; }
.subbar { position: sticky; top: 0; transition: top .45s var(--ease-expressive); z-index: 30; background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--rule); }
.subbar__in { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 12px var(--margin); min-height: 60px; }
.subbar__t { font-weight: 700; letter-spacing: -.03em; font-size: 1.08rem; display: flex; align-items: center; gap: 14px; min-width: 0; }
.subbar__t span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.subbar .btn { padding: .7em 1.1em .66em; font-size: .86rem; }
.fbody { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 48px; }
.fbody__main { grid-column: 1 / span 7; }
.fbody__main .lead { max-width: 30ch; font-size: clamp(1.5rem, 2.7vw, 2.75rem); line-height: 1.08; letter-spacing: -.035em; font-weight: 600; margin-bottom: clamp(22px, 3vw, 44px); }
.fbody__main .body { font-size: clamp(1.06rem, 1.25vw, 1.25rem); line-height: 1.5; }
.fbody__rail { grid-column: 9 / span 4; }
.facts { border-top: 1px solid var(--rule); }
.facts div { display: grid; grid-template-columns: minmax(0, 9.5em) 1fr; gap: 14px; padding-block: 14px; border-bottom: 1px solid var(--rule); }
.facts dt { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2); padding-top: .2em; }
.facts dd { font-size: .98rem; line-height: 1.42; }
@media (max-width: 860px) { .fbody__main, .fbody__rail, .fhero__txt { grid-column: 1 / -1; } .fhero__poster { grid-column: 1 / span 5; justify-self: start; order: -1; width: 46vw; max-width: 220px; } }
.parts { display: grid; gap: clamp(36px, 5vw, 84px); margin-top: clamp(36px, 5vw, 72px); }
.part { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 20px; align-items: start; border-top: 1px solid var(--rule-stage); padding-top: clamp(18px, 2vw, 30px); }
.frame .part { border-color: var(--rule); }
.part__n { grid-column: 1 / span 1; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .08em; color: var(--accent); }
.part__poster { grid-column: 2 / span 3; aspect-ratio: 2 / 3; border-radius: 3px; overflow: hidden; background: var(--stage-2); }
.part__poster img { width: 100%; height: 100%; object-fit: cover; }
.part__txt { grid-column: 6 / span 7; display: grid; gap: 16px; }
.part__txt h3 { font-size: clamp(1.8rem, 3.6vw, 3.7rem); font-weight: 700; letter-spacing: -.042em; line-height: .96; }
.watch { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.watch a { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; padding: .68em .9em .6em; border: 1px solid var(--rule-stage); border-radius: 2px; line-height: 1; transition: background-color .2s var(--ease-productive), color .2s var(--ease-productive), border-color .2s var(--ease-productive); }
.frame .watch a { border-color: var(--rule); }
@media (hover: hover) { .stage .watch a:hover { background: var(--on-stage); color: var(--stage); border-color: var(--on-stage); } .frame .watch a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); } }
.watch-note { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .05em; color: var(--on-stage-2); margin-top: 10px; }
@media (max-width: 860px) { .part__n { grid-column: 1 / -1; } .part__poster { grid-column: 1 / span 5; } .part__txt { grid-column: 1 / -1; } }
.awards { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 40px; }
.awards__nums { grid-column: 1 / span 4; display: grid; gap: 22px; align-content: start; }
.awards__nums b { font-weight: 700; font-size: clamp(4rem, 8.5vw, 8.6rem); letter-spacing: -.06em; line-height: .84; display: block; }
.awards__nums span { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-stage-2); }
.awards__list { grid-column: 6 / span 7; columns: 2 240px; column-gap: var(--gutter); font-size: .95rem; line-height: 1.35; }
.awards__list li { break-inside: avoid; padding-block: 9px; border-bottom: 1px solid var(--rule-stage); display: flex; justify-content: space-between; gap: 14px; }
.awards__list li span { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .05em; color: var(--on-stage-2); white-space: nowrap; padding-top: .2em; }
@media (max-width: 860px) { .awards__nums, .awards__list { grid-column: 1 / -1; } }
.billing { font-family: var(--f-bill); text-transform: uppercase; text-align: center; max-width: 1180px; margin-inline: auto; line-height: 1.04; letter-spacing: .045em; font-size: clamp(1.9rem, 4.1vw, 4.3rem); color: var(--on-stage); text-wrap: balance; }
.billing .r { font-size: .56em; letter-spacing: .1em; color: var(--on-stage-2); margin-inline: .35em .2em; position: relative; top: -.12em; }
.billing .n { white-space: nowrap; }
.billing-logos { display: flex; justify-content: center; align-items: center; gap: clamp(22px, 4vw, 60px); margin-top: clamp(28px, 4vw, 56px); opacity: .85; flex-wrap: wrap; }
.billing-logos img { height: clamp(30px, 3.4vw, 50px); width: auto; }
.related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; }
.related a { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--stage-2); color: var(--on-stage); display: grid; align-content: end; padding: clamp(16px, 2vw, 30px); }
.related a img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: opacity .5s var(--ease-productive), transform 1.4s var(--ease-expressive); }
.related a > * { position: relative; }
.related b { font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 2.6rem); letter-spacing: -.04em; line-height: .96; display: block; margin-top: 10px; }
@media (hover: hover) { .related a:hover img { opacity: .78; transform: scale(1.05); } }
@media (max-width: 720px) { .related { grid-template-columns: 1fr; } .related a { aspect-ratio: 16 / 10; } }

/* ---------- worlds (WYNX) ---------- */
.worlds { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; background: var(--rule-stage); border: 1px solid var(--rule-stage); margin-top: clamp(28px, 4vw, 56px); }
.worlds li { background: var(--stage); padding: clamp(14px, 1.6vw, 24px); min-height: 8.5em; display: grid; align-content: space-between; gap: 18px; }
.worlds span { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; color: var(--accent); }
.worlds b { font-weight: 600; font-size: clamp(1rem, 1.4vw, 1.3rem); letter-spacing: -.02em; line-height: 1.1; }
@media (max-width: 860px) { .worlds { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- about / enquiries / record ---------- */
.phead { padding-top: calc(var(--header-h) + clamp(48px, 9vw, 150px)); padding-bottom: clamp(40px, 6vw, 100px); }
.phead .hero-t { max-width: 13ch; }
.phead .lead { margin-top: clamp(22px, 3vw, 44px); }
.split { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 28px; align-items: start; }
.split > .k { grid-column: 1 / span 4; position: sticky; top: calc(var(--header-h) + 24px); }
.split > .v { grid-column: 6 / span 7; }
.split .h2 { max-width: 13ch; }
@media (max-width: 860px) { .split > .k, .split > .v { grid-column: 1 / -1; position: static; } }
.pull { font-weight: 700; font-size: clamp(2rem, 5vw, 5.4rem); letter-spacing: -.045em; line-height: .96; max-width: 17ch; text-wrap: balance; }
.roster { columns: 4 170px; column-gap: var(--gutter); font-size: .98rem; line-height: 1.75; margin-top: 28px; }
.founders { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gutter); margin-top: clamp(28px, 4vw, 60px); }
.founders figure { display: grid; gap: 14px; }
.founders .ph { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px; background: var(--paper-2); }
.founders img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.founders b { font-weight: 700; font-size: clamp(1.3rem, 2vw, 2rem); letter-spacing: -.035em; display: block; line-height: 1; }
.makes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 var(--gutter); border-top: 1px solid var(--rule); margin-top: 28px; }
.makes > div { padding-block: 22px; border-bottom: 1px solid var(--rule); }
.makes h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); font-weight: 700; letter-spacing: -.035em; margin-bottom: 8px; }
@media (max-width: 720px) { .makes, .founders { grid-template-columns: 1fr; } }
.lines { border-top: 1px solid var(--rule-stage); margin-top: clamp(32px, 5vw, 72px); }
.line { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 12px; padding-block: clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--rule-stage); align-items: baseline; }
.line .slug { grid-column: 1 / span 3; color: var(--on-stage-2); }
.line h2 { grid-column: 4 / span 5; font-weight: 700; font-size: clamp(1.6rem, 3.2vw, 3.2rem); letter-spacing: -.04em; line-height: 1; }
.line .go { grid-column: 9 / span 4; justify-self: end; display: grid; gap: 8px; justify-items: end; text-align: right; font-size: 1.02rem; }
@media (max-width: 860px) { .line .slug, .line h2, .line .go { grid-column: 1 / -1; justify-self: start; justify-items: start; text-align: left; } }
.rec-tools { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; margin-top: clamp(24px, 3vw, 44px); padding-block: 14px; border-block: 1px solid var(--rule); position: sticky; top: 0; transition: top .45s var(--ease-expressive); z-index: 20; background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.rec-tools select, .rec-tools input { font: inherit; font-family: var(--f-mono); font-size: .8rem; letter-spacing: .03em; background: transparent; color: inherit; border: 1px solid var(--rule); border-radius: 2px; padding: .7em .9em .62em; min-height: 42px; }
.rec-tools input { flex: 1 1 220px; }
.rec-count { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2); margin-left: auto; }
.rec-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: .96rem; }
.rec-table th { text-align: left; font-family: var(--f-mono); font-weight: 400; font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-2); padding: 16px 12px 10px 0; border-bottom: 1px solid var(--ink); }
.rec-table td { padding: 12px 12px 11px 0; border-bottom: 1px solid var(--rule); vertical-align: top; line-height: 1.35; }
.rec-table td:nth-child(1) { font-weight: 600; letter-spacing: -.012em; }
.rec-table td.res { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.rec-table tr[data-r="Winner"] td.res { font-weight: 700; }
.rec-table td.dt { font-family: var(--f-mono); font-size: .76rem; white-space: nowrap; color: var(--ink-2); }
.rec-table td.vn { color: var(--ink-2); font-size: .88rem; }
.rec-table tr.is-out { display: none; }
@media (max-width: 860px) { .rec-table th:nth-child(5), .rec-table td.vn { display: none; } .rec-table { font-size: .88rem; } }

/* ---------- closer + footer ---------- */
.closer .hero-t { max-width: 11ch; }
.closer__row { display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap; margin-top: clamp(32px, 5vw, 72px); }
.ftr { background: var(--stage); color: var(--on-stage); padding: clamp(40px, 5vw, 80px) var(--margin) 0; overflow: hidden; }
.ftr__top { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: 36px; padding-bottom: clamp(36px, 5vw, 72px); border-bottom: 1px solid var(--rule-stage); }
.ftr__col { grid-column: span 3; display: grid; gap: 10px; align-content: start; font-size: .98rem; }
.ftr__col .slug { color: var(--on-stage-2); margin-bottom: 8px; }
.ftr__legal { grid-column: 1 / -1; max-width: 96ch; font-size: .78rem; line-height: 1.5; color: var(--on-stage-2); }
.ftr__word { font-weight: 700; font-size: clamp(4.6rem, 23.5vw, 27rem); letter-spacing: -.07em; line-height: .78; white-space: nowrap; margin: clamp(18px, 3vw, 40px) 0 -.085em -.035em; user-select: none; }
.ftr__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 18px 22px; padding-left: 78px; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; color: var(--on-stage-2); }
@media (max-width: 860px) { .ftr__col { grid-column: span 6; } }

/* ---------- native cross-document transitions: the cover becomes the poster ---------- */
@view-transition { navigation: auto; }
::view-transition-group(*) { animation-duration: .7s; animation-timing-function: cubic-bezier(.4, .14, .3, 1); }
::view-transition-old(root) { animation: vt-out .35s cubic-bezier(.2, 0, 1, .9) both; }
::view-transition-new(root) { animation: vt-in .6s cubic-bezier(0, 0, .38, .9) .08s both; }
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; } }

/* ---------- reduced motion: keep the destination, drop the journey ---------- */
@media (prefers-reduced-motion: reduce) {
  html.js .rv, html.js .wipe, html.js .wipe > img, html.js .wipe > video, html.js .line-mask > span { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .scrollcue i, .status i { animation: none !important; }
  ::view-transition-group(*), ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
  .brick__media img, .brick__media video, .cover, .cast img { transition: none !important; }
}

/* sticky bars sit under the header while it is shown */
html.hdr-shown .tools, html.hdr-shown .rec-tools, html.hdr-shown .subbar { top: var(--header-h); }
html:not(.can-dock) .dock__dest .dock__dest-head { flex-wrap: wrap; }

/* posters that are not 2:3 are fitted, never cropped (no head is ever cut) */
img.fit { object-fit: contain !important; background: #000; }

/* deterministic capture state: /?shot reveals everything and stops motion (for QA screenshots) */
html.shot .rv, html.shot .wipe, html.shot .wipe > img, html.shot .wipe > video, html.shot .line-mask > span { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
html.shot .hdr { position: absolute; }
html.shot .scrollcue i, html.shot .status i { animation: none !important; }
html.shot .wynx-hero, html.shot .woo-hero, html.shot .wtd-hero, html.shot .fhero, html.shot .phead[style*="100svh"] { min-height: 900px !important; }
html.shot .dock__stage { height: 900px !important; }
html.shot .plate { height: 700px !important; }
