/* ============ 72A HABANA — Proposal 2: "Marquee" ============ */
:root {
  --ink: #0a0705;
  --ink-2: #140d08;
  --paper: #f5eee0;
  --paper-dim: rgba(245, 238, 224, 0.82);
  --accent: #e26ec3;
  --gold-1: #b8893a;
  --gold-2: #f6e2ab;
  --shimmer-1: color-mix(in oklab, var(--accent) 72%, #2a0d20);
  --shimmer-2: color-mix(in oklab, var(--accent) 38%, white);
  --neon: color-mix(in oklab, var(--accent) 62%, white);
  --hairline: rgba(245, 238, 224, 0.18);
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Archivo", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -100px; z-index: 60; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.08; mix-blend-mode: overlay;
}
@media (prefers-reduced-motion: no-preference) {
  .grain { animation: grain-shift 0.9s steps(4) infinite; }
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-34px, 22px); }
  50% { transform: translate(18px, -40px); }
  75% { transform: translate(-26px, -14px); }
  100% { transform: translate(30px, 28px); }
}
body[data-grain="off"] .grain { display: none; }

/* ---------- helpers ---------- */
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--accent);
}
.shimmer {
  background: linear-gradient(105deg, var(--shimmer-1) 20%, var(--shimmer-2) 48%, var(--shimmer-1) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  body[data-motion="on"] .shimmer { animation: shimmer-sweep 5.5s ease-in-out infinite; }
}
@keyframes shimmer-sweep {
  0%, 100% { background-position: 110% 0; }
  50% { background-position: -10% 0; }
}
.dim { color: var(--paper-dim); }

/* word-by-word reveal: visible base, hidden only via JS-applied .pre */
[data-words] .w { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  [data-words] .w {
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--wi) * 0.07s);
  }
  [data-words].pre .w { opacity: 0; transform: translateY(0.55em); }
}
[data-reveal] { }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--d, 0s);
  }
  [data-reveal].pre { opacity: 0; transform: translateY(40px); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 40px;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 7, 5, 0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
}
.nav-brand { font-family: var(--serif); font-size: 18px; letter-spacing: 0.06em; text-decoration: none; white-space: nowrap; }
.nav-brand em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--paper-dim); transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 28px; text-decoration: none; cursor: pointer;
  border: 1px solid var(--accent); color: var(--accent); background: transparent;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.btn:hover {
  background: var(--neon); border-color: var(--neon); color: var(--ink);
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent) 70%, transparent),
              0 0 48px color-mix(in srgb, var(--accent) 45%, transparent),
              0 0 96px color-mix(in srgb, var(--accent) 25%, transparent);
}
.btn.solid { background: var(--accent); color: var(--ink); }
.btn.solid:hover { background: var(--neon); border-color: var(--neon); }
.sec-cta { display: flex; justify-content: center; margin-top: 64px; }
.nav .btn { padding: 9px 18px; font-size: 11px; }
@media (max-width: 1180px) { .nav-links { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  filter: saturate(0.95) contrast(1.06) brightness(0.74);
}
@media (prefers-reduced-motion: no-preference) {
  body[data-motion="on"] .hero-bg img { animation: kenburns 30s ease-in-out infinite alternate; }
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.16) translateY(-2%); }
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,7,5,0.8) 0%, rgba(10,7,5,0.25) 30%, rgba(10,7,5,0.5) 60%, rgba(10,7,5,0.99) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(1500px, 94vw); margin: 0 auto;
  padding: 150px 0 60px; text-align: center;
}
.hero-kicker { margin-bottom: 30px; }
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.96; letter-spacing: 0.01em;
  margin-bottom: 26px;
}
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title .char { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .hero-title .char {
    animation: char-rise 1.2s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: calc(0.2s + var(--ci) * 0.06s);
  }
}
@keyframes char-rise {
  from { opacity: 0; transform: translateY(0.4em) scale(0.96); }
}
.hero-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  margin-bottom: 34px;
}
.hero-sub {
  max-width: 700px; margin: 0 auto 46px;
  color: var(--paper-dim); font-size: 16px; text-wrap: pretty;
}
.hero-ctas { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 60px; }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  overflow: hidden; white-space: nowrap; padding: 22px 0; background: var(--ink-2);
}
.marquee-track { display: inline-flex; }
@media (prefers-reduced-motion: no-preference) {
  body[data-motion="on"] .marquee-track { animation: marquee 36s linear infinite; }
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee span {
  font-family: var(--serif); font-size: 20px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--paper-dim); padding: 0 30px;
}
.marquee span i { font-style: normal; color: var(--accent); }

