/* Strange Goose · shared styles (Option A) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #f5f2ec;
  --paper-2: #ebe7dd;
  --paper-3: #e3dfd3;
  --ink: #14120f;
  --ink-2: #2a2622;
  --ink-3: #5a5449;
  --muted: #8a8376;
  --faint: #c7c1b3;
  --accent: oklch(58% 0.14 45);
  --accent-dim: oklch(58% 0.14 45 / 0.12);
  --accent-strong: oklch(52% 0.16 45);
  --sans: 'Inter Tight', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ── typography ── */
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.mono { font-family: var(--mono); letter-spacing: 0.08em; }
.up { text-transform: uppercase; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.45;
}

/* ── layout ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.wrap-tight { max-width: 960px; margin: 0 auto; padding: 0 40px; }

/* ── nav ── */
nav.top {
  position: sticky;
  top: 0;
  z-index: 40;
  flex-shrink: 0;
  background: rgba(245,242,236,0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
          backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(20,18,15,0.12);
  box-shadow: 0 10px 30px -24px rgba(20,18,15,0.55);
  padding: 13px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
nav.top .brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
nav.top .links {
  display: flex; gap: 4px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-2);
}
nav.top .links a {
  position: relative;
  padding: 9px 14px;
  border-radius: 3px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
nav.top .links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}
nav.top .links a:hover { color: var(--ink); background: rgba(20,18,15,0.05); }
nav.top .links a:hover::after { transform: scaleX(1); }
nav.top .links a.active { color: var(--ink); background: rgba(20,18,15,0.05); }
nav.top .links a.active::after { transform: scaleX(1); }
nav.top .cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 8px 14px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
nav.top .cta:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }

/* ── goose glyph ── */
.goose-glyph {
  display: inline-block;
  width: 18px; height: 18px;
  position: relative;
  vertical-align: -3px;
}
.goose-glyph::before {
  content: ''; position: absolute;
  top: 0; left: 9px; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.goose-glyph::after {
  content: ''; position: absolute;
  top: 7px; left: 2px; width: 14px; height: 9px;
  background: currentColor;
  border-radius: 50% 60% 40% 70% / 60% 50% 70% 40%;
}
.goose-glyph.lg { width: 28px; height: 28px; }
.goose-glyph.lg::before { left: 14px; width: 10px; height: 10px; }
.goose-glyph.lg::after { top: 11px; left: 3px; width: 22px; height: 14px; }

/* ── buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border: 1px solid transparent;
}
.btn.primary { background: var(--accent); color: var(--paper); }
.btn.primary:hover { background: var(--accent-strong); }
.btn.ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.invert { background: var(--ink); color: var(--paper); }
.btn.invert:hover { background: var(--accent); }

/* ── placeholder imagery ── */
.ph {
  position: relative;
  background: var(--paper-3);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(20,18,15,0.035),
    rgba(20,18,15,0.035) 6px,
    rgba(20,18,15,0.07) 6px,
    rgba(20,18,15,0.07) 12px
  );
  pointer-events: none;
}
.ph .ph-label {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 4px 8px;
  border-radius: 2px;
}
.ph.dark { background: #111110; color: var(--paper); }
.ph.dark::before {
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 6px,
    rgba(255,255,255,0.06) 6px,
    rgba(255,255,255,0.06) 12px
  );
}
.ph.dark .ph-label { background: #111110; color: var(--paper); border: 1px solid rgba(242,239,232,0.4); }

/* ── footer ── */
footer.site {
  margin-top: 80px;
  border-top: 1px solid rgba(20,18,15,0.1);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
footer.site .links { display: flex; gap: 24px; }
footer.site a:hover { color: var(--ink); }

/* ── section shared ── */
section { padding: 80px 0; }
section.tight { padding: 48px 0; }
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px; background: var(--accent);
}

/* ── tabular numbers ── */
.tabular { font-variant-numeric: tabular-nums; }

/* responsive */
@media (max-width: 920px) {
  nav.top { padding: 11px 24px; gap: 16px; }
  nav.top .links { gap: 2px; font-size: 11px; letter-spacing: 0.1em; }
  nav.top .links a { padding: 8px 11px; }
  .wrap, .wrap-tight { padding: 0 24px; }
}
@media (max-width: 720px) {
  nav.top { padding: 10px 18px; gap: 12px; }
  nav.top .brand { font-size: 13px; gap: 8px; }
  nav.top .links {
    flex: 1 1 auto;
    min-width: 0;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
  }
  nav.top .links a { padding: 7px 9px; }
  nav.top .links::-webkit-scrollbar { display: none; }
  nav.top .links a { white-space: nowrap; }
  nav.top .cta { padding: 7px 10px; font-size: 10px; flex-shrink: 0; }
  .wrap, .wrap-tight { padding: 0 20px; }
  footer.site { flex-direction: column; padding: 24px 20px; text-align: center; gap: 16px; }
  footer.site .links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  section { padding: 56px 0; }
}
@media (max-width: 480px) {
  nav.top .brand .brand-word { display: none; }
  nav.top .cta .cta-text { display: none; }
  nav.top .cta::after { content: '✉'; font-size: 14px; }
  nav.top .cta { padding: 6px 9px; }
}

/* ════════════════════════════════════════════════════════════
   FORK ADDITIONS · components for the brief's page structure
   ════════════════════════════════════════════════════════════ */

/* film-grain overlay (on-brand, very subtle) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* shared display headline */
.display {
  font-size: clamp(52px, 8.4vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.display em { font-style: italic; font-weight: 300; color: var(--ink-3); }

/* link with arrow, mono */
.arrow-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.2s, color 0.15s;
}
.arrow-link:hover { gap: 12px; color: var(--accent-strong); }

/* big text link (used in body) */
.txt-link { border-bottom: 1px solid rgba(20,18,15,0.25); padding-bottom: 1px; transition: color .15s, border-color .15s; }
.txt-link:hover { color: var(--accent); border-color: var(--accent); }

/* ── HOME HERO ── */
.home-hero { padding: 64px 0 0; }
.home-hero h1 { max-width: 12ch; margin: 26px 0 30px; }
.home-hero .lede {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 40ch;
  font-weight: 400;
}
.home-hero .body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 56ch;
  margin-top: 24px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px 28px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.btn.lg { padding: 15px 24px; font-size: 12px; }

/* ── REEL BOX (16:9, swap for YouTube iframe) ── */
.reel-frame { margin-top: 64px; }
.reel-box {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #1A1714;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 40px 80px -50px rgba(20,18,15,0.6);
}
.reel-box::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 6px, rgba(255,255,255,0.045) 6px 12px);
  pointer-events: none;
}
.reel-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-btn {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,230,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.reel-box:hover .play-btn { background: var(--accent); border-color: var(--accent); transform: scale(1.04); }
.play-btn::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #f6f1e6;
  margin-left: 5px;
}
.reel-box .reel-label {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,241,230,0.62);
}

