/* ============================================================================
   CALIFORNIA SCHEMIN' — site stylesheet.
   Ported from the "Movie California landing redesign" handoff: dark editorial
   layout, left social rail, sticky header, marquee ticker, amber gradient
   accent, Anton + JetBrains Mono type. Every color comes from the custom
   properties below; :root carries the Amber (default) palette and
   assets/themes.js overwrites the tokens with whichever preset the console
   has published — components never hard-code a color.
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --surface: #0c0b09;
  --surface-2: #0d0c0a;
  --ink: #f5f1eb;
  --ink-dim: #c2bcb3;
  --ink-faint: #6f6a63;
  --line: #171512;
  --line-2: #1c1a17;
  --frame: #211e1a;
  --frame-2: #2a2723;
  --frame-hover: #3d3628;
  --dot: #4a463f;
  --accent: #f0b429;
  --accent-deep: #a4740b;
  --accent-deep-border: #6e4a08;
  --accent-hover: #e8a30a;
  --link-hover: #ffd166;
  --accent-soft: rgba(240, 180, 41, 0.08);
  --glow: rgba(240, 180, 41, 0.16);
  --wash: rgba(240, 180, 41, 0.05);
  --grad: linear-gradient(100deg, #e8930c, #e6b907);
  --grad-hover: linear-gradient(100deg, #f5a516, #f2c718);
  --on-accent: #0a0a0a;
  --display: 'Anton', Impact, 'Haettenschweiler', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --rail-w: 72px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--link-hover); }

/* Keyboard focus — the prototype had none; amber ring on the dark ground. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ------------------------------ SOCIAL RAIL ------------------------------ */
.rail {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--rail-w);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 0;
  border-right: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--wash), rgba(0, 0, 0, 0) 40%);
  overflow-y: auto;
  min-height: 0;
}
.rail .rail-logo {
  position: absolute;
  top: 32px; left: 50%;
  transform: translateX(-50%);
  width: 53px;
  font-size: 0;
  opacity: 0.95;
}
.rail .rail-logo:hover { opacity: 1; }
.rail .rail-logo img { width: 100%; height: auto; display: block; mix-blend-mode: screen; }
.rail .vtext {
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
}
.rail .vtext.tag { font-size: 12px; font-weight: 500; letter-spacing: 0.34em; }
.rail .rule { width: 1px; height: 28px; flex: 0 0 28px; background: var(--accent-deep-border); }
.rail .soc {
  width: 38px; height: 38px; flex: 0 0 38px;
  border: 1px solid var(--accent-deep-border);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.rail .soc:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.page { padding-left: var(--rail-w); min-height: 100vh; display: flex; flex-direction: column; }
@media (max-width: 900px) {
  /* Provisional mobile call (flagged in the handoff): hide the rail under
     900px rather than inventing a collapsed design. */
  .rail { display: none; }
  .page { padding-left: 0; }
}

/* -------------------------------- HEADER --------------------------------- */
header.hdr {
  position: sticky;
  top: 0; z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 16px 32px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr .wordmark { display: flex; align-items: center; gap: 12px; }
/* Header wordmark: cropped from the full title art per the handoff. A clean
   uploaded wordmark (film.logo) replaces the crop entirely. */
.hdr .wordmark .crop {
  width: 150px;
  aspect-ratio: 3.98;
  position: relative;
  overflow: hidden;
  font-size: 0;
  display: block;
}
.hdr .wordmark .crop img { position: absolute; left: -7.3%; top: -177.3%; width: 114.2%; height: auto; }
.hdr .wordmark .clean img { display: block; width: 150px; height: auto; }
.hdr .wordmark .textmark {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.hdr nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 26px;
  min-width: 0;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hdr nav a { color: var(--ink); padding-bottom: 5px; border-bottom: 2px solid transparent; }
.hdr nav a:hover { color: var(--ink); }
.hdr nav a.current { border-bottom-color: var(--accent); }

.btn-grad {
  background: var(--grad);
  color: var(--on-accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.btn-grad:hover { background: var(--grad-hover); color: var(--on-accent); }
.btn-grad.hdr-cta { height: 38px; padding: 0 22px; font-size: 12px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--frame-2);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--ink-faint); color: var(--ink); background: rgba(255, 255, 255, 0.03); }

/* -------------------------------- TICKER --------------------------------- */
.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding: 16px 0;
}
.ticker .track {
  display: flex;
  width: max-content;
  animation: cs-marquee 30s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker .track span { padding-right: 38px; color: var(--ink); }
.ticker .track span:nth-child(odd) { color: var(--accent); }
@keyframes cs-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cs-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) {
  .ticker .track { animation: none; }
}

/* ------------------------------ TYPE HELPERS ----------------------------- */
.display-grad {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  word-spacing: 0.14em;
  display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------------------- HOME HERO ------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  padding: 36px 64px 44px;
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
}
.hero .lead-col { max-width: 660px; }
.hero h1.lockup {
  margin: 0;
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: 0;
}
.hero h1.lockup img { display: block; width: 100%; height: auto; filter: brightness(0) invert(1); }
.hero h1.lockup img.line2 { width: 82.1%; }
.hero h1.lockup .text-title {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
/* Light themes: the invert filter would make the title art vanish; drop it. */
html[data-scheme="light"] .hero h1.lockup img { filter: none; }
.hero .release-line {
  font-family: var(--display);
  font-size: 33px;
  letter-spacing: 0.01em;
  word-spacing: 0.2em;
  line-height: 1;
  transform: scaleY(1.12);
  transform-origin: left top;
  display: inline-block;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 14px 0 0;
}
.hero .logline {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-dim);
  margin: 18px 0 0;
  max-width: 600px;
  text-wrap: pretty;
}
.hero .cta-row { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.credits-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}
.credits-strip .rating-badge { border: 1px solid var(--accent-deep-border); padding: 3px 7px; color: var(--accent-deep); }
.credits-strip .sep { width: 4px; height: 4px; border-radius: 999px; background: var(--dot); display: inline-block; }
.credits-strip .rt-badge { color: var(--accent-deep); display: inline-flex; align-items: center; gap: 7px; }
a.rt-badge:hover { color: var(--accent-hover); }
.credits-strip .rt-badge .rt-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent-deep); display: inline-block; }