/* ---------- act statements ---------- */
.act {
  position: relative; min-height: 92vh; overflow: hidden;
  display: grid; place-items: center; text-align: center;
}
.act-bg { position: absolute; inset: 0; }
.act-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.42) contrast(1.06);
}
.act-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,7,5,0.25) 25%, rgba(10,7,5,0.93) 100%);
}
.act-inner { position: relative; z-index: 2; width: min(1180px, 92vw); padding: 120px 0; display: grid; gap: 30px; justify-items: center; }
.act-no {
  font-size: 14px; font-weight: 700; letter-spacing: 0.5em; text-transform: uppercase; color: var(--accent);
}
.act-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15; text-wrap: balance;
}
.act-title em { font-style: italic; }
.act-copy { max-width: 780px; font-size: 16px; color: var(--paper-dim); text-wrap: pretty; }

/* ---------- trailer ---------- */
.trailer-sec { background: var(--ink-2); padding: 140px 0; }
.shell { width: min(1320px, 92vw); margin: 0 auto; }
.sec-head { display: grid; gap: 20px; justify-items: center; text-align: center; margin-bottom: 70px; }
.sec-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15; text-wrap: balance;
}
.trailer-frame { position: relative; border: 1px solid var(--hairline); padding: clamp(12px, 2vw, 28px); background: #000; }
.trailer-frame::before, .trailer-frame::after {
  content: ""; position: absolute; width: 34px; height: 34px; border: 2px solid var(--accent);
}
.trailer-frame::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.trailer-frame::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.trailer-embed { position: relative; padding-top: 56.25%; }
.trailer-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- why / selling points ---------- */
.why { padding: 150px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  border: 1px solid var(--hairline); padding: 52px 40px;
  display: grid; gap: 20px; align-content: start;
  background: rgba(245, 238, 224, 0.025);
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.why-card:hover { border-color: color-mix(in srgb, var(--accent) 60%, transparent); transform: translateY(-8px); }
.why-card .num { font-family: var(--serif); font-size: 32px; color: var(--accent); line-height: 1; }
.why-card h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; line-height: 1.15; }
.why-card p { color: var(--paper-dim); font-size: 15px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- tiers ---------- */
.tiers-sec { background: var(--ink-2); padding: 150px 0; }
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  border: 1px solid var(--hairline); padding: 44px 32px 36px;
  background: rgba(245, 238, 224, 0.02); position: relative;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.tier:hover { border-color: color-mix(in srgb, var(--accent) 60%, transparent); transform: translateY(-8px); }
.tier-rank { font-size: 11px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: var(--paper-dim); margin-bottom: 20px; }
.tier-name { font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.02; }
.tier-name em { display: block; font-size: 13px; font-style: italic; color: var(--paper-dim); margin-top: 6px; font-weight: 400; }
.tier-price { font-family: var(--serif); font-size: 28px; line-height: 1; margin: 18px 0 4px; }
.tier-price small { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--paper-dim); display: block; margin-top: 8px; }
body[data-prices="off"] .tier-price { display: none; }
.tier hr { border: 0; border-top: 1px solid var(--hairline); margin: 24px 0; }
.tier ul { list-style: none; display: grid; gap: 14px; flex: 1; }
.tier li { font-size: 14px; color: var(--paper-dim); line-height: 1.45; display: flex; gap: 12px; }
.tier li::before { content: "★"; color: var(--accent); font-size: 10px; line-height: 2; flex: none; }
.tier li b { color: var(--paper); font-weight: 600; }
.tier .btn { margin-top: 30px; width: 100%; font-size: 11px; padding: 12px 16px; }
.tier.featured { border-color: var(--accent); background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, transparent), color-mix(in srgb, var(--accent) 2%, transparent)); box-shadow: 0 0 70px color-mix(in srgb, var(--accent) 12%, transparent); }
.tier-flag {
  position: absolute; top: -1px; right: -1px;
  font-size: 8px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  background: var(--accent); color: var(--ink); padding: 8px 14px;
}
.tiers-note { margin-top: 48px; text-align: center; color: var(--paper-dim); font-size: 15px; max-width: 820px; margin-inline: auto; text-wrap: pretty; }
@media (max-width: 1180px) { .tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .tiers { grid-template-columns: 1fr; } }