/* ── CREDENTIALS MARQUEE ── */
.creds {
  margin-top: 80px;
  border-top: 1px solid rgba(20,18,15,0.12);
  border-bottom: 1px solid rgba(20,18,15,0.12);
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 80px, #000 calc(100% - 80px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 80px, #000 calc(100% - 80px), transparent);
}
.creds-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: creds-scroll 48s linear infinite;
}
.creds:hover .creds-track { animation-play-state: paused; }
@keyframes creds-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.creds-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 34px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.creds-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── CAPABILITIES ── */
.cap-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
.cap-intro h2 { font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -0.025em; max-width: 14ch; }
.cap-intro p { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 54ch; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap-card {
  border: 1px solid rgba(20,18,15,0.14);
  background: var(--paper-2);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.cap-card:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }
.cap-card .cap-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 24px; }
.cap-card h3 { font-size: 25px; letter-spacing: -0.02em; margin-bottom: 14px; }
.cap-card p { font-size: 15px; line-height: 1.55; color: var(--ink-3); flex: 1; }
.cap-card:hover p { color: rgba(246,241,230,0.78); }
.cap-card .arrow-link { margin-top: 22px; }
.cap-card:hover .arrow-link { color: var(--accent); }

/* ── DARK SECTION ── */
.dark-section { background: #1A1714; color: var(--paper); }
.dark-section .section-label { color: var(--accent); }
.dark-section .display { color: var(--paper); }
.dark-section .display em { color: rgba(246,241,230,0.66); }
.dark-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.dark-block .display { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.0; }
.dark-block p { font-size: 17px; line-height: 1.6; color: rgba(246,241,230,0.74); max-width: 52ch; }
.dark-block p + p { margin-top: 18px; }
.dark-block .arrow-link { margin-top: 30px; color: var(--accent); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  border-top: 1px solid rgba(246,241,230,0.16);
  padding-top: 40px;
}
.stat .stat-num { font-size: clamp(48px, 6vw, 76px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.stat .stat-num .accent { color: var(--accent); }
.stat .stat-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,241,230,0.6); margin-top: 14px; }

/* ── SELECTED WORK GRID ── */
.work-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.work-head h2 { font-size: clamp(30px, 4.2vw, 56px); letter-spacing: -0.03em; }
.sw-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
}
.sw-card {
  position: relative;
  overflow: hidden;
  background: #1A1714;
  border-radius: 3px;
  min-height: 220px;
  display: block;
}
.sw-card.featured { grid-row: span 3; }
.sw-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.4s; }
.sw-card:hover img { transform: scale(1.045); }
.sw-card .sw-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.86) 0%, rgba(10,9,8,0.18) 45%, rgba(10,9,8,0) 75%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 22px 20px;
  color: #f6f1e6;
}
.sw-card .sw-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,241,230,0.8); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sw-card .sw-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.sw-card .sw-ttl { font-size: clamp(20px, 2vw, 30px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
.sw-card.featured .sw-ttl { font-size: clamp(28px, 3.4vw, 46px); }
.sw-card .sw-award { font-size: 13px; line-height: 1.45; color: rgba(246,241,230,0.72); margin-top: 10px; max-width: 42ch; }

/* ── CTA CLOSER ── */
.cta-closer { text-align: center; }
.cta-closer .display { margin: 0 auto 26px; max-width: 16ch; }
.cta-closer p { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 50ch; margin: 0 auto 38px; }

/* ── INNER PAGE HEADER ── */
.page-hd { padding: 76px 0 52px; border-bottom: 1px solid rgba(20,18,15,0.12); }
.page-hd h1 { font-size: clamp(52px, 8vw, 110px); letter-spacing: -0.04em; line-height: 0.95; }
.page-hd .sub { font-size: clamp(18px, 2vw, 22px); line-height: 1.45; color: var(--ink-2); max-width: 48ch; margin-top: 26px; }

/* ── WORK PAGE ── */
.work-section { padding: 64px 0; border-bottom: 1px solid rgba(20,18,15,0.12); }
.work-section:last-of-type { border-bottom: none; }
.ws-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: 14px; }
.ws-head h2 { font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -0.025em; }
.ws-count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.ws-intro { font-size: 16px; line-height: 1.55; color: var(--ink-3); max-width: 60ch; margin-bottom: 36px; }
.film-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.film-card { display: flex; flex-direction: column; }
.film-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1A1714;
  border-radius: 3px;
  overflow: hidden;
}
.film-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.film-card:hover .film-thumb img { transform: scale(1.05); }
.film-thumb .play-mini {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(10,9,8,0.5); border: 1px solid rgba(246,241,230,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s, transform 0.25s, background 0.2s;
  backdrop-filter: blur(3px);
}
.film-card:hover .play-mini { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.film-thumb .play-mini:hover { background: var(--accent); border-color: var(--accent); }
.film-thumb .play-mini::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent #f6f1e6; margin-left: 3px; }
.film-thumb .yr-badge { position: absolute; top: 12px; right: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: #f6f1e6; background: rgba(10,9,8,0.55); padding: 4px 8px; border-radius: 2px; backdrop-filter: blur(3px); }
.film-meta { padding: 16px 2px 0; }
.film-meta .fm-ttl { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.film-meta .fm-ttl .fm-type { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 400; white-space: nowrap; }
.film-meta .fm-award { font-size: 14px; line-height: 1.5; color: var(--ink-3); margin-top: 8px; }
.film-meta .fm-award .win { color: var(--ink); }

/* ── WORK PAGE · embedded players (designed for inline YouTube) ── */
.film-grid-lg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 52px 40px; }
.film-feature { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: center; }

.player {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #1A1714;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 34px 64px -46px rgba(20,18,15,0.6);
}
a.player { cursor: pointer; }
.player img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
a.player:hover img { transform: scale(1.035); }
.player .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(10,9,8,0.42); border: 1px solid rgba(246,241,230,0.6);
  display: flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
a.player:hover .play { background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.06); }
.player .play::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #f6f1e6; margin-left: 4px; }
.player .yr-badge { position: absolute; top: 14px; right: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: #f6f1e6; background: rgba(10,9,8,0.55); padding: 5px 9px; border-radius: 2px; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 6px, rgba(255,255,255,0.06) 6px 12px);
  pointer-events: none;
}
.player .ph-name { position: absolute; left: 16px; bottom: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,241,230,0.7); }

.film-info { padding-top: 20px; }
.film-feature .film-info { padding-top: 0; }
.film-info .fi-ttl { font-size: 25px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.film-feature .film-info .fi-ttl { font-size: clamp(28px, 3vw, 40px); display: block; }
.film-info .fi-type { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 400; white-space: nowrap; }
.film-feature .film-info .fi-type { display: block; margin-top: 14px; }
.film-info .fi-award { font-size: 15px; line-height: 1.55; color: var(--ink-3); margin-top: 12px; max-width: 48ch; }
.film-feature .film-info .fi-award { font-size: 16px; margin-top: 14px; }
.film-info .fi-award .win { color: var(--ink); }

/* ── vertical reel feature (9:16 — Instagram/YouTube Shorts) ── */
.film-feature.vertical { grid-template-columns: 340px 1fr; gap: 52px; align-items: center; }
.film-feature.vertical .player { aspect-ratio: 9 / 16; }

@media (max-width: 900px) {
  .film-grid-lg { grid-template-columns: 1fr; gap: 44px; }
  .film-feature { grid-template-columns: 1fr; gap: 20px; }
  .film-feature .film-info { padding-top: 0; }
  .film-feature.vertical { grid-template-columns: 1fr; gap: 24px; justify-items: center; }
  .film-feature.vertical .player { width: 100%; max-width: 300px; }
  .film-feature.vertical .film-info { text-align: center; }
}

/* ── SERVICES PAGE ── */
.svc-intro { font-size: clamp(19px, 2.1vw, 24px); line-height: 1.5; color: var(--ink-2); max-width: 60ch; padding: 56px 0; }
.svc {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid rgba(20,18,15,0.12);
}
.svc-aside .svc-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent); }
.svc-aside h2 { font-size: clamp(26px, 2.8vw, 38px); letter-spacing: -0.025em; margin-top: 18px; line-height: 1.05; }
.svc-aside .svc-for { font-family: var(--mono); font-size: 11px; line-height: 1.7; letter-spacing: 0.06em; color: var(--ink-3); margin-top: 22px; max-width: 32ch; }
.svc-body p { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 56ch; }
.svc-body p + p { margin-top: 16px; }
.svc-deliver { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.svc-deliver li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  font-size: 15px; line-height: 1.5; color: var(--ink-2);
  padding-bottom: 12px; border-bottom: 1px solid rgba(20,18,15,0.1);
}
.svc-deliver li::before { content: '→'; color: var(--accent); font-family: var(--mono); }