.hero .poster-col { position: relative; display: flex; justify-content: center; }
.hero .poster-glow {
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(closest-side, var(--glow), rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
}
.poster-frame {
  position: relative;
  width: 100%;
  max-width: 432px;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--frame);
  padding: 8px;
  background: var(--surface-2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}
.poster-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster-frame .poster-empty {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(160deg, var(--accent-soft), var(--surface-2) 75%);
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.poster-frame .poster-empty .big {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 38px);
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  /* Provisional stack (flagged in the handoff): title leads, poster follows. */
  .hero { grid-template-columns: 1fr; gap: 44px; padding: 32px 28px 40px; }
}

/* ---------------------------- SECTION SCAFFOLD ---------------------------- */
.section { padding: 52px 64px 56px; max-width: 1560px; margin: 0 auto; width: 100%; }
@media (max-width: 700px) { .section { padding-left: 24px; padding-right: 24px; } }

.center-heading { text-align: center; }
.center-heading .display-grad {
  font-size: 58px;
  line-height: 1.02;
  transform: scaleY(1.08);
  transform-origin: center top;
}
.center-heading .flourish { color: var(--ink); -webkit-text-fill-color: var(--ink); }

/* ------------------------------- SYNOPSIS -------------------------------- */
.syn-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: stretch;
}
@media (max-width: 980px) { .syn-grid { grid-template-columns: 1fr; gap: 40px; } }
.syn-grid h1.display-h {
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.01em;
  word-spacing: 0.14em;
  line-height: 1.02;
  transform: scaleY(1.08);
  transform-origin: left top;
  display: inline-block;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  max-width: 15ch;
}
.syn-grid h1.display-h em { color: var(--accent); font-style: normal; }
.syn-grid .lede { font-size: 18px; line-height: 1.7; color: var(--ink); margin: 12px 0 0; max-width: 640px; text-wrap: pretty; }
.syn-grid .syn-body p { font-size: 16.5px; line-height: 1.78; color: var(--ink); margin: 12px 0 0; max-width: 640px; text-wrap: pretty; }
.syn-grid .syn-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.syn-side { display: flex; flex-direction: column; gap: 18px; justify-content: center; align-self: stretch; }
/* The frame takes the image's own shape — nothing gets cropped. */
.still-frame {
  position: relative;
  border: 1px solid var(--frame);
  padding: 8px;
  background: var(--surface-2);
}
.still-frame img { width: 100%; height: auto; display: block; }
.pull-quote { border-left: 2px solid var(--accent-hover); padding: 4px 0 4px 20px; }
.pull-quote p {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.pull-quote cite {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 12px;
  font-style: normal;
}
.pull-quote cite a { color: var(--accent); }
.pull-quote cite a:hover { color: var(--link-hover); }

.crew-strip {
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
.crew-strip .cell { padding: 24px 22px; border-right: 1px solid var(--line-2); text-align: center; }
.crew-strip .cell:last-child { border-right: 0; }
.crew-strip .v { font-size: 16px; color: var(--ink); line-height: 1.5; }
.crew-strip .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-top: 10px;
}
@media (max-width: 860px) {
  .crew-strip { grid-auto-flow: row; grid-auto-columns: unset; grid-template-columns: 1fr 1fr; }
  .crew-strip .cell { border-right: 0; border-bottom: 1px solid var(--line-2); }
}

/* --------------------------------- CAST ----------------------------------- */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 22px;
}
@media (max-width: 1200px) { .cast-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 1024px) { .cast-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px) { .cast-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cast-card { display: flex; flex-direction: column; gap: 14px; }
.cast-card .portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--frame);
  padding: 7px;
  background: var(--surface-2);
  display: block;
  overflow: hidden;
  transition: border-color 0.18s;
}
.cast-card .portrait:hover { border-color: var(--frame-hover); }
/* Absolutely positioned fill: the photo can never change the frame's size —
   every box stays an identical 3:4, and cover scales any image (up or down)
   to fill it, cropping the overflow. */
