/* =========================================================
   TREU — Editorial Cinema Design System
   A short film by Hansjörg Thurn, produced by Anthony Arndt
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Color — from the film poster */
  --ink:        #0a0908;        /* deep black background */
  --ink-2:      #111110;        /* alt panel */
  --ink-3:      #1a1917;        /* card / surface */
  --bone:       #ebe5d9;        /* primary text — warm off-white */
  --bone-dim:   #b8b1a3;        /* secondary text */
  --bone-faint: #6f6a5f;        /* tertiary text / dividers */
  --treu-red:   #d72d1f;        /* signature red, from the poster */
  --treu-red-2: #e24433;        /* lighter red (hover) */
  --spot-warm:  #c9a26a;        /* warm spotlight tone */
  --hairline:   rgba(235,229,217,.12);
  --hairline-2: rgba(235,229,217,.06);

  /* Type */
  --serif:  "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:   "Archivo", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --max-w:  1400px;

  /* Motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "ss02", "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--treu-red); color: var(--bone); }

/* Film-grain overlay (subtle, animated) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain 1.6s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  16%     { transform: translate(-1%, 1%); }
  33%     { transform: translate(1%, -1%); }
  50%     { transform: translate(-1%, -1%); }
  66%     { transform: translate(1%, 1%); }
  83%     { transform: translate(-1%, 0); }
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--bone-dim);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--treu-red);
  border-radius: 50%;
  margin: 0 .8em .15em 0;
  vertical-align: middle;
}
.roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: .04em;
  color: var(--treu-red);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -.015em;
  line-height: 1.05;
  color: var(--bone);
}
h2 { font-size: clamp(34px, 5.4vw, 78px); }
h3 { font-size: clamp(24px, 3.2vw, 40px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  color: var(--bone);
  letter-spacing: -.005em;
}
.body-text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--bone-dim);
  font-weight: 400;
}
.body-text p + p { margin-top: 1.2em; }
.body-text strong { color: var(--bone); font-weight: 600; }

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 5em;
  line-height: .85;
  float: left;
  padding: .08em .15em 0 0;
  color: var(--treu-red);
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
}
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.divider {
  height: 1px;
  background: var(--hairline);
  width: 100%;
}

/* Section header (eyebrow + chapter + title) */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head .meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.section-head .meta .rule {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  min-width: 60px;
  max-width: 200px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,9,8,.85), rgba(10,9,8,0));
  backdrop-filter: blur(0px);
  transition: backdrop-filter .4s var(--ease-out), background .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(10,9,8,.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hairline-2);
}
.nav__brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--bone);
  display: flex;
  align-items: baseline;
  gap: .35em;
}
.nav__brand .red { color: var(--treu-red); font-weight: 500; letter-spacing: .04em; }
.nav__menu {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.nav__menu a {
  color: var(--bone-dim);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease-out);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--treu-red);
  transition: right .35s var(--ease-out);
}
.nav__menu a:hover { color: var(--bone); }
.nav__menu a:hover::after { right: 0; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 4px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
}
.lang-toggle a {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--bone-faint);
  transition: all .25s var(--ease-out);
}
.lang-toggle a.is-active {
  color: var(--ink);
  background: var(--bone);
}
.lang-toggle a:hover:not(.is-active) { color: var(--bone); }

/* Hamburger (mobile) */
.nav__toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--bone);
  position: relative;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; right: 0;
  height: 1.5px; background: var(--bone);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top:  7px; }

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open + .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 100px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .55s var(--ease-out), opacity .55s var(--ease-out);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 9vw, 56px);
  line-height: 1.1;
  color: var(--bone);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline-2);
}
.mobile-menu nav a:hover { color: var(--treu-red); font-style: italic; }
.mobile-menu .foot {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Hero (video) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62) contrast(1.05) saturate(.95);
  z-index: 0;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10,9,8,.55) 70%, rgba(10,9,8,.92) 100%),
    linear-gradient(to top, rgba(10,9,8,.95) 0%, transparent 35%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: "";
  width: 36px; height: 1px;
  background: var(--bone-faint);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(80px, 22vw, 280px);
  line-height: .85;
  letter-spacing: .04em;
  color: var(--treu-red);
  text-shadow: 0 0 70px rgba(215,45,31,.35);
  position: relative;
}
.hero__title .accent {
  display: inline-block;
  font-style: italic;
}
.hero__sub {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--bone);
  letter-spacing: .12em;
  margin-top: 28px;
  text-transform: lowercase;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) .8s forwards;
}
.hero__meta {
  position: absolute;
  bottom: clamp(32px, 5vw, 72px);
  left: var(--gutter);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero__meta-item strong {
  font-weight: 500;
  color: var(--bone);
  letter-spacing: .14em;
  font-size: 12px;
}
.hero__controls {
  display: flex;
  gap: 12px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: all .25s var(--ease-out);
  background: rgba(10,9,8,.4);
  backdrop-filter: blur(8px);
}
.hero__btn:hover {
  color: var(--bone);
  border-color: var(--bone);
  background: rgba(255,255,255,.05);
}
.hero__btn svg { width: 14px; height: 14px; fill: currentColor; }

@media (max-width: 700px) {
  .hero__meta { flex-direction: column; align-items: flex-start; }
  .hero__controls { width: 100%; justify-content: flex-start; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--bone-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--bone-faint));
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  animation: scrollLine 2.4s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* ---------- Synopsis ---------- */
.synopsis {
  background: var(--ink);
  position: relative;
}
.synopsis__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
}
@media (min-width: 880px) {
  .synopsis__grid { grid-template-columns: 0.4fr 0.6fr; gap: clamp(40px, 6vw, 90px); }
}
.synopsis__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.015em;
}
.synopsis__title em { font-style: italic; color: var(--treu-red); }
.synopsis__title .quote {
  display: block;
  font-style: italic;
  color: var(--bone-dim);
  font-size: .55em;
  margin-top: 1em;
  letter-spacing: 0;
}

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.25;
  color: var(--bone);
  margin-bottom: 1em;
}
.tagline em { color: var(--treu-red); font-style: italic; }