/* process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.step { border: 1px solid rgba(20,18,15,0.14); padding: 28px 26px; background: var(--paper-2); }
.step .step-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); border: 1px solid var(--accent); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.step h3 { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--ink); }
.step p { font-size: 15px; line-height: 1.55; color: var(--ink-3); }

/* ── ABOUT PAGE ── */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0; }
.story p { font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 54ch; }
.story p + p { margin-top: 18px; }
.story .story-aside p { font-size: 17px; color: var(--ink-3); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.member .member-photo { position: relative; aspect-ratio: 4/5; background: var(--paper-3); border-radius: 3px; overflow: hidden; }
.member .member-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(0.15); }
.member h3 { font-size: 22px; letter-spacing: -0.02em; margin-top: 18px; }
.member .member-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-top: 6px; }
.member p { font-size: 15px; line-height: 1.55; color: var(--ink-3); margin-top: 14px; max-width: 38ch; }

.awards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 48px; }
.award-group { border-top: 1px solid rgba(20,18,15,0.14); padding-top: 18px; }
.award-group h3 { font-size: 19px; letter-spacing: -0.02em; }
.award-group .ag-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.award-group ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.award-group li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; font-size: 15px; color: var(--ink-2); }
.award-group li::before { content: '●'; color: var(--accent); font-size: 8px; line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; padding: 56px 0; }
.contact-lede { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.45; color: var(--ink-2); max-width: 40ch; }
.contact-big { display: inline-block; font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -0.02em; margin-top: 32px; border-bottom: 1px solid rgba(20,18,15,0.25); padding-bottom: 6px; transition: color .15s, border-color .15s; }
.contact-big:hover { color: var(--accent); border-color: var(--accent); }
.contact-detail { display: grid; gap: 0; }
.contact-detail .row { display: grid; grid-template-columns: 90px 1fr; gap: 18px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(20,18,15,0.12); }
.contact-detail .row:first-child { border-top: 1px solid rgba(20,18,15,0.12); }
.contact-detail .row .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.contact-detail .row .v { font-size: 16px; }
.contact-detail .row .v a:hover { color: var(--accent); }

