/* =========================================================================
   Rick Hebert — Magician & Mentalist
   Design system. Register: brand. Lane: vintage magic playbill, modernized.
   Strategy: drenched plum-ink dark + antique brass accent + Didone display.
   ========================================================================= */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  color-scheme: dark;

  /* Color — OKLCH, navy-tinted neutrals, brass + Rick's azure accents */
  --ink:         oklch(0.15 0.034 256);
  --ink-deep:    oklch(0.105 0.030 256);
  --ink-raised:  oklch(0.205 0.040 255);
  --ink-raised2: oklch(0.245 0.042 255);
  --ink-line:    oklch(0.32 0.045 254);
  --ink-line-2:  oklch(0.42 0.050 253);

  --cream:       oklch(0.945 0.018 86);
  --cream-dim:   oklch(0.815 0.020 84);
  --cream-faint: oklch(0.685 0.022 84);

  --gold:        oklch(0.815 0.118 83);
  --gold-bright: oklch(0.885 0.130 88);
  --gold-deep:   oklch(0.640 0.100 78);
  --gold-ink:    oklch(0.205 0.045 70);   /* dark label on gold */

  --blue:        oklch(0.620 0.170 250);  /* Rick's brand azure (#1788E5) */
  --blue-bright: oklch(0.720 0.155 248);
  --blue-deep:   oklch(0.460 0.140 252);
  --blue-ink:    oklch(0.205 0.050 255);  /* dark label on blue */

  --garnet:      oklch(0.520 0.160 24);

  /* Glows / washes (used purposefully, not glassmorphism) */
  --glow-gold:   oklch(0.815 0.118 83 / 0.22);
  --glow-soft:   oklch(0.815 0.118 83 / 0.10);
  --glow-blue:   oklch(0.620 0.170 250 / 0.20);
  --shadow-deep: 0 24px 60px -28px oklch(0.05 0.03 256 / 0.9);

  /* Type */
  --font-display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(0.84rem, 0.81rem + 0.14vw, 0.92rem);
  --step-0:  clamp(1.0rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.85rem, 1.55rem + 1.5vw, 2.85rem);
  --step-4:  clamp(2.35rem, 1.8rem + 2.75vw, 4.0rem);
  --step-5:  clamp(3.0rem, 2.0rem + 5vw, 6.25rem);

  /* Space */
  --space-section: clamp(3.5rem, 2.5rem + 3vw, 5.5rem);
  --wrap: 1240px;
  --wrap-narrow: 880px;

  --radius: 4px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;
}

