/* ============================================================
   BAKER STREET PRODUCTIONS
   Art direction: letterpress fight bill. Condensed wood-type display,
   Courier for anything that behaves like a call sheet or an archive label,
   Helvetica for reading. Newsprint halftone + film grain over the whole page.
   Palette: press black / newsprint / offset red.
   ============================================================ */

:root {
  --ink:       #0a0a09;
  --ink-2:     #121210;
  --ink-3:     #1b1b18;
  --line:      #2c2b27;
  --line-hot:  #43413b;
  --bone:      #ddd8c8;   /* newsprint */
  --bone-dim:  #9d988a;
  --bone-mute: #6a6659;
  --red:       #b8352a;   /* offset red, slightly off-register */
  --red-lit:   #d4462f;

  /* Condensed wood type — the fight bill itself */
  --display: "Haettenschweiler", "Impact", "Arial Narrow", "Helvetica Neue", sans-serif;
  /* Courier — call sheets, film-can labels, archive slips */
  --mono: "American Typewriter", "Courier New", Courier, monospace;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gothic: var(--display);

  --wrap: 1240px;
  --gut: clamp(1.25rem, 4vw, 4rem);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Photochemical grain over the whole page ---- */
/* Film grain. High baseFrequency = fine speckle rather than blobs; the
   feColorMatrix desaturates it to true monochrome so it never tints, and
   drops the alpha so it sits over the page instead of covering it. */
body::after {
  content: "";
  position: fixed;
  inset: -256px;
  z-index: 400;
  pointer-events: none;
  opacity: 0.8;
  mix-blend-mode: overlay;
  /* A real 256px noise tile rather than an SVG feTurbulence filter — the
     filter rasterised to flat grey, which just veiled the page instead of
     texturing it. The tile is centred on 128 so overlay stays brightness
     neutral: overlay against 50% grey is the identity. */
  background-image: url("../img/grain.png");
  background-repeat: repeat;
  animation: grain 800ms steps(4) infinite;
}
@keyframes grain {
  0%   { transform: translate3d(0, 0, 0); }
  25%  { transform: translate3d(-40px, 22px, 0); }
  50%  { transform: translate3d(28px, -34px, 0); }
  75%  { transform: translate3d(-18px, -14px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* ---- Newsprint halftone ---- */
/* No regular dot grid anywhere. A repeating lattice over type reads as
   screen-door moire, not grain — real film grain is random. */

/* ---- Vignette: keeps large flat areas from reading as dead black ---- */
.section, .hero, .band { position: relative; }
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%);
}
.section > * { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ============================================================
   TYPE
   ============================================================ */

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

/* Everything set in wood type is uppercase and packed tight */
h1, .section-title, .film__body h3, .cta h2,
.timeline h4, .press-list .outlet, .credit-group h3, .brand__mark,
.slate__title {
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.86;
  font-weight: 400;
}

/* Fight-bill label */
.eyebrow {
  font-family: var(--mono);
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0.5;
}

.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--bone-dim);
}

.section-title { font-size: clamp(2.8rem, 8vw, 6.5rem); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 8, 10, 0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(8,8,10,0.92); }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 72px;
}

.brand { text-decoration: none; display: flex; align-items: baseline; gap: 0.55rem; flex-shrink: 0; }
.brand__mark { font-size: 1.5rem; letter-spacing: 0.02em; }
.brand__sub {
  font-family: var(--mono);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-mute);
}

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  position: relative;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 0.35rem 0;
  transition: color 0.25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(.3,.9,.4,1);
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--bone); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-hot);
  color: var(--bone);
  padding: 0.5rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gut) 1.25rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
}

/* ============================================================
   HERO — drifting archive behind fight-bill type
   ============================================================ */