/* ── 3-COLUMN FOOTER (brief) ── */
footer.fork {
  margin-top: 96px;
  border-top: 3px solid var(--accent);
  background: var(--paper-2);
}
.footer-main {
  max-width: 1280px; margin: 0 auto; padding: 56px 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: 40px;
}
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 18px; }
.footer-brand .fb-name { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.footer-brand .fb-tag { font-style: italic; color: var(--ink-2); margin-top: 12px; font-size: 15px; }
.footer-brand .fb-loc { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-3); margin-top: 14px; }
.footer-col .fcol-links { display: flex; flex-direction: column; gap: 11px; }
.footer-col .fcol-links a { font-size: 15px; color: var(--ink-2); transition: color .15s; }
.footer-col .fcol-links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 18px 40px;
  border-top: 1px solid rgba(20,18,15,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}

/* ════ responsive for fork additions ════ */
@media (max-width: 900px) {
  .cap-intro { grid-template-columns: 1fr; gap: 24px; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-card { min-height: 0; }
  .dark-block { grid-template-columns: 1fr; gap: 28px; }
  .sw-grid { grid-template-columns: 1fr; }
  .sw-card.featured { grid-row: auto; aspect-ratio: 16/10; }
  .sw-card { aspect-ratio: 16/10; min-height: 0; }
  .film-grid { grid-template-columns: repeat(2, 1fr); }
  .svc { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: 1fr; gap: 36px; max-width: 420px; }
  .awards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .home-hero { padding: 40px 0 0; }
  .reel-frame { margin-top: 40px; }
  .creds { margin-top: 56px; }
  .stats { grid-template-columns: 1fr; gap: 28px; }
  .film-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
  .footer-bottom { padding: 16px 20px; }
  .play-btn { width: 60px; height: 60px; }
}

/* ════════════════════════════════════════════════════════════
   THEATRE · screening room treatment (work.html only)
   Every selector is scoped under body.theatre. No other page
   carries the class, so nothing here can leak elsewhere.
   ════════════════════════════════════════════════════════════ */

body.theatre {
  --paper: #15120f;
  --paper-2: #1A1714;
  --paper-3: #211d18;
  --ink: #f6f1e6;
  --ink-2: rgba(246,241,230,0.84);
  --ink-3: rgba(246,241,230,0.64);
  --muted: rgba(246,241,230,0.46);
  --faint: rgba(246,241,230,0.18);
  --hairline: rgba(246,241,230,0.14);
  background: var(--paper);
  color: var(--ink);
}

/* the grain overlay reads as film grain on dark — lift it a touch */
body.theatre::after { opacity: 0.055; }

/* keyboard focus must survive near-black */
body.theatre a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── nav dark variant ── */
body.theatre nav.top {
  background: rgba(21,18,15,0.82);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 10px 30px -24px rgba(0,0,0,0.9);
}
body.theatre nav.top .links a:hover,
body.theatre nav.top .links a.active { background: rgba(246,241,230,0.07); }

/* ── page header ── */
body.theatre .theatre-hd {
  padding: clamp(90px, 13vh, 150px) 0 64px;
  border-bottom: 1px solid var(--hairline);
  background: radial-gradient(ellipse 70% 62% at 50% -12%, rgba(255,199,138,0.07), transparent 70%);
}
body.theatre .theatre-hd .eyebrow { color: var(--accent); }
body.theatre .theatre-hd h1 {
  font-size: clamp(56px, 9.5vw, 132px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-top: 26px;
}
body.theatre .theatre-hd .sub {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--ink-3);
  max-width: 48ch;
  margin-top: 26px;
}

/* ── now showing feature ── */
body.theatre .now-showing { padding: 72px 0 76px; border-bottom: 1px solid var(--hairline); }
body.theatre .ns-marker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
body.theatre .ns-marker .ns-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: theatre-pulse 2.4s ease-in-out infinite;
}
@keyframes theatre-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  body.theatre .ns-marker .ns-dot { animation: none; }
}
body.theatre .ns-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 120px -40px rgba(0,0,0,0.9), 0 0 90px -30px oklch(58% 0.14 45 / 0.25);
}
body.theatre .ns-player { border: none; box-shadow: none; border-radius: 0; }
body.theatre .ns-bar {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: #0a0908;
  pointer-events: none;
  z-index: 3;
  transform: scaleY(0); /* invisible unless the GSAP curtain drives it */
}
body.theatre .ns-bar-top { top: 0; transform-origin: top center; }
body.theatre .ns-bar-btm { bottom: 0; transform-origin: bottom center; }
body.theatre .ns-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10,9,8,0.86) 0%, rgba(10,9,8,0.18) 45%, rgba(10,9,8,0) 75%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(20px, 3vw, 38px);
  pointer-events: none;
}
body.theatre .ns-ttl {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #f6f1e6;
}
body.theatre .ns-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,241,230,0.78);
  margin-top: 12px;
}
body.theatre .ns-awards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 24px;
}
body.theatre .award-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── award chips ── */
body.theatre .award-chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid oklch(58% 0.14 45 / 0.45);
  padding: 4px 9px;
  border-radius: 2px;
  margin: 2px 6px 2px 0;
  vertical-align: middle;
  white-space: nowrap;
}