.cast-card .portrait img {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  object-fit: cover;
  display: block;
}
.cast-card .portrait .initials {
  position: absolute;
  inset: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 52px;
  color: var(--accent-soft);
  background: linear-gradient(160deg, var(--accent-soft), var(--surface-2) 75%);
}
.cast-card .portrait .overlay {
  position: absolute;
  inset: 7px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.88));
  opacity: 0;
  transition: opacity 0.18s ease;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent-hover);
  text-transform: uppercase;
}
.cast-card .portrait:hover .overlay { opacity: 1; }
.cast-card .who { text-align: center; }
.cast-card .who .name {
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  overflow-wrap: anywhere;
  hyphens: auto;
}
a.name:hover { color: var(--accent-hover); }
.cast-card .who .role {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-top: 9px;
}

/* Inline trailer lock: page chrome stays; the player slot holds the clock. */
.player-frame.trailer-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.trailer-lock .tl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4.5vw, 60px);
  text-align: center;
  padding: 24px;
  width: 100%;
  height: 100%;
}
.trailer-lock .tl-line {
  font-family: var(--display);
  font-size: clamp(34px, 6.5vw, 100px);
  letter-spacing: 0.01em;
  word-spacing: 0.14em;
  line-height: 1;
  transform: scaleY(1.08);
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trailer-lock .lg-clock { gap: clamp(30px, 7vw, 110px); }
.trailer-lock .lg-num { font-size: clamp(72px, 18vw, 280px); }
.trailer-lock .lg-lbl { font-size: clamp(11px, 1.2vw, 17px); }

/* -------------------------------- TRAILER --------------------------------- */
.trailer-stage { position: relative; overflow: hidden; flex: 1; display: flex; flex-direction: column; }
.trailer-stage .bg { position: absolute; inset: 0; z-index: 0; }
.trailer-stage .bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trailer-stage .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}
.trailer-stage .fg { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; }
.trailer-wrap {
  padding: 26px 64px 28px;
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  /* Keep the footer just under the fold here too. */
  min-height: calc(100vh - 115px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trailer-wrap > div { width: 100%; }
@media (max-width: 700px) { .trailer-wrap { padding: 20px 24px 24px; } }
.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--frame);
  padding: 9px;
  background: var(--surface-2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  display: block;
}
.player-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
a.player-frame:hover { border-color: var(--frame-hover); }
.player-frame .still { width: 100%; height: 100%; object-fit: cover; display: block; }
.player-frame .play-badge {
  position: absolute;
  left: 9px; bottom: 9px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}
.player-frame .play-badge .circle {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--grad);
  color: var(--on-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 20px 60px var(--glow);
}
.player-frame .play-badge .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.trailer-sub {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 56px);
  letter-spacing: 0.01em;
  word-spacing: 0.14em;
  line-height: 1;
  transform: scaleY(1.08);
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 30px 0 0;
}
.photo-credit {
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 10px 64px 0;
}
@media (max-width: 700px) { .photo-credit { padding: 10px 24px 0; } }

