:root {
  --ink: #080706;
  --ink-soft: #0f0d0b;
  --paper: #ded3c3;
  --paper-dim: #a79c8e;
  --bronze: #a77a4e;
  --bronze-light: #c79c6c;
  --line: rgba(222, 211, 195, .18);
  --ease-cinema: cubic-bezier(.16, 1, .3, 1);
  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(8, 7, 6, .92) 0%, rgba(8, 7, 6, .95) 100%),
    radial-gradient(circle at 50% 0%, rgba(104, 72, 43, .08), transparent 35%),
    url("assets/still-trees.jpg") center top / cover fixed no-repeat,
    var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--bronze-light); }

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 1rem;
  top: 1rem;
  padding: .7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

/* Intro */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity .52s var(--ease-cinema), visibility .52s step-end;
}
.intro-award {
  display: grid;
  justify-items: center;
  text-align: center;
  letter-spacing: .17em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: intro-award 1.1s var(--ease-cinema) forwards;
}
.intro-rule {
  width: 42px;
  height: 1px;
  margin-bottom: 1.1rem;
  background: var(--bronze-light);
  transform-origin: center;
  animation: intro-rule 1.1s var(--ease-cinema) forwards;
}
.intro-award p,
.intro-award em { margin: 0; color: rgba(222,211,195,.58); font-size: .58rem; font-style: normal; }
.intro-award strong { margin: .32rem 0; font-size: clamp(.88rem, 1.7vw, 1.15rem); font-weight: 500; }
body.intro-complete .site-intro { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes intro-award {
  0% { opacity: 0; transform: translateY(10px); }
  28%, 73% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translateY(-6px); }
}
@keyframes intro-rule {
  0% { transform: scaleX(0); opacity: 0; }
  35%, 75% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(.7); opacity: 0; }
}

/* Cursor */
.cursor,
.cursor-dot { display: none; }
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.has-custom-cursor,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor [role="button"] { cursor: none; }
  html.has-custom-cursor input { cursor: text; }

  .cursor,
  .cursor-dot {
    position: fixed;
    z-index: 2147483647;
    display: grid;
    place-items: center;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    will-change: left, top, width, height, opacity;
  }

  .cursor {
    width: 22px;
    height: 22px;
    border: .75px solid rgba(222, 211, 195, .72);
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0);
    transition:
      width .28s var(--ease-cinema),
      height .28s var(--ease-cinema),
      border-color .22s ease,
      background-color .22s ease,
      opacity .16s ease;
  }

  .cursor::before,
  .cursor::after { content: none; }

  .cursor span {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    padding: .32rem .48rem .3rem;
    border: 1px solid rgba(222, 211, 195, .14);
    background: rgba(8, 7, 6, .84);
    color: rgba(222, 211, 195, .92);
    font-size: .45rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(-4px, -50%, 0);
    transition: opacity .16s ease, transform .3s var(--ease-cinema);
  }

  .cursor-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(222, 211, 195, .96);
    box-shadow: 0 0 0 1px rgba(8, 7, 6, .28);
    transform: translate3d(-50%, -50%, 0);
    transition: width .18s ease, height .18s ease, background-color .18s ease, opacity .16s ease;
  }

  .cursor.is-visible,
  .cursor-dot.is-visible { opacity: 1; }

  .cursor.is-active {
    width: 32px;
    height: 32px;
    border-color: rgba(199, 156, 108, .92);
    background: rgba(8, 7, 6, .08);
  }

  .cursor.has-label span {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }

  .cursor.is-down {
    width: 27px;
    height: 27px;
  }

  .cursor.is-down + .cursor-dot,
  .cursor-dot.is-down {
    width: 2px;
    height: 2px;
    background: var(--bronze-light);
  }

  html.cursor-over-input .cursor,
  html.cursor-over-input .cursor-dot { opacity: 0; }
}

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5vw;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, height .4s var(--ease-cinema), opacity .55s ease;
  opacity: 0;
}
body.intro-complete .site-header { opacity: 1; }
.site-header.is-scrolled {
  height: 60px;
  background: rgba(8,7,6,.78);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.wordmark {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.3vw, 2.5rem); }
