/* ─── Tokens ───────────────────────────────────────── */
:root {
  --c-lavender: #d8c4f0;
  --c-pink:     #ffd4e8;
  --c-peach:    #ffd9d4;
  --c-mint:     #c8f0d8;
  --c-blue:     #c8d8f4;
  --c-yellow:   #fff0c8;
  --c-lilac:    #e6c4f0;

  --c-base:     #f4e8ff;
  --c-ink:      #2a1a3e;
  --c-ink-soft: #4a3a5e;
  --c-muted:    #6e6082;

  --card-bg:    rgba(255, 255, 255, 0.55);
  --card-stroke:rgba(255, 255, 255, 0.7);
  --card-shadow:0 12px 48px rgba(180, 140, 220, 0.18);

  --r-card: 28px;
  --r-soft: 16px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --maxw: 1180px;
  --pad:  clamp(20px, 5vw, 56px);
}

/* ─── Reset / base ─────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--c-ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--c-base);
  background-image:
    radial-gradient(ellipse 70% 50% at 18% 12%, var(--c-pink) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 82% 8%,  var(--c-blue) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 12% 55%, var(--c-mint) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 88% 50%, var(--c-lilac) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 30% 95%, var(--c-yellow) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 78% 100%, var(--c-lavender) 0%, transparent 60%);
  background-attachment: fixed;
  background-size: 100% 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--c-ink); text-decoration: none; border-bottom: 1px solid rgba(42,26,62,0.25); transition: border-color .2s ease, color .2s ease; }
a:hover { border-bottom-color: var(--c-ink); }
button { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
}
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--c-muted);
  margin: 0 0 14px;
}
.eyebrow span { color: var(--c-ink); font-weight: 500; }

/* ─── Card pattern ─────────────────────────────────── */
.card {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--card-stroke);
  border-radius: var(--r-card);
  box-shadow: var(--card-shadow);
  padding: clamp(24px, 4vw, 48px);
}

/* ─── Nav ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad);
  background: linear-gradient(to bottom, rgba(244,232,255,0.6), rgba(244,232,255,0));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.nav-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  border-bottom: 0;
}
.nav-mark .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,0.4) 35%, transparent 60%),
    conic-gradient(from 200deg, var(--c-pink), var(--c-lilac), var(--c-blue), var(--c-mint), var(--c-yellow), var(--c-pink));
  box-shadow: 0 0 12px rgba(220, 180, 255, 0.6), inset 0 0 6px rgba(255,255,255,0.5);
}
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav-links a {
  font-size: 13px;
  color: var(--c-ink-soft);
  border-bottom: 0;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--c-ink); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(42,26,62,0.15);
  border-radius: 999px;
  padding: 2px;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--c-muted);
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.lang-btn:hover { color: var(--c-ink); }
.lang-btn.is-active {
  color: var(--c-ink);
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.95), transparent 55%),
    conic-gradient(from 200deg, var(--c-pink), var(--c-lilac), var(--c-blue), var(--c-mint), var(--c-yellow), var(--c-pink));
  box-shadow: 0 2px 8px rgba(180,130,220,0.25), inset 0 0 0 1px rgba(255,255,255,0.5);
}

@media (max-width: 640px) {
  .nav { padding: 14px 18px; gap: 12px; flex-wrap: nowrap; }
  .nav-mark { font-size: 15px; flex: 1 1 auto; }
  .nav-links { display: none; }
  .lang-toggle { flex: 0 0 auto; }
  .lang-btn { padding: 4px 9px; font-size: 11px; }
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 90px) var(--pad) clamp(60px, 10vw, 120px);
}
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-creature {
  width: 100%;
  max-width: 460px;
  border-radius: 32px;
  filter: drop-shadow(0 20px 40px rgba(180, 130, 220, 0.25));
}
.title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 8px 0 24px;
}
.title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-ink-soft);
}
.logline {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  max-width: 36ch;
  color: var(--c-ink-soft);
  margin: 0 0 24px;
}
.meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0;
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 24px; gap: 32px; }
  .hero-art { order: -1; }
  .hero-creature { max-width: 320px; }
  .hero-text { text-align: center; }
  .logline { margin-left: auto; margin-right: auto; }
}

/* ─── Sections shared ─────────────────────────────── */
section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 100px) var(--pad);
}
.section-head { margin: 0 auto clamp(24px, 4vw, 40px); max-width: 720px; text-align: center; }
.section-head h2 { margin-bottom: 8px; }
.section-sub { color: var(--c-muted); margin: 0; }

