/* =====================================================================
   alice in operaland — Midnight Luxe
   A single-page video portfolio. No build step, no dependencies.
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  --canvas:    #0D0D0D;   /* deep velvet black */
  --charcoal:  #121212;   /* rich charcoal     */
  --ivory:     #FDFBF7;   /* warm off-white    */
  --gold:      #C5A880;   /* muted satin gold  */
  --gold-soft: rgba(197, 168, 128, 0.16);
  --muted:     rgba(253, 251, 247, 0.56);
  --hairline:  rgba(253, 251, 247, 0.10);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: 1240px;
  --nav-h: 76px;
}

/* ----------------------------- Reset ------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* Slim, quiet scrollbar */
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

.shell { width: min(var(--shell), 100% - 48px); margin-inline: auto; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  background: var(--gold); color: var(--canvas);
  padding: 10px 18px; border-radius: 2px; font-size: 0.82rem;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 14px; }

:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

/* Shared section eyebrow + title */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-left: 2px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 26px; height: 1px; margin-right: 16px; vertical-align: middle;
  background: var(--gold); opacity: 0.7;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

/* ============================== NAV ============================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--hairline);
}
.nav__inner {
  width: min(var(--shell), 100% - 48px);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--ivory);
  transition: color 0.4s var(--ease);
}
.nav__brand:hover { color: var(--gold); }

.nav__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 11px 24px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  transition: border-color 0.45s var(--ease), color 0.45s var(--ease), background 0.45s var(--ease);
}
.nav__cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

/* ============================= HERO ============================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.5);
}

/* The CSS "stage" — looks cinematic with zero assets. */
.hero__stage { position: absolute; inset: 0; z-index: -1; background: var(--canvas); }
.hero__spot {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  will-change: transform, opacity;
}
.hero__spot--warm {
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  top: -22%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(197,168,128,0.30), rgba(197,168,128,0.05) 45%, transparent 65%);
  animation: breathe 9s var(--ease) infinite alternate;
}
.hero__spot--cool {
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  bottom: -26%; left: 18%;
  background: radial-gradient(circle, rgba(120,140,180,0.16), transparent 62%);
  animation: breathe 11s var(--ease) infinite alternate-reverse;
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 38%, rgba(0,0,0,0.55) 100%);
}
@keyframes breathe {
  from { transform: translateX(-50%) scale(1);    opacity: 0.85; }
  to   { transform: translateX(-50%) scale(1.12); opacity: 1; }
}
.hero__spot--cool { animation-name: breathe-2; }
@keyframes breathe-2 {
  from { transform: scale(1);    opacity: 0.6; }
  to   { transform: scale(1.15); opacity: 0.95; }
}

.hero__content { text-align: center; padding: 0 24px; z-index: 1; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 9.5vw, 8.2rem);
  line-height: 1;
  letter-spacing: 0.18em;
  margin-left: 0.18em; /* optical balance for tracking */
}
.hero__subtitle {
  margin-top: 1.8rem;
  font-size: clamp(0.7rem, 1.5vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 0.9em; justify-content: center;
}
.hero__subtitle .dot { color: var(--gold); }

/* Maria Callas epigraph under the hero subtitle */
.hero__quote {
  margin: clamp(1.8rem, 3.5vw, 2.6rem) auto 0;
  max-width: 34ch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0 12px;
}
.hero__quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(253, 251, 247, 0.74);
}
.hero__quote figcaption {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__quote.overture { animation-name: overture-soft; }

.hero__anchor {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  z-index: 1;
}
.hero__anchor-label {
  font-size: 0.64rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted); transition: color 0.4s var(--ease);
}
.hero__anchor-line {
  width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  transform-origin: top;
  animation: drift 2.4s var(--ease) infinite;
}
.hero__anchor:hover .hero__anchor-label { color: var(--gold); }
@keyframes drift {
  0%   { transform: scaleY(0.3); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* Entrance — "the overture" */
.overture { opacity: 0; animation: overture 1.5s var(--ease) forwards; }
.overture--delay  { animation-delay: 0.5s; }
.overture--delay2 { animation-delay: 1s; }
@keyframes overture {
  from { opacity: 0; letter-spacing: 0.04em; filter: blur(10px); transform: translateY(8px); }
  to   { opacity: 1; filter: blur(0);        transform: translateY(0); }
}
/* keep subtitle/anchor from inheriting the title's wide end-tracking */
.hero__subtitle.overture { animation-name: overture-soft; }
.hero__anchor.overture   { animation-name: overture-soft; }
@keyframes overture-soft {
  from { opacity: 0; filter: blur(8px); transform: translateY(10px); }
  to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
}

/* =========================== STATEMENT =========================== */
.statement {
  padding: clamp(5rem, 11vw, 10rem) 0;
  position: relative;
}
.statement__inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.statement__lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.3vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.005em;
  text-align: left;
}
.statement__lead em {
  font-style: italic;
  color: var(--gold);
}
.statement__media { margin: 0; }
.statement__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 50px 100px -45px rgba(0, 0, 0, 0.85);
}