.site-nav a,
.menu-button {
  position: relative;
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(222,211,195,.76);
  transition: color .22s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 100%;
  height: 1px;
  background: var(--bronze-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-cinema);
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--paper); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; border: 0; padding: .4rem 0; background: transparent; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
}
.hero-video,
.hero-fallback,
.hero-shade,
.hero > .grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video { object-fit: cover; z-index: 0; transform: scale(1.018); }
.hero-fallback {
  z-index: -1;
  background: url("assets/still-trees.jpg") center / cover no-repeat;
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.06) 35%, rgba(0,0,0,.31) 76%, rgba(0,0,0,.82) 100%),
    radial-gradient(circle at 50% 44%, transparent 0%, rgba(0,0,0,.32) 68%, rgba(0,0,0,.62) 100%);
}
.grain {
  z-index: 2;
  opacity: .075;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  animation: grain-shift .42s steps(2) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-1.5%,1%); }
  50% { transform: translate(1%,-1.5%); }
  75% { transform: translate(1.5%,1.5%); }
  100% { transform: translate(-1%,0); }
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(94vw, 1520px);
  text-align: center;
  transform: translateY(calc(var(--hero-progress, 0) * -3.5vh));
  opacity: calc(1 - (var(--hero-progress, 0) * .9));
  will-change: transform, opacity;
}
.production-credit,
.eyebrow,
.hero h1,
.trailer-button,
.hero-footer { opacity: 0; transform: translateY(16px); }
body.intro-complete .production-credit,
body.intro-complete .eyebrow,
body.intro-complete .hero h1,
body.intro-complete .trailer-button,
body.intro-complete .hero-footer {
  opacity: 1;
  transform: none;
  transition: opacity .85s ease, transform 1.05s var(--ease-cinema);
}
body.intro-complete .production-credit { transition-delay: .06s; }
body.intro-complete .eyebrow { transition-delay: .12s; }
body.intro-complete .hero h1 { transition-delay: .18s; }
body.intro-complete .trailer-button { transition-delay: .3s; }
body.intro-complete .hero-footer { transition-delay: .42s; }
.production-credit {
  margin: 0 0 1.1rem;
  display: grid;
  gap: .18rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .55rem;
  color: rgba(222,211,195,.65);
}
.production-credit span { color: var(--paper); }
.production-credit i { font-style: normal; }
.eyebrow {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78rem;
  font-style: italic;
  letter-spacing: .08em;
  color: rgba(222,211,195,.76);
}
.hero h1 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  font-size: clamp(6.6rem, 16vw, 15rem);
  font-weight: 900;
  line-height: .69;
  letter-spacing: .012em;
  text-shadow: 0 12px 46px rgba(0,0,0,.52);
}
.hero h1 span { display: block; transform: scaleX(.84); }
.trailer-button {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: .95rem;
  min-height: 48px;
  padding: .8rem 1.25rem;
  border: 1px solid rgba(222,211,195,.5);
  background: rgba(8,7,6,.16);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .35s var(--ease-cinema);
}
.trailer-button:hover,
.trailer-button:focus-visible { color: var(--ink); background: var(--paper); border-color: var(--paper); transform: translateY(-2px); }
.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}
.hero-footer {
  position: absolute;
  z-index: 3;
  left: 3.5vw;
  right: 3.5vw;
  bottom: 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.award-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  max-width: 680px;
  font-size: .59rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(222,211,195,.58);
}
.award-strip strong { color: var(--paper); font-weight: 500; }
.award-strip span + strong::before,
.award-strip strong + span::before { content: "•"; margin-right: .8rem; color: var(--bronze-light); }
.scroll-cue {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(222,211,195,.55);
  font-size: .56rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-cue i { position: relative; width: 42px; height: 1px; overflow: hidden; background: rgba(222,211,195,.25); }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--paper); transform: translateX(-100%); animation: scroll-line 2s var(--ease-cinema) infinite; }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