.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: clamp(6rem, 16vh, 10rem) 0 clamp(2.5rem, 6vh, 4.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* compact variant for interior pages */
.hero--sub {
  min-height: clamp(340px, 48vh, 520px);
  padding: clamp(5rem, 13vh, 8rem) 0 clamp(2.5rem, 5vh, 3.5rem);
}
.hero--sub h1 { font-size: clamp(2.8rem, 8.5vw, 7rem); max-width: 18ch; }

.hero__bed { position: absolute; inset: 0; z-index: 0; }
.hero__bed figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 2.2s ease;
}
.hero__bed figure.is-live { opacity: 1; }
.hero__bed figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(0,0,0,0.9) 0.5px, transparent 0.7px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}
.hero__bed img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* duotone the archive so mismatched sources read as one set */
  filter: grayscale(1) contrast(1.45) brightness(0.4);
  transform: scale(1.06);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-2%, -1.5%, 0); }
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.72) 0%, rgba(8,8,10,0.35) 35%, rgba(8,8,10,0.94) 88%),
    radial-gradient(120% 80% at 20% 90%, rgba(212,52,42,0.14), transparent 60%);
}
/* scanline / print texture */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.16) 0 1px, transparent 1px 3px);
  opacity: 0.5;
}
.hero .wrap { position: relative; z-index: 3; width: 100%; }

.hero h1 {
  font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 0.84;
  margin: 0 0 1.75rem;
  max-width: 15ch;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--red-lit);
}
.hero .lede { max-width: 54ch; color: #cfc9bd; }

/* fight-bill rule strip */
.billing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--bone);
  font-family: var(--gothic);
  font-size: clamp(0.85rem, 1.15vw, 1.05rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.billing span { display: flex; align-items: center; gap: 0.7rem; }
.billing span::before { content: "◆"; color: var(--red); font-size: 0.6em; }


/* ============================================================
   THE SLATE — hero film list. Hovering a title swaps the plate behind it.
   ============================================================ */

.hero--slate { align-items: center; }
.hero--slate .wrap { width: 100%; }

.slate { list-style: none; margin: 0; padding: 0; }
.slate li { border-top: 1px solid rgba(221,216,200,0.14); }
.slate li:last-child { border-bottom: 1px solid rgba(221,216,200,0.14); }

.slate a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(0.5rem, 1.4vh, 1rem) 0;
  text-decoration: none;
  color: var(--bone);
  transition: color 0.15s linear, padding-left 0.18s linear;
}
.slate a:hover, .slate a:focus-visible { color: var(--red-lit); padding-left: 0.9rem; }

.slate__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2rem, 7.2vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
}
.slate__yr {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(0.66rem, 0.95vw, 0.8rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-mute);
  white-space: nowrap;
  flex-shrink: 0;
}
.slate a:hover .slate__yr { color: var(--red-lit); }

@media (max-width: 620px) {
  .slate a { flex-direction: column; align-items: flex-start; gap: 0.15rem; padding: 0.85rem 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid var(--red);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--red);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(.3,.9,.4,1);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--bone); }

.btn--solid { background: var(--red); color: var(--bone); }
.btn--solid::before { background: var(--bone); transform: translateY(101%); }
.btn--solid:hover { color: var(--ink); }

.btn--ghost { border-color: var(--line-hot); color: var(--bone); }
.btn--ghost::before { background: var(--bone); }
.btn--ghost:hover { color: var(--ink); border-color: var(--bone); }

/* ============================================================
   SECTIONS
   ============================================================ */

.section { position: relative; padding: clamp(5rem, 12vh, 9rem) 0; }
.section--alt { background: var(--ink-2); }
.section--line { border-top: 1px solid var(--line); }

.section-head { max-width: 64ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); position: relative; }
.section-head .lede { margin: 1.5rem 0 0; }

/* huge ghost round-numeral behind a section */
.section[data-round]::before {
  content: attr(data-round);
  position: absolute;
  top: clamp(1rem, 4vh, 3rem);
  right: 2vw;
  font-family: var(--gothic);
  font-size: clamp(9rem, 26vw, 24rem);
  line-height: 0.75;
  color: var(--bone);
  opacity: 0.028;
  pointer-events: none;
  z-index: 0;
}
.section > .wrap { position: relative; z-index: 1; }