/* ----- Reset / base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--cream);
  background-color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select, button { font: inherit; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 2px; }

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

/* ----- Typography ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.01em; }
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-5);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--gold); font-weight: 500; }
.h2 { font-size: var(--step-4); font-weight: 500; line-height: 1.02; }
.h3 { font-size: var(--step-2); font-weight: 600; }
.lead { font-size: var(--step-1); color: var(--cream-dim); line-height: 1.5; font-weight: 400; }
p { max-width: 65ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: clamp(1.4rem, 3vw, 2.6rem);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  background: var(--blue-deep);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: clamp(1.4rem, 3vw, 2.6rem); height: 1px; background: var(--blue-deep);
}

.text-gold { color: var(--gold); }
.muted { color: var(--cream-faint); }

/* ----- Layout ----------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--space-section); position: relative; scroll-margin-top: 1.75rem; }
.section-deep { background: var(--ink-deep); }
.section-opener { max-width: 56ch; }
.section-opener .lead { margin-top: 1.1rem; }
.stack > * + * { margin-top: var(--flow, 1rem); }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-body); font-weight: 600; font-size: var(--step-0);
  letter-spacing: 0.01em; padding: 0.95em 1.7em; border-radius: var(--radius-pill);
  transition: transform 0.4s var(--ease-out), background-color 0.3s, color 0.3s, box-shadow 0.4s, border-color 0.3s;
  will-change: transform;
}
.btn-primary {
  background: var(--gold); color: var(--gold-ink);
  box-shadow: 0 0 0 0 var(--glow-gold);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 14px 34px -14px var(--glow-gold); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  border: 1px solid var(--ink-line-2); color: var(--cream);
  padding: calc(0.95em - 1px) calc(1.7em - 1px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-lg { font-size: var(--step-1); padding: 1.05em 2em; }
.btn .ico { width: 1.05em; height: 1.05em; transition: transform 0.4s var(--ease-out); }
.btn:hover .ico { transform: translateX(3px); }

/* ----- Site header / nav ------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: clamp(1rem, 2vw, 1.6rem) clamp(1.25rem, 4vw, 3rem);
  transition: background-color 0.4s var(--ease-out), backdrop-filter 0.4s, box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: oklch(0.12 0.018 256 / 0.86);
  backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 1px 0 var(--ink-line), var(--shadow-deep);
  padding-block: clamp(0.7rem, 1.4vw, 1rem);
}
.brand { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.brand .name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  letter-spacing: 0.16em; text-transform: uppercase; text-indent: 0.16em;
}
.brand .brand-tag {
  margin-top: 0.5em; padding: 0.34em 0.72em 0.3em;
  border: 1px solid var(--blue-deep); border-radius: var(--radius-pill);
  font-size: 0.56rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  text-indent: 0.3em; text-align: center; color: var(--blue-bright); line-height: 1;
}
.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.1rem); }
.nav-links { display: flex; gap: clamp(1.1rem, 2.2vw, 2rem); }
.nav-links a:not(.btn) {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; color: var(--cream-dim);
  position: relative; padding-block: 0.3rem; transition: color 0.3s;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease-out);
}
.nav-links a:not(.btn):hover { color: var(--cream); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav .btn { padding: 0.7em 1.35em; font-size: 0.9rem; }

.nav-toggle { display: none; }

/* ----- Hero ------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-block: clamp(7rem, 14vh, 11rem) clamp(3rem, 8vh, 6rem);
  overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 95% at 78% 18%, var(--glow-gold) 0%, transparent 48%),
    radial-gradient(130% 110% at 92% 8%, oklch(0.5 0.13 38 / 0.16) 0%, transparent 42%),
    radial-gradient(140% 120% at 12% 105%, oklch(0.3 0.07 256 / 0.5) 0%, transparent 55%);
}
.hero-bg::after { /* vignette */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(125% 125% at 50% 42%, transparent 52%, var(--ink-deep) 100%);
}
.hero-photo {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-size: cover; background-position: 72% center;
  -webkit-mask-image: linear-gradient(95deg, transparent 8%, #000 62%, #000 100%);
  mask-image: linear-gradient(95deg, transparent 8%, #000 62%, #000 100%);
  mix-blend-mode: screen;
}
.hero-inner { position: relative; max-width: 58rem; }
.hero .display { margin-top: 1.4rem; }
.hero .lead { margin-top: 1.6rem; max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.3rem; }
.hero-meta {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.65rem 1.4rem; color: var(--cream-faint); font-size: var(--step--1);
}
.hero-meta .stars { color: var(--gold); letter-spacing: 0.12em; }
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-line-2); }
.hero-meta strong { color: var(--cream-dim); font-weight: 600; }

.scroll-cue {
  position: absolute; left: clamp(1.25rem, 4vw, 3rem); bottom: 1.8rem;
  display: inline-flex; align-items: center; gap: 0.7rem; color: var(--cream-faint);
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 2.4rem; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  animation: cue 2.4s var(--ease-out) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(100%);} }

/* ----- Marquee / proof strip ------------------------------------------- */
.proof {
  border-block: 1px solid var(--ink-line);
  background: oklch(0.13 0.02 256 / 0.6);
  padding-block: 1.4rem;
}
.proof-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.9rem clamp(1.5rem, 4vw, 3.2rem);
}
.proof-label { color: var(--cream-faint); font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; }
.proof-item {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  letter-spacing: 0.06em; color: var(--cream-dim); text-transform: uppercase;
  white-space: nowrap;
}
.proof-item.accent { color: var(--gold); }

/* ----- Decorative gilt corner frame ------------------------------------ */
.gilt { position: relative; }
.gilt-corner { position: absolute; width: 26px; height: 26px; border: 1px solid var(--gold-deep); opacity: 0.7; }
.gilt-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.gilt-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.gilt-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.gilt-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* ----- Reveal animation ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue .line::after { animation: none; }
  .btn, .nav-links a::after { transition: none; }
}