/* Shared sections */
.section {
  width: min(1180px, 91vw);
  margin: 0 auto;
  padding: clamp(4.75rem, 8vw, 7rem) 0;
}
.section-label {
  font-size: .59rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bronze-light);
}
.reveal .reveal-item {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(22px);
  transition: opacity .9s ease, filter .9s ease, transform 1.05s var(--ease-cinema);
}
.reveal.is-visible .reveal-item { opacity: 1; filter: none; transform: none; }
.reveal.is-visible .reveal-item:nth-child(2) { transition-delay: .08s; }
.reveal.is-visible .reveal-item:nth-child(3) { transition-delay: .16s; }
.reveal.is-visible .reveal-item:nth-child(4) { transition-delay: .24s; }

.film.section,
.gallery-section.section,
.access.section,
.credits.section {
  position: relative;
}

.film.section::before,
.gallery-section.section::before,
.access.section::before,
.credits.section::before {
  content: "";
  position: absolute;
  inset: 1rem -1.35rem;
  z-index: -1;
  border: 1px solid rgba(222, 211, 195, .05);
  background: linear-gradient(180deg, rgba(255, 255, 255, .012), rgba(255, 255, 255, .004));
  backdrop-filter: blur(2px);
}

/* Film */
.film {
  display: grid;
  grid-template-columns: .55fr 2fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  align-items: start;
}
.lead {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.25vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.film-meta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.2rem;
  color: var(--paper-dim);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.film-meta span + span::before { content: "·"; margin-right: 1.2rem; color: var(--bronze); }
.film-still { margin: 0; overflow: hidden; position: relative; }
.film-still img {
  width: 100%;
  aspect-ratio: .96;
  object-fit: cover;
  transform: scale(1.05) translateY(calc(var(--parallax, 0) * 12px));
  filter: saturate(.82) contrast(1.04);
  transition: transform .2s linear;
}
.film-still::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(222,211,195,.16); pointer-events: none; }
.film-still figcaption { margin-top: .7rem; font-size: .56rem; letter-spacing: .14em; color: var(--paper-dim); text-transform: uppercase; }

/* Press */
.press {
  position: relative;
  min-height: min(920px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #090806;
}
.press-background,
.press-shade,
.press > .grain { position: absolute; inset: 0; }
.press-background {
  background: url("assets/still-silhouette.jpg") center / cover no-repeat;
  transform: scale(1.045) translateY(calc(var(--press-shift, 0) * -12px));
  filter: saturate(.7) contrast(1.06);
}
.press-shade {
  background: linear-gradient(90deg, rgba(8,7,6,.94) 0%, rgba(8,7,6,.78) 44%, rgba(8,7,6,.36) 100%), linear-gradient(180deg, rgba(8,7,6,.42), rgba(8,7,6,.58));
}
.press-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, 91vw);
  margin: auto;
  padding: clamp(6rem, 10vw, 9rem) 0;
}
.main-quote { margin: clamp(2.4rem, 5vw, 4.5rem) 0 0; max-width: 900px; }
.main-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.main-quote footer {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  font-size: .63rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.main-quote footer span { color: var(--paper-dim); }
.review-line {
  margin-top: clamp(2.4rem, 5vw, 4.25rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}
.review-line p { margin: 0 0 .25rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; }
.review-line span { color: var(--paper-dim); font-size: .59rem; letter-spacing: .11em; text-transform: uppercase; }
.press-links { display: flex; gap: 1.5rem; }
.press-links a,
.gallery-open,
.private-links a,
.site-footer a {
  font-size: .61rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(222,211,195,.35);
  transition: color .2s ease, border-color .2s ease;
}
.press-links a:hover,
.press-links a:focus-visible,
.gallery-open:hover,
.gallery-open:focus-visible,
.private-links a:hover,
.private-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--bronze-light); border-color: var(--bronze-light); }