/* ------------------------------- SHOWTIMES -------------------------------- */
/* The content block fills the first viewport (centered), so the footer sits
   just below the fold and a small scroll reveals it — same feel as the
   content-heavy pages. */
#showtimes-slot {
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showtimes-hold { padding: 0 64px; max-width: 1560px; margin: 0 auto; text-align: center; width: 100%; }
@media (max-width: 700px) { .showtimes-hold { padding: 0 24px; } }
.showtimes-hold .display-grad {
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.12;
  transform: scaleY(1.08);
  transform-origin: center top;
  word-spacing: 0.14em;
}
.signup-wrap { padding: 18px 64px 24px; max-width: 600px; margin: 0 auto; width: 100%; }
@media (max-width: 700px) { .signup-wrap { padding: 18px 24px 24px; } }
.signup-panel {
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 22px 26px;
  text-align: center;
}
.signup-panel h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 0.015em;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.signup-panel form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 22px;
}
.signup-panel input[type="email"] {
  width: 100%; max-width: 330px; height: 48px;
  padding: 0 16px;
  font-size: 15.5px;
  background: var(--bg);
  border: 1px solid var(--frame-2);
  color: var(--ink);
  font-family: var(--body);
}
.signup-panel input[type="email"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.signup-panel button[type="submit"] {
  width: 100%; max-width: 330px; height: 48px;
  padding: 0 22px;
  border: 0;
  background: var(--grad);
  color: var(--on-accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.signup-panel button[type="submit"]:hover { background: var(--grad-hover); }
.signup-panel button[disabled] { opacity: 0.6; cursor: default; }
.signup-panel .msg {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin: 2px 0 0;
  max-width: 330px;
  text-align: center;
}
.signup-panel .msg.err { color: var(--accent-hover); }
/* Honeypot: visually gone, still in the form for bots to fill. */
.signup-panel .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.showtimes-embed {
  width: 100%;
  min-height: 640px;
  border: 1px solid var(--frame);
  background: var(--surface-2);
}
.tickets-card {
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 40px 34px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.tickets-card h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.tickets-card p { color: var(--ink-dim); margin: 0 auto 26px; max-width: 440px; font-size: 15px; }

/* -------------------------------- FOOTER ---------------------------------- */
footer.sitefoot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 64px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  flex-wrap: wrap;
}
@media (max-width: 700px) { footer.sitefoot { padding: 28px 24px; } }
footer.sitefoot .links { display: flex; gap: 12px 26px; flex-wrap: wrap; justify-content: flex-end; }
footer.sitefoot .links a { color: var(--ink); }
footer.sitefoot .links a:hover { color: var(--accent); }

/* ------------------------------ CONSENT BAR ------------------------------- */
.consent-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: var(--surface);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  font-size: 13px;
  color: var(--ink-dim);
}
/* While the banner is up, lift the page so the footer (and its Cookie
   Consent Tool link) stays clickable above it. */
body.has-consent-bar .page { padding-bottom: 76px; }
.consent-bar button {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
  padding: 8px 14px;
  cursor: pointer;
}
.consent-bar .c-accept { background: var(--grad); color: var(--on-accent); border: 0; font-weight: 700; }
.consent-bar .c-accept:hover { background: var(--grad-hover); }
.consent-bar .c-dismiss { background: transparent; color: var(--ink-dim); border: 1px solid var(--frame-2); }
.consent-bar .c-dismiss:hover { color: var(--ink); }

/* ------------------------------ LEGAL PAGES ------------------------------- */
.legal-doc { max-width: 820px; }
.legal-doc h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 22px;
}
.legal-doc .doc-body p { font-size: 15.5px; line-height: 1.8; color: var(--ink-dim); margin: 0 0 18px; max-width: 72ch; }
.legal-doc .doc-updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 26px;
}
.legal-doc .doc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.legal-doc .doc-list a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 16px 20px;
  display: block;
}
.legal-doc .doc-list a:hover { border-color: var(--accent); color: var(--accent); }

