:root {
  --ink: #0c0a16;
  --ink-2: #131024;
  --ink-3: #1b1533;
  --cream: #f6ecdd;
  --mut: #b4a7cb;
  --pink: #ff6fb7;
  --pink-2: #ff2e8f;
  --teal: #3ae6d0;
  --orange: #ffb03a;
  --lav: #9d8be0;
  --sun-a: #ff8e6e;
  --line: rgba(255, 111, 183, 0.22);
  --disp: "Anton", "Arial Narrow", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --script: "Yellowtail", cursive;
  --pad: clamp(1rem, 4vw, 4rem);
  --rad: 18px;
  --glow-p: 0 0 24px rgba(255, 46, 143, 0.45);
  --glow-t: 0 0 24px rgba(58, 230, 208, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

::selection { background: var(--pink-2); color: #fff; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--pink-2); color: #fff; padding: 0.6rem 1.2rem; border-radius: 0 0 10px 0;
  font-weight: 800; text-decoration: none;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.028) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay; opacity: 0.5;
}

.ticker {
  background: linear-gradient(90deg, var(--lav), var(--pink) 55%, var(--sun-a));
  color: #24102e; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.72rem; overflow: hidden; white-space: nowrap; padding: 0.55rem 0;
}
.ticker-track { display: inline-flex; gap: 3rem; padding-right: 3rem; animation: tick 26s linear infinite; }
.ticker span { display: inline-flex; gap: 3rem; }
@keyframes tick { to { transform: translateX(-50%); } }

header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 1.4rem;
  padding: 0.8rem var(--pad);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
header.site.scrolled {
  background: rgba(12, 10, 22, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { height: 30px; width: auto; }
.brand .word { font-family: var(--disp); letter-spacing: 0.14em; font-size: 0.95rem; color: var(--cream); }

nav.main { margin-left: auto; display: flex; gap: clamp(0.8rem, 2vw, 1.8rem); }
nav.main a {
  text-decoration: none; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mut); position: relative; padding: 0.4rem 0.1rem;
  transition: color 0.25s;
}
nav.main a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink-2), var(--teal)); transition: right 0.3s ease;
}
nav.main a:hover, nav.main a:focus-visible { color: var(--cream); }
nav.main a:hover::after, nav.main a:focus-visible::after { right: 0; }

.chip {
  font-variant-numeric: tabular-nums; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--teal); border: 1px solid rgba(58, 230, 208, 0.4); border-radius: 999px;
  padding: 0.42rem 0.9rem; background: rgba(58, 230, 208, 0.08); white-space: nowrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; cursor: pointer;
  font-family: var(--body); font-weight: 800; letter-spacing: 0.06em; font-size: 0.95rem;
  border-radius: 999px; border: none; padding: 0.85rem 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-pink { background: linear-gradient(120deg, var(--pink), var(--pink-2)); color: #fff; box-shadow: 0 8px 30px rgba(255, 46, 143, 0.35); }
.btn-pink:hover, .btn-pink:focus-visible { transform: translateY(-2px); box-shadow: var(--glow-p), 0 14px 34px rgba(255, 46, 143, 0.4); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--line); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--pink); box-shadow: var(--glow-p); transform: translateY(-2px); }
.btn-teal { background: linear-gradient(120deg, var(--teal), #19b9a6); color: #062a26; }
.btn-teal:hover, .btn-teal:focus-visible { transform: translateY(-2px); box-shadow: var(--glow-t); }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: -6%; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.1) translateY(-2%); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 70% at 50% 115%, rgba(12, 10, 22, 0.94), transparent 60%),
    linear-gradient(to bottom, rgba(12, 10, 22, 0.55), transparent 30%, transparent 62%, rgba(12, 10, 22, 0.92));
}
.palm { position: absolute; z-index: -1; opacity: 0.5; filter: drop-shadow(0 0 18px rgba(157, 139, 224, 0.5)); pointer-events: none; }
.palm.left { left: -40px; top: 12%; width: min(24vw, 300px); transform: rotate(8deg); }
.palm.right { right: -40px; top: 20%; width: min(24vw, 300px); transform: rotate(-6deg) scaleX(-1); }