/* ============================================================
   STATS — fight-card numerals
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  border-top: 1px solid var(--line);
}
.stat {
  padding: 2.5rem 1.75rem 2.25rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.4s;
}
.stat:hover { background: rgba(212,52,42,0.045); }
.stat:last-child { border-right: 0; }
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.stat:hover .stat__num { color: var(--red-lit); transition: color 0.35s; }
.stat__label {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--gothic);
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-mute);
  line-height: 1.55;
}

/* ============================================================
   FILM ROWS
   ============================================================ */

.films { display: grid; gap: clamp(4rem, 9vw, 8rem); }

.film {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
  position: relative;
}
.film--flip .film__media { order: 2; }
@media (max-width: 940px) {
  .film { grid-template-columns: 1fr; }
  .film--flip .film__media { order: 0; }
}

.film__body h3 { font-size: clamp(2.2rem, 5.4vw, 4rem); margin-bottom: 1.15rem; }
.film__body h3 a {
  text-decoration: none;
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 2px;
  background-position: 0 92%;
  background-repeat: no-repeat;
  transition: background-size 0.45s cubic-bezier(.3,.9,.4,1);
}
.film__body h3 a:hover { background-size: 100% 2px; }

.film__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 1.6rem; padding: 0; list-style: none; }
.film__tags li {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bone-mute);
  border: 1px solid var(--line-hot);
  padding: 0.4rem 0.85rem;
}
.film__tags li.is-status { color: var(--red-lit); border-color: rgba(212,52,42,0.5); }
.film__body p { color: var(--bone-dim); margin: 0 0 1.15rem; }

/* credits as a call-sheet */
.credits {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.15rem;
}
.credits div {
  display: grid;
  grid-template-columns: minmax(8.5rem, 12rem) 1fr;
  gap: 1.25rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(38,38,46,0.55);
}
.credits dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-mute);
  padding-top: 0.15rem;
}
.credits dd { margin: 0; color: var(--bone-dim); font-size: 0.95rem; }
@media (max-width: 560px) { .credits div { grid-template-columns: 1fr; gap: 0.15rem; } }

/* ============================================================
   VIDEO FACADE
   ============================================================ */

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
  width: 100%;
  padding: 0;
  cursor: pointer;
  display: block;
}
.video img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.15) brightness(0.62);
  transform: scale(1.02);
  transition: filter 0.6s ease, transform 0.9s cubic-bezier(.3,.9,.4,1);
}
.video:hover img { filter: none; transform: scale(1.07); }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

.video__play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.video__play span {
  width: 86px; height: 86px;
  border-radius: 50%;
  border: 2px solid var(--bone);
  background: rgba(8,8,10,0.35);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  transition: background 0.35s, border-color 0.35s, transform 0.35s cubic-bezier(.3,.9,.4,1);
}
.video__play span::after {
  content: "";
  width: 0; height: 0;
  margin-left: 6px;
  border-left: 20px solid var(--bone);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transition: border-left-color 0.35s;
}
.video:hover .video__play span { background: var(--red); border-color: var(--red); transform: scale(1.12); }
.video:hover .video__play span::after { border-left-color: #fff; }

.video__label {
  position: absolute; left: 0; bottom: 0;
  padding: 0.65rem 1rem;
  background: var(--red);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(.3,.9,.4,1);
}
.video:hover .video__label { transform: translateY(100%); }

/* ============================================================
   KEY ART / GALLERIES — duotone that blooms on contact
   ============================================================ */

.keyart { position: relative; border: 1px solid var(--line); background: var(--ink-3); overflow: hidden; margin: 0; }
.keyart img { width: 100%; height: auto; }
.keyart__label {
  position: absolute; left: 0; bottom: 0;
  padding: 0.6rem 1rem;
  background: rgba(10,10,9,0.88);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--line);
}
.gallery figcaption {
  margin-top: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone-mute);
  line-height: 1.5;
}
.gallery--wide { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.gallery--single { grid-template-columns: 1fr; }

.film__media .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; margin-top: 0.7rem; }
.film__media .gallery figcaption { margin-top: 0.5rem; font-size: 0.74rem; letter-spacing: 0.1em; }
.film__media .gallery--single { grid-template-columns: 1fr; }
@media (max-width: 520px) { .film__media .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* the archive treatment */
.zoom img, .keyart img {
  filter: grayscale(1) contrast(1.35) brightness(0.8);
  transition: filter 0.55s ease, transform 0.75s cubic-bezier(.3,.9,.4,1);
}
.zoom:hover img, .zoom:focus-visible img, .keyart:hover img {
  filter: none;
  transform: scale(1.045);
}

/* poster strip */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin: 0 0 3.5rem;
  padding: 0;
  list-style: none;
}
.strip figure { margin: 0; }
.strip img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: #000;
  border: 1px solid var(--line);
}
.strip figcaption {
  margin-top: 0.65rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone-mute);
  line-height: 1.5;
}