/* ---------- cast strip ---------- */
.cast-sec { padding: 150px 0; }
.cast-band {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 56px 0; display: grid; gap: 36px;
}
.cast-row { display: flex; flex-wrap: wrap; gap: 14px 0; align-items: baseline; justify-content: center; text-align: center; }
.cast-row .label { width: 100%; font-size: 12px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cast-row .names {
  font-family: var(--serif); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.5;
  text-wrap: balance;
}
.cast-row .names i { font-style: normal; color: var(--accent); padding: 0 14px; font-size: 0.6em; vertical-align: middle; }

/* ---------- team ---------- */
.team-sec { background: var(--ink-2); padding: 150px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 60px); }
.team-card { display: grid; gap: 16px; align-content: start; text-align: center; justify-items: center; }
.team-card .role { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); }
.team-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.team-card p { color: var(--paper-dim); font-size: 15px; text-wrap: pretty; }
.team-card .cos { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--paper-dim); }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- finale ---------- */
.finale { position: relative; overflow: hidden; padding: 170px 0 150px; }
.finale-bg { position: absolute; inset: 0; }
.finale-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.finale-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(10,7,5,0.5) 40%, rgba(10,7,5,0.72) 75%, var(--ink) 100%); }
.finale-inner { position: relative; z-index: 2; width: min(1100px, 92vw); margin: 0 auto; text-align: center; display: grid; gap: 36px; justify-items: center; }
.finale-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.15; text-wrap: balance;
}
.finale-title em { font-style: italic; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: min(920px, 100%); margin-top: 16px; }
.contact-card {
  border: 1px solid var(--hairline); padding: 44px 32px;
  display: grid; gap: 10px; justify-items: center;
  background: rgba(10, 7, 5, 0.6); backdrop-filter: blur(5px);
  transition: border-color 0.3s ease;
}
.contact-card:hover { border-color: color-mix(in srgb, var(--accent) 60%, transparent); }
.contact-card .org { font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); }
.contact-card .who { font-family: var(--serif); font-size: 23px; }
.contact-card .tel { color: var(--paper-dim); font-size: 15px; }
.contact-card a.mail { font-size: 15px; text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.contact-card a.mail:hover { color: var(--accent); }
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; } }
.social-row { margin-top: 36px; font-size: 14px; }
.social-row .insta {
  color: var(--paper); text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
  transition: color 0.25s ease;
}
.social-row .insta:hover { color: var(--accent); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 46px 40px; display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper-dim);
}
.footer .f-brand { font-family: var(--serif); font-size: 16px; text-transform: none; color: var(--paper); }
.footer .f-brand em { font-style: italic; color: var(--accent); }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* ---------- nav actions ---------- */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-screener { border-color: var(--hairline); color: var(--paper-dim); }
.nav-screener:hover { border-color: var(--accent); color: var(--accent); background: transparent; box-shadow: none; }

/* ---------- hero additions ---------- */
.hero-logline {
  max-width: 680px; margin: 0 auto 40px;
  color: var(--paper-dim); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.7; text-wrap: pretty;
}
.hero-credential-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 14px; margin-top: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245, 238, 224, 0.38);
}
.hcb-dot { color: var(--accent); font-size: 8px; }

/* ---------- why now (reuses .why card styles) ---------- */
.why-now { padding: 150px 0; }

/* ---------- trailer status bar ---------- */
.trailer-status {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 18px; margin-top: 32px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245, 238, 224, 0.42);
}
.ts-dot { color: var(--accent); font-size: 8px; }