/* Gallery */
.gallery-heading { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 1.6rem; }
.gallery-heading h2,
.access-panel h2,
.credits h2 { margin: .65rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 4.4rem); font-weight: 400; letter-spacing: -.03em; }
.gallery-open { border: 0; border-bottom: 1px solid rgba(222,211,195,.35); padding: 0 0 .3rem; background: transparent; }
.gallery-open span { margin-left: .35rem; }
.film-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.55rem, 1.2vw, 1rem);
  padding: .55rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.film-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  background: #111;
}
.film-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(222,211,195,.12); transition: border-color .3s ease; }
.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.04);
  transform: scale(1.025);
  transition: transform 1.1s var(--ease-cinema), filter .55s ease;
}
.film-frame:nth-child(1) img { object-position: 50% 50%; }
.film-frame:nth-child(2) img { object-position: 50% 50%; }
.film-frame:nth-child(3) img { object-position: 50% 50%; }
.film-frame:nth-child(4) img { object-position: 45% 50%; }
.film-frame:hover img,
.film-frame:focus-visible img { transform: scale(1.075); filter: saturate(.92) contrast(1.02); }
.film-frame:hover::after,
.film-frame:focus-visible::after { border-color: rgba(199,156,108,.72); }
.frame-number {
  position: absolute;
  z-index: 2;
  top: .75rem;
  left: .8rem;
  font-size: .54rem;
  letter-spacing: .12em;
  color: rgba(222,211,195,.72);
  text-shadow: 0 1px 10px #000;
}

/* Access */
.access { display: grid; grid-template-columns: .55fr 3.2fr; gap: clamp(1.5rem, 3vw, 3.25rem); }
.access-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  padding: clamp(2.2rem, 4vw, 4rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(8,7,6,.8), rgba(8,7,6,.8)),
    url("assets/fantasia-award-full.jpg") center / cover no-repeat;
}
.access-panel::before { content: "EYES ONLY"; position: absolute; right: 1.5rem; top: 1.2rem; color: rgba(167,122,78,.34); font-weight: 700; letter-spacing: .18em; font-size: .58rem; transform: rotate(4deg); }
.access-panel h2 { font-size: clamp(2rem, 3.4vw, 3.65rem); }
.access-panel p { color: var(--paper-dim); }
.access-kicker { margin: 0; font-size: .59rem; letter-spacing: .13em; text-transform: uppercase; color: var(--bronze-light) !important; }
.access-form { align-self: end; }
.access-form label { display: block; margin-bottom: .6rem; color: var(--paper-dim); font-size: .56rem; letter-spacing: .13em; text-transform: uppercase; }
.access-row { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(222,211,195,.45); }
.access-row input { min-width: 0; height: 48px; padding: 0; border: 0; outline: 0; background: transparent; color: var(--paper); letter-spacing: .13em; }
.access-row button { border: 0; padding: 0 .25rem 0 1rem; background: transparent; font-size: .59rem; letter-spacing: .12em; text-transform: uppercase; }
.access-message { min-height: 1.5rem; margin: .6rem 0 0; font-size: .65rem; }
.private-links { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 1rem; }

