/* ============================================================
   PIXEL PEOPLE — every frame begins with a pixel.
   pure black · warm cream · one champagne-gold pixel (#dac2a8)
   ============================================================ */

/* ---------- fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  src: url(assets/fonts/fraunces-0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(assets/fonts/fraunces-1.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(assets/fonts/inter-0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/plexmono-0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/fonts/plexmono-1.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- tokens ---------- */
:root {
  --black: #000000;
  --ink: #050403;
  --cream: #f2ece1;      /* pure warm white — emphasis */
  --grey: #85807a;       /* ~50% secondary */
  --dim: #38352f;        /* unlit words */
  --hair: rgba(242, 236, 225, 0.12);
  --gold: #dac2a8;       /* sampled from the logo pixel */
  --serif: 'Fraunces', 'Georgia', serif;
  --sans: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --pad-x: clamp(1.4rem, 6vw, 6rem);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.fine-pointer, body.fine-pointer a, body.fine-pointer button { cursor: none; }

::selection { background: var(--gold); color: var(--black); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; }

.display {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 370;
  text-transform: lowercase;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--cream);
}

.eyebrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--grey);
}

.mono-note {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---------- reveal on enter ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- progress rail ---------- */
.rail {
  position: fixed; top: 0; left: 0; bottom: 0; width: 2px;
  background: rgba(242, 236, 225, 0.07);
  z-index: 90;
}
.rail-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(218,194,168,0.25), var(--gold));
  transform: scaleY(0); transform-origin: top;
  will-change: transform;
}
.rail-pixel {
  position: absolute; top: 0; left: -3px; width: 8px; height: 8px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(218, 194, 168, 0.8);
  will-change: transform;
}

/* ---------- custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; display: none; }
body.fine-pointer .cursor { display: block; }
.cursor-pos {
  position: fixed; top: 0; left: 0;
  will-change: transform;
  transform: translate3d(-100px, -100px, 0);
}
.cursor-px {
  position: absolute; top: 0; left: 0;
  width: 7px; height: 7px; background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.5s var(--ease);
}
.cursor-ring {
  position: absolute; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(218, 194, 168, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: width 0.5s var(--ease), height 0.5s var(--ease), border-color 0.5s var(--ease);
}
.cursor.is-hover .cursor-px { transform: translate(-50%, -50%) rotate(135deg); }
.cursor.is-hover .cursor-ring { width: 52px; height: 52px; border-color: rgba(218, 194, 168, 0.9); }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -60%; width: 220%; height: 220%;
  z-index: 80; pointer-events: none; opacity: 0.055;
  will-change: transform;
}
.grain.on { animation: grain 0.85s steps(8) infinite; }
@keyframes grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-4%, 6%); }
  50%  { transform: translate(5%, -3%); }
  75%  { transform: translate(-6%, -5%); }
  100% { transform: translate(3%, 4%); }
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem clamp(1.4rem, 4vw, 2.6rem);
  transition: background 0.7s var(--ease);
}
.site-header.scrolled {
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
}
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-mark { height: 30px; width: auto; }
/* real wordmark crop from the logo (three-bar Ǝ, gold middle bar) */
.brand-word { height: 11px; width: auto; display: block; }
.reel-btn {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream);
  border: 1px solid rgba(242, 236, 225, 0.22);
  border-radius: 999px; padding: 0.72rem 1.3rem 0.72rem 1.1rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  transition: border-color 0.6s var(--ease), background 0.6s var(--ease);
}
.reel-btn:hover { border-color: rgba(218, 194, 168, 0.7); background: rgba(0,0,0,0.6); }
.reel-dot { width: 6px; height: 6px; background: var(--gold); flex: none; }

/* ---------- scrub sections ---------- */
.scrub { position: relative; }
#hero   { height: 430vh; }
#craft  { height: 500vh; }
#finale { height: 330vh; }
.scrub-pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: var(--black);
}
.scrub-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  opacity: 0; transition: opacity 0.7s var(--ease); /* fade in from black on first frame */
}
.scrub-canvas.ready { opacity: 1; }
.scrub-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 110% 90% at 50% 48%, transparent 55%, rgba(0,0,0,0.62) 100%);
}