/* ----- Responsive nav --------------------------------------------------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: var(--ink-deep); padding: 2rem 2.4rem;
    transform: translateX(100%); transition: transform 0.5s var(--ease-out);
    box-shadow: var(--shadow-deep); z-index: 60;
  }
  .nav-links.open { transform: none; }
  /* Lock the page and drop the header's backdrop-filter while the menu is open:
     a backdrop-filter on the header would make it the containing block for the
     fixed panel, collapsing it to header height and letting it scroll away. */
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links a:not(.btn) { font-size: 1.2rem; }
  .nav-links .btn { margin-top: 0.8rem; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.6rem; height: 2.6rem; z-index: 70; color: var(--cream);
  }
}

/* ----- Section divider (suit pips) ------------------------------------- */
.suit-divider { display: flex; align-items: center; justify-content: center; gap: 1.1rem; }
.suit-divider::before, .suit-divider::after { content: ""; height: 1px; width: min(20vw, 130px); }
.suit-divider::before { background: linear-gradient(90deg, transparent, var(--gold-deep)); }
.suit-divider::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.suit-divider .pips { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.42em; padding-left: 0.42em; }

/* ----- Split (alternating text + media) -------------------------------- */
.split { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split.reverse > :first-child { order: 0; } }

/* ----- Media frame ------------------------------------------------------ */
.frame { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-raised); box-shadow: 0 0 0 1px var(--gold-deep), 0 0 0 10px var(--ink), 0 0 0 11px var(--ink-line), var(--shadow-deep); }
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame .media-tag {
  position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-faint);
  background: oklch(0.12 0.018 256 / 0.78); border: 1px solid var(--ink-line); padding: 0.4em 0.7em; border-radius: 2px;
}

/* ----- The three acts --------------------------------------------------- */
.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.4vw, 3rem); margin-top: clamp(2.6rem, 5vw, 4rem); }
@media (max-width: 820px) { .acts { grid-template-columns: 1fr; gap: 0; } }
.act { padding-top: 1.6rem; border-top: 1px solid var(--ink-line); }
@media (max-width: 820px) { .act { padding-block: 1.8rem; } .act:last-child { border-bottom: 1px solid var(--ink-line); } }
.act .num { font-family: var(--font-display); font-size: 1rem; color: var(--gold); letter-spacing: 0.08em; }
.act h3 { font-size: var(--step-2); margin: 0.8rem 0 0.7rem; }
.act p { color: var(--cream-dim); font-size: var(--step-0); }
.act .for { display: block; margin-top: 1.1rem; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-faint); }
.act .for b { color: var(--cream-dim); font-weight: 600; }

/* ----- Audiences ledger (not a card grid) ------------------------------ */
.ledger { margin-top: clamp(2.6rem, 5vw, 3.6rem); border-top: 1px solid var(--ink-line); }
.ledger-row { display: grid; grid-template-columns: 3.4rem 1fr; gap: clamp(1rem, 4vw, 3rem); padding: clamp(1.7rem, 3.2vw, 2.6rem) 0; border-bottom: 1px solid var(--ink-line); }
@media (min-width: 720px) { .ledger-row { grid-template-columns: 3.4rem 22ch 1fr; align-items: start; } }
.ledger-row .idx { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--gold-deep); line-height: 1; }
.ledger-row h3 { font-size: var(--step-2); }
.ledger-row .desc { color: var(--cream-dim); }
.ledger-row .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.tag { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-faint); border: 1px solid var(--ink-line); border-radius: var(--radius-pill); padding: 0.4em 0.95em; }
.ledger-row:hover .idx { color: var(--gold); transition: color 0.4s; }