.hero-inner { width: 100%; padding: 0 var(--pad) clamp(2rem, 6vh, 4.5rem); display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1.6rem 3rem; }
.hero-kicker { font-family: var(--script); color: var(--teal); font-size: clamp(1.4rem, 3vw, 2.2rem); text-shadow: 0 0 18px rgba(58, 230, 208, 0.55); }
.hero-date { font-family: var(--disp); font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: 0.02em; text-transform: uppercase; }
.hero-date em { font-style: normal; color: var(--pink); text-shadow: 0 0 26px rgba(255, 46, 143, 0.6); }
.hero-sub { color: var(--mut); max-width: 46ch; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-plat { display: flex; gap: 0.8rem; align-items: center; margin-left: auto; }
.hero-plat img { height: 30px; width: auto; opacity: 0.9; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  color: var(--pink); font-size: 1.4rem; animation: cue 1.8s ease-in-out infinite; text-decoration: none;
}
@keyframes cue { 0%, 100% { transform: translate(-50%, 0); opacity: 0.9; } 50% { transform: translate(-50%, 8px); opacity: 0.4; } }

section { position: relative; padding: clamp(4rem, 10vh, 7.5rem) var(--pad); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--teal);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: linear-gradient(90deg, var(--pink-2), var(--teal)); }

h2.title {
  font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(2.4rem, 6.4vw, 5rem); line-height: 1.02; margin: 0.7rem 0 1rem;
}
h2.title .grad {
  background: linear-gradient(100deg, var(--pink) 10%, var(--orange) 50%, var(--teal) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { color: var(--mut); max-width: 62ch; font-size: clamp(1rem, 1.4vw, 1.2rem); }

.countdown-sec { background: radial-gradient(90% 120% at 50% 0%, var(--ink-3), var(--ink) 70%); text-align: center; overflow: hidden; }
.countdown-sec::before {
  content: ""; position: absolute; inset: -40%;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(255, 46, 143, 0.09) 78%, transparent 86%, rgba(58, 230, 208, 0.08) 93%, transparent);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(1turn); } }
.cd { display: flex; justify-content: center; gap: clamp(0.6rem, 3vw, 2.4rem); margin-top: 2.4rem; position: relative; }
.cd-cell { min-width: clamp(70px, 12vw, 150px); }
.cd-num {
  font-family: var(--disp); font-size: clamp(2.6rem, 8vw, 6.4rem); line-height: 1;
  color: var(--cream); font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(255, 46, 143, 0.35);
  border-top: 1px solid var(--line); padding-top: 0.8rem; position: relative;
}
.cd-num.tick { animation: flip 0.5s ease; }
@keyframes flip { 0% { transform: translateY(-12%); opacity: 0; filter: blur(3px); } 100% { transform: translateY(0); opacity: 1; filter: blur(0); } }
.cd-label { letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.72rem; font-weight: 800; color: var(--mut); margin-top: 0.5rem; }
.cd-sep { font-family: var(--disp); font-size: clamp(2rem, 6vw, 4.6rem); color: var(--pink); align-self: flex-start; padding-top: 0.9rem; animation: cue 1s ease-in-out infinite; }
.cd-note { margin-top: 1.6rem; color: var(--mut); font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; }

.banner {
  border-radius: var(--rad); overflow: hidden; position: relative; isolation: isolate;
  min-height: clamp(340px, 56vw, 560px); display: flex; align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.banner > img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 1.2s ease; }
.banner:hover > img.bg { transform: scale(1.04); }
.banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(78deg, rgba(12, 10, 22, 0.88) 18%, rgba(12, 10, 22, 0.25) 55%, transparent 80%); }
.banner-body { padding: clamp(1.6rem, 5vw, 4rem); max-width: 620px; }
.banner-body h3 { font-family: var(--disp); text-transform: uppercase; font-size: clamp(1.8rem, 4.4vw, 3.4rem); line-height: 1.05; margin: 0.6rem 0 0.9rem; }
.banner-body .script { font-family: var(--script); color: var(--orange); font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
.meta-row { display: flex; gap: 0.7rem; flex-wrap: wrap; margin: 1rem 0 1.4rem; }
.tag {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.45rem 0.85rem; border-radius: 999px; border: 1px solid var(--line); color: var(--cream);
  background: rgba(255, 111, 183, 0.1);
}
.tag.teal { border-color: rgba(58, 230, 208, 0.4); background: rgba(58, 230, 208, 0.08); color: var(--teal); }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: 3rem; }
.pcard {
  position: relative; border-radius: var(--rad); overflow: hidden; background: var(--ink-2);
  border: 1px solid rgba(157, 139, 224, 0.16);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.pcard:hover, .pcard:focus-within { transform: translateY(-6px); border-color: var(--pink); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), var(--glow-p); }
.pcard .ph { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.pcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.pcard:hover .ph img { transform: scale(1.06); }
.pcard .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-2), transparent 45%); }
.pcard-body { padding: 1.4rem 1.5rem 1.7rem; }
.pcard-body .name { font-family: var(--disp); font-size: clamp(1.4rem, 2.6vw, 2rem); text-transform: uppercase; letter-spacing: 0.03em; }
.pcard-body .role { font-family: var(--script); color: var(--teal); font-size: 1.15rem; }
.pcard-body p { color: var(--mut); font-size: 0.95rem; margin-top: 0.7rem; }
.quote {
  margin-top: 1rem; padding-left: 0.9rem; border-left: 3px solid var(--pink-2);
  color: var(--cream); font-weight: 600; font-style: italic; font-size: 0.95rem;
}