/* ---------- story section (collapsed acts) ---------- */
.story-sec { position: relative; padding: 130px 0; overflow: hidden; }
.story-bg { position: absolute; inset: 0; }
.story-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.28) contrast(1.1); }
.story-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(10,7,5,0.1) 0%, rgba(10,7,5,0.85) 100%); }
.story-inner { position: relative; z-index: 2; }
.story-acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; border: 1px solid var(--hairline); }
.story-act {
  padding: 44px 40px; border-right: 1px solid var(--hairline);
  display: grid; gap: 18px; align-content: start;
  background: rgba(10, 7, 5, 0.55); backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}
.story-act:last-child { border-right: 0; }
.story-act:hover { background: rgba(10, 7, 5, 0.72); }
.story-act-no { font-size: 11px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; color: var(--accent); }
.story-act-copy { font-size: 15px; color: var(--paper-dim); line-height: 1.75; text-wrap: pretty; }
.story-act-copy em { font-style: italic; color: var(--paper); }
@media (max-width: 860px) {
  .story-acts { grid-template-columns: 1fr; }
  .story-act { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .story-act:last-child { border-bottom: 0; }
  .story-act { padding: 32px 24px; }
}
@media (max-width: 640px) { .story-sec { padding: 80px 0; } }

/* ---------- act closer ---------- */
.act-closer {
  font-family: var(--serif); font-style: italic; font-size: clamp(16px, 1.6vw, 22px);
  color: var(--accent); margin-top: 8px;
}

/* ---------- omara callout ---------- */
.omara-callout {
  background: linear-gradient(135deg, #140508 0%, #0a0705 50%, #150b04 100%);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 80px 40px; text-align: center;
}
.omara-inner { max-width: 700px; margin: 0 auto; display: grid; gap: 14px; }
.omara-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--accent);
}
.omara-name {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500; letter-spacing: 0.04em;
}
.omara-credit { color: var(--paper-dim); font-size: 14px; letter-spacing: 0.06em; }

/* ---------- production details ---------- */
.prod-sec { padding: 150px 0; }
.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline); border-radius: 4px; overflow: hidden;
  margin-top: 56px;
}
.prod-block {
  background: rgba(245, 238, 224, 0.018); padding: 28px 30px;
  display: grid; gap: 8px; align-content: start;
  transition: background 0.25s ease;
}
.prod-block:hover { background: rgba(245, 238, 224, 0.04); }
.prod-block-wide { grid-column: span 4; border-top: 1px solid var(--hairline); }
.prod-label { font-size: 10px; font-weight: 700; letter-spacing: 0.36em; text-transform: uppercase; color: rgba(245, 238, 224, 0.38); }
.prod-val { font-size: 16px; color: var(--paper); font-family: var(--serif); }
.prod-val-active { color: var(--accent); }
.prod-rights { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.prod-rights span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--hairline); padding: 6px 14px; color: var(--paper-dim);
  background: rgba(245, 238, 224, 0.04);
}

