@import url('./tokens.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }

body {
  background: var(--bg-1);
  color: var(--fg-1);
  overflow-x: hidden;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.section { padding: 112px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--hero { padding: 0; }
@media (max-width: 880px) {
  .section { padding: 72px 0; }
  .section--tight { padding: 56px 0; }
}

/* ---------- Sparkles ---------- */
.sparkle-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sparkle { position: absolute; color: var(--brand-purple-300); user-select: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.10em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all var(--t-base) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { height: 44px; padding: 0 22px; font-size: 13px; }
.btn-primary { background: var(--brand-purple); color: #fff; box-shadow: 0 8px 24px rgba(72,40,128,.28); }
.btn-primary:hover { background: var(--brand-purple-700); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(72,40,128,.38); color: #fff; }
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-on-stage { background: #fff; color: var(--brand-purple); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.btn-on-stage:hover { background: var(--stage-gold-soft); color: var(--ink); transform: translateY(-2px); }

.btn-secondary { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.55); }
.btn-secondary:hover, a.btn-secondary:hover { box-shadow: inset 0 0 0 2px #fff; background: rgba(255,255,255,.12); color: #fff; }

.btn-ghost { background: transparent; color: var(--brand-purple); padding: 0 14px; }
.btn-ghost:hover { color: var(--brand-purple-700); }

.btn-gold { background: var(--stage-gold); color: var(--ink); box-shadow: 0 8px 24px rgba(226,181,58,.35); }
.btn-gold:hover { background: var(--stage-gold-soft); transform: translateY(-2px); color: var(--ink); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  color: var(--brand-purple);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot { color: var(--stage-gold); font-size: 14px; }
.eyebrow--on-dark { color: var(--stage-gold); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hover lift ---------- */
.hover-lift { transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out); }
.hover-lift:hover { transform: translateY(-4px); }

/* ---------- Form inputs ---------- */
.input, .textarea, .select {
  height: 52px; padding: 0 16px; border-radius: 12px;
  border: 1.5px solid var(--border-1);
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  background: #fff; outline: none; width: 100%;
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 4px rgba(72,40,128,0.12);
}
.textarea { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; font-family: var(--font-body); }
.input-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-2);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23482880' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--brand-purple);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  display: none;
  align-items: center; justify-content: space-between;
  box-shadow: 0 18px 40px rgba(43,22,84,.45);
  z-index: 60;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
}
@media (max-width: 760px) { .sticky-call { display: flex; } }

/* ---------- Utility ---------- */
.is-hidden-mobile { display: initial; }
@media (max-width: 760px) { .is-hidden-mobile { display: none !important; } }
.is-only-mobile { display: none; }
@media (max-width: 760px) { .is-only-mobile { display: initial; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: all 220ms var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border-1);
}
.site-header__inner {
  height: 84px;
  display: flex; align-items: center; justify-content: space-between;
  transition: height 220ms var(--ease-out);
}
.site-header.is-scrolled .site-header__inner { height: 72px; }
.site-header__logo img { height: 46px; width: auto; transition: height 220ms var(--ease-out); }
.site-header.is-scrolled .site-header__logo img { height: 38px; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--fg-1); text-decoration: none; letter-spacing: 0.04em; padding: 8px 4px;
}
.site-nav a:hover { color: var(--brand-purple); }
.site-nav a.btn { padding: 0 28px; }
.site-nav a.btn-primary, .site-nav a.btn-primary:hover { color: #fff; }
.site-nav__phone { color: var(--brand-purple) !important; display: inline-flex !important; align-items: center; gap: 8px; font-weight: 700 !important; }
.site-nav__menu-btn { background: transparent; border: none; padding: 8px; cursor: pointer; color: var(--ink); }
.site-nav__drawer {
  background: #fff; border-bottom: 1px solid var(--border-1);
  padding: 16px 24px 24px;
  display: none; flex-direction: column; gap: 4px;
}
.site-nav__drawer.is-open { display: flex; }
.site-nav__drawer a {
  padding: 12px 4px; font-family: var(--font-body); font-size: 17px; font-weight: 600;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--slate-100);
}

/* ---------- Hero (stage variant) ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #1F0E40 0%, #2B1654 50%, #482880 100%);
  color: #fff; overflow: hidden;
  padding: 96px 0 112px;
}
.hero__spot-r { position: absolute; width: 1100px; height: 1100px; top: -30%; right: -20%;
  background: radial-gradient(closest-side, rgba(226,181,58,0.20), transparent 70%); pointer-events: none; }
.hero__spot-l { position: absolute; width: 900px; height: 900px; bottom: -40%; left: -20%;
  background: radial-gradient(closest-side, rgba(139,111,196,0.25), transparent 70%); pointer-events: none; }
.hero__inner { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 64px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.9; letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 20px 0 0;
  color: #fff;
}
.hero .gold { color: var(--stage-gold); }
.hero__subline {
  font-family: var(--font-body); font-size: 18px; line-height: 1.45;
  color: rgba(255,255,255,0.92); margin-top: 18px; max-width: 540px;
  font-weight: 500;
}
.hero__submark {
  font-family: var(--font-subdisplay); font-style: italic; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-size: clamp(18px, 2vw, 26px); color: var(--stage-gold-soft);
  margin-top: 22px;
}
.hero__lead {
  font-family: var(--font-body); font-size: 19; line-height: 1.55;
  color: rgba(255,255,255,0.86); max-width: 560px;
  margin-top: 24px; margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__trust-row {
  margin-top: 44px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero__trust-stars { display: flex; gap: 2px; color: var(--stage-gold); font-size: 22px; letter-spacing: 1px; }
.hero__trust-text { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.78); }
.hero__portrait {
  position: relative; width: 100%; aspect-ratio: 4/5; max-width: 480px;
  margin-left: auto; justify-self: end;
}
.hero__portrait .blob1 {
  position: absolute; inset: -6% 12% 14% -10%; background: var(--brand-purple-300);
  opacity: 0.32; border-radius: 60px; transform: rotate(-5deg);
}
.hero__portrait .blob2 {
  position: absolute; inset: 8% -10% 8% 8%; background: var(--brand-purple-500);
  border-radius: 44px; transform: rotate(6deg); box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero__portrait .frame {
  position: absolute; inset: 0; border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(43,22,84,0.6); background: #2B1654;
}
.hero__portrait .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero__portrait .sparkle-tr { position: absolute; top: -10px; right: 30px; font-size: 28px; color: var(--stage-gold); }
.hero__portrait .sparkle-bl { position: absolute; bottom: 40px; left: -16px; font-size: 22px; color: var(--stage-gold-soft); }

.hero-trust {
  margin-top: 88px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.14);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-stat__n {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px);
  color: var(--stage-gold); line-height: 1; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-stat__l {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 8px;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section header ---------- */
.section-header { display: flex; flex-direction: column; gap: 18px; max-width: 880px; }
.section-header.is-center { align-items: center; text-align: center; max-width: 760px; margin: 0 auto; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.94; letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.section-header.is-on-dark h2 { color: #fff; }
.section-header__intro {
  font-family: var(--font-body); font-size: 19px; line-height: 1.55;
  color: var(--fg-2); margin: 0; max-width: 640px;
}
.section-header.is-on-dark .section-header__intro { color: rgba(255,255,255,0.78); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.1fr; gap: 80px; align-items: center; }
.about-portrait { position: relative; width: 100%; }
.about-portrait .blob1 {
  position: absolute; inset: -4% -8% 8% 4%;
  background: var(--brand-purple-100);
  border-radius: 60px; transform: rotate(-4deg);
}
.about-portrait .blob2 {
  position: absolute; inset: 6% -6% -2% 8%;
  background: var(--brand-purple);
  border-radius: 44px; transform: rotate(4deg);
  opacity: 0.18;
}
.about-portrait .frame {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 28px; box-shadow: var(--shadow-stage); overflow: hidden;
  background: #2B1654;
}
.about-portrait .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-portrait .sparkle-tr { position: absolute; top: -14px; right: 20px; font-size: 32px; color: var(--stage-gold); }
.about-portrait .sparkle-bl { position: absolute; bottom: 20px; left: -12px; font-size: 22px; color: var(--brand-purple-300); }
.about__title {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96; letter-spacing: 0.005em; text-transform: uppercase;
  color: var(--ink); margin: 16px 0 0;
}
.about__title .accent { color: var(--brand-purple); }
.about__copy { font-family: var(--font-body); font-size: 18px; line-height: 1.65; color: var(--fg-2); margin-top: 28px; }
.about__copy + .about__copy { margin-top: 16px; }
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.about__chip {
  height: 38px; padding: 0 16px; border-radius: 999px;
  background: var(--brand-purple-100); color: var(--brand-purple-700);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center;
}
.about__credit {
  margin-top: 36px; padding: 20px 24px;
  background: var(--bg-3); border-left: 3px solid var(--stage-gold);
  border-radius: 0 14px 14px 0;
}
.about__credit-label {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-purple); margin-bottom: 8px;
}
.about__credit-list { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--ink); font-weight: 500; }
.about__facts {
  margin: 32px 0 0; padding: 24px 26px;
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 18px; box-shadow: var(--shadow-card);
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
}
.about__facts > div { display: flex; flex-direction: column; gap: 4px; }
.about__facts dt {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-purple);
}
.about__facts dd { font-family: var(--font-body); font-size: 15px; line-height: 1.4; color: var(--ink); margin: 0; font-weight: 500; }
@media (max-width: 600px) { .about__facts { grid-template-columns: 1fr; } }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ---------- ShowTypes ---------- */
.shows { background: var(--bg-3); position: relative; overflow: hidden; }
.shows__list { display: flex; flex-direction: column; gap: 96px; margin-top: 80px; }
.show-row { display: grid; gap: 64px; align-items: center; }
.show-row.align-left { grid-template-columns: 1.1fr 1fr; }
.show-row.align-right { grid-template-columns: 1fr 1.1fr; }
.show-row__media { position: relative; }
.show-row.align-right .show-row__media { order: 2; }
.show-row.align-right .show-row__text { order: 1; }
.show-row__media .blob {
  position: absolute; background: var(--brand-purple); opacity: 0.14;
  border-radius: 60px;
}
.show-row.align-left .show-row__media .blob { inset: -6% 4% 10% -10%; transform: rotate(-4deg); }
.show-row.align-right .show-row__media .blob { inset: -6% -10% 10% 4%; transform: rotate(4deg); }
.show-row__frame {
  position: relative; width: 100%; aspect-ratio: 5/4;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-stage); background: #2B1654;
}
.show-row__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.show-row__kicker {
  font-family: var(--font-display); font-size: 64px; line-height: 1;
  color: var(--brand-purple-300); margin-bottom: 8px;
}
.show-row__title {
  font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 60px);
  line-height: 0.96; text-transform: uppercase;
  color: var(--brand-purple); margin: 0;
}
.show-row__blurb {
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: var(--fg-2); margin-top: 20px; max-width: 520px;
}
.show-row__bullets {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 480px;
}
.show-row__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
}
.show-row__bullets li::before { content: "✦"; color: var(--stage-gold); font-size: 14px; line-height: 1.4; }
.show-row__cta { margin-top: 32px; }
@media (max-width: 880px) {
  .show-row { grid-template-columns: 1fr !important; gap: 32px; }
  .show-row__media, .show-row__text { order: initial !important; }
}

/* ---------- EventTypes ---------- */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
.event-card {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 22px; padding: 26px 24px;
  box-shadow: var(--shadow-card); height: 100%; position: relative;
}
.event-card__sparkle { position: absolute; top: 18px; right: 20px; color: var(--stage-gold); font-size: 14px; opacity: 0.6; }
.event-card h3 {
  font-family: var(--font-display); font-size: 26px; line-height: 1; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--brand-purple); margin: 0;
}
.event-card p { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--fg-3); margin-top: 10px; }
@media (max-width: 880px) { .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .event-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-2); position: relative; overflow: hidden; }
.reviews-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; }
.reviews-head h2 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96; text-transform: uppercase; color: var(--ink); margin: 16px 0 0;
}
.google-summary {
  background: #fff; border-radius: 22px; padding: 22px 24px;
  border: 1px solid var(--border-1); box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 18px;
}
.google-summary__icon {
  width: 52px; height: 52px; border-radius: 999px; background: #fff;
  border: 1px solid var(--slate-200);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.google-summary__rating-row { display: flex; align-items: center; gap: 8px; }
.google-summary__num { font-family: var(--font-display); font-size: 36px; color: var(--ink); line-height: 1; }
.google-summary__stars { color: var(--stage-gold); font-size: 18px; letter-spacing: 1px; }
.google-summary__caption { font-family: var(--font-body); font-size: 13px; color: var(--fg-3); margin-top: 4px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.review-card {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 22px; padding: 28px 28px 24px;
  height: 100%; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.review-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.review-card__stars { color: var(--stage-gold); font-size: 16px; letter-spacing: 2px; }
.review-card__quote { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--fg-1); margin: 0; flex: 1; }
.review-card__meta { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--slate-100); }
.review-card__name { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--ink); }
.review-card__sub { font-family: var(--font-body); font-size: 12px; color: var(--fg-3); letter-spacing: 0.04em; margin-top: 2px; }