/* ─── Synopsis ────────────────────────────────────── */
.synopsis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: start;
}
.synopsis-text { grid-column: 1; grid-row: 1 / span 2; }
.synopsis-still { margin: 0; border-radius: var(--r-soft); overflow: hidden; box-shadow: var(--card-shadow); transition: transform .35s ease; }
.synopsis-still--a { grid-column: 2; grid-row: 1; transform: rotate(1.2deg); }
.synopsis-still--b { grid-column: 2; grid-row: 2; transform: rotate(-1.4deg) translateX(20px); }
.synopsis-still:hover { transform: rotate(0) scale(1.02); }
.synopsis-text p { font-size: 18px; line-height: 1.6; color: var(--c-ink-soft); margin: 0 0 16px; }
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--c-ink);
  border: 0;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(42,26,62,0.12);
}

@media (max-width: 820px) {
  .synopsis-grid { grid-template-columns: 1fr; }
  .synopsis-text { grid-column: 1; grid-row: auto; }
  .synopsis-still--a, .synopsis-still--b { grid-column: 1; grid-row: auto; transform: none; }
}

/* ─── Watch ───────────────────────────────────────── */
.watch-card { text-align: center; max-width: 880px; margin: 0 auto; }
.watch-status {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--c-ink-soft);
  margin: 0 0 24px;
}
.watch-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-soft);
  overflow: hidden;
  background: rgba(42,26,62,0.85);
  box-shadow: 0 16px 40px rgba(120, 80, 180, 0.22), inset 0 0 0 1px rgba(255,255,255,0.6);
}
.watch-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,212,232,0.5), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(200,216,244,0.55), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(230,196,240,0.5), transparent 60%),
    linear-gradient(135deg, #5b3d7a 0%, #3a2552 100%);
  color: #fff;
}
.watch-placeholder-glow {
  position: absolute; inset: -10%;
  background:
    radial-gradient(circle at 25% 35%, rgba(255,212,232,0.35), transparent 40%),
    radial-gradient(circle at 75% 65%, rgba(200,240,216,0.3), transparent 40%);
  filter: blur(40px);
  animation: hue-drift 30s ease-in-out infinite alternate;
}
.watch-play { position: relative; width: 84px; height: 84px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3)); }
.watch-placeholder-text {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 19px);
  letter-spacing: 0.01em;
  margin: 0;
  color: rgba(255,255,255,0.9);
  max-width: 36ch;
  text-align: center;
  line-height: 1.4;
}
.watch-form {
  position: relative;
  display: flex;
  gap: 8px;
  margin-top: 4px;
  width: min(360px, 80%);
}
.watch-form input {
  flex: 1;
  padding: 11px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--c-ink);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  outline: none;
  transition: background .2s ease, box-shadow .2s ease;
}
.watch-form input:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 212, 232, 0.45);
}
.watch-form input::placeholder { color: rgba(74, 58, 94, 0.5); }
.watch-form button {
  appearance: none;
  border: 0;
  padding: 11px 20px;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--c-ink);
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.95), transparent 55%),
    conic-gradient(from 200deg, var(--c-pink), var(--c-lilac), var(--c-blue), var(--c-mint), var(--c-yellow), var(--c-pink));
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(180,130,220,0.35), inset 0 0 0 1px rgba(255,255,255,0.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.watch-form button:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(180,130,220,0.45), inset 0 0 0 1px rgba(255,255,255,0.7); }
.watch-form button:active { transform: translateY(0); }
.watch-form button:disabled { opacity: 0.7; cursor: progress; }
.watch-error {
  position: relative;
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 220, 220, 0.95);
  letter-spacing: 0.02em;
}
@media (max-width: 540px) {
  .watch-frame { aspect-ratio: auto; }
  .watch-placeholder { position: relative; inset: auto; padding: 32px 18px; gap: 14px; min-height: 340px; }
  .watch-frame iframe { position: static; width: 100%; aspect-ratio: 16 / 9; height: auto; display: block; }
  .watch-play { width: 60px; height: 60px; }
  .watch-form { flex-direction: column; width: 100%; gap: 10px; max-width: 100%; }
  .watch-form input,
  .watch-form button { width: 100%; }
  .watch-card { padding: 22px 18px; }
}
.watch-note { font-size: 14px; color: var(--c-muted); margin: 20px 0 0; }
.watch-note a { color: var(--c-ink-soft); }

