@font-face {
  font-family: "BoldFintia";
  src: url("../fonts/BoldFintia-Regular.otf") format("opentype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Causten";
  src: url("../fonts/Causten-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Causten";
  src: url("../fonts/causten-medium-oblique.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #070707;
  --ink-soft: #11100f;
  --paper: #ebe7df;
  --cream: #f6f1a4;
  --red: #ed0600;
  --purple: #5400ea;
  --sky: #8acdea;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.52);
  --line-soft: rgba(255, 255, 255, 0.16);
  --font-display: "BoldFintia", "Arial Black", system-ui, sans-serif;
  --font-body: "Causten", "Helvetica Neue", Arial, sans-serif;
  --gx: clamp(18px, 2.6vw, 42px);
  --gate-w: clamp(28px, 3.4vw, 48px);
  --content-x: calc(var(--gx) + var(--gate-w));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
}

body.home-page {
  height: 100vh;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--cream);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.nav-w {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.35rem var(--content-x);
  pointer-events: none;
}

.nav-w > * {
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1;
}

.logo img {
  width: auto;
  height: 46px;
  filter: invert(1);
}

.logo-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.78;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.top-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.top-links a {
  opacity: 0.78;
  transition: opacity 160ms ease, color 160ms ease;
}

.top-links a:hover,
.top-links a:focus-visible {
  color: var(--cream);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-trigger .icon {
  display: flex;
  width: 32px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-trigger .icon span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease;
}

body.menu-open .menu-trigger .icon span:nth-child(1) {
  transform: translateY(8.5px) rotate(-45deg) scaleX(0.86);
}

body.menu-open .menu-trigger .icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-trigger .icon span:nth-child(3) {
  transform: translateY(-8.5px) rotate(45deg) scaleX(0.86);
}

.festival-ribbon {
  position: fixed;
  top: 1.6rem;
  left: 50%;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.festival-ribbon .pip {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cream);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 1px;
  padding: 7.5rem var(--content-x) 2rem;
  background: rgba(4, 4, 4, 0.96);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

body.menu-open .menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-film-row {
  min-height: 180px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-film-row:hover,
.menu-film-row:focus-visible {
  background: rgba(246, 241, 164, 0.09);
  border-color: rgba(246, 241, 164, 0.45);
  transform: translateY(-2px);
}

.menu-film-row .thumb {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 241, 164, 0.2), rgba(237, 6, 0, 0.12)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 13px),
    #171514;
}

.menu-film-row .thumb.media-thumb {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.12), rgba(0,0,0,0.62)),
    var(--thumb) center / cover no-repeat,
    #171514;
}

.menu-film-row .thumb::after {
  content: attr(data-section);
  position: absolute;
  left: 0.65rem;
  bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.8;
  color: rgba(255,255,255,0.88);
}

.menu-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 3.1rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.menu-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-roll {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
}

.home-roll.is-dragging {
  cursor: grabbing;
}

.home-roll::after {
  content: "";
  position: absolute;
  inset: 14px var(--gate-w);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(246, 241, 164, 0.48) 48%, rgba(255,255,255,0.18) 50%, transparent 56%),
    repeating-linear-gradient(180deg, transparent 0 10svh, rgba(255,255,255,0.08) 10svh calc(10svh + 1px), transparent calc(10svh + 1px) 20svh);
  mix-blend-mode: screen;
  transform: translate3d(0, var(--reel-start, 26svh), 0);
}

.home-roll.is-reeling::after {
  animation: film-splice 680ms cubic-bezier(0.74, 0, 0.2, 1);
}

.home-roll-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, var(--slide-y, 100%), 0);
  transition:
    transform 680ms cubic-bezier(0.74, 0, 0.2, 1),
    opacity 260ms ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.home-roll-item.active,
.home-roll-item.entering,
.home-roll-item.leaving {
  opacity: 1;
}

.home-roll-item.active {
  --slide-y: 0%;
  pointer-events: auto;
}

.home-roll-item.leaving,
.home-roll-item.entering {
  pointer-events: none;
}

.roll-img-w {
  position: absolute;
  inset: 14px var(--gate-w);
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 22%, rgba(138, 205, 234, 0.18), transparent 26%),
    radial-gradient(circle at 12% 72%, rgba(237, 6, 0, 0.16), transparent 30%),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.045) 14px 15px),
    #191817;
}

.roll-img-w::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 116% 88% at center, transparent 46%, rgba(0,0,0,0.64) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.09) 34%, rgba(0,0,0,0.12) 63%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}

.roll-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.roll-photo.exposure-base {
  filter: contrast(1.05) saturate(0.72) brightness(0.9);
}