/* ---------- hero ---------- */
.hero-eyebrow {
  position: absolute; top: clamp(5.2rem, 12vh, 7.5rem); left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
}
.hero-line {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--pad-x);
  opacity: 0; will-change: opacity, transform;
  pointer-events: none;
}
.hero-line .display { font-size: clamp(3.2rem, 10.5vw, 8.6rem); }
.gold-word { font-style: italic; color: var(--gold); }
.hero-logo { flex-direction: column; }
.hero-logo::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: min(120vw, 900px); height: min(120vw, 900px);
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(0,0,0,0.82), rgba(0,0,0,0.5) 45%, transparent 72%);
}
.hero-logo img {
  position: relative;
  width: clamp(230px, 30vw, 400px); height: auto;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.9));
}
.scroll-hint {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: #b7b1a7;
}
.hint-track {
  position: relative; width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(218, 194, 168, 0.45));
  overflow: visible;
}
.hint-px {
  position: absolute; left: -2.5px; top: 0;
  width: 6px; height: 6px; background: var(--gold);
  box-shadow: 0 0 10px rgba(218, 194, 168, 0.9);
  animation: hint-fall 2.4s cubic-bezier(0.45, 0, 0.35, 1) infinite;
}
.hint-label { padding-left: 0.5em; /* optical centering vs letter-spacing */ }
@keyframes hint-fall {
  0%   { transform: translateY(0); opacity: 0; }
  22%  { opacity: 1; }
  78%  { opacity: 1; }
  100% { transform: translateY(46px); opacity: 0; }
}

/* ---------- manifesto ---------- */
.manifesto { height: 300vh; position: relative; }
.manifesto-pin {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--pad-x);
}
.manifesto-text {
  max-width: 1020px;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 380;
  font-size: clamp(1.55rem, 3.4vw, 2.85rem);
  line-height: 1.42;
  letter-spacing: 0.002em;
}
.manifesto-text .w { color: var(--dim); transition: color 0.3s linear; }
.manifesto-text .w.lit { color: var(--cream); }

/* ---------- proof ---------- */
.proof {
  position: relative;
  padding: 22vh var(--pad-x) 26vh;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  background: var(--black);
}
.section-title { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 8vh; }
.proof-stage { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; margin-bottom: 18vh; }
.proof-frame {
  position: relative;
  height: min(80vh, 42rem); aspect-ratio: 9 / 16;
  border: 1px solid var(--hair);
  background: var(--ink);
  overflow: hidden;
}
.proof-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.55);
}
.proof-caption { text-align: center; }
.drag-word { color: var(--gold); }

/* ---------- showreel strip ---------- */
.reel-strip {
  width: 100%; max-width: 1380px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  margin-bottom: 3.4rem;
}
.reel-card { cursor: pointer; outline: none; }
.reel-frame {
  position: relative; aspect-ratio: 16 / 9;
  border: 1px solid var(--hair);
  background: var(--ink);
  overflow: hidden;
  transition: border-color 0.7s var(--ease), transform 0.7s var(--ease);
}
.reel-card:hover .reel-frame,
.reel-card:focus-visible .reel-frame { border-color: rgba(218, 194, 168, 0.55); transform: translateY(-4px); }
.reel-prev { width: 100%; height: 100%; object-fit: cover; display: block; }
.unmute {
  position: absolute; right: 0.8rem; bottom: 0.8rem; z-index: 2;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(242, 236, 225, 0.18);
  padding: 0.45rem 0.75rem;
  letter-spacing: 0.26em;
  opacity: 0;
  transition: opacity 0.6s var(--ease), border-color 0.6s var(--ease);
}
.reel-card:hover .unmute, .reel-card:focus-visible .unmute, .unmute.is-on { opacity: 1; }
.unmute:hover { border-color: rgba(218, 194, 168, 0.7); }
.unmute.is-on { color: var(--gold); border-color: rgba(218, 194, 168, 0.5); }
.reel-open {
  position: absolute; left: 0.8rem; bottom: 0.95rem; z-index: 2;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.45rem 0.75rem;
  letter-spacing: 0.26em;
  opacity: 0; transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.reel-card:hover .reel-open, .reel-card:focus-visible .reel-open { opacity: 1; }
.reel-label { margin-top: 1.05rem; text-align: center; }
.view-all {
  display: inline-block;
  color: var(--cream);
  border-bottom: 1px solid rgba(218, 194, 168, 0.4);
  padding-bottom: 0.35rem;
  margin-bottom: 16vh;
  transition: color 0.6s var(--ease), border-color 0.6s var(--ease);
}
.view-all:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- before / after slider ---------- */
.ba-wrap { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.ba-slider {
  --x: 0.5;
  position: relative;
  height: min(80vh, 42rem); aspect-ratio: 9 / 16;
  border: 1px solid var(--hair);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
  outline: none;
}
.ba-slider:focus-visible { border-color: rgba(218, 194, 168, 0.6); }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { position: absolute; }
.ba-top {
  position: absolute; inset: 0; overflow: hidden;
  clip-path: inset(0 0 0 calc(var(--x) * 100%));
  will-change: clip-path;
}
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: calc(var(--x) * 100%);
  width: 1px; background: var(--gold);
  box-shadow: 0 0 14px rgba(218, 194, 168, 0.5);
  will-change: left;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.ba-handle span {
  width: 7px; height: 7px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
  transform: rotate(-45deg);
}
.ba-handle span:last-child { transform: rotate(135deg); }
.ba-label {
  position: absolute; top: 1rem;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.34em; color: var(--cream);
  background: rgba(0, 0, 0, 0.55); padding: 0.45rem 0.8rem 0.45rem 0.95rem;
  pointer-events: none;
}
.ba-label-l { left: 1rem; }
.ba-label-r { right: 1rem; }

/* ---------- craft ---------- */
.craft-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(0,0,0,0.86) 22%, rgba(0,0,0,0.42) 55%, rgba(0,0,0,0.05) 85%);
}
.craft-content {
  position: absolute; inset: 0;
  padding: 0 var(--pad-x);
  display: flex; flex-direction: column; justify-content: center;
}
.craft-kicker { position: absolute; top: clamp(5.2rem, 12vh, 7.5rem); left: var(--pad-x); }
.act {
  position: absolute; top: 50%; left: var(--pad-x); right: var(--pad-x);
  transform: translateY(-50%);
  max-width: 720px;
  opacity: 0; will-change: opacity, transform;
  pointer-events: none;
}
.act-eyebrow { margin-bottom: 1.6rem; color: var(--grey); }
.act-title { font-size: clamp(2.5rem, 6.2vw, 5.2rem); margin-bottom: 2.6rem; }
.act-list { list-style: none; }
.act-list li {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  color: var(--grey);
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(242, 236, 225, 0.08);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), color 0.7s var(--ease);
}
.act-list li.on { opacity: 1; transform: none; color: var(--cream); }
.act-list-cols { columns: 2; column-gap: 3.5rem; }
.act-list-cols li { break-inside: avoid; }