/* Credits / Footer */
.credits { display: grid; grid-template-columns: .55fr 3.2fr; gap: clamp(1.5rem, 3vw, 3.25rem); border-top: 1px solid var(--line); }
.credits h2 { margin-top: 0; }
.credits-copy > p:last-child { max-width: 820px; color: var(--paper-dim); }
.company-line { margin: 1.2rem 0; text-transform: uppercase; letter-spacing: .09em; font-size: .65rem; }
.company-line span { display: block; margin-top: .25rem; color: var(--paper-dim); }
.site-footer {
  width: min(1180px, 91vw);
  margin: 0 auto;
  padding: 1.5rem 0 2.3rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.2rem 2rem;
  color: var(--paper-dim);
  font-size: .59rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-production {
  grid-column: 1 / -1;
  margin: .2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(222,211,195,.08);
  color: rgba(222,211,195,.58);
  font-size: .52rem;
  letter-spacing: .11em;
}
.footer-production span {
  margin-left: .45rem;
  color: rgba(222,211,195,.38);
}

/* Modals */
dialog { color: var(--paper); }
dialog::backdrop { background: rgba(0,0,0,.92); backdrop-filter: blur(7px); }
.trailer-modal,
.gallery-modal {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #050505;
  opacity: 0;
  transform: scale(.985);
  transition: opacity .38s ease, transform .55s var(--ease-cinema), overlay .4s allow-discrete, display .4s allow-discrete;
}
.trailer-modal[open],
.gallery-modal[open] { opacity: 1; transform: none; }
@starting-style {
  .trailer-modal[open],
  .gallery-modal[open] { opacity: 0; transform: scale(.985); }
}
.modal-bar,
.gallery-modal-bar {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  right: 0;
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 3.2vw;
  background: linear-gradient(180deg, rgba(0,0,0,.86), transparent);
}
.modal-bar h2,
.gallery-modal-bar h2 { margin: 0; font-size: .62rem; font-weight: 400; letter-spacing: .13em; text-transform: uppercase; }
.close-button { border: 0; padding: .55rem 0; background: transparent; color: rgba(222,211,195,.8); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.trailer-modal > video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.gallery-modal-bar { grid-template-columns: 1fr auto 1fr; }
.gallery-modal-bar p { margin: 0; justify-self: center; font-size: .58rem; letter-spacing: .14em; color: var(--paper-dim); }
.gallery-modal-bar .close-button { justify-self: end; }
.gallery-stage { position: relative; width: 100%; height: 100%; overflow: hidden; }
.gallery-images { position: absolute; inset: 0; display: grid; place-items: center; padding: 5.5rem 6vw 5rem; }
.gallery-image {
  position: absolute;
  max-width: calc(100vw - 12vw);
  max-height: calc(100svh - 10.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.012);
  filter: saturate(.86);
  transition: opacity .72s ease, transform 1.15s var(--ease-cinema);
}
.gallery-image.is-active { opacity: 1; transform: none; }
.gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 68px;
  bottom: 74px;
  width: 38%;
  border: 0;
  background: transparent;
  color: transparent;
}
.gallery-prev { left: 0; }
.gallery-next { right: 0; }
.gallery-arrow span { position: absolute; opacity: 0; }
.gallery-caption-wrap {
  position: absolute;
  z-index: 5;
  left: 3.2vw;
  right: 3.2vw;
  bottom: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: opacity .35s ease;
}
.gallery-caption-wrap p { margin: 0; color: rgba(222,211,195,.7); font-size: .59rem; letter-spacing: .08em; text-transform: uppercase; }
.gallery-progress { display: flex; gap: 5px; }
.gallery-progress i { display: block; width: 22px; height: 1px; background: rgba(222,211,195,.2); transition: background .25s ease, width .35s var(--ease-cinema); }
.gallery-progress i.is-active { width: 38px; background: var(--bronze-light); }
.gallery-modal.is-idle .gallery-modal-bar,
.gallery-modal.is-idle .gallery-caption-wrap { opacity: .18; }

/* Focus */
:focus-visible { outline: 1px solid var(--bronze-light); outline-offset: 5px; }

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .site-header { padding: 0 5vw; }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    place-content: center;
    gap: 1.65rem;
    background: rgba(8,7,6,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .35s ease, transform .5s var(--ease-cinema), visibility .35s step-end;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .35s ease, transform .5s var(--ease-cinema), visibility 0s; }
  .site-nav a { font-size: .84rem; text-align: center; }
  .hero h1 { font-size: clamp(5.8rem, 22vw, 10rem); }
  .hero-footer { left: 5vw; right: 5vw; }
  .film { grid-template-columns: 1fr; }
  .film .section-label { margin-bottom: .5rem; }
  .film-still { width: min(72vw, 500px); justify-self: end; margin-top: 1rem; }
  .press { min-height: auto; }
  .press-shade { background: linear-gradient(90deg, rgba(8,7,6,.92), rgba(8,7,6,.58)); }
  .film-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .film-frame { aspect-ratio: 4 / 3; }
  .access,
  .credits { grid-template-columns: 1fr; }
  .access-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 5.5vw; }
  .hero { min-height: 100svh; }
  .hero-video { object-position: 58% center; }
  .hero-content { width: 100%; padding: 0 4vw; transform: none; }
  .production-credit { margin-bottom: .9rem; font-size: .49rem; }
  .eyebrow { font-size: .69rem; }
  .hero h1 { font-size: clamp(5.2rem, 25vw, 8.2rem); line-height: .72; }
  .trailer-button { margin-top: 2.2rem; min-height: 44px; }
  .hero-footer { bottom: 1.35rem; }
  .award-strip { max-width: 78vw; gap: .35rem .55rem; font-size: .5rem; }
  .award-strip span + strong::before,
  .award-strip strong + span::before { margin-right: .55rem; }
  .scroll-cue span { display: none; }
  .scroll-cue i { width: 28px; }
  .section { width: 89vw; padding: 4.5rem 0; }
  .lead { font-size: 1.75rem; }
  .film-meta { display: grid; gap: .35rem; }
  .film-meta span + span::before { content: none; }
  .film-still { width: 100%; }
  .press-inner { width: 89vw; padding: 5.5rem 0; }
  .main-quote { margin-top: 3rem; }
  .main-quote p { font-size: 2.05rem; }
  .review-line { align-items: start; flex-direction: column; }
  .press-links { gap: 1rem; }
  .gallery-heading { align-items: start; flex-direction: column; }
  .film-strip {
    width: 100vw;
    margin-left: -5.5vw;
    padding: .75rem 5.5vw;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .film-strip::-webkit-scrollbar { display: none; }
  .film-frame { flex: 0 0 74vw; aspect-ratio: 4 / 5; scroll-snap-align: center; }
  .access-panel { padding: 2rem 1.4rem; }
  .site-footer { width: 89vw; grid-template-columns: 1fr; gap: 1rem; }
  .footer-production { grid-column: 1; }
  .footer-production span { display: block; margin: .25rem 0 0; }
  .gallery-images { padding: 4.5rem 0 5rem; }
  .gallery-image { max-width: 100vw; max-height: calc(100svh - 9.5rem); }
  .gallery-caption-wrap { left: 5vw; right: 5vw; align-items: end; }
  .gallery-caption-wrap p { max-width: 58vw; }
  .gallery-progress { gap: 3px; }
  .gallery-progress i { width: 8px; }
  .gallery-progress i.is-active { width: 22px; }
  .gallery-modal-bar { padding: 0 5vw; }
  .gallery-modal-bar h2 { max-width: 35vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .hero-video { display: none; }
  .hero-fallback { z-index: 0; }
  .reveal .reveal-item { opacity: 1; filter: none; transform: none; }
}

.private-links[hidden] { display: none; }

@media (max-width: 620px) {
  .hero h1 { font-size: clamp(4.7rem, 21vw, 6.6rem); letter-spacing: 0; }
  .hero h1 span { transform: scaleX(.76); white-space: nowrap; }
}

/* Final production polish */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor {
    width: 18px;
    height: 18px;
    border-color: rgba(222, 211, 195, .62);
  }
  .cursor-dot { width: 2px; height: 2px; }
  .cursor span {
    left: calc(100% + 8px);
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(222, 211, 195, .82);
    font-size: .43rem;
    letter-spacing: .17em;
    text-shadow: 0 1px 10px rgba(0,0,0,.8);
  }
  .cursor.is-active {
    width: 27px;
    height: 27px;
    background: transparent;
    border-color: rgba(199, 156, 108, .82);
  }
  .cursor.is-down { width: 22px; height: 22px; }
}