/* ============================= VAULT ============================= */
.vault { padding-bottom: clamp(6rem, 14vw, 12rem); }
.section-head { margin-bottom: clamp(2.4rem, 5vw, 4rem); }

.vault__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2vw, 30px);
}

.card {
  --tint: 0.55;
  position: relative;
  display: block;
  text-align: left;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
/* Make the first card a full-width feature on wide screens */
.vault__grid .card:first-child { grid-column: 1 / -1; aspect-ratio: 21 / 9; }

.card__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  /* layered "stage poster" used when no real thumbnail is supplied */
  background-color: var(--c1, #161616);
  background-image:
    radial-gradient(120% 90% at 70% 8%, var(--glow, rgba(197,168,128,0.22)), transparent 55%),
    radial-gradient(80% 80% at 15% 110%, rgba(255,255,255,0.05), transparent 60%),
    linear-gradient(135deg, var(--c1, #1a1410) 0%, var(--c2, #0c0c0c) 70%);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.card__grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.card__tint {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.45) 100%);
  opacity: var(--tint);
  transition: opacity 0.7s var(--ease);
}

.card__meta {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(20px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 8px;
}
.card__cat {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  max-width: 22ch;
}
.card__runtime {
  font-size: 0.74rem; color: var(--muted); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.card__runtime::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}

/* Play button — the spotlight warms up */
.card__play {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 74px; height: 74px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.78);
  display: grid; place-items: center;
  border: 1px solid rgba(253,251,247,0.5);
  background: rgba(13,13,13,0.25);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.card__play::after {
  content: ""; display: block;
  width: 0; height: 0; margin-left: 4px;
  border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--ivory);
  transition: border-color 0.6s var(--ease);
}
.card__glow {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  width: 280px; height: 280px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  background: radial-gradient(circle, rgba(197,168,128,0.34), transparent 60%);
  opacity: 0; filter: blur(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}

/* Hover — "spotlight warming up" */
@media (hover: hover) {
  .card:hover { transform: scale(1.01); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8); }
  .card:hover .card__bg { transform: scale(1.06); filter: brightness(1.08); }
  .card:hover .card__tint { opacity: 0.22; }
  .card:hover .card__play { opacity: 1; transform: translate(-50%, -50%) scale(1); border-color: var(--gold); }
  .card:hover .card__play::after { border-left-color: var(--gold); }
  .card:hover .card__glow { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.card:focus-visible .card__play { opacity: 1; transform: translate(-50%, -50%) scale(1); border-color: var(--gold); }

/* ============================ BOOKING ============================ */
.booking { padding: clamp(5rem, 12vw, 10rem) 0; border-top: 1px solid var(--hairline); }
.booking__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.booking__sub {
  margin-top: 1.8rem;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 38ch;
  margin-inline: auto;
}
.booking__email {
  display: inline-block;
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.01em;
  color: var(--ivory);
  position: relative;
}
.booking__email::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.booking__email:hover { color: var(--gold); }
.booking__email:hover::after { transform: scaleX(1); }

/* Form — editorial underline inputs */
.booking__form { display: flex; flex-direction: column; gap: 34px; padding-top: 6px; }
.field { position: relative; }
.field input,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 12px 2px 12px 0;
  letter-spacing: 0.02em;
}
.field select { color: var(--ivory); cursor: pointer; }
.field select option { background: var(--charcoal); color: var(--ivory); }
.field input:focus,
.field select:focus { outline: none; }

.field label {
  position: absolute; left: 2px; top: 12px;
  color: var(--muted); font-size: 1rem; letter-spacing: 0.06em;
  pointer-events: none;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease), font-size 0.4s var(--ease);
  transform-origin: left;
}
/* float label up on focus / filled */
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  transform: translateY(-26px) scale(0.74);
  color: var(--gold);
}
.field__line {
  position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.field input:focus ~ .field__line,
.field select:focus ~ .field__line { transform: scaleX(1); }

.btn-inquire {
  align-self: flex-start;
  margin-top: 8px;
  padding: 15px 40px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color 0.5s var(--ease);
}
.btn-inquire span { position: relative; z-index: 1; }
.btn-inquire::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.btn-inquire:hover { color: var(--canvas); }
.btn-inquire:hover::before { transform: scaleX(1); }
.booking__note { font-size: 0.84rem; color: var(--gold); min-height: 1.2em; }

/* ============================ FOOTER ============================ */
.footer { padding: 3rem 0; border-top: 1px solid var(--hairline); }
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  align-items: center; justify-content: space-between;
}
.footer__brand { font-family: var(--serif); letter-spacing: 0.2em; font-size: 1.05rem; }
.footer__links { display: flex; gap: 28px; }
.footer__links a {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  transition: color 0.4s var(--ease);
}
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }

/* =========================== THEATER ============================ */
.theater {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  padding: clamp(20px, 5vw, 64px);
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.theater[hidden] { display: none; }
.theater.is-open { opacity: 1; }

.theater__close {
  position: absolute; top: clamp(16px, 3vw, 34px); right: clamp(16px, 3vw, 40px);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.8rem; line-height: 1; color: var(--muted);
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.theater__close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }

.theater__stage {
  width: min(1120px, 100%);
  transform: scale(0.96); opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}
.theater.is-open .theater__stage { transform: scale(1); opacity: 1; }

.theater__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 50px 120px -40px rgba(0,0,0,0.9);
}
.theater__frame iframe,
.theater__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Elegant placeholder shown until a real video id is wired in */
.theater__placeholder {
  position: absolute; inset: 0;
  display: grid; place-content: center; place-items: center; gap: 18px; text-align: center;
  padding: 40px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(197,168,128,0.18), transparent 55%),
    linear-gradient(160deg, #161310, #0b0b0b);
}
.theater__placeholder .ph-cat {
  font-size: 0.64rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold);
}
.theater__placeholder .ph-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1.1;
  max-width: 20ch;
}
.theater__placeholder .ph-note { font-size: 0.86rem; color: var(--muted); max-width: 34ch; }
.theater__placeholder .ph-note a { color: var(--ivory); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

.theater__caption {
  margin-top: 22px; text-align: center;
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.02em; color: var(--muted);
}

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ========================== RESPONSIVE ========================== */
@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  .nav__brand { font-size: 1.12rem; letter-spacing: 0.18em; }
  .nav__cta { padding: 9px 16px; letter-spacing: 0.16em; }

  .statement__inner { grid-template-columns: 1fr; gap: 44px; }
  .statement__media { max-width: 440px; margin-inline: auto; }

  .booking__inner { grid-template-columns: 1fr; gap: 56px; }

  /* Buttery thumb-swipe carousel on mobile */
  .vault__grid {
    grid-template-columns: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 24px;
    margin-inline: calc(50% - 50vw);
    padding: 0 24px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vault__grid::-webkit-scrollbar { display: none; }
  .vault__grid .card,
  .vault__grid .card:first-child {
    flex: 0 0 84%;
    scroll-snap-align: center;
    aspect-ratio: 4 / 5;
  }
  /* On touch, reveal play + meta without hover */
  .card__play { opacity: 0.92; transform: translate(-50%, -50%) scale(0.92); }
  .card__tint { opacity: 0.4; }
}

@media (max-width: 520px) {
  .shell { width: calc(100% - 36px); }
  .hero__subtitle { gap: 0.5em 0.7em; }
  .nav__brand { font-size: 0.9rem; letter-spacing: 0.08em; white-space: nowrap; }
  .nav__cta { padding: 8px 13px; font-size: 0.62rem; letter-spacing: 0.12em; }
}

/* ====================== REDUCED MOTION ====================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .overture { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   EVENTS — public pages (listing, detail, success) + homepage strip
   ===================================================================== */

/* --- nav right cluster --- */
.nav__right { display: flex; align-items: center; gap: clamp(18px, 3vw, 36px); }
.nav__link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); transition: color 0.4s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold); }

