/* =========================================================================
   Ashley Nicole Singleton — Editorial Brutalism
   Monochrome + antique gold · Archivo / Inter / Space Mono
   ========================================================================= */

:root {
  /* Palette */
  --ink:        #0B0B0B;
  --ink-soft:   #161615;
  --ink-2:      #201F1D;
  --paper:      #F4F2EC;   /* bone */
  --paper-2:    #E9E6DC;
  --gold:       #C6A15B;
  --gold-bright:#E6C784;
  --line:       rgba(11, 11, 11, 0.14);
  --line-dark:  rgba(244, 242, 236, 0.16);
  --muted:      #6B675E;
  --muted-dark: rgba(244, 242, 236, 0.55);

  /* Type */
  --font-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;
  --font-crt:     "VT323", "Space Mono", ui-monospace, monospace;

  /* Rhythm (density: standard) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;
  --gutter: clamp(20px, 5vw, 72px);
  --maxw: 1600px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  /* Z */
  --z-nav: 800;
  --z-menu: 900;
  --z-cursor: 950;
  --z-modal: 1000;
  --z-pre: 1100;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; height: 100vh; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
mark { background: none; color: var(--gold); }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Shared type ---------- */
.overline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 1.2em;
  align-items: center;
}
.overline span { white-space: nowrap; }

.section-head { padding: var(--space-xl) var(--gutter) var(--space-lg); }
.section-head .overline { margin-bottom: var(--space-md); }
.section-head__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-head--light { color: var(--paper); }
.section-head--light .overline { color: var(--muted-dark); }

/* =========================================================================
   PRELOADER
   ========================================================================= */
.preloader {
  position: fixed; inset: 0; z-index: var(--z-pre); overflow: hidden;
  background: #050505; display: flex; align-items: center; justify-content: center;
}
body:not(.is-loading) .preloader { pointer-events: none; }
/* ---- cinematic video loader ---- */
.pre__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; background: #050505;
}
.preloader::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(130% 100% at 50% 52%, rgba(5,6,8,0.28), rgba(5,6,8,0.86));
}
/* broadcast scanlines + slow rolling highlight */
.pre__scan {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.5;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.16) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, transparent 0, rgba(255,255,255,0.05) 50%, transparent 100%);
  background-size: 100% 3px, 100% 44%;
  background-repeat: repeat, no-repeat;
  animation: tvScan 7s linear infinite;
}
.pre__content {
  position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center;
  gap: clamp(18px, 3.2vh, 32px); text-align: center; padding: 0 var(--gutter);
}
.pre__standby {
  margin: 0; font-family: var(--font-crt); text-transform: uppercase;
  letter-spacing: 0.22em; line-height: 1; font-size: clamp(1.6rem, 5.4vw, 3rem); color: #eef3e6;
  text-shadow: 0 0 12px rgba(150,220,140,0.4), 0 2px 30px rgba(0,0,0,0.85);
}
.pre__msg {
  margin: 0; font-family: var(--font-crt); text-transform: uppercase;
  letter-spacing: 0.14em; line-height: 1.08; font-size: clamp(1.05rem, 3.4vw, 2rem); color: #cfe0bf;
  text-shadow: 0 0 10px rgba(150,220,140,0.32), 0 2px 24px rgba(0,0,0,0.85);
}
.pre__bar { width: min(280px, 58vw); height: 3px; background: rgba(255,255,255,0.16); }
.pre__bar i { display: block; height: 100%; width: 0%; background: #f4f4f5; }
.pre__count { margin: 0; font-family: var(--font-crt); font-size: 20px; letter-spacing: 0.24em; color: #cfe0bf; }
.pre__skip {
  margin: 0; font-family: var(--font-crt); font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #9fb392; animation: tvBlink 1.1s steps(1) infinite;
}
@keyframes tvScan { 0%{ background-position: 0 0, 0 -60%; } 100%{ background-position: 0 0, 0 160%; } }
@keyframes tvBlink { 0%,60%{ opacity: 1; } 61%,100%{ opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) {
  .pre__scan, .pre__skip { animation: none; }
}

/* =========================================================================
   CUSTOM CURSOR (desktop / fine pointer only)
   ========================================================================= */
.cursor {
  position: fixed; top: 0; left: 0; z-index: var(--z-cursor);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  display: none;
}
.cursor__label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink); white-space: nowrap; opacity: 0;
}
.cursor.is-hover { width: 64px; height: 64px; background: var(--paper); mix-blend-mode: difference; }
.cursor.is-media {
  width: 66px; height: 66px; mix-blend-mode: normal;
  background: rgba(11,11,11,0.22);
  border: 1px solid rgba(244,242,236,0.6);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}
.cursor.is-media .cursor__label { opacity: 1; color: var(--paper); text-shadow: 0 1px 6px rgba(0,0,0,0.55); }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body.cursor-on * { cursor: none !important; }
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px, 2.2vw, 26px) var(--gutter);
  mix-blend-mode: difference; color: #fff;
  transition: transform 0.5s var(--ease), background 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease), border-color 0.45s var(--ease),
    padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Frosted bar once scrolled off the very top — keeps the nav legible over
   any section instead of the mix-blend clashing with type and logos. */
.nav.is-solid {
  mix-blend-mode: normal;
  background: rgba(11, 11, 11, 0.32);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  padding-top: clamp(12px, 1.5vw, 18px);
  padding-bottom: clamp(12px, 1.5vw, 18px);
}
.nav.is-hidden { transform: translateY(-105%); }
.nav__brand { display: flex; align-items: baseline; gap: 0.6em; }
.nav__brandMark {
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  letter-spacing: 0.02em; line-height: 1;
}
.nav__brandFull {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.7;
}
.nav__links { display: flex; gap: clamp(20px, 3vw, 52px); }
.nav__links a {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; position: relative; overflow: hidden; padding: 4px 0;
}
.nav__links a span { display: inline-block; transition: transform 0.4s var(--ease); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: #fff; transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav.menu-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.menu-open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__brandFull { display: none; }
}

/* =========================================================================
   FULLSCREEN MENU
   ========================================================================= */
.menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-in-out);
  pointer-events: none;
}
.menu.is-open { clip-path: inset(0 0 0% 0); pointer-events: auto; }
.menu__links a {
  display: flex; align-items: baseline; gap: 0.5em;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.5rem, 13vw, 5rem); line-height: 1.05; letter-spacing: -0.02em;
  padding: 0.1em 0; border-bottom: 1px solid var(--line-dark);
  transform: translateY(30px); opacity: 0;
}
.menu.is-open .menu__links a { transform: none; opacity: 1; transition: transform 0.6s var(--ease), opacity 0.6s var(--ease); }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: 0.15s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.22s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.29s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.36s; }
.menu__links em { font-family: var(--font-mono); font-size: 0.9rem; color: var(--gold); font-style: normal; }
.menu__foot { margin-top: var(--space-lg); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.menu__social { display: flex; gap: var(--space-md); }
.menu__social a:hover { color: var(--gold); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; background: var(--ink); }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__video, .hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center center; background: var(--ink); }
.hero__img { transform: scale(1.06); animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16) translateY(-1.5%); } }
@media (prefers-reduced-motion: reduce) { .hero__img, .statement__img { animation: none; transform: scale(1.02); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,11,0.72) 0%, rgba(11,11,11,0.34) 42%, rgba(11,11,11,0.12) 100%),
    linear-gradient(180deg, rgba(11,11,11,0.5) 0%, rgba(11,11,11,0.12) 34%, rgba(11,11,11,0.22) 60%, rgba(11,11,11,0.85) 100%);
}
.hero__grain { position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }

.hero__overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter); color: var(--paper);
}
.hero__kicker { color: var(--paper); margin-bottom: var(--space-md); font-size: 13px; }
.hero__kicker span { opacity: 0; }
.hero__title {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3rem, 11.5vw, 12rem); line-height: 0.86; letter-spacing: -0.03em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; will-change: transform; }
/* When JS is active, keep the title hidden until the script has split + revealed
   it, so the raw un-animated title can't flash over the hero. JS sets opacity
   back to 1 in initHero (both GSAP and no-GSAP paths). Fallback: if the script
   never runs, this rule is moot because .js is only added by that same script. */
.js .hero__title { opacity: 0; }

.hero__play {
  margin-top: var(--space-lg); display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--paper); align-self: flex-start;
}
.hero__play svg { width: 46px; height: 46px; padding: 13px; border: 1px solid var(--paper); border-radius: 50%; fill: var(--paper); transition: background 0.35s var(--ease), fill 0.35s var(--ease), transform 0.35s var(--ease); }
.hero__play:hover svg { background: var(--gold); border-color: var(--gold); fill: var(--ink); transform: scale(1.06); }
.hero__play:hover svg path[stroke] { stroke: var(--ink); }
/* Sound (left) + Replay (right) on one straight line above the meta bar */
.hero__controls {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 72px; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
}
.hero__controls .hero__play { margin-top: 0; align-self: center; }
@media (max-width: 600px) { .hero__controls { bottom: 84px; } }

.hero__meta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: var(--space-sm) var(--gutter) calc(var(--space-sm) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper);
}
.hero__metaItem--c { text-align: center; }
.hero__metaItem--r { text-align: right; }
.hero__metaItem em { color: var(--gold); font-style: normal; }

.hero__scroll {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper);
}
.hero__scroll i { width: 1px; height: 46px; background: var(--paper); position: relative; overflow: hidden; opacity: 0.4; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 50% { transform: translateY(0); } 100% { transform: translateY(100%); } }
@media (max-width: 600px) {
  .hero__scroll { display: none; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__metaItem--c { display: none; }
  .hero__kicker { flex-wrap: wrap; row-gap: 4px; }
}

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.marquee__track { display: inline-flex; align-items: center; gap: 40px; white-space: nowrap; will-change: transform; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
.marquee__track i { color: var(--gold); font-size: 1rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================================
   STATEMENT (intro)
   ========================================================================= */
.statement {
  position: relative; overflow: hidden;
  padding: clamp(72px, 12vh, 160px) var(--gutter);
  min-height: 80vh; display: flex; align-items: stretch;
  background: var(--ink); color: var(--paper);
}
/* Full-color close-up behind the text, slow Ken-Burns zoom */
.statement__bg { position: absolute; inset: 0; z-index: 0; }
.statement__img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transform: scale(1.06); animation: kenburns 26s ease-in-out infinite alternate; }
/* Mobile/base scrim: darker on the left + bottom where the text sits */
.statement__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,11,0.88) 0%, rgba(11,11,11,0.55) 45%, rgba(11,11,11,0.25) 100%),
    linear-gradient(180deg, rgba(11,11,11,0.45) 0%, rgba(11,11,11,0.12) 38%, rgba(11,11,11,0.62) 100%);
}
.statement__inner {
  position: relative; z-index: 1; width: 100%;
  display: flex; flex-direction: column;
}
/* Mobile: the block is transparent so eyebrow/copy/cta flow as before */
.statement__block { display: contents; }
.statement__eyebrow { color: var(--muted-dark); }
.statement__copy { margin-top: auto; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; max-width: 54ch; color: rgba(244, 242, 236, 0.94); }
.statement__copy mark { color: var(--gold); background: none; }
.statement__cta { margin-top: var(--space-md); }

/* Desktop split: text block centred in the RIGHT blank area, face clear.
   The block hugs its longest line (fit-content) so Read the story's arrow lines
   up exactly with the text's right edge regardless of width/font. */
@media (min-width: 900px) {
  .statement { align-items: center; }
  .statement__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.7fr; /* left | face | right blank area */
    align-items: center; column-gap: var(--space-lg);
  }
  .statement__block {
    display: flex; flex-direction: column; align-items: flex-start;
    grid-column: 3; justify-self: center;
    width: clamp(320px, 26vw, 440px);
  }
  .statement__eyebrow { margin: 0 0 var(--space-md); }
  .statement__copy { margin: 0; max-width: 100%; }
  .statement__inner .statement__cta { align-self: flex-end; margin: var(--space-md) 0 0; }
  /* Darken both edges (text zones), keep the centre (face) clear */
  .statement__scrim {
    background:
      linear-gradient(90deg, rgba(11,11,11,0.9) 0%, rgba(11,11,11,0.4) 26%, rgba(11,11,11,0.16) 50%, rgba(11,11,11,0.42) 72%, rgba(11,11,11,0.86) 100%),
      linear-gradient(180deg, rgba(11,11,11,0.3) 0%, rgba(11,11,11,0.14) 45%, rgba(11,11,11,0.35) 100%);
  }
}

