/* ============= Tokens ============= */
:root {
  --ink: #0a0807;
  --ink-2: #15110e;
  --ink-3: #1f1814;
  --paper: #f5efe4;
  --paper-2: #ebe3d2;
  --cream: #f8f2e7;
  --gold: #c9a66b;
  --gold-bright: #e7c78a;
  --gold-deep: #8c6f3e;
  --champagne: #d8c39a;
  --rule: rgba(201,166,107,0.28);
  --rule-strong: rgba(201,166,107,0.55);
  --muted: rgba(245,239,228,0.62);
  --muted-2: rgba(245,239,228,0.42);

  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --hand: "Caveat", "Brush Script MT", cursive;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

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

/* ============= Grain ============= */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============= Promo bar ============= */
.promo {
  position: relative; z-index: 60;
  background: var(--ink-3);
  border-bottom: 1px solid var(--rule);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-align: center;
}
.promo .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.promo strong { color: var(--gold-bright); font-weight: 600; letter-spacing: 0.18em; }
.promo .code {
  font-family: var(--mono); letter-spacing: 0.22em;
  border: 1px solid var(--rule-strong);
  padding: 3px 8px; border-radius: 2px;
  color: var(--gold-bright);
}

/* ============= Nav ============= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px;
  background: rgba(10,8,7,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(201,166,107,0.12);
}
.nav .brand {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.nav .brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}
.nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 38px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.nav ul a:hover { color: var(--gold-bright); }
.nav .cta {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
}
.nav .cta:hover { background: var(--gold); color: var(--ink); }

/* footer mailto card */
.footer-mailto {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  background: rgba(245,239,228,0.02);
  color: var(--cream);
  transition: all 0.3s;
  max-width: 320px;
}
.footer-mailto:hover {
  border-color: var(--gold);
  background: rgba(201,166,107,0.06);
  transform: translateY(-1px);
}
.footer-mailto-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-mailto-icon svg { width: 18px; height: 18px; }
.footer-mailto-label {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--cream);
  font-weight: 500;
}
.footer-mailto-sub {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

@media (max-width: 820px) {
  .nav { padding: 14px 20px; }
  .nav ul { display: none; }
}

/* ============= Hero ============= */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  isolation: isolate;
}
.hero video, .hero .hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero .hero-fallback {
  background:
    radial-gradient(ellipse at 30% 40%, #2d2316 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, #1a120a 0%, transparent 60%),
    var(--ink);
}
.hero .vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,7,0.45) 0%, rgba(10,8,7,0.05) 22%, rgba(10,8,7,0) 45%, rgba(10,8,7,0.55) 72%, rgba(10,8,7,0.95) 100%),
    radial-gradient(ellipse 70% 60% at 28% 78%, rgba(10,8,7,0.78), rgba(10,8,7,0) 70%),
    radial-gradient(ellipse at center, rgba(10,8,7,0) 40%, rgba(10,8,7,0.55) 100%);
  z-index: -1;
}

.hero .marquee {
  position: absolute; top: 28px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 42px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero .marquee span:not(:last-child)::after {
  content: "·"; margin-left: 42px; color: var(--gold);
}

.hero-inner {
  position: relative; z-index: 1;
  height: calc(100vh - 90px);
  min-height: 720px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 80px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
}
.hero-eyebrow .line { width: 38px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.35);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
  position: relative;
}
.hero h1 .hand {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 500;
  color: var(--gold-bright);
  font-size: 0.85em;
  display: inline-block;
  transform: translateY(-0.06em) rotate(-2deg);
  margin-right: 0.05em;
}

.hero-sub {
  margin-top: 28px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  text-shadow: 0 1px 18px rgba(0,0,0,0.65);
  white-space: pre-line;
}