/* --- cards as links + photo layer --- */
a.card { text-decoration: none; color: inherit; display: block; }
.card__photo {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: saturate(0.85) brightness(0.8);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
@media (hover: hover) {
  .card:hover .card__photo { transform: scale(1.06); filter: saturate(1) brightness(0.95); }
}
.card__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.chip {
  display: inline-block; padding: 4px 12px; border: 1px solid var(--hairline); border-radius: 99px;
  font-size: 0.64rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.chip--gold { border-color: rgba(197, 168, 128, 0.5); color: var(--gold); }
.chip--soldout { border-color: rgba(255, 120, 120, 0.4); color: #e0a3a3; }

/* --- page head (events listing) --- */
.page-head { padding: calc(var(--nav-h) + clamp(3rem, 9vw, 6.5rem)) 0 clamp(2.2rem, 5vw, 4rem); }
.events-empty { padding: 3rem 0 6rem; color: var(--muted); font-size: 1.02rem; line-height: 2; }
.events-empty a { color: var(--ivory); border-bottom: 1px solid var(--gold); }
.events-empty a:hover { color: var(--gold); }
.vault--listing { padding-bottom: clamp(6rem, 14vw, 10rem); }

/* --- homepage upcoming strip --- */
.upcoming { padding-bottom: clamp(5rem, 12vw, 9rem); }
.upcoming__all { margin-top: 2rem; }
.upcoming__all a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); transition: color 0.4s var(--ease);
}
.upcoming__all a:hover { color: var(--gold); }

/* --- event detail --- */
.event-page { padding: calc(var(--nav-h) + clamp(2.4rem, 7vw, 5rem)) 0 clamp(5rem, 11vw, 8rem); }
.event-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5.5vw, 80px); align-items: start; }
.event-hero__media {
  aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden;
  background-color: #161310;
  background-image:
    radial-gradient(120% 90% at 70% 8%, rgba(197, 168, 128, 0.22), transparent 55%),
    linear-gradient(135deg, #1a1410 0%, #0c0c0c 70%);
  background-size: cover; background-position: center;
  box-shadow: 0 50px 100px -45px rgba(0, 0, 0, 0.85);
}
.event-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.08; letter-spacing: 0.01em;
  margin: 0.6rem 0 1.6rem;
}
.event-meta { display: grid; grid-template-columns: max-content 1fr; gap: 10px 22px; margin: 0; }
.event-meta dt {
  font-size: 0.64rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); padding-top: 4px;
}
.event-meta dd { margin: 0; font-size: 1rem; color: var(--ivory); }
.event-meta dd .sub { display: block; color: var(--muted); font-size: 0.9rem; }