/* Mobile: pin the eyebrow up near the forehead, drop the copy to the bottom
   so it clears the mouth (portrait crop of the close-up) */
@media (max-width: 600px) {
  .statement { min-height: 94vh; padding-top: 8vh; padding-bottom: 3.5vh; }
  /* Center the face in the mobile (portrait) crop of the landscape close-up */
  .statement__img { object-position: 38% center; }
}

.link-btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; justify-self: start; }
.link-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform 0.35s var(--ease); }
.link-btn:hover svg { transform: translateX(6px); }
.link-btn:hover { color: var(--gold); }

/* =========================================================================
   WORK LIST
   ========================================================================= */
.work { position: relative; background: var(--paper); padding-bottom: var(--space-lg); }
.work__list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.work__row {
  display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: var(--space-md);
  padding: clamp(20px, 3vw, 40px) var(--gutter);
  border-bottom: 1px solid var(--line); position: relative;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.work__row::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s var(--ease); z-index: 0; }
.work__row > * { position: relative; z-index: 1; }
.work__idx { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.work__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.5rem, 4.6vw, 3.4rem); line-height: 1; letter-spacing: -0.02em; }
.work__cat { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); text-align: right; }
.work__more { max-width: var(--maxw); margin: var(--space-lg) auto 0; padding: 0 var(--gutter); text-align: right; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(1.05rem, 2.2vw, 1.9rem); color: var(--muted); }
@media (max-width: 720px) { .work__more { text-align: left; } }
@media (hover: hover) {
  .work__row:hover::before { transform: scaleY(1); transform-origin: top; }
  .work__row:hover { color: var(--paper); }
  .work__row:hover .work__idx, .work__row:hover .work__cat { color: var(--gold); }
}
@media (max-width: 720px) {
  .work__row { grid-template-columns: 44px 1fr; row-gap: 6px; }
  .work__cat { grid-column: 2; text-align: left; }
}

.work__hoverImg {
  position: fixed; top: 0; left: 0; z-index: 5; width: 260px; height: 320px;
  background-size: cover; background-position: center; pointer-events: none;
  opacity: 0; transform: translate(-50%, -50%) scale(0.85); filter: grayscale(1);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); will-change: transform;
}
.work__hoverImg::after { content: ""; position: absolute; inset: 0; background: var(--gold); mix-blend-mode: color; opacity: 0.28; }
.work__hoverImg.is-visible { opacity: 1; }
@media (hover: none) { .work__hoverImg { display: none; } }

/* =========================================================================
   BIG IMAGE-FILLED TYPE
   ========================================================================= */
.bigtype { position: relative; isolation: isolate; overflow: hidden; background: #000000; padding: 0; }
/* Showreel plays behind, revealed only through the letters */
.bigtype__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.5); transform-origin: center; z-index: 0; }
.bigtype__text {
  position: relative; z-index: 1; margin: 0;
  padding: var(--space-xl) var(--gutter);
  display: grid; place-items: center; text-align: center;
  /* black block, multiplied over the video => black surround stays black,
     the white letters reveal the video through them */
  background: #000000;
  mix-blend-mode: multiply;
}
/* The two phrases stack in the same grid cell and cross-fade */
.bigtype__phrase {
  grid-area: 1 / 1;
  display: block; width: 100%;
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.2rem, 12.5vw, 10.5rem); line-height: 0.9; letter-spacing: -0.04em;
  color: #fff; -webkit-text-fill-color: #fff;
}
.bigtype__phrase .line { display: block; }
/* Alternate the two phrases with a clean hard cut — exactly one phrase is
   always visible so the video behind stays revealed and never appears to
   jump/restart during the swap. */
.bigtype__phrase--1 { animation: bigtypePhraseA 8s linear infinite; }
.bigtype__phrase--2 { animation: bigtypePhraseB 8s linear infinite; }
@keyframes bigtypePhraseA { 0%, 50% { opacity: 1; } 50.001%, 100% { opacity: 0; } }
@keyframes bigtypePhraseB { 0%, 50% { opacity: 0; } 50.001%, 100% { opacity: 1; } }
/* Fallback for browsers without mix-blend-mode: white text on the black block */
@supports not (mix-blend-mode: multiply) {
  .bigtype__video { display: none; }
  .bigtype__text { mix-blend-mode: normal; background: transparent; }
  .bigtype__phrase { color: var(--paper); -webkit-text-fill-color: var(--paper); }
}
@media (prefers-reduced-motion: reduce) {
  .bigtype__phrase--1, .bigtype__phrase--2 { animation: none; }
  .bigtype__phrase--2 { display: none; }
}

/* =========================================================================
   GALLERY — portal strip (home) + photo grid (gallery pages)
   ========================================================================= */
.gallery { position: relative; background: var(--ink); color: var(--paper); padding-bottom: var(--space-xl); }
.gallery__strip {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2.2vw, 26px);
}
@media (max-width: 720px) { .gallery__strip { grid-template-columns: 1fr; } }

.gallery-card {
  position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5;
  background: var(--ink-2); color: var(--paper); text-decoration: none;
  border: 1px solid rgba(244,242,236,0.10);
}
.gallery-card__img, .gallery-card__ph {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.02); transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.gallery-card__img { filter: grayscale(1); }
.gallery-card__ph { background: radial-gradient(120% 90% at 50% 22%, #2a2417 0%, #0B0B0B 74%); }
.gallery-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,11,0.10) 0%, rgba(11,11,11,0.35) 46%, rgba(11,11,11,0.78) 100%);
}
.gallery-card__body {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: flex-end; gap: 12px; padding: clamp(22px, 3vw, 44px);
}
.gallery-card__cap { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark); }
.gallery-card__label {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem); line-height: 0.94; letter-spacing: -0.02em;
}
.gallery-card__cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 4px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.gallery-card__cta svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform 0.35s var(--ease); }
.gallery-card:hover .gallery-card__img { transform: scale(1.07); filter: grayscale(0); }
.gallery-card:hover .gallery-card__ph { transform: scale(1.07); }
.gallery-card:hover .gallery-card__cta svg { transform: translateX(6px); }