.roll-photo.exposure-overlay {
  opacity: 0.54;
  mix-blend-mode: screen;
  transform: scale(1.04) translate3d(-1.2%, 0, 0);
  filter: grayscale(0.15) contrast(1.18) saturate(0.88);
}

.roll-img-w.double-exposure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 30% 40%, rgba(246, 241, 164, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(237, 6, 0, 0.12), rgba(84, 0, 234, 0.14));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.roll-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.roll-img-label {
  position: absolute;
  top: 5.8rem;
  right: 2rem;
  z-index: 3;
  max-width: min(280px, 44vw);
  border: 1px dashed rgba(255,255,255,0.34);
  color: rgba(255,255,255,0.54);
  padding: 0.45rem 0.7rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.roll-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  grid-template-rows: auto 1fr auto;
  gap: 1.2rem 4rem;
  padding: 5.7rem var(--content-x) 7.2rem;
}

.award-badge {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.award-year {
  min-width: 3.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.86;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.award-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.2rem;
}

.award-headline {
  max-width: 18rem;
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.18;
}

.award-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.66);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-slot {
  color: var(--cream);
}

.film-title-block {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  min-width: 0;
}

.film-eyebrow {
  margin-bottom: 0.8rem;
  color: var(--cream);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  font-style: italic;
  line-height: 1.1;
}

.film-title {
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.9vw, 8.2rem);
  line-height: 0.75;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.film-title .line {
  display: block;
}

.film-title .line.tight {
  font-size: 0.72em;
}

.line-callout {
  display: grid;
  width: min(100%, 760px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
}

.callout-item {
  min-height: 4rem;
  padding: 0.85rem 1rem 0.85rem 0;
  border-right: 1px solid var(--line-soft);
}

.callout-item:last-child {
  border-right: 0;
}

.callout-label {
  display: block;
  margin-bottom: 0.36rem;
  color: rgba(255,255,255,0.58);
  font-size: 0.58rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.callout-value {
  display: block;
  color: var(--white);
  font-size: clamp(0.98rem, 1.25vw, 1.28rem);
  font-style: italic;
  line-height: 1.05;
}

.reviews-col {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: end;
  justify-self: end;
  display: flex;
  width: min(100%, 360px);
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
  text-align: right;
}

.review-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.review-source {
  color: var(--cream);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-quote {
  color: rgba(255,255,255,0.84);
  font-size: clamp(0.95rem, 1.1vw, 1.12rem);
  line-height: 1.35;
}

.explore-btn,
.ticket-link {
  position: relative;
  display: inline-flex;
  width: 172px;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.15rem;
  color: var(--white);
  isolation: isolate;
}

.ticket-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.ticket-bg path {
  stroke: currentColor;
}

.ticket-bg [data-bg-dash] {
  opacity: 0.66;
}

.explore-btn .label,
.ticket-link .label {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.explore-btn .arrow,
.ticket-link .arrow {
  display: inline-flex;
  width: 14px;
}

.explore-btn:hover,
.explore-btn:focus-visible,
.ticket-link:hover,
.ticket-link:focus-visible {
  color: var(--cream);
}

.pager {
  position: fixed;
  left: 50%;
  bottom: 1.35rem;
  z-index: 52;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.pager-num {
  display: inline-flex;
  gap: 0.35rem;
}

.pager-arrows {
  display: inline-flex;
  gap: 0.25rem;
}

.pager button {
  display: inline-flex;
  width: 34px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: color 160ms ease, transform 160ms ease;
}

.pager button:hover,
.pager button:focus-visible {
  color: var(--cream);
  transform: translateY(-1px);
}

.pager svg {
  width: 13px;
}

.gate-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.gate-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background: #050505;
  box-shadow: 0 0 24px rgba(255, 200, 130, 0.05);
}

.gate-bar.top {
  top: 0;
  border-bottom: 1px solid rgba(255, 220, 170, 0.18);
}

.gate-bar.bottom {
  bottom: 0;
  border-top: 1px solid rgba(255, 220, 170, 0.18);
}

.gate-strip {
  position: absolute;
  top: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  width: var(--gate-w);
  flex-direction: column;
  justify-content: space-around;
  overflow: hidden;
  padding: 28px 0;
  background: #0a0807;
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,0.045),
    inset -1px 0 0 rgba(255,255,255,0.045);
}

.gate-strip.left {
  left: 0;
}

.gate-strip.right {
  right: 0;
}

.gate-strip .hole {
  width: 16px;
  height: 11px;
  flex: 0 0 auto;
  align-self: center;
  border-radius: 1px;
  background: rgba(248, 240, 215, 0.95);
  box-shadow:
    inset 0 1px 1.5px rgba(0,0,0,0.4),
    0 0 9px rgba(255, 220, 160, 0.16);
}

.gate-strip::before {
  content: "ALFF / 16MM / 7203 / VOL.02 / ALFF / 16MM / 7203 / VOL.02";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 50%;
  color: rgba(255, 210, 150, 0.34);
  font-size: 7px;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateX(-50%) rotate(180deg);
}

.gate-strip.right::before {
  transform: translateX(-50%);
}

.gate-leak {
  position: absolute;
  z-index: 5;
  border-radius: 50%;
  filter: blur(38px);
  mix-blend-mode: screen;
  opacity: 0.82;
  animation: leak-drift 14s ease-in-out infinite alternate;
}

.gate-leak.tl {
  top: -100px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 170, 80, 0.95) 0%, rgba(255, 110, 50, 0.45) 30%, transparent 65%);
}

.gate-leak.tr {
  top: -70px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 210, 110, 0.82) 0%, rgba(255, 130, 50, 0.4) 30%, transparent 65%);
  animation-delay: -4s;
}

