@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,500;0,6..96,700;1,6..96,500&family=Karla:wght@400;500;600;700&display=swap");

:root {
  --void: #0b0b0c;
  --panel: #161417;
  --ink: #f4ede6;
  --mute: #a3948c;
  --rose: #e11d48;
  --rose-2: #be123c;
  --sand: #d4a574;
  --line: rgba(244, 237, 230, 0.12);
  --max: 1200px;
  --display: "Bodoni Moda", "Times New Roman", serif;
  --body: "Karla", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.7;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); margin: 0 0 0.4em; line-height: 1.05; font-weight: 500; }
h1 { font-size: clamp(3rem, 8vw, 6.2rem); font-style: italic; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-style: italic; }
p { color: var(--mute); margin: 0 0 1em; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; color: #000; padding: 8px; z-index: 80; }
[hidden] { display: none !important; }

.mast {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(18px);
}
.mast-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; font-weight: 700; }
.brand img { width: 34px; height: 34px; }
nav.primary { display: flex; gap: 22px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
nav.primary a { text-decoration: none; color: var(--mute); }
nav.primary a:hover, nav.primary a[aria-current="page"] { color: var(--ink); }
.burger { display: none; width: 40px; height: 40px; background: transparent; border: 1px solid var(--line); color: var(--ink); cursor: pointer; }
.burger span { display: block; height: 1px; background: var(--ink); margin: 6px 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px; border: 1px solid var(--ink);
  background: transparent; color: var(--ink); text-decoration: none;
  font: inherit; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem;
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--void); }
.btn-rose { background: var(--rose); border-color: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-2); border-color: var(--rose-2); color: #fff; }

.hero { position: relative; min-height: 88vh; display: grid; }
.hero img {
  width: 100%; height: 88vh; object-fit: cover; filter: brightness(0.48) saturate(0.9);
}
.hero-copy {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 8vh 0 10vh;
}
.hero-copy .wrap { max-width: 18ch; }
.kicker { color: var(--sand); letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.72rem; font-weight: 700; margin-bottom: 12px; }
.hero-copy p { color: #d7cdc4; max-width: 36ch; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.section { padding: 90px 0; border-top: 1px solid var(--line); }
.feature-row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
  margin-bottom: 64px;
}
.feature-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
.feature-row.reverse .copy { order: -1; }
.feature-row img { width: 100%; height: 380px; object-fit: cover; }
.num { font-family: var(--display); font-style: italic; color: var(--rose); font-size: 1.4rem; margin-bottom: 8px; display: block; }

.play-poster {
  width: min(420px, 100%); margin: 0 auto; text-align: center;
  background: var(--panel); padding: 28px; border: 1px solid var(--line);
}
.play-poster img { width: 100%; height: 240px; object-fit: contain; background: #000; margin-bottom: 16px; }
.play-poster h3 { font-style: italic; }

.cta-band {
  background: var(--rose); color: #fff; padding: 48px 0;
  text-align: center;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band .btn { border-color: #fff; color: #fff; }
.cta-band .btn:hover { background: #fff; color: var(--rose); }

.legal-page { padding: 64px 0 100px; }
.legal-page .prose { max-width: 42rem; }
.form { display: grid; gap: 12px; max-width: 26rem; }
.form label { display: grid; gap: 6px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.form input, .form textarea {
  background: var(--panel); border: 1px solid var(--line); color: var(--ink);
  min-height: 44px; padding: 10px; font: inherit;
}
.form textarea { min-height: 120px; }
.note-ok { border: 1px solid var(--sand); padding: 12px; color: var(--sand); }

.site-foot { padding: 48px 0 28px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; }
.foot-grid h4 { margin: 0 0 12px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--body); color: var(--sand); }
.foot-grid a { display: block; text-decoration: none; color: var(--mute); margin-bottom: 8px; font-size: 0.9rem; }
.foot-grid a:hover { color: var(--ink); }
.foot-brand { display: flex; gap: 10px; align-items: center; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; font-weight: 700; margin-bottom: 10px; }
.foot-brand img { width: 28px; height: 28px; }
.foot-bottom { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; }
.age-chip { display: inline-flex; width: 32px; height: 32px; border: 1px solid var(--sand); align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; margin-right: 8px; color: var(--sand); }

.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.72); display: none; align-items: center; justify-content: center; z-index: 80; padding: 16px; }
.overlay.is-open { display: flex; }
.overlay.bottom { align-items: flex-end; }
.sheet, .age-box { width: min(480px, 100%); background: var(--panel); border: 1px solid var(--line); padding: 24px; }
.cookie-actions, .age-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

@media (max-width: 900px) {
  .feature-row, .feature-row.reverse, .foot-grid { grid-template-columns: 1fr; }
  .feature-row.reverse .copy { order: 0; }
  nav.primary { display: none; position: absolute; inset: 60px 16px auto; background: #161417; padding: 16px; flex-direction: column; }
  nav.primary.is-open { display: flex; }
  .burger { display: inline-block; }
  .hero img, .hero { min-height: 70vh; height: auto; }
  .hero img { height: 70vh; }
}