.hero-actions {
  margin-top: 44px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500;
  background: var(--gold);
  color: var(--ink);
  padding: 18px 28px;
  border: 1px solid var(--gold);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(201,166,107,0.25);
}
.btn-primary .arrow {
  width: 22px; height: 1px; background: var(--ink); position: relative;
  transition: width 0.35s;
}
.btn-primary .arrow::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  transform: rotate(45deg);
}
.btn-primary:hover .arrow { width: 32px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream);
  padding: 18px 0;
}
.btn-ghost .play {
  width: 38px; height: 38px; border: 1px solid var(--rule-strong); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.btn-ghost:hover .play { background: var(--cream); border-color: var(--cream); }
.btn-ghost:hover .play svg { fill: var(--ink); }
.btn-ghost .play svg { width: 10px; height: 10px; fill: var(--cream); transition: fill 0.3s; margin-left: 1px; }

.hero-meta {
  position: absolute;
  bottom: 80px; right: 56px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
}
.hero-meta strong { color: var(--gold-bright); font-weight: 500; letter-spacing: 0.32em; }
.hero-meta .reel {
  display: flex; align-items: center; gap: 8px;
}
.hero-meta .rec {
  width: 8px; height: 8px; background: #d35a4b; border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-sound {
  position: absolute;
  bottom: 80px; left: 56px;
  display: flex; align-items: center; gap: 16px;
  color: var(--cream);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  z-index: 3;
}
.hero-sound button {
  position: relative;
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(10,8,7,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  color: var(--gold-bright);
}
.hero-sound button:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.04);
}
.hero-sound button:hover svg { stroke: var(--ink); }
.hero-sound svg { width: 22px; height: 22px; stroke: var(--gold-bright); transition: stroke 0.3s; }
.hero-sound.muted button::before,
.hero-sound.muted button::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: ring 2.6s ease-out infinite;
}
.hero-sound.muted button::after { animation-delay: 1.3s; }
@keyframes ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}
.hero-sound .label-stack {
  display: flex; flex-direction: column; gap: 4px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}
.hero-sound .label-stack .primary {
  color: var(--gold-bright); font-weight: 500; letter-spacing: 0.32em;
}
.hero-sound .label-stack .secondary {
  color: var(--muted-2); font-size: 9px; letter-spacing: 0.28em;
}
.hero-sound.unmuted .label-stack .primary { color: var(--muted); }

@media (max-width: 820px) {
  .hero-inner { padding: 0 22px 48px; min-height: auto; height: auto; padding-top: 80px; }
  .hero { min-height: 100vh; }
  .hero h1 { font-size: clamp(40px, 13vw, 70px); }
  .hero-meta { display: none; }
  .hero-sound {
    left: 22px; bottom: 22px; gap: 12px;
  }
  .hero-sound button { width: 52px; height: 52px; }
  .hero-sound svg { width: 18px; height: 18px; }
  .hero-sound .label-stack .secondary { display: none; }
  .hero .marquee { gap: 18px; font-size: 9px; padding: 0 12px; flex-wrap: wrap; }
}

/* ============= Sections ============= */
section { position: relative; }
.section-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.section-eyebrow .num {
  color: var(--gold-bright);
  font-weight: 500;
}
.section-eyebrow .line { flex: 1; max-width: 60px; height: 1px; background: var(--rule); }

/* ============= Press / Melinda ============= */
.press {
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px 56px;
  position: relative;
}
.press-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.press blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.press blockquote::before { content: "\201C"; color: var(--gold); font-size: 1.2em; line-height: 0; margin-right: 4px; }
.press blockquote::after { content: "\201D"; color: var(--gold); font-size: 1.2em; line-height: 0; margin-left: 4px; }
.press .attribution {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px;
}
.press .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--ink);
  border: 1px solid var(--gold-bright);
}
.press .who { font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; color: var(--cream); }
.press .who .name { font-weight: 500; }
.press .who .handle { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; }

.press-side {
  display: flex; flex-direction: column; gap: 24px;
}
.stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.stat {
  border: 1px solid var(--rule);
  padding: 28px 24px;
  background: rgba(245,239,228,0.02);
}
.stat .figure {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--gold-bright);
  line-height: 1;
  display: flex; align-items: baseline; gap: 8px;
}
.stat .figure .unit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.stat .label {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.scarcity {
  border: 1px solid var(--gold);
  background: rgba(201,166,107,0.06);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.scarcity .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.scarcity .text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
}
.scarcity .remaining {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .press { padding: 56px 22px; }
  .press-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 20px 16px; }
  .scarcity { flex-direction: column; align-items: flex-start; }
}

/* ============= Films / Festival Index ============= */
.films {
  padding: 130px 56px 120px;
  position: relative;
}
.films-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 40px; flex-wrap: wrap;
}
.films-head-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 24px;
  max-width: 420px;
}
.view-toggle {
  display: inline-flex;
  border: 1px solid var(--rule);
  padding: 4px;
  gap: 2px;
}
.view-toggle button {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  background: transparent;
  transition: all 0.25s;
}
.view-toggle button.on {
  background: var(--gold);
  color: var(--ink);
}
.view-toggle button:not(.on):hover { color: var(--gold-bright); }
.films-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
}
.films-head h2 em { font-style: italic; color: var(--gold-bright); }
.films-head .description {
  max-width: 380px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.film-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.film-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1.5fr 1fr 0.8fr 80px;
  gap: 32px;
  align-items: center;
  padding: 32px 8px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: padding 0.45s cubic-bezier(0.4,0,0.2,1), background 0.35s;
  isolation: isolate;
}
.film-row:hover {
  padding-left: 32px;
  background: linear-gradient(90deg, rgba(201,166,107,0.05), transparent 60%);
}
.film-row::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.film-row:hover::before { transform: scaleY(1); transform-origin: top; }