.gate-leak.bl {
  bottom: -120px;
  left: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 150, 60, 0.82) 0%, rgba(210, 80, 40, 0.4) 30%, transparent 65%);
  animation-delay: -7s;
}

.gate-leak.br {
  right: -120px;
  bottom: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 190, 90, 0.88) 0%, rgba(235, 120, 50, 0.45) 30%, transparent 65%);
  animation-delay: -10s;
}

.gate-leak.top-edge {
  top: -180px;
  left: 30%;
  width: 480px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(255, 220, 130, 0.72) 0%, rgba(255, 160, 70, 0.3) 35%, transparent 70%);
  filter: blur(60px);
  opacity: 0.7;
  animation: leak-drift-h 18s ease-in-out infinite alternate;
}

@keyframes leak-drift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.58; }
  33% { transform: translate(50px, -25px) scale(1.18); opacity: 0.88; }
  66% { transform: translate(-35px, 35px) scale(0.95); opacity: 0.55; }
  100% { transform: translate(25px, 15px) scale(1.1); opacity: 0.78; }
}

@keyframes leak-drift-h {
  0% { transform: translateX(-80px) scale(1); opacity: 0.5; }
  50% { transform: translateX(60px) scale(1.15); opacity: 0.82; }
  100% { transform: translateX(120px) scale(0.95); opacity: 0.55; }
}

@keyframes film-splice {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--reel-start, 26svh), 0);
  }
  24% {
    opacity: 0.52;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, var(--reel-end, -26svh), 0);
  }
}

.gate-flicker {
  position: absolute;
  inset: 14px var(--gate-w);
  background: rgba(255, 220, 160, 0.025);
  mix-blend-mode: overlay;
  animation: flicker 2.4s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 0.7; }
  47% { opacity: 1; }
  50% { opacity: 0.3; }
  53% { opacity: 0.95; }
}

.gate-grain {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  animation: grain-shift 0.65s steps(5) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-12px, 6px); }
  40% { transform: translate(8px, -4px); }
  60% { transform: translate(-6px, 10px); }
  80% { transform: translate(10px, -2px); }
  100% { transform: translate(0, 0); }
}

.gate-frame::before,
.gate-frame::after {
  content: "";
  position: absolute;
  left: var(--gate-w);
  right: var(--gate-w);
  z-index: 5;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 130, 0.4), transparent);
  filter: blur(1px);
}

.gate-frame::before {
  top: 14px;
}

.gate-frame::after {
  bottom: 14px;
}

body.frame-classic .gate-bar,
body.frame-classic .gate-leak,
body.frame-classic .gate-flicker,
body.frame-classic .gate-strip::before,
body.frame-classic .gate-frame::before,
body.frame-classic .gate-frame::after {
  display: none;
}

body.frame-classic .roll-img-w {
  inset: 0;
}

body.frame-classic .gate-strip {
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.88);
}

body.frame-classic .gate-strip .hole {
  width: 18px;
  height: 26px;
  border-radius: 4px;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 9rem var(--content-x) 4rem;
  background:
    radial-gradient(circle at 80% 12%, rgba(246, 241, 164, 0.14), transparent 25%),
    radial-gradient(circle at 8% 80%, rgba(237, 6, 0, 0.14), transparent 28%),
    var(--ink);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: var(--gate-w);
  background:
    repeating-linear-gradient(to bottom, transparent 0 31px, rgba(246,241,164,0.92) 31px 42px, transparent 42px 78px),
    #0a0807;
}

.page-shell::before {
  left: 0;
}

.page-shell::after {
  right: 0;
}