/* ----- Video stage facade ---------------------------------------------- */
.stage { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--ink-deep); box-shadow: 0 0 0 1px var(--gold-deep), 0 0 0 10px var(--ink), var(--shadow-deep); }
.stage > img, .stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.stage .play { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem; color: var(--cream); background: radial-gradient(circle at center, transparent 28%, oklch(0.1 0.015 256 / 0.55)); cursor: pointer; transition: background 0.4s; width: 100%; }
.stage .play:hover { background: radial-gradient(circle at center, transparent 18%, oklch(0.1 0.015 256 / 0.35)); }
.stage .play .disc { width: clamp(64px, 9vw, 88px); height: clamp(64px, 9vw, 88px); border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold); background: oklch(0.14 0.02 256 / 0.5); transition: transform 0.45s var(--ease-out), background 0.3s, color 0.3s; }
.stage .play:hover .disc { transform: scale(1.07); background: var(--gold); color: var(--gold-ink); }
.stage .play .disc svg { width: 40%; height: 40%; margin-left: 8%; }
.stage .play .label { font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.4rem); }

/* ----- Reviews ---------------------------------------------------------- */
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }
.rating-badge { text-align: right; flex: none; }
.rating-badge .score { font-family: var(--font-display); font-size: var(--step-3); color: var(--gold); line-height: 0.9; }
.rating-badge .stars { color: var(--gold); letter-spacing: 0.16em; font-size: 0.95rem; }
.rating-badge .meta { color: var(--cream-faint); font-size: 0.82rem; margin-top: 0.35rem; }
.review-links { margin-top: 0.7rem; display: flex; gap: 0.9rem; justify-content: flex-end; }
.review-links a { color: var(--blue-bright); font-size: 0.82rem; }
.review-links a:hover { color: var(--cream); text-decoration: underline; }
.review-feature { margin-top: clamp(2.4rem, 5vw, 3.4rem); padding-bottom: clamp(2rem, 4vw, 2.8rem); border-bottom: 1px solid var(--ink-line); }
.review-feature blockquote { font-family: var(--font-display); font-weight: 500; font-size: var(--step-3); line-height: 1.22; color: var(--cream); max-width: 22ch; }
.review-feature .mark { font-family: var(--font-display); color: var(--gold-deep); font-size: 3.4rem; line-height: 0.8; display: block; margin-bottom: 0.3rem; }
.review-feature .who { margin-top: 1.4rem; color: var(--cream-faint); font-size: 0.9rem; }
.review-feature .who strong { color: var(--gold); font-weight: 600; display: block; font-size: 1rem; letter-spacing: 0.02em; }
.reviews { columns: 3 220px; column-gap: clamp(1.3rem, 2.5vw, 2rem); margin-top: clamp(2rem, 4vw, 2.6rem); }
.review { break-inside: avoid; margin-bottom: clamp(1.3rem, 2.5vw, 1.8rem); padding: clamp(1.4rem, 2.4vw, 1.8rem); background: var(--ink-raised); border: 1px solid var(--ink-line); border-radius: var(--radius); }
.review .stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.82rem; }
.review blockquote { font-size: 1.02rem; line-height: 1.5; margin: 0.7rem 0 1rem; color: var(--cream-dim); }
.review .who { font-size: 0.8rem; color: var(--cream-faint); }
.review .who strong { color: var(--cream); font-weight: 600; }

/* ----- Packages (playbill tickets) ------------------------------------- */
.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 1.8rem); margin-top: clamp(2.6rem, 5vw, 3.6rem); align-items: stretch; }
@media (max-width: 900px) { .tickets { grid-template-columns: 1fr; max-width: 32rem; margin-inline: auto; } }
.ticket { position: relative; display: flex; flex-direction: column; padding: clamp(1.8rem, 3vw, 2.4rem); background: linear-gradient(180deg, var(--ink-raised), var(--ink)); border: 1px solid var(--ink-line); border-radius: var(--radius); }
.ticket.feature { border-color: var(--gold-deep); box-shadow: 0 0 0 1px var(--gold-deep), 0 36px 70px -34px oklch(0.06 0.02 256 / 0.9); }
.ticket .ribbon { position: absolute; top: 0; right: 1.4rem; transform: translateY(-50%); background: var(--gold); color: var(--gold-ink); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.45em 0.85em; border-radius: 2px; }
.ticket .kicker { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.ticket h3 { font-size: var(--step-2); margin: 0.6rem 0 0.5rem; }
.ticket .who { color: var(--cream-faint); font-size: 0.92rem; min-height: 3.2em; }
.ticket .price { font-family: var(--font-display); color: var(--cream); font-size: 1.05rem; margin: 1.2rem 0; padding-top: 1.2rem; border-top: 1px solid var(--ink-line); }
.ticket .price b { color: var(--gold); }
.ticket ul { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: 0.75rem; }
.ticket li { position: relative; padding-left: 1.7em; font-size: 0.95rem; color: var(--cream-dim); }
.ticket li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 0.62em; height: 0.62em; border: 1px solid var(--gold); transform: rotate(45deg); }
.ticket .btn { margin-top: auto; width: 100%; }
.pkg-note { text-align: center; max-width: 58ch; margin: clamp(2.5rem, 5vw, 3.75rem) auto 0; color: var(--cream-faint); font-size: 1rem; line-height: 1.6; }
.pkg-note a { color: var(--blue-bright); }
.pkg-note a:hover { color: var(--cream); text-decoration: underline; }