.film-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.film-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.film-title em { font-style: italic; color: var(--gold-bright); }
.film-meta {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.film-meta .genre { color: var(--gold-bright); }
.film-price {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.film-price .from {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 2px;
}
.film-watch {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.film-watch .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.film-row:hover .film-watch .icon { background: var(--gold); border-color: var(--gold); }
.film-watch svg { width: 9px; height: 9px; fill: var(--cream); transition: fill 0.3s; margin-left: 1px; }
.film-row:hover .film-watch svg { fill: var(--ink); }

/* hover preview - peeking */
.film-row .preview {
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%) translateX(40px) rotate(-2deg);
  width: 240px;
  height: 140px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.5s, transform 0.6s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}
.film-row .preview video {
  width: 100%; height: 100%; object-fit: cover;
}
.film-row:hover .preview {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotate(-3deg);
}

@media (max-width: 1024px) {
  .film-row .preview { display: none; }
  .film-row {
    grid-template-columns: 50px 2fr 1fr 60px;
  }
  .film-row .film-price { display: none; }
}
@media (max-width: 720px) {
  .films { padding: 80px 22px 80px; }
  .film-row {
    grid-template-columns: 36px 1fr 44px;
    gap: 16px;
    padding: 22px 4px;
  }
  .film-row .film-meta { display: none; }
  .film-num { font-size: 10px; }
  .film-title { font-size: 24px; }
  .film-row:hover { padding-left: 12px; }
}

/* ============= Film Tiles ============= */
.film-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.film-tile {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  cursor: pointer;
  overflow: hidden;
  font: inherit; color: inherit; text-align: left;
  padding: 0;
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), border-color 0.4s, box-shadow 0.5s;
  isolation: isolate;
}
.film-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.film-tile-media {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.film-tile-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
}
.film-tile:hover .film-tile-media video {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.06);
}
.film-tile-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,7,0.45) 0%, rgba(10,8,7,0) 30%, rgba(10,8,7,0) 60%, rgba(10,8,7,0.85) 100%);
  pointer-events: none;
}
.film-tile-no {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold-bright);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  z-index: 2;
}
.film-tile-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.film-tile:hover .film-tile-play { opacity: 1; }
.film-tile-play .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.film-tile-play .icon svg {
  width: 14px; height: 14px; fill: var(--ink); margin-left: 2px;
}
.film-tile-play .play-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.film-tile-info {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
  pointer-events: none;
}
.film-tile-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--cream);
  text-shadow: 0 2px 14px rgba(0,0,0,0.65);
}
.film-tile-title em { font-style: italic; color: var(--gold-bright); }
.film-tile-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.film-tile-meta .genre { color: var(--gold-bright); }
.film-tile-meta .dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

/* Layout: featured top row, then a row of 3 + 1 wide */
.film-tile.tile-1 { grid-column: span 4; grid-row: span 2; }
.film-tile.tile-2 { grid-column: span 2; grid-row: span 2; }
.film-tile.tile-3 { grid-column: span 2; }
.film-tile.tile-4 { grid-column: span 2; }
.film-tile.tile-5 { grid-column: span 2; }
.film-tile.tile-1 .film-tile-title { font-size: 44px; }
.film-tile.tile-2 .film-tile-title { font-size: 30px; }