.reviews__controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 40px; }
.reviews__dot-btn {
  width: 44px; height: 44px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border-1);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--brand-purple);
}
.reviews__dots { display: flex; gap: 8px; }
.reviews__dots button {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--slate-300); border: none; cursor: pointer; padding: 0;
  transition: all 220ms var(--ease-out);
}
.reviews__dots button.is-active { width: 28px; background: var(--brand-purple); }
.reviews__more { text-align: center; margin-top: 32px; }
@media (max-width: 880px) {
  .reviews-head { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Videos ---------- */
.videos {
  background: linear-gradient(180deg, #1F0E40 0%, #2B1654 100%);
  color: #fff; position: relative; overflow: hidden;
}
.videos__player {
  margin-top: 64px; position: relative; aspect-ratio: 16/9;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  background: #000; cursor: pointer;
}
.videos__player img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.videos__player .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.videos__play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.videos__play-btn .circle {
  width: 96px; height: 96px; border-radius: 999px;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 220ms var(--ease-out);
}
.videos__player:hover .circle { transform: scale(1.06); }
.videos__caption {
  position: absolute; bottom: 28px; left: 32px; right: 32px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
}
.videos__now-playing {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stage-gold); margin-bottom: 8px;
}
.videos__title-now {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px);
  text-transform: uppercase; color: #fff; line-height: 1;
}
.videos__duration {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.7); padding: 6px 12px;
  background: rgba(0,0,0,0.5); border-radius: 999px;
  backdrop-filter: blur(8px);
}
.videos__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.videos__thumb {
  border: none; padding: 0; cursor: pointer; background: transparent;
  position: relative; aspect-ratio: 16/9;
  border-radius: 14px; overflow: hidden;
  outline: 3px solid transparent; outline-offset: 2px;
  transition: outline 180ms var(--ease-out);
}
.videos__thumb.is-active { outline-color: var(--stage-gold); }
.videos__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.6; transition: opacity 220ms var(--ease-out);
}
.videos__thumb.is-active img { opacity: 1; }
.videos__thumb .scrim { position: absolute; inset: 0; background: rgba(43,22,84,0.4); }
.videos__thumb.is-active .scrim { background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5)); }
.videos__thumb-label {
  position: absolute; bottom: 10px; left: 12px; right: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  color: #fff; text-align: left;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6); line-height: 1.3;
}
.videos__footnote { text-align: center; margin-top: 36px; font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.6); }
@media (max-width: 880px) { .videos__thumbs { grid-template-columns: repeat(2, 1fr); } }