/* ---------- Cast ---------- */
.cast {
  background: var(--ink-2);
}
.cast__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
@media (min-width: 880px) {
  .cast__grid { grid-template-columns: repeat(3, 1fr); }
}
.cast__card {
  position: relative;
  overflow: hidden;
}
.cast__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-3);
}
.cast__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.45) contrast(1.05);
  transition: transform .9s var(--ease-out), filter .6s var(--ease-out);
}
.cast__card:hover .cast__photo img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1);
}
.cast__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,.65) 0%, transparent 50%);
  pointer-events: none;
}
.cast__name {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  margin-top: 18px;
  color: var(--bone);
  letter-spacing: -.01em;
}
.cast__role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--treu-red);
  margin-top: 6px;
  font-weight: 500;
}
.cast__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--bone-faint);
  margin-bottom: 10px;
  letter-spacing: .04em;
}

/* ---------- Crew (key team) ---------- */
.crew {
  background: var(--ink);
}
.crew__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
@media (min-width: 1100px) {
  .crew__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .crew__grid { grid-template-columns: repeat(2, 1fr); }
}
.crew__card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--hairline);
  background: var(--ink-2);
  position: relative;
  transition: all .35s var(--ease-out);
}
.crew__card:hover {
  border-color: var(--treu-red);
  background: var(--ink-3);
  transform: translateY(-2px);
}
.crew__role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--treu-red);
  font-weight: 600;
  margin-bottom: 18px;
}
.crew__name {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--bone);
}
.crew__bio {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--bone-dim);
}

/* ---------- Director's note (Anthony Arndt) ---------- */
.note {
  background: var(--ink-2);
  position: relative;
}
.note__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 1000px) {
  .note__grid { grid-template-columns: 1fr 1fr; }
  .note__grid--rev { grid-template-columns: 1fr 1fr; }
}
.note__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  max-width: 520px;
}
.note__image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(.95);
}
.note__image::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--hairline);
  pointer-events: none;
  z-index: 2;
}
.note__signature {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--bone);
  z-index: 3;
  background: rgba(10,9,8,.6);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-left: 2px solid var(--treu-red);
}

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--bone);
  border-left: 2px solid var(--treu-red);
  padding-left: 28px;
  margin: 32px 0;
  position: relative;
}

/* ---------- Poster spotlight ---------- */
.poster {
  background: radial-gradient(ellipse at top, rgba(215,45,31,.05) 0%, transparent 50%), var(--ink);
  position: relative;
  overflow: hidden;
}
.poster::before {
  /* spotlight beam */
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  width: 60vw;
  height: 130%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at top, rgba(255,235,200,.06) 0%, transparent 60%);
  pointer-events: none;
}
.poster__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .poster__inner { grid-template-columns: 0.65fr 0.35fr; gap: clamp(40px, 6vw, 80px); }
}
.poster__image {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.poster__image img {
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.7),
    0 60px 120px -30px rgba(215,45,31,.18);
  border: 1px solid var(--hairline);
}
.poster__caption {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-faint);
  text-align: center;
  margin-top: 24px;
}

/* ---------- Gallery (carousel + masonry) ---------- */
.gallery {
  background: var(--ink);
  overflow: hidden;
}
.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -.02em;
  line-height: .95;
}
.gallery__title em { font-style: italic; color: var(--treu-red); }