/* about film AEO block */
.about-film {
  margin-top: 60px; padding: 44px 48px;
  border: 1px solid var(--hairline); background: rgba(245, 238, 224, 0.018);
  border-radius: 4px;
}
.about-film-label { font-size: 10px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.about-film p { color: var(--paper-dim); font-size: 15px; line-height: 1.75; text-wrap: pretty; }

/* ---------- film specs strip (inside filmmakers) ---------- */
.film-specs {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline); border-radius: 4px; overflow: hidden;
  margin-top: 52px;
}
.film-spec {
  background: rgba(245, 238, 224, 0.02); padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.fs-label { font-size: 9px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(245,238,224,0.36); }
.fs-val { font-size: 13px; color: var(--paper); line-height: 1.45; }
.fs-active { color: var(--accent); }
@media (max-width: 900px) { .film-specs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .film-specs { grid-template-columns: 1fr; } }

/* ---------- comparables strip (inside filmmakers) ---------- */
.comps-strip { margin-top: 40px; }
.comps-strip-label { font-size: 10px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(245,238,224,0.36); margin-bottom: 16px; }
.comps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.comp-pill {
  border: 1px solid var(--hairline); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 5px;
  background: rgba(245,238,224,0.018);
  transition: border-color 0.25s ease;
}
.comp-pill:hover { border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.comp-pill strong { font-size: 13px; font-weight: 600; color: var(--paper); line-height: 1.3; }
.comp-pill span { font-size: 12px; color: var(--paper-dim); }
@media (max-width: 900px) { .comps-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .comps-row { grid-template-columns: 1fr; } }

/* AEO paragraph — visible but visually quiet */
.about-film-aeo {
  margin-top: 32px; font-size: 13px; color: rgba(245,238,224,0.32);
  line-height: 1.7; text-wrap: pretty;
}

/* sec-cta flex gap override */
.sec-cta { gap: 14px; }

/* ---------- festival section ---------- */
.festival-sec { background: var(--ink-2); padding: 120px 0; }
.festival-status { text-align: center; margin-top: 48px; display: grid; gap: 12px; }
.festival-status-text { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--paper-dim); }
.festival-targets { font-size: 14px; color: var(--paper-dim); }
.festival-targets strong { color: var(--paper); }

.comparables-block { margin-top: 70px; }
.comparables-label { font-size: 11px; font-weight: 700; letter-spacing: 0.36em; text-transform: uppercase; color: var(--accent); margin-bottom: 28px; text-align: center; }
.comparables-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.comparable-item {
  border: 1px solid var(--hairline); padding: 28px 32px;
  background: rgba(245, 238, 224, 0.02);
  display: grid; gap: 8px;
  transition: border-color 0.3s ease;
}
.comparable-item:hover { border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.comp-title { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.comp-detail { font-size: 13px; color: var(--paper-dim); }

/* ---------- tiers section additions ---------- */
.tiers-sub { color: var(--paper-dim); font-size: 16px; max-width: 680px; text-align: center; text-wrap: pretty; margin-top: 4px; }

/* ---------- dual contact ---------- */
.dual-contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  width: min(960px, 100%); margin-top: 16px;
}
.contact-track {
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--hairline); padding: 40px 36px 36px;
  background: rgba(10, 7, 5, 0.55); backdrop-filter: blur(6px);
  transition: border-color 0.3s ease;
}
.contact-track:hover { border-color: color-mix(in srgb, var(--accent) 50%, transparent); }
.contact-track-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--accent);
}
.contact-track-desc { font-size: 14px; color: var(--paper-dim); line-height: 1.6; text-wrap: pretty; }
.contact-track-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.contact-track-actions .btn { font-size: 10px; padding: 10px 16px; }
.contact-card-acq, .contact-card-spon {
  display: grid; gap: 6px; justify-items: start;
  margin-top: 8px; padding: 22px 24px;
  border: 1px solid var(--hairline); background: rgba(245, 238, 224, 0.04);
}
.contact-card-acq .org, .contact-card-spon .org {
  font-size: 10px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent);
}
.contact-card-acq .who, .contact-card-spon .who { font-family: var(--serif); font-size: 19px; }
.contact-card-acq .tel, .contact-card-spon .tel { color: var(--paper-dim); font-size: 14px; }
.contact-card-acq a.mail, .contact-card-spon a.mail {
  font-size: 14px; text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px; color: var(--paper);
}
.contact-card-acq a.mail:hover, .contact-card-spon a.mail:hover { color: var(--accent); }
@media (max-width: 760px) { .dual-contact { grid-template-columns: 1fr; } }

/* ---------- FAQ (AEO block) ---------- */
.faq-block {
  padding: 80px 0 60px;
  border-top: 1px solid var(--hairline);
  background: rgba(245, 238, 224, 0.012);
}
.faq-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(245, 238, 224, 0.32); margin-bottom: 40px; text-align: center;
}
.faq-list { display: grid; gap: 0; max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(245, 238, 224, 0.06); padding: 22px 0; }
.faq-item dt { font-size: 14px; font-weight: 700; color: rgba(245, 238, 224, 0.55); margin-bottom: 8px; }
.faq-item dd { font-size: 14px; color: rgba(245, 238, 224, 0.36); line-height: 1.65; margin: 0; text-wrap: pretty; }

/* ---------- mobile sticky CTA ---------- */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 49;
  padding: 12px 16px; gap: 10px;
  background: rgba(10, 7, 5, 0.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
}
.mobile-cta-bar .btn { flex: 1; font-size: 11px; padding: 12px 10px; }