.ev-note { margin-top: 20px; font-size: 0.9rem; color: var(--gold); }

.booking-box {
  margin-top: 30px; padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--hairline); border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}
.booking-box__title {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}
.booking-box .field { margin-bottom: 26px; }
.booking-box select.bb-qty {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--hairline);
  color: var(--ivory); font-family: var(--sans); font-size: 1rem; font-weight: 300;
  padding: 12px 2px 12px 0; cursor: pointer;
}
.booking-box select.bb-qty option { background: var(--charcoal); color: var(--ivory); }
.bb-label {
  display: block; font-size: 0.64rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.bb-status { min-height: 1.3em; margin-top: 14px; font-size: 0.88rem; color: var(--gold); }
.bb-fineprint { margin-top: 16px; font-size: 0.78rem; color: var(--muted); }
.bb-success { text-align: center; padding: 12px 0 4px; }
.bb-success .big { font-family: var(--serif); font-size: 1.9rem; margin-bottom: 10px; }
.bb-success p { color: var(--muted); font-size: 0.95rem; }

.hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

.event-desc {
  max-width: 68ch; margin-top: clamp(2.4rem, 6vw, 4.5rem);
  color: rgba(253, 251, 247, 0.78); font-size: 1.05rem; line-height: 1.9; white-space: pre-line;
}

/* --- success page --- */
.success-page { min-height: 72svh; padding-top: calc(var(--nav-h) + clamp(3rem, 10vw, 7rem)); text-align: center; }
.success-page .big {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: 0.06em;
}
.success-page p { color: var(--muted); margin-top: 1.2rem; }
.success-page .detail { color: var(--ivory); font-size: 1.05rem; }
.success-page a.link { color: var(--ivory); border-bottom: 1px solid var(--gold); }
.success-page a.link:hover { color: var(--gold); }

/* --- responsive --- */
@media (max-width: 860px) {
  .event-hero { grid-template-columns: 1fr; gap: 34px; }
  .event-hero__media { max-width: 480px; }
  .event-meta { grid-template-columns: 1fr; gap: 2px; }
  .event-meta dt { margin-top: 14px; }
}

/* =====================================================================
   WHIMSY — Epigraph + Worlds (Series · Installations · Pairings)
   A "world-builder" gallery layer. Sleek + elegant, with a light dreamlike
   touch: italic serif, an amethyst keyline, a small asterism between worlds.
   ===================================================================== */
:root {
  --plum:      #8A6A93;   /* dreamlike amethyst — used sparingly */
  --plum-soft: rgba(138, 106, 147, 0.55);
}

/* ---- Epigraph (the White Queen's line) ---- */
.epigraph {
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(1rem, 3vw, 2.5rem);
  text-align: center;
}
.epigraph__line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 1.32;
  letter-spacing: 0.01em;
  max-width: 22ch;
  margin-inline: auto;
  color: var(--ivory);
}
.epigraph__cite {
  margin-top: 1.4rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- "Three ways to work together" divider heading ---- */
/* The three-ways zone sits on a subtly deeper black than the statement/quote
   above it, feathered in at the top — so the heading reads as a new section,
   not a continuation of the epigraph. Mirrors the hero→statement tonal shift. */
.worlds-lead {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(0.5rem, 2vw, 1rem);
  text-align: center;
  background: linear-gradient(to bottom, var(--canvas) 0%, #070707 42%);
}
.worlds { background: #070707; }
/* Match the section eyebrows (Series etc.) — gold, uppercase, tracked. */
.worlds-lead__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Worlds sections ---- */
.worlds { padding: clamp(3rem, 7vw, 6rem) 0; }
.worlds .section-head { max-width: 46ch; }
.worlds__intro {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.worlds__grid {
  display: grid;
  /* auto-fill (not auto-fit) so a lone card keeps its size instead of
     stretching across the whole row. */
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(2.4rem, 5vw, 4rem);
}

/* Portrait, display-only cards (reuse the .card treatment, no play button) */
.worlds .card { aspect-ratio: 4 / 5; cursor: default; }

/* Stronger scrim so captions stay legible over lighter / lower-res photos. */
.worlds .card__tint {
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.80) 24%,
    rgba(0, 0, 0, 0.40) 52%,
    rgba(0, 0, 0, 0.12) 100%);
  opacity: 0.92;
}
@media (hover: hover) {
  .worlds .card:hover .card__tint { opacity: 0.72; } /* keep text readable on hover too */
}
.card__line {
  margin-top: 2px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(253, 251, 247, 0.74);
  max-width: 32ch;
}
.card__line em { font-style: italic; color: var(--gold); }

/* The amethyst keyline — a whisper of Wonderland on hover */
@media (hover: hover) {
  .worlds .card:hover {
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8),
                inset 0 0 0 1px var(--plum-soft);
  }
}

/* Small asterism between the worlds */
.flourish {
  text-align: center;
  color: var(--plum);
  font-size: 1.05rem;
  letter-spacing: 0.5em;
  opacity: 0.75;
  padding: clamp(2rem, 5vw, 3.5rem) 0 0;
}

@media (max-width: 520px) {
  .worlds__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .worlds .card__meta { padding: 16px; }
  .card__line { display: none; } /* keep small phone cards clean — title carries it */
}

/* --- Book-now CTA on event cards (homepage strip + /events listing) --- */
.card__book {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  padding: 11px 26px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.card:hover .card__book,
.card:focus-visible .card__book {
  background: var(--gold);
  color: var(--canvas);
}

/* --- very narrow phones: keep the 3-item nav from touching --- */
@media (max-width: 430px) {
  .nav__inner { gap: 10px; }
  .nav__brand { font-size: 0.78rem; letter-spacing: 0.05em; }
  .nav__right { gap: 12px; }
  .nav__link { font-size: 0.64rem; letter-spacing: 0.1em; }
  .nav__cta { padding: 7px 10px; font-size: 0.6rem; letter-spacing: 0.08em; }
}