/* ---------- legacy ---------- */
.legacy {
  position: relative;
  padding: 26vh var(--pad-x);
  background: var(--black);
}
.legacy > .eyebrow { margin-bottom: 10vh; }
.chapter {
  display: grid; grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  margin-bottom: 22vh;
}
.chapter-flip { direction: rtl; }
.chapter-flip > * { direction: ltr; }
.chapter-portrait { position: relative; }
.chapter-portrait img { width: 100%; filter: contrast(1.02); }
.chapter-portrait::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 40%);
  pointer-events: none;
}
.chapter-portrait figcaption { margin-top: 1.1rem; }
.chapter-title { font-size: clamp(2.4rem, 5.4vw, 4.6rem); margin-bottom: 3rem; }
.chapter-text {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  max-width: 58ch;
  margin-bottom: 1.6rem;
}
.chapter-text .w { color: var(--dim); transition: color 0.3s linear; }
.chapter-text .w.lit { color: #c9c2b6; }

/* ---------- team ---------- */
.team {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3rem);
  max-width: 1100px;
  border-top: 1px solid var(--hair);
  padding-top: 8vh;
}
.team-card {
  display: flex; gap: 1.6rem; align-items: center;
  padding: 1.4rem;
  border: 1px solid transparent;
  transition: transform 0.7s var(--ease), border-color 0.7s var(--ease);
}
.team-card:hover { transform: translateY(-6px); border-color: var(--hair); }
.team-card img { width: 108px; height: 108px; object-fit: cover; flex: none; }
.team-meta h4 {
  font-family: var(--serif); font-weight: 420; font-size: 1.35rem;
  text-transform: lowercase; letter-spacing: 0.01em;
  display: inline;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.7s var(--ease);
}
.team-card:hover .team-meta h4 { background-size: 100% 1px; }
.team-meta .mono-note { margin: 0.5rem 0 0.7rem; }
.team-bio { font-size: 0.88rem; color: var(--grey); line-height: 1.6; }

/* ---------- finale ---------- */
.finale-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 62% at 50% 50%, rgba(0,0,0,0.78), rgba(0,0,0,0.28) 68%, rgba(0,0,0,0.05));
  opacity: 0; will-change: opacity;
}
.finale-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 52% 40% at 50% 55%, rgba(218, 194, 168, 0.10), transparent 70%);
}
.finale-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3rem; text-align: center; padding: 0 var(--pad-x);
}
.finale-title {
  font-size: clamp(3rem, 9vw, 7.6rem);
  text-shadow: 0 0 80px rgba(0, 0, 0, 0.85);
  opacity: 0; will-change: opacity, transform;
}
.finale-ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; opacity: 0; will-change: opacity, transform; }
.pill {
  font-family: var(--mono); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  border-radius: 999px; padding: 1.05rem 2.3rem;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease), background 0.6s var(--ease);
}
.pill-gold { background: var(--gold); color: var(--black); }
.pill-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(218, 194, 168, 0.28); }
.pill-ghost { border: 1px solid rgba(242, 236, 225, 0.28); color: var(--cream); background: rgba(0, 0, 0, 0.3); }
.pill-ghost:hover { transform: translateY(-3px); border-color: rgba(242, 236, 225, 0.6); }
.finale-contact {
  opacity: 0; will-change: opacity;
  color: var(--cream);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.95), 0 0 6px rgba(0, 0, 0, 0.8);
}
.finale-contact a:hover { color: var(--gold); }

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  padding: 10vh var(--pad-x) 6vh;
  border-top: 1px solid rgba(242, 236, 225, 0.07);
  background: var(--black);
}
.footer-mark { height: 46px; width: auto; }
.footer-nav { display: flex; gap: 2.6rem; }
.footer-nav span { opacity: 0.75; }
.footer-social { display: flex; gap: 2rem; }
.footer-social a { transition: color 0.5s var(--ease); }
.footer-social a:hover { color: var(--cream); }
.footer-contact a { transition: color 0.5s var(--ease); }
.footer-contact a:hover { color: var(--cream); }
.footer-line { opacity: 0.55; text-align: center; }