/* full-bleed band */
.band { position: relative; height: clamp(300px, 52vh, 560px); overflow: hidden; border-block: 1px solid var(--line); }
.band img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.4) brightness(0.5);
}
.band__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.4rem var(--gut);
  background: linear-gradient(transparent, rgba(10,10,9,0.96));
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ============================================================
   ZOOM BUTTON + CUSTOM CURSOR
   ============================================================ */

.zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: inherit;
  font: inherit;
  text-align: left;
}
.zoom::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid var(--red);
  transition: border-width 0.3s cubic-bezier(.3,.9,.4,1);
  pointer-events: none;
}
.zoom:hover::after, .zoom:focus-visible::after { border-width: 3px; }


/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 8, 0.97);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { display: flex; }
.lightbox.is-shown { opacity: 1; }

.lightbox__stage { flex: 1 1 auto; min-height: 0; display: grid; place-items: center; position: relative; }
.lightbox__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.2s ease;
}
.lightbox.is-loading .lightbox__img { opacity: 0.3; }

.lightbox__bar {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding-top: 1.35rem;
  margin-top: 1.35rem;
  border-top: 2px solid var(--red);
}
.lightbox__cap {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0;
  max-width: 70ch;
}
.lightbox__count {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--bone-mute);
  white-space: nowrap;
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px; height: 58px;
  border: 1px solid var(--line-hot);
  background: rgba(8,8,10,0.7);
  color: var(--bone);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.lb-btn:hover { background: var(--red); border-color: var(--red); color: var(--bone); }
.lb-prev { left: 0; }
.lb-next { right: 0; }
.lb-btn[hidden] { display: none; }

.lb-close {
  position: absolute;
  top: 0; right: 0;
  width: 50px; height: 50px;
  border: 1px solid var(--line-hot);
  background: rgba(8,8,10,0.7);
  color: var(--bone);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.lb-close:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

body.lb-open { overflow: hidden; }
@media (max-width: 640px) { .lb-btn { width: 46px; height: 46px; } }

/* ============================================================
   PRESS
   ============================================================ */

.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); border-top: 1px solid var(--line); }
.quote {
  padding: 2.75rem 2.25rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: background 0.4s;
}
.quote:hover { background: rgba(212,52,42,0.04); }
.quote blockquote {
  margin: 0 0 1.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.28;
  color: var(--bone);
}
.quote cite {
  margin-top: auto;
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-mute);
}
.quote cite a { color: var(--red-lit); text-decoration: none; border-bottom: 1px solid rgba(212,52,42,0.4); }
.quote cite a:hover { border-bottom-color: var(--red-lit); }

.press-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.press-list li { border-bottom: 1px solid var(--line); }
.press-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: baseline;
  padding: 1.6rem 0.25rem;
  text-decoration: none;
  position: relative;
  transition: padding-left 0.4s cubic-bezier(.3,.9,.4,1), background 0.3s;
}
.press-list a::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(.3,.9,.4,1);
}
.press-list a:hover { padding-left: 1.5rem; background: rgba(255,255,255,0.02); }
.press-list a:hover::before { transform: scaleY(1); transform-origin: top; }
.press-list .outlet { font-size: 1.5rem; }
.press-list .headline { display: block; color: var(--bone-mute); font-size: 0.93rem; margin-top: 0.35rem; }
.press-list .meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-mute);
  white-space: nowrap;
}
@media (max-width: 640px) { .press-list a { grid-template-columns: 1fr; } }