/* ─── Stills ──────────────────────────────────────── */
.stills .section-head { margin-bottom: 32px; }
.stills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.still {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--r-soft);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(120, 80, 180, 0.14);
  transition: transform .35s ease, box-shadow .35s ease;
}
.still img { aspect-ratio: 16 / 9; object-fit: cover; transition: transform .5s ease; }
.still:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(120, 80, 180, 0.22); }
.still:hover img { transform: scale(1.04); }

@media (max-width: 820px) { .stills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stills-grid { grid-template-columns: 1fr; } }

/* ─── Director ────────────────────────────────────── */
.director-card { display: grid; gap: 28px; }
.director-head { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.director-photo {
  margin: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 130px;
  position: relative;
  box-shadow:
    0 8px 24px rgba(120, 80, 180, 0.2),
    inset 0 0 0 3px rgba(255,255,255,0.8),
    0 0 0 6px rgba(255,255,255,0.4);
}
.director-photo::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 90deg, transparent, rgba(216,196,240,0.4), transparent, rgba(255,212,232,0.35), transparent);
  mix-blend-mode: screen;
  pointer-events: none;
}
.director-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.director-intro h2 { margin: 4px 0 6px; }
.director-where { color: var(--c-muted); font-size: 14px; margin: 0; letter-spacing: 0.02em; }
.director-bio p { color: var(--c-ink-soft); margin: 0 0 14px; }
.director-bio p:last-child { margin-bottom: 0; }
.director-statement {
  margin: 8px 0 0;
  padding: 24px 28px;
  border-left: 2px solid var(--c-lavender);
  background: linear-gradient(135deg, rgba(255,212,232,0.25), rgba(200,216,244,0.25));
  border-radius: 0 var(--r-soft) var(--r-soft) 0;
}
.director-statement p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.45;
  color: var(--c-ink);
  margin: 0 0 12px;
}
.director-statement p:last-of-type { margin-bottom: 14px; }
.director-statement footer {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ─── Credits ─────────────────────────────────────── */
.credits-card { max-width: 720px; margin: 0 auto; }
.credits-list { display: grid; gap: 0; margin: 12px 0 0; }
.credits-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(42,26,62,0.08);
}
.credits-list > div:last-child { border-bottom: 0; }
.credits-list dt {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.credits-list dd { margin: 0; color: var(--c-ink); font-size: 17px; }
@media (max-width: 540px) {
  .credits-list > div { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
}

/* ─── Footer ──────────────────────────────────────── */
.foot {
  text-align: center;
  padding: 60px var(--pad) 80px;
  color: var(--c-muted);
  font-size: 13px;
}
.foot p { margin: 4px 0; }
.foot a { color: var(--c-muted); border-bottom-color: rgba(110, 96, 130, 0.3); }
.foot a:hover { color: var(--c-ink); border-bottom-color: var(--c-ink); }
.plp-credit {
  display: inline-block;
  margin-top: 22px;
  border: 0 !important;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  opacity: 0.55;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 4px 14px rgba(120, 80, 180, 0.12);
}
.plp-credit:hover { opacity: 1; transform: translateY(-2px); }
.plp-credit img { width: 68px; height: 68px; display: block; }

/* ─── Lightbox ────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 35, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--r-soft);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  appearance: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