/* ── act sections ── */
body.theatre .work-section { padding: 72px 0; border-bottom: 1px solid var(--hairline); }
body.theatre .ws-head {
  position: relative;
  padding-top: 30px;
  margin-bottom: 22px;
  align-items: end;
}
body.theatre .ws-rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--hairline);
}
body.theatre .act-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
body.theatre .act-num::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
  opacity: 0.55;
}
body.theatre .ws-grid-gap { margin-top: 36px; }

/* ── players as lit screens ── */
body.theatre .player {
  border: 1px solid var(--hairline);
  border-radius: 3px;
  box-shadow: 0 24px 70px -30px rgba(0,0,0,0.9);
  transition: box-shadow 0.4s ease;
}
body.theatre .player::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 70px 12px rgba(0,0,0,0.4);
}
body.theatre .player[data-playing]::after { content: none; }
body.theatre a.player:hover {
  box-shadow: 0 24px 70px -30px rgba(0,0,0,0.9), 0 0 70px -18px oklch(58% 0.14 45 / 0.32);
}
body.theatre .ns-player::after { box-shadow: inset 0 0 120px 30px rgba(0,0,0,0.5); }
body.theatre .player img { transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1); }
body.theatre a.player:hover img { transform: scale(1.05); }
body.theatre .player .play {
  background: rgba(0,0,0,0.5);
  border-color: rgba(246,241,230,0.75);
  z-index: 2;
}
body.theatre .player .yr-badge { z-index: 2; }

/* non-playable stills sit quiet so playable cards invite the click */
body.theatre div.player img { filter: brightness(0.9); }

/* ── film info ── */
body.theatre .film-info .fi-ttl { font-weight: 700; letter-spacing: -0.025em; }

/* footer hairline (hardcoded paper rgba is invisible on dark) */
body.theatre .footer-bottom { border-top-color: var(--hairline); }

/* ── end card ── */
body.theatre .end-card-wrap { padding: 96px 0 16px; text-align: center; }
body.theatre .end-card .ec-fin {
  display: block;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  font-style: italic;
  margin-bottom: 22px;
}

/* ── responsive ── */
@media (max-width: 720px) {
  body.theatre .theatre-hd { padding: 64px 0 44px; }
  body.theatre .now-showing { padding: 52px 0 56px; }
  body.theatre .work-section { padding: 56px 0; }
  body.theatre .end-card-wrap { padding: 64px 0 8px; }
}
@media (max-width: 380px) {
  body.theatre .theatre-hd h1 { font-size: 48px; }
}