/* ---------- videos page ---------- */
.work-hero {
  padding: 30vh var(--pad-x) 12vh;
  text-align: center;
}
.work-hero .eyebrow { margin-bottom: 2.2rem; }
.work-title { font-size: clamp(3.4rem, 11vw, 9rem); }
.work-list {
  display: flex; flex-direction: column; align-items: center;
  gap: 14vh;
  padding: 4vh var(--pad-x) 20vh;
}
.work-item { width: min(100%, 1080px); }
.work-item .mono-note { margin-bottom: 1.2rem; letter-spacing: 0.34em; }
.work-frame {
  position: relative;
  border: 1px solid var(--hair);
  background: var(--ink);
}
.work-frame video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #000; }
.work-back {
  position: fixed; top: 1.55rem; left: clamp(1.4rem, 4vw, 2.6rem); z-index: 100;
  color: var(--cream); letter-spacing: 0.3em;
  padding: 0.6rem 0;
  transition: color 0.5s var(--ease);
}
.work-back:hover { color: var(--gold); }

/* ---------- reel modal ---------- */
.reel-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.reel-modal.open { opacity: 1; visibility: visible; }
.reel-video {
  width: min(92vw, 163.5vh); /* 16:9 stage even before metadata loads */
  aspect-ratio: 16 / 9;
  max-height: 92vh; max-width: 92vw;
  background: #000;
  outline: none;
}
.reel-close {
  position: absolute; top: 1.6rem; right: clamp(1.4rem, 4vw, 2.6rem); z-index: 2;
  color: var(--cream); padding: 0.8rem;
  letter-spacing: 0.34em;
}
.reel-close:hover { color: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .brand-word { display: none; }
  .hero-eyebrow { white-space: normal; width: calc(100% - 4rem); font-size: 0.58rem; letter-spacing: 0.3em; line-height: 2; }
  .chapter { grid-template-columns: 1fr; gap: 2.6rem; margin-bottom: 16vh; }
  .chapter-flip { direction: ltr; }
  .chapter-portrait { max-width: 340px; }
  .team { grid-template-columns: 1fr; }
  .craft-shade { background: linear-gradient(to top, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.1)); }
  .act { top: auto; bottom: 9vh; transform: none; }
  .act-list-cols { column-gap: 1.6rem; }
  .act-list li { font-size: 0.85rem; padding: 0.55rem 0; }
  .act-title { margin-bottom: 1.6rem; }
  .proof-frame, .ba-slider { height: auto; width: min(100%, 24rem); }
  .reel-strip { grid-template-columns: 1fr; gap: 2.6rem; }
  .unmute, .reel-open { opacity: 1; } /* no hover on touch — keep controls visible */
  .work-hero { padding-top: 24vh; }
  .rail { width: 2px; }
  .finale-ctas { flex-direction: column; align-items: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .scrub { height: auto !important; }
  .scrub-pin { position: relative; }
  .hero-line, .act, .finale-title, .finale-ctas, .finale-contact { opacity: 1 !important; transform: none !important; }
  .hero-line { position: relative; inset: auto; padding: 12vh var(--pad-x); }
  .hero-line.hero-logo { padding-top: 0; }
  .act { position: relative; top: auto; left: auto; right: auto; margin: 8vh 0; pointer-events: auto; }
  .act-list li { opacity: 1; transform: none; color: var(--cream); }
  .craft-content { position: relative; padding-top: 16vh; padding-bottom: 10vh; }
  .scrub-pin { height: auto; min-height: 100vh; }
  .manifesto { height: auto; }
  .manifesto-pin { position: relative; padding: 20vh var(--pad-x); }
  .manifesto-text .w, .chapter-text .w { color: var(--cream) !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .grain.on { animation: none; }
  .hint-px { animation: none; }
  .scrub-canvas { transition: none; }
  .cursor { display: none !important; }
  body.fine-pointer, body.fine-pointer a, body.fine-pointer button { cursor: auto; }
}