.page-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1440px;
  margin: 0 auto;
}

.page-kicker {
  margin-bottom: 0.9rem;
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.5vw, 8.6rem);
  line-height: 0.76;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.page-title.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.72);
}

.page-intro {
  max-width: 820px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.7rem, 3vw, 3.35rem);
  line-height: 1.05;
}

.page-intro strong {
  color: var(--cream);
  font-weight: 400;
}

.trailer-content {
  align-items: start;
}

.trailer-frame {
  position: relative;
  width: 100%;
  margin-top: 2.2rem;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 164, 0.4);
  background: #000000;
  aspect-ratio: 16 / 9;
}

.trailer-frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.panel {
  min-height: 136px;
  padding: 1.2rem;
  background: rgba(255,255,255,0.035);
}

.panel h2,
.panel h3 {
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel p,
.panel li {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.35;
}

.fact-list {
  list-style: none;
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.88rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.fact-list li:last-child {
  border-bottom: 0;
}

.fact-list span:first-child {
  color: rgba(255,255,255,0.56);
  text-transform: uppercase;
}

.fact-list span:last-child {
  text-align: right;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.subscribe-form {
  scroll-margin-top: 7.2rem;
  margin-top: 2.4rem;
  padding: 1.3rem;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.035);
}

.subscribe-form h2 {
  margin-bottom: 0.8rem;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.subscribe-form p {
  max-width: 680px;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.35;
}

.subscribe-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1px;
  margin-top: 1.2rem;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.subscribe-fields label {
  display: grid;
  gap: 0.48rem;
  padding: 1rem;
  background: rgba(7, 7, 7, 0.64);
}

.subscribe-fields span,
.consent-row {
  color: rgba(255,255,255,0.64);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.subscribe-fields input {
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.38);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.25;
}

.subscribe-fields input:focus {
  border-color: var(--cream);
}

.consent-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  margin-top: 1rem;
  text-transform: none;
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.05rem;
  accent-color: var(--cream);
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.2rem;
}

.subscribe-actions .ticket-link:disabled {
  color: rgba(255,255,255,0.4);
  cursor: wait;
}

.subscribe-status {
  min-height: 1.25rem;
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.text-link {
  color: var(--cream);
  border-bottom: 1px solid currentColor;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.page-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1440px;
  margin: 4rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  color: rgba(255,255,255,0.55);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

@media (max-width: 1040px) {
  .reviews-col {
    width: min(100%, 330px);
  }

  .film-title {
    font-size: clamp(3.4rem, 8.1vw, 8rem);
  }
}

@media (max-width: 900px) {
  :root {
    --gx: 1rem;
    --gate-w: 27px;
  }

  .logo img {
    height: 38px;
  }

  .festival-ribbon {
    display: none;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding-top: 6.6rem;
  }

  .menu-film-row {
    min-height: 138px;
  }

  .roll-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    gap: 1rem;
    padding: 6rem var(--content-x) 5.4rem;
  }

  .award-badge {
    grid-column: 1;
    grid-row: 1;
  }

  .film-title-block {
    grid-column: 1;
    grid-row: 3;
  }

  .film-title {
    max-width: 9ch;
    font-size: clamp(2.25rem, 9.8vw, 4.2rem);
  }

  .line-callout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
  }

  .callout-item {
    min-height: 3.4rem;
  }

  .reviews-col {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    gap: 0.95rem;
    text-align: left;
  }

  .review-item {
    align-items: flex-start;
  }

  .review-item:nth-child(2) {
    display: none;
  }

  .explore-btn {
    width: 158px;
    height: 50px;
  }

  .pager {
    bottom: 0.8rem;
  }

  .gate-strip .hole {
    width: 10px;
    height: 7px;
  }

  .gate-strip {
    padding: 20px 0;
  }

  .gate-strip::before {
    font-size: 6px;
  }

  .gate-leak {
    opacity: 0.6;
  }

  .page-shell {
    padding-top: 7.2rem;
  }

  .page-content {
    grid-template-columns: 1fr;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-fields {
    grid-template-columns: 1fr;
  }

  .page-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .nav-w {
    padding-top: 1rem;
  }

  .top-links {
    display: none;
  }

  .menu-trigger-label {
    display: none;
  }

  .award-year {
    min-width: 2.6rem;
  }

  .award-headline {
    max-width: 13rem;
  }

  .roll-img-label {
    display: none;
  }

  .line-callout {
    grid-template-columns: 1fr;
  }

  .callout-item {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .callout-item:last-child {
    border-bottom: 0;
  }

  .page-title {
    font-size: clamp(3.8rem, 21vw, 7rem);
  }

  .page-intro {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }
}