@media (max-width: 1024px) {
  .film-tiles {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .film-tile.tile-1 { grid-column: span 2; grid-row: span 1; }
  .film-tile.tile-2,
  .film-tile.tile-3,
  .film-tile.tile-4,
  .film-tile.tile-5 { grid-column: span 1; grid-row: span 1; }
  .film-tile.tile-1 .film-tile-title { font-size: 32px; }
  .film-tile.tile-2 .film-tile-title { font-size: 22px; }
}
@media (max-width: 600px) {
  .film-tiles { grid-template-columns: 1fr; grid-auto-rows: 240px; gap: 10px; }
  .film-tile.tile-1, .film-tile.tile-2,
  .film-tile.tile-3, .film-tile.tile-4, .film-tile.tile-5 { grid-column: span 1; }
}

/* ============= Manifesto / Pull quote ============= */
.manifesto {
  padding: 140px 56px;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,166,107,0.08), transparent 60%),
    var(--ink);
}
.manifesto p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0 auto;
  color: var(--cream);
}
.manifesto p em {
  font-style: normal;
  color: var(--gold-bright);
  position: relative;
  display: inline-block;
}
.manifesto p em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.manifesto .sig {
  margin-top: 48px;
  font-family: var(--hand);
  font-size: 32px;
  color: var(--gold-bright);
  transform: rotate(-3deg);
  display: inline-block;
}
.manifesto .sig + .role {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============= Packages ============= */
.packages {
  padding: 130px 56px;
  background: var(--ink);
}
.packages-head {
  text-align: center;
  margin-bottom: 80px;
}
.packages-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
}
.packages-head h2 em { font-style: italic; color: var(--gold-bright); }
.packages-head .description {
  max-width: 480px; margin: 22px auto 0;
  color: var(--muted); font-size: 15px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1400px; margin: 0 auto;
  border: 1px solid var(--rule);
}
.pkg {
  padding: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column;
  background: rgba(245,239,228,0.012);
  transition: background 0.4s;
  position: relative;
}
.pkg > .kind,
.pkg > h3,
.pkg > .blurb,
.pkg > ul,
.pkg > .pkg-foot { padding-left: 36px; padding-right: 36px; }
.pkg > .kind { padding-top: 28px; margin-bottom: 4px; }
.pkg > h3 { margin-top: 6px; }
.pkg > .blurb { margin-top: 14px; }
.pkg > ul { margin-top: 14px; }
.pkg > .pkg-foot { padding-bottom: 36px; padding-top: 28px; margin-top: auto; }

.pkg-reel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0807;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}
.pkg-reel video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
}
.pkg-reel::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,7,0) 55%, rgba(10,8,7,0.85) 100%),
    linear-gradient(180deg, rgba(10,8,7,0.15) 0%, rgba(10,8,7,0) 25%);
  pointer-events: none;
}
.pkg-reel-tag {
  position: absolute;
  left: 14px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  z-index: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.pkg-reel-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #d35a4b;
  box-shadow: 0 0 0 0 rgba(211,90,75,0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
.pkg:hover { background: rgba(201,166,107,0.05); }
.pkg:hover .pkg-reel video {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.05);
}
.pkg:last-child, .pkg:nth-child(3n) { border-right: 0; }
.pkg-grid > .pkg:nth-last-child(-n+2):nth-child(3n+1),
.pkg-grid > .pkg:nth-last-child(-n+2):nth-child(3n+1) ~ .pkg { border-bottom: 0; }
/* simpler: remove bottom border from last row */
.pkg.last-row { border-bottom: 0; }

.pkg .kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.pkg h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 0;
}
.pkg h3 em { font-style: italic; color: var(--gold-bright); }
.pkg .blurb {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
}
.pkg ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
  color: var(--cream);
}
.pkg ul li {
  display: flex; gap: 10px; align-items: baseline;
}
.pkg ul li::before {
  content: ""; width: 4px; height: 4px; background: var(--gold);
  display: inline-block; flex-shrink: 0; transform: translateY(-2px);
}
.pkg .pkg-foot {
  margin-top: auto; padding-top: 28px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid var(--rule);
}
.pkg .price {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--cream);
  line-height: 1;
}
.pkg .price .from {
  display: block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.pkg .pkg-cta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex; align-items: center; gap: 8px;
}
.pkg .pkg-cta::after {
  content: "→"; transition: transform 0.3s;
}
.pkg:hover .pkg-cta::after { transform: translateX(4px); }

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg { border-right: 0 !important; }
  .pkg:last-child { border-bottom: 0; }
}

/* ============= Process ============= */
.process {
  padding: 130px 56px;
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
}
.process-inner { max-width: 1400px; margin: 0 auto; }
.process-head { margin-bottom: 80px; max-width: 720px; }
.process-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.process-head h2 em { font-style: italic; color: var(--gold-bright); }

.acts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  position: relative;
}
.acts::before {
  content: "";
  position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 1px;
  background: var(--rule);
}
.act { position: relative; }
.act .number {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-bright);
  margin-bottom: 28px;
}
.act .act-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.act h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.act h3 em { font-style: italic; color: var(--gold-bright); }
.act p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}
.act .duration {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 820px) {
  .process { padding: 80px 22px; }
  .acts { grid-template-columns: 1fr; gap: 48px; }
  .acts::before { display: none; }
}