/* ---- Gallery page: masonry photo grid ---- */
.photo-gallery { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(56px, 9vh, 120px); }
.photo-gallery__grid { columns: 3 300px; column-gap: clamp(10px, 1.2vw, 16px); }
.photo-gallery figure {
  margin: 0 0 clamp(10px, 1.2vw, 16px); break-inside: avoid; overflow: hidden;
  background: var(--ink-2); position: relative;
}
.photo-gallery img { width: 100%; height: auto; display: block; filter: grayscale(1); transition: filter 0.5s var(--ease), transform 0.7s var(--ease); }
.photo-gallery figure:hover img { filter: grayscale(0); transform: scale(1.04); }
.photo-gallery__ph { aspect-ratio: var(--ph, 3 / 4); background: radial-gradient(120% 90% at 50% 25%, #232019 0%, #0B0B0B 76%); }
.photo-gallery__note { max-width: var(--maxw); margin: 0 auto var(--space-md); padding: 0 var(--gutter); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* tagged, clickable photo figures */
.pg-fig { margin: 0 0 clamp(10px, 1.2vw, 16px); break-inside: avoid; }
.pg-fig__btn { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; position: relative; overflow: hidden; }
.pg-fig__btn img { width: 100%; height: auto; display: block; filter: grayscale(1); transition: filter 0.5s var(--ease), transform 0.7s var(--ease); }
.pg-fig__name {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; text-align: left;
  padding: 34px 14px 12px; pointer-events: none;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: linear-gradient(transparent, rgba(11,11,11,0.85));
  opacity: 0; transform: translateY(6px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.pg-fig__btn:hover img, .pg-fig__btn:focus-visible img { filter: grayscale(0); transform: scale(1.04); }
/* True-color galleries (e.g. photo shoots): keep native color, no grayscale. */
.photo-gallery--truecolor .pg-fig__btn img { filter: none; }
.pg-fig__btn:hover .pg-fig__name, .pg-fig__btn:focus-visible .pg-fig__name { opacity: 1; transform: none; }

/* fullscreen photo lightbox */
.pg-lb { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(6,6,6,0.94); backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.3s var(--ease); }
.pg-lb.is-open { display: flex; opacity: 1; }
.pg-lb__frame { position: relative; margin: 0; max-width: min(92vw, 760px); text-align: center; }
.pg-lb__frame img { max-width: 100%; max-height: 82vh; width: auto; height: auto; display: block; margin: 0 auto; box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.pg-lb__cap { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper); }
.pg-lb__close { position: fixed; top: 16px; right: 16px; width: 46px; height: 46px; display: grid; place-items: center; border: 0; cursor: pointer; background: var(--gold); color: var(--ink); }
.pg-lb__close svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.4; fill: none; }
.pg-lb__nav { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; display: grid; place-items: center; border: 0; cursor: pointer; background: rgba(244,242,236,0.12); color: var(--paper); }
.pg-lb__nav svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
.pg-lb__nav:hover { background: var(--gold); color: var(--ink); }
.pg-lb__nav--prev { left: 14px; }
.pg-lb__nav--next { right: 14px; }
@media (max-width: 560px) { .pg-lb__nav { width: 42px; height: 42px; } }

/* =========================================================================
   SHOWREEL
   ========================================================================= */
.reel { background: var(--ink); color: var(--paper); padding-bottom: var(--space-xl); }
.reel__stage { display: flex; justify-content: center; padding: 0 var(--gutter); }
.reel__player {
  position: relative; overflow: hidden; background: var(--ink-2);
  aspect-ratio: 16 / 9; width: min(92vw, 1120px); height: auto;
  border: 1px solid var(--line-dark);
}
.reel__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; background: #000; }
.reel__grain { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(11,11,11,0.28), rgba(11,11,11,0) 30%, rgba(11,11,11,0) 62%, rgba(11,11,11,0.55)); transition: opacity 0.4s var(--ease); }
.reel__play {
  position: absolute; left: clamp(16px, 3vw, 30px); bottom: clamp(16px, 3vw, 30px); top: auto;
  width: clamp(60px, 8vw, 82px); height: clamp(60px, 8vw, 82px); border-radius: 50%;
  background: var(--gold); display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 12px 34px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.18);
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-width: 44px; min-height: 44px;
}
/* soft pulsing ring to draw the eye */
.reel__play::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--gold); pointer-events: none;
  animation: reelPulse 2.4s var(--ease) infinite;
}
.reel__play:hover {
  transform: scale(1.08); background: var(--gold-bright);
  box-shadow: 0 16px 44px rgba(0,0,0,0.5), 0 0 26px rgba(198,161,91,0.55);
}
.reel__play svg { position: relative; width: 38%; height: 38%; fill: var(--ink); margin-left: 8%; }
@keyframes reelPulse { 0% { transform: scale(1); opacity: 0.55; } 70% { opacity: 0; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .reel__play::before { animation: none; opacity: 0; } }
.reel__tag { position: absolute; bottom: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); transition: opacity 0.4s var(--ease); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.reel__tag--l { left: 18px; }
.reel__tag--r { right: 18px; }
/* When playing: hide the overlay chrome, let native controls take over */
.reel__player.is-playing .reel__play,
.reel__player.is-playing .reel__tag,
.reel__player.is-playing .reel__grain { opacity: 0; pointer-events: none; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about { background: var(--paper); padding: var(--space-xl) var(--gutter); }
/* Full-bleed the giant type when it sits between the bio and the clapperboard */
.about > .bigtype { margin: var(--space-xl) calc(-1 * var(--gutter)) 0; }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 100px); align-items: stretch; position: relative; }
/* Portrait stretches to the full height of the (taller) bio column */
.about__portrait { position: relative; overflow: hidden; background: var(--paper-2); min-height: 100%; }
.about__portrait img { width: 100%; height: 100%; filter: grayscale(1) contrast(1.03); object-fit: cover; object-position: center center; }
.about__portraitTag { position: absolute; bottom: 14px; left: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); background: rgba(11,11,11,0.7); padding: 6px 10px; }
.about__body .overline { margin-bottom: var(--space-md); }
.about__lead { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.8rem, 4.4vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; margin-bottom: var(--space-sm); }
.about__tagline { font-family: var(--font-body); font-style: italic; font-weight: 400; font-size: clamp(1.05rem, 1.8vw, 1.5rem); color: var(--gold); margin-bottom: var(--space-md); letter-spacing: 0.01em; }
.about__copy p { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--ink-soft); max-width: 52ch; margin-bottom: var(--space-sm); }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); border-top: 1px solid var(--line); padding-top: var(--space-md); }
.stat b { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; }
.stat span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait { aspect-ratio: 3 / 4; min-height: 0; }
  .about__stats { gap: var(--space-sm); }
}