/* --------------------------- CONSENT PANEL (modal) ------------------------ */
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.consent-modal[hidden] { display: none; }
.consent-modal .cm-card {
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 26px 28px;
}
.consent-modal h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.consent-modal .cm-text { font-size: 14.5px; line-height: 1.7; color: var(--ink-dim); margin: 0 0 16px; }
.consent-modal .cm-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.consent-modal .cm-gpc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin: 0 0 18px;
}
.consent-modal .cm-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.consent-modal .cm-actions .btn-grad, .consent-modal .cm-actions .btn-ghost { font-size: 12px; padding: 13px 20px; }
.consent-modal .cm-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: 1px solid var(--frame-2);
  color: var(--ink-dim);
  width: 34px; height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.consent-modal .cm-close:hover { color: var(--accent); border-color: var(--accent); }
.consent-modal .cm-card { position: relative; }

/* --------------------------- LAUNCH COUNTDOWN ----------------------------- */
.launch-gate {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 32px;
  text-align: center;
}
.launch-gate .lg-lockup { width: min(520px, 82vw); display: flex; flex-direction: column; align-items: center; gap: 6px; }
/* Each title line: the artwork masks the amber gradient, matching the
   display type's fill exactly. */
.launch-gate .lg-mline {
  display: block;
  background: var(--grad);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.launch-gate .lg-headline {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: 0.01em;
  word-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}
.lg-clock { display: flex; gap: clamp(14px, 4vw, 34px); align-items: flex-start; }
.lg-cell { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.lg-num {
  font-family: var(--display);
  font-size: clamp(44px, 9vw, 96px);
  line-height: 1;
  color: var(--ink);
  min-width: 1.4ch;
  font-variant-numeric: tabular-nums;
}
.lg-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.launch-gate .lg-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.34em;
  /* the trailing tracking space would pull the text off-center */
  margin-left: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ------------------------------ EMPTY STATES ------------------------------ */
.empty-note {
  border: 1px dashed var(--frame-2);
  background: var(--surface);
  padding: 44px 30px;
  text-align: center;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