/* ----- About ------------------------------------------------------------ */
.about-portrait { width: 100%; aspect-ratio: 3 / 2.05; }
.creds { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.7rem; }
.cred { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--cream-dim); border: 1px solid var(--ink-line); border-radius: var(--radius-pill); padding: 0.5em 1.05em; }
.cred b { color: var(--gold); font-weight: 600; }

/* ----- FAQ -------------------------------------------------------------- */
.faq { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--ink-line); }
.faq details { border-bottom: 1px solid var(--ink-line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; cursor: pointer; padding: 1.35rem 0; font-family: var(--font-display); font-size: var(--step-1); list-style: none; transition: color 0.3s; }
.faq summary:hover { color: var(--gold); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { color: var(--gold); flex: none; transition: transform 0.4s var(--ease-out); }
.faq details[open] summary .pm { transform: rotate(135deg); }
.faq .ans { padding: 0 0 1.5rem; color: var(--cream-dim); max-width: 70ch; }
.faq .ans a { color: var(--gold); border-bottom: 1px solid var(--gold-deep); }

/* ----- Final CTA band --------------------------------------------------- */
.cta-band { position: relative; text-align: center; padding-block: clamp(5rem, 11vw, 8.5rem); overflow: hidden; isolation: isolate; }
.cta-band .glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(58% 90% at 50% 26%, var(--glow-gold), transparent 62%); }
.cta-band h2 { font-size: var(--step-4); max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin: 1.3rem auto 2.2rem; max-width: 52ch; }
.cta-phone { margin-top: 1.8rem; color: var(--cream-faint); font-size: 0.95rem; }
.cta-phone a { color: var(--cream-dim); border-bottom: 1px solid var(--ink-line-2); }
.cta-phone a:hover { color: var(--gold); }

/* ----- Footer ----------------------------------------------------------- */
.site-footer { background: var(--ink-deep); border-top: 1px solid var(--ink-line); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } }
.footer-brand .name { font-family: var(--font-display); font-size: 1.45rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-brand p { color: var(--cream-faint); font-size: 0.92rem; margin-top: 0.9rem; max-width: 32ch; }
.footer h4 { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 600; margin-bottom: 1rem; }
.footer-col a, .footer-col p { color: var(--cream-dim); display: block; padding: 0.28rem 0; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid var(--ink-line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem; color: var(--cream-faint); font-size: 0.82rem; }
.socials { display: flex; gap: 0.8rem; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--ink-line); border-radius: 50%; display: grid; place-items: center; color: var(--cream-dim); transition: border-color 0.3s, color 0.3s, transform 0.3s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ----- Skip link + media placeholder ----------------------------------- */
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; transition: top 0.3s var(--ease-out); }
.skip-link:focus { top: 1rem; }
.media-ph { aspect-ratio: 4 / 3; display: grid; place-items: center; background: radial-gradient(120% 100% at 68% 18%, var(--glow-soft), transparent 56%), var(--ink-raised); }
.media-ph .em { color: var(--gold-deep); font-size: 1.6rem; letter-spacing: 0.45em; padding-left: 0.45em; opacity: 0.85; }