/* ---------- ServiceAreas ---------- */
.areas { background: var(--bg-2); position: relative; overflow: hidden; }
.loc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 64px; }
.loc-card {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 22px; padding: 24px 22px;
  box-shadow: var(--shadow-card);
  height: 100%; position: relative;
  display: block; text-decoration: none;
  color: inherit;
}
.loc-card__pin {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--brand-purple-100); color: var(--brand-purple);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.loc-card h3 {
  font-family: var(--font-display); font-size: 24px; line-height: 1; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--brand-purple); margin: 0;
}
.loc-card p { font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: var(--fg-3); margin-top: 8px; }
.loc-card__view {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-purple); margin-top: 14px;
}
.areas__also {
  margin-top: 40px; background: #fff; border: 1px solid var(--border-1);
  border-radius: 22px; padding: 26px 32px; box-shadow: var(--shadow-card);
}
.areas__also-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand-purple); margin-bottom: 14px;
}
.areas__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.areas__chip {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  padding: 6px 14px; border-radius: 999px; background: var(--bg-3);
}
.areas__note { font-family: var(--font-body); font-size: 14px; color: var(--fg-3); margin-top: 18px; line-height: 1.55; }
@media (max-width: 1200px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-side { position: sticky; top: 120px; }
.faq-side h2 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
  line-height: 0.96; text-transform: uppercase; color: var(--ink); margin: 16px 0 0;
}
.faq-side p { font-family: var(--font-body); font-size: 17px; color: var(--fg-2); margin-top: 22px; line-height: 1.6; max-width: 380px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border-1); }
.faq-item__btn {
  width: 100%; padding: 26px 0;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  text-align: left; color: var(--ink);
}
.faq-item__q {
  font-family: var(--font-body); font-size: 19px; font-weight: 600; line-height: 1.4;
  color: var(--ink);
  transition: color 180ms var(--ease-out);
}
.faq-item.is-open .faq-item__q { color: var(--brand-purple); }
.faq-item__plus {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--brand-purple-100); color: var(--brand-purple);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 220ms var(--ease-out);
}
.faq-item.is-open .faq-item__plus { background: var(--brand-purple); color: #fff; transform: rotate(45deg); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height 320ms var(--ease-out);
}
.faq-item.is-open .faq-item__a { max-height: 600px; }
.faq-item__a p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.65; color: var(--fg-2);
  margin: 0; padding: 0 0 28px; max-width: 640px;
}
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
}