/* Press */
.press { position: relative; margin-top: var(--space-xl); padding-top: clamp(96px, 14vh, 196px); }
/* On-theme ornamental divider between About and the letter */
.press::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent); }
.press::after { content: "\25C6"; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); color: var(--gold); font-size: 13px; line-height: 1; background: var(--paper); padding: 0 16px; }
.press__label { margin-bottom: var(--space-md); }
.press__row { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 64px); align-items: center; }
.press__row span { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1rem, 2vw, 1.5rem); color: var(--muted); letter-spacing: -0.01em; transition: color 0.3s var(--ease); }
.press__row span:hover { color: var(--ink); }
.press__quote { margin-top: var(--space-lg); font-family: var(--font-display); font-weight: 600; text-transform: none; font-size: clamp(1.5rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.02em; max-width: 20ch; }
.press__quote cite { display: block; font-family: var(--font-mono); font-size: 13px; font-style: normal; color: var(--gold); margin-top: var(--space-md); letter-spacing: 0.06em; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact { background: var(--ink); color: var(--paper); padding: var(--space-xl) var(--gutter) var(--space-lg); }
.contact__head { margin-bottom: var(--space-lg); }
.contact__head .overline { color: var(--muted-dark); margin-bottom: var(--space-md); }
.contact__title { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.6rem, 9vw, 8rem); line-height: 0.9; letter-spacing: -0.03em; }
.contact__title .line { display: block; overflow: hidden; }
.contact__title .line > span { display: block; }
.contact__title mark, .contact__title { color: var(--paper); }

/* Contact — brand showcase (heading + rolodex) over booking form + details */
.contact__layout { display: grid; grid-template-columns: 1.3fr 0.7fr; align-items: center; gap: clamp(32px, 6vw, 96px); margin-bottom: clamp(40px, 6vh, 84px); }
.contact__lead .overline { color: var(--muted-dark); margin-bottom: var(--space-md); }
.brands__title { margin: 0; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.6rem, 6.4vw, 6rem); line-height: 0.9; letter-spacing: -0.03em; color: var(--paper); }
.brands__gold { color: var(--gold); }
.rolodex-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; justify-self: center; }
.rolodex { perspective: 1200px; filter: drop-shadow(0 22px 44px rgba(0,0,0,0.32)); }
.rolodex__card {
  position: relative; width: 320px; height: 224px;
  transform: rotateY(-18deg); transform-style: preserve-3d;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10), 0 0 54px rgba(228,228,244,0.10);
}
.rolodex__quote { margin: clamp(28px, 5vh, 60px) 0 0; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.rolodex__quote blockquote {
  margin: 0; max-width: 22ch; font-family: var(--font-body); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.3; color: var(--paper);
}
.rolodex__quote figcaption {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 10px;
}
.rolodex__quote figcaption::before { content: ""; width: 14px; height: 1px; background: var(--gold); opacity: 0.6; }
@media (max-width: 860px) {
  .contact__layout { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: clamp(28px, 5vh, 48px); margin-bottom: clamp(32px, 5vh, 56px); }
  .contact__lead { display: flex; flex-direction: column; align-items: center; }
  .brands__title { text-align: center; }
  .rolodex { justify-self: center; }
}
.rolodex__panel { position: absolute; left: 0; right: 0; height: 50%; overflow: hidden; background: var(--paper); }
.rolodex__panel--top { top: 0; transform-origin: center bottom; }
.rolodex__panel--bot { bottom: 0; transform-origin: center top; }
.rolodex__panel img { position: absolute; left: 0; width: 100%; height: 224px; object-fit: contain; padding: 30px 38px; box-sizing: border-box; }
.rolodex__panel--top img { top: 0; }
.rolodex__panel--bot img { bottom: 0; }
.rolodex__panel[data-role="static-top"], .rolodex__panel[data-role="static-bot"] { z-index: 1; }
.rolodex__flip { z-index: 2; backface-visibility: hidden; }
.rolodex__panel[data-role="flip-bot"] { transform: rotateX(180deg); }
.rolodex__seam { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(11,11,11,0.16); transform: translateY(-50%) translateZ(1px); z-index: 3; }
@media (max-width: 520px) { .rolodex__card { width: 268px; height: 188px; } .rolodex__panel img, .rolodex__panel--top img, .rolodex__panel--bot img { height: 188px; } }

.contact__grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(32px, 6vw, 96px); }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-dark); }
.field input, .field textarea, .field select {
  background: transparent; border: none; border-bottom: 1px solid var(--line-dark);
  color: var(--paper); font-family: var(--font-body); font-size: 1.05rem; padding: 10px 0;
  transition: border-color 0.3s var(--ease);
}
.field select { color: var(--paper); }
.field select option { background: var(--ink); color: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,242,236,0.32); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 64px; }
.field.has-error input, .field.has-error textarea { border-color: #E5736B; }
.field__err { font-family: var(--font-mono); font-size: 11px; color: #E5736B; min-height: 0; letter-spacing: 0.04em; }

.btn-primary {
  grid-column: 1 / -1; justify-self: start;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 18px 30px; min-height: 44px; transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn-primary svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform 0.35s var(--ease); }
.btn-primary:hover { background: var(--gold-bright); }
.btn-primary:hover svg { transform: translateX(6px); }
.contact__success { grid-column: 1 / -1; font-family: var(--font-mono); font-size: 13px; color: var(--gold); letter-spacing: 0.04em; }
.contact__error { grid-column: 1 / -1; font-family: var(--font-mono); font-size: 13px; color: #d63f2c; letter-spacing: 0.04em; }

.contact__aside { display: flex; flex-direction: column; gap: var(--space-lg); }
.contact__block { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line-dark); padding-top: var(--space-sm); }
.contact__block .overline { color: var(--muted-dark); }
.contact__block a, .contact__block p { font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.contact__block a:hover { color: var(--gold); }
.contact__social { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 520px) { .contact__form { grid-template-columns: 1fr; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink); color: var(--paper); padding: var(--space-md) var(--gutter) calc(var(--space-md) + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-dark); }
.footer__strip { position: relative; margin: calc(var(--space-md) * -1) calc(var(--gutter) * -1) var(--space-md); }
.footer__strip img { display: block; width: 100%; height: auto; }
.footer__strip::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0.42) 45%, rgba(10,11,13,0.7) 100%); }