/* ════════════════════════════════════════════════════════════
   THE REEL · horizontal film-strip layout (work.html only)
   .reel-band is the actual film strip — sized to
   frame_height + 2 × perf_height so perf holes sit flush
   against the images. GSAP translates the band so perfs
   travel with the frames, like a real strip through a gate.
   ════════════════════════════════════════════════════════════ */

/* ── header ── */
body.theatre .theatre-hd { padding: clamp(48px, 7vh, 84px) 0 clamp(24px, 3vh, 36px); border-bottom: none; }
body.theatre .reel-cue {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.theatre .reel-cue .cue-arrow { color: var(--accent); animation: reel-nudge 1.8s ease-in-out infinite; }
@keyframes reel-nudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@media (prefers-reduced-motion: reduce) { body.theatre .reel-cue .cue-arrow { animation: none; } }

/* ── progress bar ── */
body.theatre .reel-progress { height: 2px; background: var(--hairline); position: relative; overflow: hidden; }
body.theatre .reel-progress span {
  position: absolute; inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

/* ── Reel transport: film-reel spools + film-strip position meter ── */
body.theatre .reel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 44px);
  padding: clamp(8px, 1.4vh, 16px) 24px clamp(18px, 2.6vh, 30px);
  user-select: none;
  -webkit-user-select: none;
}
body.theatre .reel-spool {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  touch-action: none;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.18s, opacity 0.22s;
}
body.theatre .reel-spool .spool-label { white-space: nowrap; }
body.theatre .reel-spool:hover { color: var(--ink); }
body.theatre .reel-spool:disabled { opacity: 0.28; cursor: default; pointer-events: none; }
body.theatre .reel-spool:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }

body.theatre .spool-svg {
  width: clamp(46px, 4.6vw, 62px);
  height: clamp(46px, 4.6vw, 62px);
  flex: 0 0 auto;
  color: var(--ink-3);
  transition: color 0.18s;
}
body.theatre .reel-spool:not(:disabled):hover .spool-svg { color: var(--accent); }
body.theatre .spool-ring--inner { opacity: 0.5; }