.wide-still { border-radius: var(--rad); overflow: hidden; position: relative; margin-top: clamp(2rem, 5vw, 4rem); aspect-ratio: 21 / 9; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.wide-still img { width: 100%; height: 100%; object-fit: cover; }
.wide-still figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2rem clamp(1.2rem, 4vw, 3rem) 1.6rem;
  background: linear-gradient(to top, rgba(12, 10, 22, 0.92), transparent);
  font-family: var(--script); font-size: clamp(1.2rem, 2.6vw, 1.9rem); color: var(--orange);
}

.world-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-top: 3rem; }
.wcard { position: relative; border-radius: var(--rad); overflow: hidden; aspect-ratio: 4 / 5; isolation: isolate; border: 1px solid rgba(157, 139, 224, 0.14); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.wcard:hover, .wcard:focus-within { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), var(--glow-t); }
.wcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.wcard:hover img { transform: scale(1.08); }
.wcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 10, 22, 0.94) 8%, rgba(12, 10, 22, 0.25) 45%, transparent 70%); }
.wcard-body { position: absolute; inset: auto 0 0 0; padding: 1.3rem 1.3rem 1.2rem; z-index: 1; }
.wcard-body .place-script { font-family: var(--script); color: var(--teal); font-size: 1.25rem; text-shadow: 0 0 14px rgba(58, 230, 208, 0.5); }
.wcard-body h3 { font-family: var(--disp); text-transform: uppercase; font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: 0.03em; }
.wcard-body p { color: var(--mut); font-size: 0.88rem; margin-top: 0.35rem; }

.cast-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-top: 3rem; }