/* Interactive film clapboard holding the sign-off letter */
.clapboard {
  --stripe: clamp(44px, 5.6vw, 78px);
  --arm-h: clamp(58px, 6.6vw, 82px);
  position: relative; width: min(1040px, 94vw); margin: 0 auto;
  padding-top: clamp(138px, 19vw, 232px); cursor: pointer; -webkit-tap-highlight-color: transparent;
  perspective: 2600px;
}
.clapboard:focus-visible { outline: 2px solid var(--gold); outline-offset: 8px; }
.clapboard__board {
  position: relative; isolation: isolate; color: #f2f2ef;
  transform: rotateX(3deg); transform-origin: 50% 100%; transform-style: preserve-3d;
  background: linear-gradient(162deg, #26262b 0%, #17171a 46%, #0c0c0e 100%);
  border-radius: 4px 4px 12px 12px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 0 0 1px rgba(0,0,0,0.55),
    inset 0 0 130px rgba(0,0,0,0.55),
    0 3px 6px rgba(0,0,0,0.4),
    0 62px 92px -28px rgba(0,0,0,0.72);
}
/* soft top light across the slate */
.clapboard__board::before {
  content: ""; position: absolute; left: 0; right: 0; top: var(--arm-h); bottom: 0; z-index: 0;
  background: radial-gradient(130% 90% at 50% 0%, rgba(255,255,255,0.10), rgba(255,255,255,0) 58%);
  border-radius: 0 0 12px 12px; pointer-events: none;
}
/* cinematic film grain over the slate */
.clapboard__board::after {
  content: ""; position: absolute; inset: 0; z-index: 6; pointer-events: none;
  border-radius: 4px 4px 12px 12px;
  background-image: url("../img/film-grain.png");
  background-size: 200px 200px; mix-blend-mode: soft-light; opacity: 0.48;
}
.clapboard__topbar {
  position: relative; z-index: 2; height: var(--arm-h); border-radius: 4px 4px 0 0;
  background: repeating-linear-gradient(125deg, #fbfbf9 0 var(--stripe), #070707 var(--stripe) calc(var(--stripe) * 2));
  border-bottom: 2px solid #0a0a0a;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.26), 0 6px 10px rgba(0,0,0,0.4);
}
.clapboard__arm {
  position: absolute; left: 0; width: 100%; height: var(--arm-h); bottom: 100%; z-index: 2;
  border-radius: 4px 4px 0 0; transform-origin: left bottom; transform: rotate(-21deg);
  transition: transform 0.5s var(--ease); will-change: transform;
  background: repeating-linear-gradient(125deg, #fbfbf9 0 var(--stripe), #070707 var(--stripe) calc(var(--stripe) * 2));
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.34), inset 0 -2px 0 rgba(0,0,0,0.42);
  filter: drop-shadow(0 10px 12px rgba(0,0,0,0.45));
}
/* triangular black gusset plate with 3 chrome rivets — matches the reference */
.clapboard__hinge {
  position: absolute; left: -12px; z-index: 4;
  bottom: calc(100% - var(--arm-h));
  width: clamp(82px, 9.6vw, 122px); height: calc(var(--arm-h) * 2.05 + 12px);
  background: linear-gradient(148deg, #232323 0%, #0d0d0d 52%, #030303 100%);
  clip-path: polygon(0% 14%, 56% 0%, 78% 22%, 100% 60%, 80% 90%, 58% 100%, 0% 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}
.clapboard__hinge i {
  position: absolute; width: clamp(11px, 1.35vw, 16px); height: clamp(11px, 1.35vw, 16px); border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, #ffffff 0%, #d8d8d8 30%, #969696 62%, #4c4c4c 88%, #2a2a2a 100%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.7), inset 0 0 2px rgba(255,255,255,0.65);
}
.clapboard__hinge i:nth-child(1) { top: 24%; left: 20%; }
.clapboard__hinge i:nth-child(2) { bottom: 16%; left: 20%; }
.clapboard__hinge i:nth-child(3) { bottom: 22%; left: 52%; }
.clapboard.clap .clapboard__arm { animation: clap 0.62s var(--ease-in-out); }
.clapboard.clap .clapboard__board { animation: clapshake 0.62s var(--ease-in-out); }
@keyframes clap {
  0% { transform: rotate(-21deg); } 26% { transform: rotate(0deg); }
  38% { transform: rotate(-4deg); } 50% { transform: rotate(0deg); }
  100% { transform: rotate(-21deg); }
}
@keyframes clapshake { 0%,20%,100% { transform: translateY(0); } 30% { transform: translateY(3px); } 40% { transform: translateY(0); } }
.clapboard__hint {
  margin: var(--space-md) 0 0; text-align: center; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  transition: color 0.3s var(--ease);
}
.clapboard:hover .clapboard__hint { color: var(--gold); }
@media (prefers-reduced-motion: reduce) {
  .clapboard__arm { transition: none; } .clapboard.clap .clapboard__arm, .clapboard.clap .clapboard__board { animation: none; }
}

/* Production-slate fields (white on the black slate) */
.slate { position: relative; z-index: 1; padding: clamp(18px, 2.2vw, 32px) clamp(30px, 3.6vw, 56px) clamp(34px, 4.2vw, 64px); }
.slate__label {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: clamp(13px, 1.4vw, 18px); color: #f3f3f0; white-space: nowrap; line-height: 1;
}
.slate__label::after { content: "."; }
/* full-width ruled fields with a connecting vertical divider — matches the reference grid */
.slate__row--title {
  display: flex; align-items: flex-end; gap: clamp(12px, 1.6vw, 22px);
  border-bottom: 2px solid rgba(255,255,255,0.9);
  padding-bottom: clamp(4px, 0.7vw, 9px);
}
/* TITLE reads ~2x larger than the other field labels */
.slate__row--title > .slate__label { font-size: clamp(26px, 2.95vw, 38px); }
.slate__row--split {
  display: flex; align-items: stretch;
  border-bottom: 2px solid rgba(255,255,255,0.9);
}
.slate__cell {
  display: flex; align-items: flex-end; gap: clamp(10px, 1.4vw, 18px);
  padding: clamp(7px, 1vw, 13px) 0 clamp(4px, 0.7vw, 9px);
}
.slate__cell--scene { flex: 1.7; padding-right: clamp(16px, 2.2vw, 34px); }
.slate__cell--date { flex: 1; border-left: 2px solid rgba(255,255,255,0.9); padding-left: clamp(18px, 2.4vw, 38px); }
.slate__fill { flex: 1; min-width: 0; display: flex; align-items: flex-end; }
.slate__fill img { display: block; width: auto; max-width: 100%; margin-bottom: -2px; }
.slate__row--title .slate__fill img { height: clamp(30px, 3.6vw, 46px); }
.slate__cell--scene .slate__fill img { height: clamp(24px, 2.9vw, 38px); }
.slate__cell--date .slate__fill img { height: clamp(32px, 4vw, 50px); }
.slate__memo { margin-top: clamp(6px, 0.9vw, 12px); }
.slate__memo > .slate__label { display: block; margin-bottom: clamp(2px, 0.4vw, 6px); }
/* handwritten memo letter + signature, chalk white */
.letter { position: relative; z-index: 1; width: clamp(300px, 74%, 780px); margin: 0 auto; }
.letter__hand { display: block; width: 100%; height: auto; }
.letter__sign { display: block; width: clamp(120px, 13vw, 168px); height: auto; margin: clamp(8px, 1.4vh, 18px) 0 0 clamp(46px, 8vw, 116px); filter: drop-shadow(0 1px 5px rgba(0,0,0,0.4)); }
.footer__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-dark); }
.footer__row a:hover { color: var(--gold); }

/* =========================================================================
   CREDIT DETAIL PAGE (work/*.html)
   ========================================================================= */
.credit { background: var(--paper); color: var(--ink); }

/* ---- Scroll-expand credit hero (vanilla port, on-brand) ---- */
.credit--expand { background: var(--ink); overflow-x: hidden; }
.expand { position: relative; background: var(--ink); color: var(--paper); }
.expand__bg { position: fixed; inset: 0; z-index: 0; background-size: cover; background-position: center; will-change: opacity; }
.expand__bg::after { content: ""; position: absolute; inset: 0; background: rgba(11,11,11,0.55); }
.expand__stage { position: relative; z-index: 1; height: 100svh; display: grid; place-items: center; }
.expand__media {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 400px; max-width: 94vw; max-height: 84svh; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55); will-change: width, height; background: var(--ink-2);
}
.expand__media img, .expand__media video { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0); }
.expand__mscrim { position: absolute; inset: 0; background: rgba(11,11,11,0.32); will-change: opacity; }
.expand__sound, .expand__replay {
  position: absolute; z-index: 3; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 9px 16px; border: 1px solid rgba(244,242,236,0.55); background: rgba(11,11,11,0.5);
  backdrop-filter: blur(6px); color: var(--paper);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.expand__sound:hover, .expand__replay:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.expand__sound svg, .expand__replay svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.expand__sound[hidden], .expand__replay[hidden] { display: none; }
.expand__title {
  position: relative; z-index: 2; margin: 0; text-align: center; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.06em;
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 6.5rem); line-height: 0.9; letter-spacing: -0.03em;
  color: var(--paper); mix-blend-mode: difference;
}
.expand__word { display: block; white-space: nowrap; will-change: transform; }
.expand__chrome { position: absolute; z-index: 2; bottom: 7svh; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; will-change: opacity; pointer-events: none; }
.expand__date { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper); }
.expand__hint { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.expand__hint::after { content: ""; width: 1px; height: 30px; background: linear-gradient(var(--gold), transparent); transform-origin: top; animation: scrollpulse 1.9s var(--ease) infinite; }
@keyframes scrollpulse { 0% { transform: scaleY(0); opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

.expand-content { position: relative; z-index: 1; background: var(--paper); color: var(--ink); opacity: 0; transition: opacity 0.7s var(--ease); }
.expand-content.is-shown { opacity: 1; }
.expand-content__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 9vh, 120px) var(--gutter) var(--space-xl); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.expand-content__inner .overline { grid-column: 1 / -1; margin-bottom: var(--space-md); }
@media (max-width: 820px) { .expand-content__inner { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .expand-content { opacity: 1; } .expand__hint::after { animation: none; } }

/* ---- Interview reel gallery ---- */
.reel-gallery { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(56px, 9vh, 120px); }
.reel-gallery__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: var(--space-md); border-bottom: 1px solid rgba(11,11,11,0.14); margin-bottom: clamp(24px, 4vh, 48px); }
.reel-gallery__title { margin: 0; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.95; font-size: clamp(1.6rem, 3.4vw, 2.8rem); }
.reel-gallery__count { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3, #6b6a66); white-space: nowrap; }
.reel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.reel-card {
  position: relative; display: block; padding: 0; border: 0; margin: 0; cursor: pointer;
  aspect-ratio: 9 / 16; overflow: hidden; background: var(--ink-2, #141414);
  outline: 1px solid rgba(11,11,11,0.12); outline-offset: 0;
  transition: transform 0.4s var(--ease), outline-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.reel-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.reel-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,11,0.72) 0%, rgba(11,11,11,0) 42%); }
.reel-card__tag { position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; background: rgba(11,11,11,0.5); backdrop-filter: blur(4px); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper); }
.reel-card__play { position: absolute; top: 50%; left: 50%; z-index: 2; width: 58px; height: 58px; transform: translate(-50%, -50%); display: grid; place-items: center; border-radius: 50%; background: rgba(11,11,11,0.42); border: 1.5px solid var(--gold); backdrop-filter: blur(2px); transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.reel-card__play svg { width: 20px; height: 20px; margin-left: 3px; fill: var(--gold); transition: fill 0.4s var(--ease); }
.reel-card__cap { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; font-family: var(--font-sans, Inter, sans-serif); font-size: 13px; line-height: 1.3; color: var(--paper); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.reel-card:hover, .reel-card:focus-visible { transform: translateY(-4px); outline-color: var(--gold); box-shadow: 0 24px 60px rgba(0,0,0,0.28); }
.reel-card:hover img, .reel-card:focus-visible img { transform: scale(1.06); }
.reel-card:hover .reel-card__play, .reel-card:focus-visible .reel-card__play { transform: translate(-50%, -50%) scale(1.1); background: var(--gold); }
.reel-card:hover .reel-card__play svg, .reel-card:focus-visible .reel-card__play svg { fill: var(--ink); }

/* Lightbox */
.reel-lb { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(6,6,6,0.92); backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.35s var(--ease); }
.reel-lb.is-open { display: flex; opacity: 1; }
.reel-lb__frame { position: relative; width: min(420px, 92vw); height: min(88vh, 746px); background: var(--ink); box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.reel-lb__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.reel-lb__spinner { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper); opacity: 0.6; }
.reel-lb__close { position: absolute; top: -14px; right: -14px; z-index: 2; width: 44px; height: 44px; display: grid; place-items: center; border: 0; cursor: pointer; background: var(--gold); color: var(--ink); }
.reel-lb__close svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.4; fill: none; }
@media (max-width: 480px) { .reel-lb__close { top: 8px; right: 8px; } }

.credit-nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px, 2.2vw, 24px) var(--gutter);
  background: rgba(244, 242, 236, 0.86); backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.credit-nav__brand { display: flex; align-items: baseline; gap: 0.6em; }
.credit-nav__brand .nav__brandMark { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--ink); }
.credit-nav__name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.credit-nav__back { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.credit-nav__back svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform 0.35s var(--ease); }
.credit-nav__back:hover { color: var(--gold); }
.credit-nav__back:hover svg { transform: translateX(-5px); }
@media (max-width: 600px) { .credit-nav__name { display: none; } }