/* ============ MOBILE ============ */
@media (max-width: 640px) {
  body { font-size: 14px; }

  /* nav */
  .nav { padding: 14px 20px; }
  .nav-brand { font-size: 15px; }
  .nav .btn { padding: 8px 14px; font-size: 10px; }

  /* hero */
  .hero-inner { padding: 100px 0 40px; }
  .hero-title { font-size: clamp(28px, 9vw, 40px); }
  .hero-tagline { font-size: 15px; margin-bottom: 20px; }
  .hero-sub { font-size: 14px; margin-bottom: 32px; }
  .hero-ctas { gap: 12px; }
  .btn { font-size: 12px; padding: 12px 20px; letter-spacing: 0.1em; }

  /* marquee */
  .marquee span { font-size: 15px; padding: 0 14px; }

  /* act sections */
  .act-inner { padding: 80px 0; gap: 20px; }
  .act-no { font-size: 11px; }
  .act-title { font-size: clamp(22px, 6vw, 30px); }
  .act-copy { font-size: 14px; }

  /* trailer */
  .trailer-sec { padding: 80px 0; }
  .sec-head { margin-bottom: 40px; gap: 14px; }
  .sec-title { font-size: clamp(22px, 6vw, 30px); }
  .sec-cta { margin-top: 40px; }

  /* why */
  .why { padding: 80px 0; }
  .why-card { padding: 28px 20px; }
  .why-card .num { font-size: 34px; }
  .why-card h3 { font-size: 20px; }
  .why-card p { font-size: 13px; }

  /* tiers */
  .tiers-sec { padding: 60px 0; }
  .tier { padding: 20px 16px 18px; gap: 0; }
  .tier-rank { font-size: 9px; letter-spacing: 0.24em; margin-bottom: 10px; }
  .tier-name { font-size: 18px; line-height: 1.1; }
  .tier-name em { font-size: 11px; margin-top: 4px; }
  .tier-price { font-size: 24px; margin: 12px 0 2px; }
  .tier-price small { font-size: 9px; margin-top: 4px; }
  .tier hr { margin: 12px 0; }
  .tier ul { gap: 8px; }
  .tier li { font-size: 12px; line-height: 1.4; }
  .tier li::before { font-size: 9px; }
  .tier .btn { margin-top: 16px; font-size: 11px; padding: 10px 14px; }
  .tier-flag { font-size: 8px; padding: 5px 8px; }
  .tiers-note { font-size: 13px; margin-top: 28px; }

  /* cast */
  .cast-sec { padding: 80px 0; }
  .cast-band { padding: 36px 0; gap: 28px; }

  /* team */
  .team-sec { padding: 80px 0; }
  .team-card h3 { font-size: 22px; }
  .team-card p { font-size: 13px; }

  /* finale */
  .finale { padding: 100px 0 80px; }
  .finale-title { font-size: clamp(22px, 7vw, 32px); }
  .contact-card { padding: 28px 18px; }
  .contact-card .who { font-size: 19px; }
  .contact-card .tel, .contact-card a.mail { font-size: 13px; }

  /* footer */
  .footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }

  /* nav actions */
  .nav-actions .nav-screener { display: none; }

  /* hero additions */
  .hero-logline { font-size: 14px; margin-bottom: 28px; }
  .hero-credential-bar { font-size: 10px; gap: 4px 10px; margin-top: 14px; }

  /* why now */
  .why-now { padding: 80px 0; }

  /* omara callout */
  .omara-callout { padding: 60px 20px; }
  .omara-name { font-size: clamp(24px, 7vw, 32px); }

  /* production details */
  .prod-sec { padding: 80px 0; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .prod-block-wide { grid-column: span 2; }
  .about-film { padding: 28px 22px; }
  .about-film p { font-size: 13px; }

  /* festival */
  .festival-sec { padding: 80px 0; }
  .comparables-grid { grid-template-columns: 1fr; }

  /* tiers sub */
  .tiers-sub { font-size: 14px; }

  /* dual contact */
  .dual-contact { grid-template-columns: 1fr; }
  .contact-track { padding: 28px 20px 24px; }

  /* mobile CTA bar */
  .mobile-cta-bar { display: flex; }

  /* faq */
  .faq-block { padding: 60px 0 40px; }
  .faq-item dt { font-size: 13px; }
  .faq-item dd { font-size: 13px; }
}