.film-still img { aspect-ratio: 1.04; object-position: 52% 48%; }

.press-notes {
  width: min(900px, 100%);
  margin-top: clamp(2.3rem, 4vw, 3.8rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.press-notes p {
  margin: 0 0 .45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  line-height: 1.32;
}
.press-notes span {
  color: var(--paper-dim);
  font-size: .55rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.review-line {
  margin-top: clamp(1.8rem, 3vw, 2.8rem);
}
.review-line > span {
  color: var(--paper-dim);
  font-size: .55rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .press-notes { grid-template-columns: 1fr; gap: 1.25rem; }
  .review-line { flex-direction: row; align-items: center; }
}

/* Keep the first editorial still compact and filmic */
.film-still {
  width: min(100%, 360px);
  justify-self: end;
}
.film-still img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 52% 48%;
}

@media (max-width: 900px) {
  .film-still { width: min(68vw, 420px); }
}

@media (max-width: 620px) {
  .film-still { width: 100%; }
}

/* Keep the editorial still beside the synopsis deliberately compact. */
.film-still {
  width: min(100%, 350px);
  max-width: 350px;
  justify-self: end;
}
.film-still img {
  width: 100%;
  height: 235px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 52% 48%;
}

@media (max-width: 900px) {
  .film-still {
    width: min(68vw, 390px);
    max-width: 390px;
  }
  .film-still img { height: 250px; }
}

@media (max-width: 620px) {
  .film-still {
    width: 100%;
    max-width: none;
  }
  .film-still img { height: 230px; }
}