.gallery__strip {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 80s linear infinite;
  will-change: transform;
}
.gallery__strip:hover { animation-play-state: paused; }
.gallery__strip-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 calc(var(--gutter) * -1);
  padding: 0 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
          mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.gallery__item {
  flex-shrink: 0;
  position: relative;
}
.gallery__item img {
  height: 60vh;
  max-height: 560px;
  width: auto;
  object-fit: cover;
  filter: contrast(1.05);
  transition: filter .6s var(--ease-out);
}
.gallery__item:hover img { filter: contrast(1.1) saturate(1.05); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Masonry grid (alt gallery) */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 90px;
}
.gallery__grid figure { overflow: hidden; position: relative; }
.gallery__grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.gallery__grid figure:hover img { transform: scale(1.04); }
.g-1 { grid-column: span 5; aspect-ratio: 5/4; }
.g-2 { grid-column: span 4; aspect-ratio: 1/1; }
.g-3 { grid-column: span 3; aspect-ratio: 3/4; }
.g-4 { grid-column: span 4; aspect-ratio: 4/5; }
.g-5 { grid-column: span 8; aspect-ratio: 16/9; }
.g-6 { grid-column: span 6; aspect-ratio: 4/3; }
.g-7 { grid-column: span 6; aspect-ratio: 4/3; }
@media (max-width: 880px) {
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7 { grid-column: span 12; aspect-ratio: 4/3; }
}

/* ---------- Location block ---------- */
.location {
  background: var(--ink-2);
  position: relative;
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 880px) {
  .location__grid { grid-template-columns: 0.4fr 0.6fr; gap: clamp(40px, 6vw, 100px); }
}
.location__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.02em;
}
.location__title em { font-style: italic; color: var(--treu-red); }
.location__sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-top: 18px;
}

/* ---------- Credits roll ---------- */
.credits {
  background: var(--ink);
  text-align: center;
  position: relative;
  padding: clamp(100px, 14vw, 200px) 0;
}
.credits::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(255,235,200,.04) 0%, transparent 50%);
  pointer-events: none;
}
.credits__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 16vw, 200px);
  line-height: .85;
  color: var(--treu-red);
  letter-spacing: .03em;
  margin-bottom: 16px;
  text-shadow: 0 0 80px rgba(215,45,31,.25);
}
.credits__subtitle {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: clamp(60px, 8vw, 90px);
}
.credits__cast {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--bone);
  margin-bottom: clamp(50px, 7vw, 80px);
  line-height: 1.8;
}
.credits__cast span:not(:last-child)::after {
  content: " · ";
  color: var(--treu-red);
  margin: 0 .4em;
  font-style: normal;
}
.credits__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.credits__col dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.credits__col dt {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone-faint);
  font-weight: 500;
  margin-bottom: 4px;
}
.credits__col dd {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--bone);
  letter-spacing: .02em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline-2);
}
.credits__col dd + dt { margin-top: 8px; }

.credits__extra {
  margin-top: clamp(60px, 8vw, 100px);
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.credits__extra h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--treu-red);
  font-weight: 600;
  margin-bottom: 24px;
}
.credits__extra p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--bone-dim);
  margin-bottom: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  padding: 60px var(--gutter) 36px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--bone-faint);
  letter-spacing: .04em;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
@media (min-width: 700px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
}
.footer__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--bone);
}
.footer__brand .red { color: var(--treu-red); }
.footer__col h5 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  color: var(--bone-dim);
  transition: color .25s var(--ease-out);
}
.footer__col a:hover { color: var(--treu-red); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ---------- Legal page ---------- */
.legal { padding: 140px 0 100px; max-width: 800px; margin: 0 auto; }
.legal h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 56px;
  letter-spacing: -.015em;
}
.legal h1 em { font-style: italic; color: var(--treu-red); }
.legal h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  margin: 48px 0 18px;
  color: var(--bone);
}
.legal h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--treu-red);
  margin: 32px 0 12px;
}
.legal p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--bone-dim);
  margin-bottom: 16px;
}
.legal strong { color: var(--bone); font-weight: 600; }
.legal ul { padding-left: 20px; margin-bottom: 16px; color: var(--bone-dim); }
.legal ul li { margin-bottom: 6px; line-height: 1.7; font-size: 15px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .20s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .26s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,9,8,.97);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  backdrop-filter: blur(20px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92%; max-height: 92vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lightbox__close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 28px;
  color: var(--bone);
  width: 48px; height: 48px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease-out);
}
.lightbox__close:hover { border-color: var(--treu-red); color: var(--treu-red); transform: rotate(90deg); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mt-4 { margin-top: 60px; }
.no-scroll { overflow: hidden; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  body::before { animation: none !important; opacity: .02; }
  .gallery__strip { animation: none !important; }
  .scroll-cue .line::after { animation: none !important; opacity: .4; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero__sub { animation: none !important; opacity: 1 !important; transform: none !important; }
}