/* ---------- Booking ---------- */
.booking {
  background: linear-gradient(180deg, rgba(31,14,64,0.94) 0%, rgba(72,40,128,0.94) 100%);
  position: relative; overflow: hidden;
}
.book-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
.booking h2 {
  font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px);
  line-height: 0.94; text-transform: uppercase; color: #fff; margin: 16px 0 0;
}
.booking__lead {
  font-family: var(--font-body); font-size: 19px;
  color: rgba(255,255,255,0.82); margin-top: 24px; line-height: 1.55; max-width: 480px;
}
.booking__contacts { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.booking__star-bar {
  margin-top: 36px; padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  display: flex; align-items: center; gap: 14px;
}
.booking__star-bar .stars { color: var(--stage-gold); font-size: 22px; letter-spacing: 2px; }
.booking__star-bar .text { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.5; }

.contact-row { display: inline-flex; align-items: center; gap: 16px; text-decoration: none; color: inherit; }
.contact-row .circle {
  width: 56px; height: 56px; border-radius: 999px;
  background: rgba(255,255,255,0.10); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.contact-row .label { font-family: var(--font-body); font-size: 19px; font-weight: 600; color: #fff; }

.booking-form {
  background: #fff; border-radius: 28px; padding: 36px;
  box-shadow: var(--shadow-stage); border: 1px solid rgba(255,255,255,0.6);
}
.booking-form h3 {
  font-family: var(--font-display); font-size: 38px; line-height: 1;
  text-transform: uppercase; color: var(--ink); margin: 0 0 8px; letter-spacing: 0.005em;
}
.booking-form__lead { font-family: var(--font-body); color: var(--fg-2); margin: 0 0 26px; font-size: 15px; }
.booking-form__fields { display: flex; flex-direction: column; gap: 14px; }
.booking-form__field { display: flex; flex-direction: column; gap: 6px; }
.booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .booking-form__row { grid-template-columns: 1fr; } }
.booking-form__submit { margin-top: 12px; width: 100%; }
.booking-form__alt { font-family: var(--font-body); font-size: 13px; color: var(--fg-3); text-align: center; margin-top: 6px; }
.booking-form__success {
  background: #fff; border-radius: 28px; padding: 64px 36px;
  box-shadow: var(--shadow-stage); text-align: center;
}
.booking-form__success-check {
  width: 72px; height: 72px; border-radius: 999px; margin: 0 auto 20px;
  background: var(--brand-purple-100); color: var(--brand-purple);
  display: flex; align-items: center; justify-content: center;
}
.booking-form__success h3 {
  font-family: var(--font-display); font-size: 44px; color: var(--brand-purple);
  text-transform: uppercase; line-height: 1; letter-spacing: 0.005em; margin: 0;
}
@media (max-width: 880px) { .book-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ---------- Kids banner / callout ---------- */
.kids-banner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px 24px;
  background: var(--ink); color: #fff;
  font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; text-align: center;
}
.kids-banner:hover { color: #fff; background: var(--ink-soft); }
.kids-banner .star { color: var(--stage-gold); }
.kids-banner .link { color: var(--stage-gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.kids-banner:hover .link { color: var(--stage-gold); }

.kids-callout { background: var(--bg-3); position: relative; overflow: hidden; padding: 64px 0; }
.kids-card {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px;
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 28px; padding: 32px 40px; box-shadow: var(--shadow-card);
}
.kids-card__eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stage-gold); margin-bottom: 10px;
}
.kids-card h3 {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1; text-transform: uppercase; color: var(--brand-purple); margin: 0;
}
.kids-card p { font-family: var(--font-body); font-size: 17px; color: var(--fg-2); margin: 14px 0 0; line-height: 1.55; max-width: 600px; }
@media (max-width: 760px) { .kids-card { grid-template-columns: 1fr; padding: 28px; } }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--bg-curtain);
  color: #fff;
  padding: 88px 0 36px;
  overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr 1fr; gap: 40px; }
.site-footer__wordmark { height: 60px; width: auto; margin-bottom: 24px; }
.site-footer__about { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.75); max-width: 360px; }
.site-footer__social { display: flex; gap: 12px; margin-top: 22px; }
.social-icon {
  width: 42px; height: 42px; border-radius: 999px;
  background: rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  transition: all 180ms var(--ease-out);
}
.social-icon:hover { background: var(--stage-gold); color: var(--ink); }
.col-title {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stage-gold); margin-bottom: 18px;
}
.footer-link {
  font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.78);
  text-decoration: none; display: block; padding: 6px 0;
  transition: color 180ms var(--ease-out);
}
.footer-link:hover { color: #fff; }
.footer-text {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.55);
  padding: 6px 0; line-height: 1.6;
}
.footer-divider { height: 1px; background: rgba(255,255,255,0.12); margin-top: 64px; margin-bottom: 24px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
}
.footer-other-link {
  font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.78);
  text-decoration: none; display: block; padding: 6px 0;
}
.footer-other-link span { color: var(--stage-gold); font-size: 13px; font-weight: 600; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- City breadcrumb / venues ---------- */
.crumb { background: #fff; border-bottom: 1px solid var(--border-1); }
.crumb__inner {
  padding: 12px 24px; font-family: var(--font-body); font-size: 13px;
  color: var(--fg-3); letter-spacing: 0.04em;
}
.crumb a { color: var(--brand-purple); font-weight: 600; text-decoration: none; }
.crumb__sep { margin: 0 10px; color: var(--slate-300); }
.crumb__current { color: var(--ink); font-weight: 600; }

.city-qa { background: var(--bg-1); padding: 56px 0; }
.city-qa__title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  line-height: 1; letter-spacing: 0.005em; text-transform: uppercase;
  color: var(--ink); margin: 12px 0 0;
}
.city-qa__list {
  margin: 36px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px;
}
.city-qa__list > div { padding: 0; margin: 0; }
.city-qa__list dt {
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  color: var(--brand-purple); margin-bottom: 8px;
}
.city-qa__list dd {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--fg-2); margin: 0;
}
@media (max-width: 760px) { .city-qa__list { grid-template-columns: 1fr; } }

.venues { background: var(--bg-3); }
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.venue-card {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 22px; padding: 22px 24px; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 14px; height: 100%;
}
.venue-card__icon {
  width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0;
  background: var(--brand-purple-100); color: var(--brand-purple);
  display: inline-flex; align-items: center; justify-content: center;
}
.venue-card__name { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.venues__nearby {
  margin-top: 32px; padding: 22px 28px;
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.venues__nearby-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-purple);
}
@media (max-width: 880px) { .venue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .venue-grid { grid-template-columns: 1fr; } }