/* film-strip position meter between the spools */
body.theatre .reel-meter {
  position: relative;
  flex: 0 1 clamp(110px, 24vw, 340px);
  height: 22px;
  align-self: center;
}
body.theatre .reel-meter::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  height: 13px;
  background-color: #0c0a09;
  background-image: repeating-linear-gradient(to right,
    transparent 0 4px, rgba(246,241,230,0.22) 4px 7px, transparent 7px 11px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
body.theatre .reel-meter-fill {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 13px; width: 0%;
  background: oklch(58% 0.14 45 / 0.22);
  z-index: 1;
  transition: width 0.25s ease;
}
body.theatre .reel-meter-head {
  position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
  width: 3px; height: 24px;
  background: var(--accent);
  box-shadow: 0 0 12px oklch(58% 0.14 45 / 0.55);
  z-index: 2;
  transition: left 0.25s ease;
}
@media (prefers-reduced-motion: reduce) {
  body.theatre .spool-svg,
  body.theatre .reel-meter-fill,
  body.theatre .reel-meter-head { transition: none; }
}
@media (max-width: 560px) {
  body.theatre .reel-spool .spool-label { display: none; }
  body.theatre .reel-meter { flex-basis: 40vw; }
}

/* ── Stage: transparent — the strip sits directly on the page, not on a
   separate dark slab. The band's own #0c0a09 base + lit edges do the work. ── */
body.theatre .reel-stage {
  position: relative;
  background: transparent;
}

/* ── Viewport: on desktop fills full height and centres the band ── */
body.theatre .reel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
body.theatre .reel-viewport::-webkit-scrollbar { display: none; }
body.theatre .reel-viewport.is-pinned { overflow: hidden; }
body.theatre .reel-viewport.is-grabbing,
body.theatre .reel-viewport.is-grabbing * { cursor: grabbing !important; }

/* ── Band: the actual film strip, sized to frames + perf rows ──
   Perforations are real 35mm-style rounded rectangles (solid cream),
   tiled along the top and bottom of the black film base as two
   background layers — so images sit between the perf rows. */
body.theatre .reel-band {
  position: relative;
  display: block;
  width: max-content;
  padding: 28px 0;
  background-color: #0c0a09;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='28'%3E%3Crect x='9' y='4.5' width='15' height='19' rx='4.6' ry='4.6' fill='%23b3ac9b'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='28'%3E%3Crect x='9' y='4.5' width='15' height='19' rx='4.6' ry='4.6' fill='%23b3ac9b'/%3E%3C/svg%3E");
  background-repeat: repeat-x, repeat-x;
  background-position: top center, bottom center;
  background-size: 33px 28px, 33px 28px;
  /* edge definition: a faint lit rim along the top and bottom of the strip,
     with a hair of shadow just inside, so the film base reads as a real
     surface lifted off the darker page (see reference) */
  box-shadow:
    inset 0 1px 0 rgba(233, 228, 212, 0.14),
    inset 0 -1px 0 rgba(233, 228, 212, 0.14),
    inset 0 3px 4px -3px rgba(0, 0, 0, 0.9),
    inset 0 -3px 4px -3px rgba(0, 0, 0, 0.9);
}

/* ── Track: flex row of frames and slates, no vertical padding ── */
body.theatre .reel-track {
  display: flex;
  align-items: center;
  /* +35px = top-label (18px) + bottom-label (17px) absorbed into track so slates fill flush */
  height: calc(clamp(240px, 33vh, 360px) + 47px);
  gap: 4px;
  padding: 0 max(6vw, 40px);
}

/* ── Frames ── */
body.theatre .reel-frame {
  flex: 0 0 auto;
  position: relative;
  cursor: pointer;
  height: calc(clamp(240px, 33vh, 360px) + 47px);
  margin-top: 0; /* override non-theatre .reel-frame { margin-top: 64px } */
  padding-top: 30px;
  padding-bottom: 17px;
  overflow: visible;
}
body.theatre .reel-frame .player {
  height: 100%; /* resolves against content area (padding already excluded) */
  width: auto;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  border: none;
  border-right: 3px solid #0c0a09; /* inter-frame gap */
  box-shadow: none;
  overflow: hidden;
  transition: filter 0.25s;
}
body.theatre .reel-frame--v .player { aspect-ratio: 9 / 16; }
body.theatre .reel-frame:hover .player { filter: brightness(1.1); }

body.theatre .reel-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
body.theatre .reel-frame:hover img { transform: scale(1.04); }

/* film title (sits in top padding zone, above the image) */
body.theatre .reel-idx {
  position: absolute;
  top: 6px; left: 1px; right: 3px;
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,241,230,0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  z-index: 5;
}

/* title sits in bottom padding zone, below the image */
body.theatre .reel-label {
  position: absolute;
  left: 0; right: 3px;
  bottom: 2px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,241,230,0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  z-index: 5;
}

/* play hint: amber circle, appears on hover */
body.theatre .reel-play-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1.5px solid rgba(246,241,230,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, border-color 0.2s;
  pointer-events: none;
  z-index: 3;
}
body.theatre .reel-play-hint::after {
  content: '';
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent rgba(246,241,230,0.95);
  margin-left: 2px;
}
body.theatre .reel-frame.is-playable:hover .reel-play-hint { opacity: 1; }
body.theatre .reel-frame.is-playable:hover .reel-play-hint { border-color: var(--accent); }

/* non-playable frames sit quieter */
body.theatre .reel-frame:not(.is-playable) img { filter: brightness(0.8) saturate(0.85); }
body.theatre .reel-frame:not(.is-playable):hover .player { filter: brightness(1.0); }
body.theatre .reel-frame:not(.is-playable):hover img { transform: none; }

/* ── Act leader slates ──
   Same total height as track — fills flush top-to-bottom including text zones. */
body.theatre .reel-slate {
  flex: 0 0 auto;
  width: clamp(210px, 22vw, 315px);
  height: calc(clamp(240px, 33vh, 360px) + 47px);
  border-left: 3px solid #0c0a09;
  border-right: 3px solid #0c0a09;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,199,138,0.09), transparent 70%),
    repeating-linear-gradient(45deg, rgba(246,241,230,0.015) 0 8px, transparent 8px 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  gap: 8px;
  cursor: default;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
body.theatre .slate-act {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
body.theatre .slate-cat {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
body.theatre .slate-count {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
body.theatre .reel-slate--end .slate-fin {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
}
body.theatre .reel-slate--end .arrow-link {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* ── Lightbox ── */
body.theatre .reel-lb {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,8,7,0.94);
  opacity: 0;
  pointer-events: none;
}
body.theatre .reel-lb.is-open { pointer-events: auto; }
body.theatre .reel-lb-inner {
  position: relative;
  width: min(92vw, 1100px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body.theatre .reel-lb-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.95), 0 0 80px -20px oklch(58% 0.14 45 / 0.2);
}
body.theatre .reel-lb-player--v { aspect-ratio: 9 / 16; width: min(50vw, 440px); margin: 0 auto; }
body.theatre .reel-lb-player img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.theatre .reel-lb-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
body.theatre .reel-lb-info {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 18px;
}
body.theatre .reel-lb-ttl {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
body.theatre .reel-lb-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
body.theatre .reel-lb-chips { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
body.theatre .reel-lb-festival {
  margin: 10px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.85;
}
body.theatre .reel-lb-close {
  position: absolute;
  top: -42px; right: 0;
  background: none; border: none; padding: 6px 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.15s;
}
body.theatre .reel-lb-close:hover { color: var(--ink); }
body.theatre .reel-lb-close::before { content: '×'; font-size: 18px; font-family: var(--sans); }

/* ── Desktop: compact film-strip band sits directly under the header ── */
@media (min-width: 900px) {
  body.theatre .reel-stage { padding: clamp(12px, 2.4vh, 28px) 0 clamp(28px, 5vh, 60px); }
  body.theatre .reel-track { padding: 0 max(7vw, 56px); }
}

/* ── Mobile: height-based, same for frames and slates ── */
@media (max-width: 899px) {
  body.theatre .reel-band { padding: 20px 0; background-size: 24px 20px, 24px 20px; }
  body.theatre .reel-track { height: min(60vw, 285px); gap: 3px; padding: 0 4vw; }

  body.theatre .reel-track { height: calc(min(60vw, 285px) + 47px); }
  body.theatre .reel-frame {
    height: calc(min(60vw, 285px) + 47px);
    padding-top: 30px;
    padding-bottom: 17px;
  }
  body.theatre .reel-frame .player { height: 100%; }
  body.theatre .reel-slate { height: calc(min(60vw, 285px) + 47px); }

  /* frame: height set, width via aspect-ratio */
  body.theatre .reel-frame { width: auto; }
  body.theatre .reel-frame .player {
    height: 100%;
    width: auto;
    aspect-ratio: 16 / 9;
    border-right-width: 2px;
  }
  body.theatre .reel-frame--v .player { aspect-ratio: 9 / 16; }

  /* slate: set width, height comes from the shared height rule above */
  body.theatre .reel-slate {
    width: clamp(110px, 28vw, 160px);
    border-left-width: 2px;
    border-right-width: 2px;
  }

  body.theatre .reel-lb-inner { width: 96vw; }
  body.theatre .reel-lb-player--v { width: min(80vw, 340px); }
  body.theatre .reel-lb-close { top: -38px; }
}

/* ════════════════════════════════════════════════════════════
   DARK SITE-WIDE · inner pages adopt the theatre palette.
   Shared inner-page components (page-hd, svc, process, dark-section,
   cta-closer) re-skinned for body.theatre. Colours/borders only —
   layout grids stay with the base + responsive rules.
   ════════════════════════════════════════════════════════════ */

/* inner-page hero: reuse .theatre-hd, but tighten the bottom rule */
body.theatre .page-hd { border-bottom: 1px solid var(--hairline); }

/* ── shared light-hardcoded borders → hairline on dark ── */
body.theatre .creds { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
body.theatre .cap-card { border: 1px solid var(--hairline); }
body.theatre .award-group { border-top: 1px solid var(--hairline); }
body.theatre .contact-detail .row { border-bottom: 1px solid var(--hairline); }
body.theatre .contact-detail .row:first-child { border-top: 1px solid var(--hairline); }
body.theatre .contact-big { border-bottom: 1px solid rgba(246,241,230,0.25); }
body.theatre .footer-bottom { border-top: 1px solid var(--hairline); }
body.theatre .txt-link { border-bottom: 1px solid rgba(246,241,230,0.25); }

/* cinematic framing for team portraits (about) */
body.theatre .member .member-photo {
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 60px -36px rgba(0,0,0,0.9);
}
body.theatre .member .member-photo img { filter: grayscale(0.15) brightness(0.96); }

/* contact "end card" closer */
body.theatre .end-card {
  text-align: center;
  padding: clamp(60px, 12vh, 140px) 0 clamp(40px, 8vh, 90px);
  border-top: 1px solid var(--hairline);
}
body.theatre .end-card .fin {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-style: italic;
  color: var(--ink);
}
body.theatre .end-card .fin-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 22px;
}

/* lead-in marker + intro */
body.theatre .svc-lead { padding: clamp(40px, 6vh, 64px) 0 8px; }
body.theatre .svc-intro { padding: 20px 0 0; }

/* ── SERVICES · the offer reads as a shot list ── */
body.theatre .svc { border-top: 1px solid var(--hairline); }
body.theatre .svc:first-of-type { border-top: none; }
body.theatre .svc-deliver li { border-bottom: 1px solid var(--hairline); }
body.theatre .svc-aside .svc-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
body.theatre .svc-aside .svc-num::before {
  content: '';
  width: 22px; height: 1px; background: var(--accent);
}

/* ── feature band: lift the dark-section off the near-black page ── */
body.theatre .dark-section {
  background: #1c1813;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background-image: radial-gradient(ellipse 64% 80% at 50% 0%, rgba(255,199,138,0.05), transparent 70%);
}
/* base .dark-section paints text var(--paper) (cream on light) — on the
   dark theme that resolves near-black, so restore cream ink throughout */
body.theatre .dark-section { color: var(--ink); }
body.theatre .dark-section .display { color: var(--ink); }

/* ── PRODUCTION TIMELINE · services process (signature device) ── */
body.theatre .timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3.4vw, 48px);
  margin-top: clamp(40px, 6vh, 60px);
  position: relative;
}
body.theatre .timeline::before {
  content: '';
  position: absolute;
  left: 19px; right: 19px; top: 19px;
  height: 1px;
  background: var(--hairline);
}
body.theatre .tl-step { position: relative; }
body.theatre .tl-dot {
  position: relative;
  z-index: 1;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--paper);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.theatre .tl-step h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
body.theatre .tl-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 34ch;
}
@media (max-width: 760px) {
  body.theatre .timeline { grid-template-columns: 1fr; gap: 30px; }
  body.theatre .timeline::before {
    left: 19px; right: auto; top: 19px; bottom: 19px;
    width: 1px; height: auto;
  }
  body.theatre .tl-step { padding-left: 0; }
}