/* ============= Director ============= */
.director {
  padding: 130px 56px;
  position: relative;
}
.director-inner {
  max-width: 980px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.portrait {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,7,0) 55%, rgba(10,8,7,0.7) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201,166,107,0.06), transparent 60%);
  pointer-events: none;
}
.portrait-tag {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  z-index: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.75);
}
.director-text .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.director-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.director-text h2 em { font-style: italic; color: var(--gold-bright); }
.director-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}
.signature {
  margin-top: 28px;
  font-family: var(--hand);
  font-size: 38px;
  color: var(--gold-bright);
  transform: rotate(-3deg);
  display: inline-block;
}
.signature + .who {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

@media (max-width: 820px) {
  .director { padding: 80px 22px; }
  .director-inner { grid-template-columns: 1fr; }
  .portrait { max-width: 220px; }
}

/* ============= Closing CTA ============= */
.closing {
  position: relative;
  padding: 160px 56px;
  text-align: center;
  border-top: 1px solid var(--rule);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,166,107,0.14), transparent 65%),
    var(--ink);
  overflow: hidden;
}
.closing .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 14ch;
  margin-left: auto; margin-right: auto;
}
.closing h2 em { font-style: italic; color: var(--gold-bright); }
.closing .hand {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 500;
  font-size: 0.7em;
  color: var(--gold-bright);
  display: inline-block;
  transform: translateY(-0.08em) rotate(-3deg);
  margin-right: 0.08em;
}
.closing-actions {
  margin-top: 56px;
  display: inline-flex; align-items: center; gap: 24px;
}
.closing .sub {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.closing .sub strong { color: var(--gold-bright); font-weight: 500; }

/* ============= Footer ============= */
footer {
  padding: 80px 56px 40px;
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand { font-family: var(--serif); font-weight: 300; font-size: 32px; }
.footer-brand em { font-style: italic; color: var(--gold-bright); }
.footer-brand p {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 6px 0 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer-bottom .reel { color: var(--gold); }

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 56px 22px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============= Modal ============= */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,4,3,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative;
  max-width: 1100px;
  width: 100%;
  animation: rise 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-video {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--rule);
  box-shadow: 0 60px 120px rgba(0,0,0,0.6);
  overflow: hidden;
}
.modal-video video { width: 100%; height: 100%; object-fit: cover; }
.modal-info {
  margin-top: 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.modal-info h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 8px;
}
.modal-info h3 em { font-style: italic; color: var(--gold-bright); }
.modal-info .meta {
  display: flex; gap: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal-info .meta .genre { color: var(--gold-bright); }
.modal-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 14px 22px;
}
.modal-cta:hover { background: var(--gold-bright); }
.modal-close {
  position: absolute;
  top: -42px; right: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.modal-close:hover { color: var(--gold-bright); }
.modal-close .x {
  width: 24px; height: 24px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

@media (max-width: 820px) {
  .modal-backdrop { padding: 16px; }
  .modal-info h3 { font-size: 24px; }
  .modal-info .meta { gap: 14px; }
  .modal-close { top: -32px; }
}

/* Tweaks panel always above */
#tweaks-root { z-index: 9999; }

/* ============= Persistent sound toggle ============= */
.sound-toggle {
  position: fixed;
  right: 28px; bottom: 28px;
  z-index: 120;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 16px 12px 22px;
  background: rgba(10,8,7,0.78);
  border: 1px solid var(--rule-strong);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.sound-toggle:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
}
.sound-toggle.muted .sound-toggle-label { color: var(--gold-bright); }
.sound-toggle.unmuted .sound-toggle-label { color: var(--cream); }
.sound-toggle-icon {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.sound-toggle.unmuted .sound-toggle-icon { background: rgba(245,239,228,0.12); border: 1px solid var(--rule-strong); }
.sound-toggle-icon svg {
  width: 14px; height: 14px;
  stroke: var(--ink);
}
.sound-toggle.unmuted .sound-toggle-icon svg { stroke: var(--cream); }
.sound-toggle.muted .sound-toggle-icon::before,
.sound-toggle.muted .sound-toggle-icon::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: ring 2.8s ease-out infinite;
}
.sound-toggle.muted .sound-toggle-icon::after { animation-delay: 1.4s; }

@media (max-width: 600px) {
  .sound-toggle {
    right: 14px; bottom: 14px;
    padding: 10px 14px 10px 18px;
    gap: 10px;
  }
  .sound-toggle-label { display: none; }
}