.media-sec { background: linear-gradient(to bottom, var(--ink), var(--ink-2) 30%, var(--ink)); }
.player {
  margin-top: 3rem; border-radius: var(--rad); overflow: hidden; position: relative;
  border: 1px solid var(--line); background: #000; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 9;
}
.player video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.player .bigplay {
  position: absolute; inset: 0; display: grid; place-items: center; border: none; cursor: pointer;
  background: linear-gradient(to top, rgba(12, 10, 22, 0.7), rgba(12, 10, 22, 0.15) 50%, rgba(12, 10, 22, 0.35));
  transition: opacity 0.4s ease; color: #fff;
}
.player .bigplay .disc {
  width: clamp(70px, 9vw, 110px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.94); color: #14102a; font-size: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.18), var(--glow-p); transition: transform 0.3s ease;
}
.player .bigplay:hover .disc { transform: scale(1.08); }
.player.playing .bigplay { opacity: 0; pointer-events: none; }
.player-tabs { display: flex; gap: 0.7rem; margin-top: 1.2rem; flex-wrap: wrap; }
.ptab {
  cursor: pointer; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem;
  color: var(--mut); background: var(--ink-2); border: 1px solid rgba(157, 139, 224, 0.2);
  border-radius: 999px; padding: 0.6rem 1.2rem; transition: all 0.3s ease;
}
.ptab[aria-selected="true"] { color: #14102a; background: linear-gradient(120deg, var(--pink), var(--orange)); border-color: transparent; box-shadow: var(--glow-p); }
.ptab:hover { color: var(--cream); }
.ptab[aria-selected="true"]:hover { color: #14102a; }

.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.9rem; margin-top: 3rem; grid-auto-flow: dense; }
.gitem {
  position: relative; border-radius: 12px; overflow: hidden; cursor: zoom-in; border: 1px solid rgba(157, 139, 224, 0.14);
  background: var(--ink-3); padding: 0; transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gitem:hover, .gitem:focus-visible { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5), var(--glow-p); z-index: 2; }
.gitem img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease, transform 0.8s ease; }
.gitem img.loaded { opacity: 1; }
.gitem:hover img { transform: scale(1.05); }
.gitem .gcap {
  position: absolute; inset: auto 0 0 0; padding: 0.7rem 0.8rem 0.6rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream);
  background: linear-gradient(to top, rgba(12, 10, 22, 0.9), transparent); opacity: 0; transition: opacity 0.3s;
  text-align: left;
}
.gitem:hover .gcap, .gitem:focus-visible .gcap { opacity: 1; }
.gitem.w2 { grid-column: span 2; }
.gitem.w3 { grid-column: span 3; }
.gitem.h2 { grid-row: span 2; }
.gitem .ph-bg { position: absolute; inset: 0; background: linear-gradient(120deg, var(--ink-3), #241a44); animation: shimmer 1.6s linear infinite; background-size: 200% 100%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.lightbox {
  position: fixed; inset: 0; z-index: 150; display: none; align-items: center; justify-content: center;
  background: rgba(8, 6, 14, 0.94); backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox figure { max-width: min(92vw, 1400px); text-align: center; }
.lightbox img { max-height: 78vh; max-width: 92vw; margin: 0 auto; border-radius: 10px; box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8); }
.lightbox figcaption { margin-top: 1rem; color: var(--mut); font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; }
.lb-btn {
  position: absolute; background: rgba(255, 255, 255, 0.08); color: var(--cream); border: 1px solid var(--line);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; transition: all 0.25s;
  display: grid; place-items: center;
}
.lb-btn:hover { background: var(--pink-2); box-shadow: var(--glow-p); }
.lb-prev { left: clamp(0.6rem, 3vw, 2.5rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(0.6rem, 3vw, 2.5rem); top: 50%; transform: translateY(-50%); }
.lb-close { top: clamp(0.6rem, 3vw, 2rem); right: clamp(0.6rem, 3vw, 2rem); }

.editions { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.2rem, 3vw, 2.2rem); margin-top: 3rem; align-items: stretch; }
.ecard { border-radius: var(--rad); border: 1px solid rgba(157, 139, 224, 0.18); background: var(--ink-2); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.ecard:hover { transform: translateY(-6px); box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55); }
.ecard.ultimate { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink-2), 0 20px 60px rgba(255, 46, 143, 0.18); position: relative; }
.ecard.ultimate::before {
  content: "The complete experience"; position: absolute; top: 1.1rem; right: -0.4rem; z-index: 2;
  background: linear-gradient(120deg, var(--pink-2), var(--orange)); color: #fff; font-weight: 800;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 4px 0 0 4px;
}
.ecard .eimg { aspect-ratio: 16 / 8; overflow: hidden; }
.ecard .eimg img { width: 100%; height: 100%; object-fit: cover; }
.ecard-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.ecard-body h3 { font-family: var(--disp); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.ecard-body ul { list-style: none; display: grid; gap: 0.55rem; color: var(--mut); font-size: 0.94rem; }
.ecard-body li { display: flex; gap: 0.6rem; align-items: baseline; }
.ecard-body li::before { content: "◆"; color: var(--teal); font-size: 0.65rem; }
.ecard .btn { margin-top: auto; justify-content: center; }

.bonus-strip { margin-top: clamp(1.6rem, 4vw, 2.6rem); }

.close-sec { min-height: 92svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; isolation: isolate; }
.close-sec img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.close-sec::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 90% at 50% 60%, rgba(12, 10, 22, 0.55), rgba(12, 10, 22, 0.92)); }
.close-inner { padding: 4rem var(--pad); }
.close-logo { width: clamp(180px, 30vw, 380px); margin: 0 auto 1.4rem; filter: drop-shadow(0 0 34px rgba(255, 46, 143, 0.55)); }
.close-script { font-family: var(--script); color: var(--teal); font-size: clamp(1.5rem, 3.4vw, 2.6rem); text-shadow: 0 0 22px rgba(58, 230, 208, 0.5); }
.close-date { font-family: var(--disp); font-size: clamp(2rem, 6vw, 4.4rem); text-transform: uppercase; margin: 0.6rem 0 1.6rem; }
.close-date em { font-style: normal; color: var(--pink); }

footer.site {
  border-top: 1px solid rgba(157, 139, 224, 0.16); padding: 3rem var(--pad) 2.4rem;
  color: var(--mut); font-size: 0.82rem; background: var(--ink);
}
.foot-grid { display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; justify-content: space-between; }
.foot-grid img { height: 34px; width: auto; opacity: 0.85; }
.foot-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foot-links a { color: var(--mut); text-decoration: none; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; }
.foot-links a:hover { color: var(--pink); }
.foot-note { max-width: 72ch; margin-top: 1.4rem; line-height: 1.7; }

.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.12s; }
.rv-d2 { transition-delay: 0.24s; }
.rv-d3 { transition-delay: 0.36s; }

@media (max-width: 1020px) {
  .world-grid, .cast-row { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .editions { grid-template-columns: 1fr; }
  nav.main { display: none; }
}
@media (max-width: 640px) {
  .world-grid, .cast-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gitem.w3 { grid-column: span 2; }
  .duo { grid-template-columns: 1fr; }
  .hero-plat { margin-left: 0; }
  .chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.15s !important; }
  .rv { opacity: 1; transform: none; }
  .hero-media img { animation: none; }
}