.credit-main { max-width: var(--maxw); margin: 0 auto; }

.credit-hero {
  display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(32px, 6vw, 90px);
  align-items: start; padding: clamp(48px, 8vh, 110px) var(--gutter) var(--space-xl);
}
.credit-hero__text { position: sticky; top: 120px; }
.credit-hero .overline { margin-bottom: var(--space-md); }
.credit-hero__title { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.9; letter-spacing: -0.03em; }
.credit-hero__sub { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: var(--space-md); }
.credit-hero__sub span { color: var(--gold); margin: 0 0.4em; }

.credit-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); margin-top: var(--space-lg); border-top: 1px solid var(--line); padding-top: var(--space-md); max-width: 30rem; }
.credit-meta__item .overline { margin-bottom: 6px; }
.credit-meta__item p { font-size: 1.05rem; font-weight: 500; }
/* Inline feature photo in a credit page's left column */
.credit-photo { margin: var(--space-lg) 0 0; max-width: 32rem; }
.credit-photo img { width: 100%; height: auto; display: block; }
.credit-photo figcaption { margin-top: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.credit-overview { margin-top: var(--space-lg); }
.credit-overview p { font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.6; max-width: 46ch; color: var(--ink-soft); }
.credit-overview p + p { margin-top: 1.5em; }
.credit-overview strong { font-weight: 600; color: var(--ink); }
.ggl-red { color: #E4231C; }

.credit-hero__media { overflow: hidden; background: var(--paper-2); }
.credit-hero__media img { width: 100%; height: auto; display: block; }

.credit-gallery:not(:empty) { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(8px, 1.2vw, 18px); padding: 0 var(--gutter) var(--space-xl); }
.credit-gallery figure { margin: 0; overflow: hidden; background: var(--paper-2); }
.credit-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Behind-the-scenes justified gallery (magazine rows, no crop) ---- */
.bts-gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(6px, 1.5vh, 22px) var(--gutter) clamp(56px, 9vh, 120px); }
.bts-gallery__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: var(--space-md); border-bottom: 1px solid rgba(11,11,11,0.14); margin-bottom: clamp(18px, 3vh, 36px); }
.bts-gallery__title { margin: 0; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.95; font-size: clamp(1.6rem, 3.4vw, 2.8rem); }
.bts-gallery__count { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3, #6b6a66); white-space: nowrap; }
.bts-gallery__rows { display: flex; flex-direction: column; gap: clamp(10px, 1.1vw, 16px); }
.bts-gallery__row { display: flex; gap: clamp(10px, 1.1vw, 16px); }
.bts-fig { position: relative; margin: 0; overflow: hidden; min-width: 0; flex: 1 1 0; background: var(--ink-2, #141414); }
.bts-fig img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.bts-fig::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(11,11,11,0.34), rgba(11,11,11,0) 46%); opacity: 0; transition: opacity 0.5s var(--ease); }
.bts-fig:hover img { transform: scale(1.045); }
.bts-fig:hover::after { opacity: 1; }
.bts-fig__no { position: absolute; left: 13px; bottom: 11px; z-index: 2; margin: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--paper); opacity: 0; transform: translateY(6px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.bts-fig:hover .bts-fig__no { opacity: 1; transform: none; }
@media (max-width: 700px) {
  .bts-gallery__row { flex-direction: column; }
  .bts-fig { flex: none !important; width: 100%; }
  .bts-fig__no { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .bts-fig:hover img { transform: none; } }

.credit-foot { padding: var(--space-lg) var(--gutter) var(--space-xl); border-top: 1px solid var(--line); }
.credit-foot__all { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 4vw, 2.4rem); letter-spacing: -0.01em; }
.credit-foot__all svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform 0.35s var(--ease); }
.credit-foot__all:hover { color: var(--gold); }
.credit-foot__all:hover svg { transform: translateX(-6px); }

@media (max-width: 820px) {
  .credit-hero { grid-template-columns: 1fr; }
  .credit-hero__text { position: static; top: auto; order: 2; }
  .credit-hero__media { order: 1; }
  .credit-gallery:not(:empty) { grid-template-columns: 1fr; }
}

/* =========================================================================
   REVEAL DEFAULTS (JS toggles .is-in)
   ========================================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
/* Split-line initial state — only applied when JS is active (body.anim) so a
   no-JS / no-GSAP visitor never sees permanently hidden text. */
body.anim .hero__title .line > span,
body.anim .contact__title .line > span,
body.anim .statement__text .line > span { transform: translateY(110%); }

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .marquee__track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  body.anim .hero__title .line > span,
  body.anim .contact__title .line > span,
  body.anim .statement__text .line > span { transform: none !important; }
  .hero__kicker span { opacity: 1 !important; }
  .cursor { display: none !important; }
  .hero__scroll i::after { animation: none; }
}