/* ============================================================
   SPLIT / PROSE / TIMELINE
   ============================================================ */

.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } }

.portrait { position: relative; border: 1px solid var(--line); background: var(--ink-3); overflow: hidden; margin: 0; }
.portrait img { width: 100%; height: auto; }

.prose p { color: var(--bone-dim); }
.prose p:first-of-type { font-size: 1.15rem; color: #d8d2c6; }

.timeline { list-style: none; margin: 0; padding: 0; counter-reset: rnd; }
.timeline li {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.75rem;
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
  transition: background 0.35s;
}
.timeline li:hover { background: rgba(212,52,42,0.035); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline .years {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 0.25rem;
}
.timeline h4 { font-size: 1.75rem; margin-bottom: 0.55rem; }
.timeline p { margin: 0; color: var(--bone-mute); font-size: 0.97rem; }
@media (max-width: 640px) { .timeline li { grid-template-columns: 1fr; gap: 0.5rem; } }

/* ============================================================
   CREDIT LISTS
   ============================================================ */

.credit-group + .credit-group { margin-top: 3.5rem; }
.credit-group h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--red);
}
.credit-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 3.5rem; }
@media (max-width: 760px) { .credit-list { columns: 1; } }
.credit-list li {
  break-inside: avoid;
  padding: 0.65rem 0;
  font-size: 0.97rem;
  color: var(--bone-dim);
  border-bottom: 1px solid rgba(38,38,46,0.5);
  transition: color 0.25s, padding-left 0.3s;
}
.credit-list li:hover { color: var(--bone); padding-left: 0.4rem; }
.credit-list .yr { color: var(--bone-mute); font-size: 0.85rem; margin-left: 0.45rem; }
.credit-list .role {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-mute);
  margin-top: 0.25rem;
}

/* ============================================================
   LAURELS
   ============================================================ */

.laurels { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.85rem 0 0; padding: 0; list-style: none; }
.laurels li {
  border: 1px solid rgba(184,53,42,0.5);
  color: var(--red-lit);
  padding: 0.6rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.laurels li:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ============================================================
   CTA
   ============================================================ */

.cta {
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 88% 0%, rgba(212,52,42,0.16), transparent 62%),
    var(--ink-2);
  padding: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.5rem); max-width: 18ch; }
.cta p { max-width: 58ch; color: var(--bone-dim); margin: 1.5rem 0 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.contact-grid h4 {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-mute);
  margin-bottom: 0.7rem;
}
.contact-grid a { color: var(--red-lit); text-decoration: none; border-bottom: 1px solid rgba(212,52,42,0.35); }
.contact-grid a:hover { border-bottom-color: var(--red-lit); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer { border-top: 1px solid var(--line); padding: 4rem 0 4.5rem; color: var(--bone-mute); font-size: 0.9rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: space-between; align-items: center; }
.site-footer a { color: var(--bone-mute); text-decoration: none; transition: color 0.25s; }
.site-footer a:hover { color: var(--red-lit); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.7rem; font-family: var(--mono); letter-spacing: 0.11em; text-transform: uppercase; font-size: 0.75rem; font-weight: 700; }

/* ============================================================
   REVEALS
   ============================================================ */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s cubic-bezier(.3,.9,.4,1), transform 0.85s cubic-bezier(.3,.9,.4,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* line-by-line headline reveal */
.split-line { display: block; overflow: hidden; }
.split-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s cubic-bezier(.16,.84,.3,1);
}
.is-in .split-line > span, .hero .split-line > span { transform: none; }
@media (prefers-reduced-motion: reduce) { .split-line > span { transform: none; } }

/* ============================================================
   MISC
   ============================================================ */

:focus-visible { outline: 2px solid var(--red-lit); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: var(--bone);
  padding: 0.9rem 1.5rem; z-index: 500;
  font-family: var(--mono); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
}
.skip:focus { left: 0; }

::selection { background: var(--red); color: var(--bone); }
