/* Zee Zeus — premium cinematic visual system */
:root {
  --navy: #020108;
  --navy-2: #080312;
  --navy-3: #10071c;
  --navy-4: #160a28;
  --ink: #f8f0e4;
  --ink-soft: #d8cbb8;
  --muted: #9a8f7e;
  --gold: #d4af37;
  --gold-bright: #f5e0a0;
  --gold-soft: #e8c86a;
  --gold-deep: #9a7420;
  --gold-dim: rgba(212, 175, 55, 0.16);
  --line: rgba(245, 224, 160, 0.14);
  --line-strong: rgba(245, 224, 160, 0.32);
  --portal: #c9a227;
  --portal-deep: #6b3fa0;
  --purple: #3d2460;
  --purple-deep: #140820;
  --purple-bright: #6a4a9a;
  --magic54: #a78bfa;
  --clockwork: #c49a5c;
  --neon-red: #b83a32;
  --neon-green: #4ad68a;
  --font-logo: "Cinzel", serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", sans-serif;
  --max: 1120px;
  --nav-h: 5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  font-size: 1.05rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

::selection {
  background: rgba(201, 162, 39, 0.35);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== Atmosphere ========== */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -8%, rgba(45, 18, 70, 0.32), transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 8%, rgba(212, 175, 55, 0.1), transparent 50%),
    radial-gradient(ellipse 45% 50% at 4% 82%, rgba(50, 22, 85, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 105%, rgba(212, 175, 55, 0.07), transparent 50%),
    linear-gradient(165deg, #010006 0%, #070312 35%, #0c0618 65%, #03010a 100%);
  overflow: hidden;
}

.site-bg .aurora {
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 110deg at 50% 40%, transparent 0deg, rgba(50, 20, 80, 0.1) 55deg, transparent 120deg, rgba(212, 175, 55, 0.05) 200deg, transparent 280deg);
  filter: blur(70px);
  animation: aurora-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.site-bg .portal-orb {
  position: absolute;
  width: min(75vw, 780px);
  height: min(75vw, 780px);
  top: 12%;
  left: 50%;
  translate: -50% -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 224, 160, 0.08) 0%, rgba(80, 40, 120, 0.08) 22%, rgba(40, 15, 70, 0.1) 42%, transparent 68%);
  filter: blur(6px);
  animation: portal-breathe 8s ease-in-out infinite;
  will-change: transform, opacity;
}

.site-bg .portal-orb-2 {
  position: absolute;
  width: min(42vw, 400px);
  height: min(42vw, 400px);
  top: 58%;
  left: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 30, 100, 0.14), transparent 70%);
  filter: blur(22px);
  animation: float-orb 14s ease-in-out infinite;
  will-change: transform;
}

.site-bg .portal-orb-3 {
  position: absolute;
  width: min(36vw, 340px);
  height: min(36vw, 340px);
  top: 28%;
  right: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  filter: blur(18px);
  animation: float-orb 18s ease-in-out infinite reverse;
  will-change: transform;
}

.site-bg .portal-ring {
  position: absolute;
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  top: 18%;
  left: 50%;
  margin-left: calc(min(52vw, 560px) / -2);
  margin-top: calc(min(52vw, 560px) * -0.12);
  border-radius: 50%;
  border: 1px solid rgba(245, 224, 160, 0.1);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.05), 0 0 80px rgba(50, 20, 80, 0.12), inset 0 0 40px rgba(212, 175, 55, 0.03);
  animation: portal-spin 40s linear infinite;
  opacity: 0.35;
  will-change: transform;
}

.site-bg .portal-ring::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(80, 40, 120, 0.12);
}

.site-bg .portal-ring::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 1px dashed rgba(245, 224, 160, 0.08);
  animation: portal-spin 28s linear infinite reverse;
}

.site-bg .rays {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(from 0deg at 50% 35%, rgba(245, 224, 160, 0.035) 0deg 2deg, transparent 2deg 18deg);
  mask-image: radial-gradient(ellipse 50% 45% at 50% 35%, black, transparent 70%);
  opacity: 0.22;
  animation: portal-spin 90s linear infinite;
}

.site-bg .dust {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 18% 28%, rgba(245, 224, 160, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 42% 68%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(2px 2px at 68% 18%, rgba(155, 107, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 82% 52%, rgba(245, 224, 160, 0.5), transparent),
    radial-gradient(1px 1px at 12% 78%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 55% 42%, rgba(245, 224, 160, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 92% 82%, rgba(155, 107, 255, 0.4), transparent),
    radial-gradient(1px 1px at 28% 12%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 48% 88%, rgba(245, 224, 160, 0.35), transparent);
  animation: dust-drift 22s linear infinite;
  opacity: 0.75;
  will-change: transform;
}

.site-bg .vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 50% 40%, transparent 28%, rgba(2, 1, 4, 0.75) 100%),
    linear-gradient(180deg, rgba(2, 1, 4, 0.45) 0%, transparent 18%, transparent 78%, rgba(2, 1, 4, 0.7) 100%);
}

.site-bg .grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.site-bg .spark-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Homepage deep sparks: a bit brighter so they read in dark page areas */
body[data-page="home"] .site-bg .spark-layer .spark {
  box-shadow: 0 0 11px rgba(245, 224, 160, 0.9), 0 0 24px rgba(212, 175, 55, 0.5);
}

.site-bg .spark,
.hero-sparks .spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #f5e0a0;
  box-shadow: 0 0 10px rgba(245, 224, 160, 0.85), 0 0 22px rgba(212, 175, 55, 0.45);
  opacity: 0;
  animation: spark-rise var(--spark-dur, 12s) linear infinite;
}

.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

/* Homepage: rising sparks across the full viewport (behind copy, above stage media) */
body[data-page="home"] .hero-sparks,
body[data-page="home"] .hero-sparks.is-page-sparks {
  position: fixed;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.site-bg .smoke-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

.site-bg .smoke-layer.is-active {
  opacity: 1;
}

.site-bg .smoke-plume {
  position: absolute;
  bottom: -20%;
  width: var(--smoke-size, 180px);
  height: calc(var(--smoke-size, 180px) * 1.6);
  margin-left: calc(var(--smoke-size, 180px) / -2);
  border-radius: 50%;
  background:
    radial-gradient(ellipse 55% 45% at 50% 60%, rgba(12, 4, 24, 0.7), transparent 70%),
    radial-gradient(ellipse 40% 50% at 40% 45%, rgba(35, 12, 60, 0.45), transparent 68%),
    radial-gradient(ellipse 50% 40% at 60% 50%, rgba(6, 2, 14, 0.55), transparent 72%);
  filter: blur(32px);
  opacity: 0;
  animation: smoke-rise var(--smoke-dur, 18s) ease-in-out var(--smoke-delay, 0s) infinite;
  will-change: transform, opacity;
}

@keyframes smoke-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.7);
  }
  12% {
    opacity: var(--smoke-opacity, 0.2);
  }
  55% {
    opacity: calc(var(--smoke-opacity, 0.2) * 0.85);
    transform: translate3d(var(--smoke-drift, 20px), -45vh, 0) scale(1.15);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--smoke-drift, 20px) * 1.4), -95vh, 0) scale(1.45);
  }
}

.cursor-glow {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(60, 25, 90, 0.02) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  will-change: left, top;
}

body.has-pointer .cursor-glow { opacity: 0.25; }

@keyframes aurora-drift {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(28deg) scale(1.12); }
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(36px, -48px) scale(1.18); }
}

@keyframes portal-breathe {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.06); }
}

@keyframes portal-spin { to { transform: rotate(360deg); } }

@keyframes dust-drift {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-70px) translateX(24px); }
}

@keyframes spark-rise {
  0% { opacity: 0; transform: translateY(0) scale(0.4); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-110vh) scale(1.3); }
}

@keyframes spark-rise-mobile {
  0% { opacity: 0; transform: translateY(0) scale(0.4); }
  12% { opacity: 0.88; }
  100% { opacity: 0; transform: translateY(-110vh) scale(1.3); }
}

/* Layout */
.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

/* ========== Nav ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 2, 8, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  pointer-events: none;
}

.nav-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.3s;
}

.logo span {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta),
.nav-dropdown__trigger {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.is-active:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold-bright);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin: 0;
  padding: 0;
  gap: 0.35rem;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.nav-dropdown__trigger:hover::after,
.nav-dropdown__trigger.is-active::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after,
.nav-dropdown:hover .nav-dropdown__trigger::after {
  transform: scaleX(1);
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.is-active,
.nav-dropdown:focus-within .nav-dropdown__trigger,
.nav-dropdown:hover .nav-dropdown__trigger {
  color: var(--gold-bright);
}

.nav-dropdown__chevron {
  flex-shrink: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron,
.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(225deg);
  opacity: 0.85;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 14.5rem;
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: rgba(6, 3, 12, 0.97);
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 1px rgba(201, 162, 39, 0.15);
  backdrop-filter: blur(18px) saturate(1.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease);
  z-index: 110;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -0.65rem;
  left: 0;
  right: 0;
  height: 0.65rem;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.55rem 1.15rem;
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

/* Soft line break for long show titles — mobile menu only */
.nav-break {
  display: none;
}

.nav-dropdown__menu a::after {
  display: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-active {
  color: var(--ink-soft);
  background: rgba(201, 162, 39, 0.07);
}

.nav-dropdown__sep {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(201, 162, 39, 0.14);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright) !important;
  letter-spacing: 0.14em;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08), transparent);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.08);
  transition: background 0.35s, color 0.35s, box-shadow 0.35s !important;
}

.nav-cta:hover {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold)) !important;
  color: var(--navy) !important;
  box-shadow: 0 0 32px rgba(201, 162, 39, 0.25);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), color 0.4s, border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: var(--navy);
  box-shadow:
    0 4px 24px rgba(201, 162, 39, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(201, 162, 39, 0.4);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-bright);
  box-shadow: 0 0 28px rgba(201, 162, 39, 0.12);
}

.btn-text {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  color: var(--gold-soft);
  border: none;
  background: transparent;
}

.btn-text::after {
  content: "→";
  margin-left: 0.45rem;
  transition: transform 0.3s var(--ease);
}

.btn-text:hover {
  color: var(--gold-bright);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ========== Typography ========== */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
h2,
h3,
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.02em;
  overflow: visible;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  padding-bottom: 0.06em;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  margin-bottom: 1.1rem;
  padding-bottom: 0.1em;
  background: linear-gradient(180deg, var(--ink) 30%, var(--ink-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  margin-bottom: 0.65rem;
  padding-bottom: 0.04em;
  color: var(--ink);
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 38rem;
  line-height: 1.75;
  font-weight: 300;
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: none;
  overflow: visible;
}

.section-head h2 {
  overflow: visible;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.65rem, 3.5vw, 2.85rem);
}

.section-head .lead {
  margin-top: 0.85rem;
  max-width: none;
}

.title-oneline {
  max-width: none !important;
  white-space: nowrap;
}

.page-hero h1,
.page-tour h1,
.cta-band h2,
.soundtrack-title {
  white-space: nowrap;
  max-width: none;
}

.section-head--productions {
  max-width: none;
}

.section-head--productions h2 {
  white-space: nowrap;
}

.section-head--productions .lead {
  white-space: nowrap;
  max-width: none;
}

.section-head--featured {
  margin-bottom: 1.35rem;
  max-width: none;
}

.featured-grid .show-desc {
  margin-bottom: 0;
}

.upcoming-dates {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 42rem;
}

.upcoming-dates__item {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.upcoming-dates__item:first-child {
  border-top: 1px solid var(--line);
}

.upcoming-dates__meta {
  margin: 0;
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1.35;
}

.upcoming-dates__place::before {
  content: "·";
  margin: 0 0.45rem;
  color: var(--gold-soft);
  opacity: 0.85;
}

.upcoming-dates__title {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  opacity: 0.7;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.ornament span {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  position: relative;
  padding-top: var(--nav-h);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 78%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-media img,
.hero-media video,
.hero-media .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .hero-photo,
.hero-media .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media .hero-video {
  display: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050208;
}

.hero-media.has-video .hero-video {
  display: block !important;
}

.hero-media.has-video .hero-photo,
.hero-media.has-video .hero-photo-fallback {
  display: none;
}

.hero-media .hero-photo-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo.is-loaded + .hero-photo-fallback,
.hero-media.has-photo .hero-photo-fallback,
.hero-photo[src]:not([src=""]) + .hero-photo-fallback {
  display: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 2, 8, 0.55) 0%, rgba(5, 2, 8, 0.18) 22%, rgba(5, 2, 8, 0.35) 55%, rgba(2, 1, 4, 0.88) 82%, rgba(2, 1, 4, 1) 100%),
    linear-gradient(90deg, rgba(5, 2, 8, 0.78) 0%, rgba(5, 2, 8, 0.2) 38%, rgba(5, 2, 8, 0.15) 62%, rgba(5, 2, 8, 0.55) 100%),
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 40%, rgba(2, 1, 4, 0.45) 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 40% 30% at 30% 70%, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
  animation: portal-breathe 12s ease-in-out infinite;
}

.hero-content {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 4rem 0 5.75rem;
  position: relative;
  z-index: 3;
}

.hero-top {
  display: block;
}

.hero-copy {
  min-width: 0;
}

.hero-brand {
  font-family: var(--font-logo);
  font-size: clamp(2.8rem, 9.5vw, 6.8rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  animation: rise 1.15s var(--ease-out) both;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(0, 0, 0, 0.6);
}

.hero-brand span {
  background: linear-gradient(120deg, var(--gold-bright) 0%, var(--gold) 40%, var(--gold-soft) 70%, var(--gold-bright) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 6s linear infinite;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.8));
}

@keyframes gold-shimmer {
  to {
    background-position: 200% center;
  }
}

.hero h1 {
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: none;
  margin-bottom: 1.35rem;
  animation: rise 1.15s 0.14s var(--ease-out) both;
  font-family: var(--font-display);
  line-height: 1.3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9), 0 0 24px rgba(0, 0, 0, 0.55);
}

.hero .lead {
  margin-bottom: 0.85rem;
  animation: rise 1.15s 0.26s var(--ease-out) both;
  max-width: 36rem;
  color: var(--ink);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.hero .lead-secondary {
  margin-bottom: 2.25rem;
  animation-delay: 0.32s;
  color: var(--ink-soft);
}

.hero .btn-group {
  animation: rise 1.15s 0.38s var(--ease-out) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Page hero */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 3.75rem;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--nav-h) + 2rem);
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, transparent, var(--gold-soft));
  translate: -50% 0;
}

.page-hero h1 {
  max-width: none;
  margin-bottom: 1.25rem;
  font-size: clamp(1.55rem, 3.2vw, 2.85rem);
  white-space: nowrap;
  background: linear-gradient(180deg, var(--ink) 20%, var(--ink-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero h1 .title-by {
  display: inline;
  margin-left: 0.35em;
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: baseline;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--gold-soft);
  -webkit-text-fill-color: var(--gold-soft);
}

.page-hero .lead {
  margin-bottom: 0;
  max-width: none;
}

.lead--oneline {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.98rem, 1.35vw, 1.2rem);
}

.page-hero--media {
  min-height: 0;
  display: grid;
  align-items: end;
  padding-bottom: 2rem;
  overflow: hidden;
  isolation: isolate;
}

.page-hero--media-content {
  position: relative;
  z-index: 2;
}

.mm-hero-wide {
  margin: 0 0 1.1rem;
  max-width: min(34rem, 72%);
}

.mm-hero-wide img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(212, 175, 106, 0.28);
}

.page-hero--media .hero-media {
  z-index: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 70%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 70%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.page-hero--media .hero-media::after {
  background:
    linear-gradient(180deg, rgba(5, 2, 8, 0.62) 0%, rgba(5, 2, 8, 0.22) 28%, rgba(5, 2, 8, 0.4) 58%, rgba(2, 1, 4, 0.92) 86%, rgba(2, 1, 4, 1) 100%),
    linear-gradient(90deg, rgba(5, 2, 8, 0.82) 0%, rgba(5, 2, 8, 0.18) 36%, rgba(5, 2, 8, 0.18) 64%, rgba(5, 2, 8, 0.72) 100%),
    radial-gradient(ellipse 70% 55% at 50% 42%, transparent 35%, rgba(2, 1, 4, 0.55) 100%);
}

.page-hero--media::before {
  display: none;
}

.page-hero.page-hero--mm .hero-media .hero-video,
.page-hero.page-hero--mm .hero-media .hero-photo {
  object-position: center calc(50% + 1cm);
}

/*
 * Power of Emotions — hero video sits lower, bleeds up behind title + down into intro.
 * Selectors use .page-hero.page-hero--poe to beat .page-hero--media shared rules.
 * Intro stage portrait aligns with intro copy (see .poe-intro__row / __portrait).
 */
.page-hero.page-hero--poe .hero-media .hero-video,
.page-hero.page-hero--poe .hero-media .hero-photo {
  object-position: center bottom;
}

.page-hero.page-hero--poe .page-hero--media-content {
  position: relative;
  z-index: 5;
  isolation: isolate;
}

.page-hero.page-hero--poe .page-hero--media-content .lead {
  position: relative;
  text-shadow:
    0 2px 22px rgba(2, 1, 4, 0.96),
    0 1px 8px rgba(2, 1, 4, 0.88),
    0 0 1px rgba(2, 1, 4, 0.95);
}

/* drop-shadow works with background-clip gradient text; text-shadow does not */
.page-hero.page-hero--poe .page-hero--media-content h1 {
  position: relative;
  font-size: clamp(1.45rem, 2.85vw, 2.55rem);
  filter:
    drop-shadow(0 3px 18px rgba(2, 1, 4, 0.96))
    drop-shadow(0 1px 6px rgba(2, 1, 4, 0.9))
    drop-shadow(0 0 1px rgba(2, 1, 4, 0.85));
}

.page-hero.page-hero--poe {
  overflow: visible;
  z-index: 0;
  isolation: isolate;
}

.page-hero.page-hero--poe .hero-media {
  top: calc(-1 * clamp(5.5rem, 18vh, 11rem));
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 0;
  /* Pull up behind nav/title; extend ~halfway through intro copy column */
  height: calc(100% + clamp(22rem, 50vh, 36rem) + clamp(5.5rem, 18vh, 11rem));
  pointer-events: none;
  /* Full opacity through title band; side + bottom dissolve only */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(
      to bottom,
      #000 0%,
      #000 46%,
      rgba(0, 0, 0, 0.82) 62%,
      rgba(0, 0, 0, 0.38) 82%,
      transparent 100%
    );
  mask-image:
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(
      to bottom,
      #000 0%,
      #000 46%,
      rgba(0, 0, 0, 0.82) 62%,
      rgba(0, 0, 0, 0.38) 82%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-hero.page-hero--poe .hero-media::after {
  /* Light top tint so video reads clearly behind the title block */
  background:
    linear-gradient(
      180deg,
      rgba(5, 2, 8, 0.22) 0%,
      rgba(5, 2, 8, 0.14) 16%,
      rgba(5, 2, 8, 0.1) 30%,
      rgba(5, 2, 8, 0.18) 44%,
      rgba(2, 1, 4, 0.38) 58%,
      rgba(2, 1, 4, 0.62) 72%,
      rgba(2, 1, 4, 0.84) 86%,
      rgba(2, 1, 4, 0.96) 94%,
      rgba(2, 1, 4, 1) 100%
    ),
    linear-gradient(90deg, rgba(5, 2, 8, 0.52) 0%, rgba(5, 2, 8, 0.06) 30%, rgba(5, 2, 8, 0.06) 70%, rgba(5, 2, 8, 0.48) 100%);
}

.page-hero.page-hero--poe .hero-media::before {
  opacity: 0.35;
}

.poe-intro,
.cm-intro {
  position: relative;
  z-index: 1;
  background: transparent;
}

.poe-intro__row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 4rem;
  align-items: center;
}

/* Portrait first in HTML for mobile stack; copy left / portrait right on desktop */
.poe-intro__copy {
  grid-column: 1;
  grid-row: 1;
}

.poe-intro__portrait {
  grid-column: 2;
  grid-row: 1;
}

.poe-intro__copy,
.poe-intro__portrait,
.cm-intro__copy {
  position: relative;
  z-index: 2;
}

.poe-intro__copy p,
.cm-intro__copy p {
  color: var(--ink-soft);
}

.poe-intro__copy p + p,
.cm-intro__copy p + p {
  margin-top: 1.1rem;
}

.poe-intro__gallery,
.cm-intro__gallery {
  position: relative;
  z-index: 3;
  margin-top: 2.25rem;
}

/* Compact row — override gallery-grid min-height so 16:9 boxes stay in-column */
.poe-intro__gallery .img-ph,
.poe-intro__gallery .img-frame,
.cm-intro__gallery .img-ph,
.cm-intro__gallery .img-frame {
  min-height: 0;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 10.5rem;
  overflow: hidden;
}

.poe-intro__gallery .img-ph,
.cm-intro__gallery .img-ph {
  padding: 0.65rem;
}

.poe-intro__gallery .img-frame img,
.cm-intro__gallery .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poe-intro__facts {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  max-width: 40rem;
}

.cm-intro__facts {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  max-width: none;
}

.poe-intro__facts .fact-list,
.cm-intro__facts .fact-list {
  margin-top: 0;
}

/*
 * Natural stage photo — must beat .img-frame (overflow:hidden) and
 * .img-frame img (height:100%; object-fit:cover) which sit later in the file
 * at equal specificity and were cropping the bottom of emotions-stage.jpg.
 */
.poe-intro__portrait.img-frame,
.poe-intro__portrait {
  min-height: 0;
  width: 90%;
  margin-right: auto;
  overflow: visible;
  aspect-ratio: auto;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate(1cm, -2cm);
}

/* Kill .img-frame gold inset frame */
.poe-intro__portrait.img-frame::before,
.poe-intro__portrait::before {
  content: none;
  display: none;
  box-shadow: none;
}

.poe-intro__portrait.img-frame img,
.poe-intro__portrait img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  object-position: center;
  border: none;
  outline: none;
  box-shadow: none;
  /* Very light edge dissolve — keep left fade minimal so intro copy stays readable */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 2%, #000 97%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 2%, #000 97%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.poe-intro__portrait.img-frame:hover img {
  transform: none;
}

/* Classically Magical — title left + stage right, body + facts below */
.page-hero--cm {
  padding-bottom: 0.85rem;
}

.cm-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3.5rem;
  align-items: center;
}

.cm-top__title {
  min-width: 0;
}

.page-hero--cm h1 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
  color: #e8e8ec;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: unset;
}

.cm-hero-tagline {
  display: inline-block;
  margin: 1.25rem 0 0.85rem 0.5rem;
  max-width: none;
  padding: 0.28em 0.55em;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.05vw, 0.88rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c62828;
  border: 1.5px solid rgba(198, 40, 40, 0.85);
  opacity: 0.9;
  transform: rotate(-3deg);
  transform-origin: left center;
}

.page-hero--cm .lead {
  max-width: none;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

/* Stage image — very light soft dissolve on edges (much lighter than PoE) */
.cm-top__stage {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.cm-top__stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.cm-intro__copy {
  max-width: none;
}

.cm-intro__facts {
  margin-top: 1.75rem;
  max-width: none;
}

/* Sections */
.section {
  padding: 3.75rem 0;
  position: relative;
}

/* After .section so padding-top wins over the section shorthand */
.cm-intro,
.poe-intro {
  padding-top: 1.35rem;
}

/* Masters of Illusion Tour Hungary — pull facts up under the hero lead */
.page-hero--theatre {
  padding-bottom: 1.25rem;
}

.theatre-intro {
  padding-top: 1.35rem;
  padding-bottom: 3rem;
}

/* Workshop — pull intro/video up under the hero lead */
body[data-page="workshop"] .page-hero {
  padding-bottom: 1.25rem;
}

body[data-page="workshop"] .workshop-intro {
  padding-top: 1.35rem;
}

.theatre-intro .eyebrow {
  margin-bottom: 0.55rem;
}

.theatre-intro h2 {
  margin-bottom: 0.55rem;
}

.theatre-intro .fact-list {
  margin-top: 0.75rem;
  margin-bottom: 0.85rem;
}

.theatre-intro .split p + p {
  margin-top: 0.75rem;
}

.theatre-intro .fact-list + p {
  margin-top: 0.85rem;
}

.section-tight {
  padding: 2.5rem 0;
}

.section-line {
  border-top: 1px solid var(--line);
  position: relative;
}

.section-line::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  translate: -50% 0;
  width: min(12rem, 30%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* Proof strip */
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  padding: 2.75rem 1.5rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.04), transparent 60%),
    rgba(255, 255, 255, 0.015);
  position: relative;
}

.proof::before,
.proof::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.55;
}

.proof::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.proof::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.proof-item {
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1.15;
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}

.proof-item span {
  display: block;
  max-width: 16rem;
  margin-inline: auto;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.proof--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Image placeholders */
.img-ph {
  background:
    radial-gradient(ellipse 60% 50% at 40% 30%, rgba(142, 200, 214, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 50% at 70% 70%, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(145deg, var(--navy-3) 0%, var(--navy-2) 55%, #0c1524 100%);
  border: 1px solid rgba(201, 162, 39, 0.22);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.55;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.img-ph::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(240, 215, 140, 0.08);
  pointer-events: none;
}

.img-ph strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  position: relative;
}

.img-ph span {
  position: relative;
  display: block;
  max-width: 18rem;
}

.img-ph--hero {
  min-height: 100%;
  height: 100%;
}

.img-ph--portrait {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

.img-ph--wide {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.img-ph--square {
  aspect-ratio: 1;
  min-height: 0;
}

.img-frame {
  position: relative;
  overflow: hidden;
}

.img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(240, 215, 140, 0.12);
}

.img-frame img,
.img-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-frame:has(> video) {
  aspect-ratio: 16 / 9;
}

/* Inline looping clips: intrinsic box so height:100% never collapses to 0 */
.img-frame > video.inline-video {
  display: block;
  width: 100%;
  height: auto;
  min-height: 12rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0610;
  position: relative;
  z-index: 1;
}

.img-frame.has-video > video.inline-video {
  opacity: 1;
  visibility: visible;
}

.img-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.img-stack .img-frame {
  aspect-ratio: 16 / 9;
}

/* Masters show detail — single tour photo, smaller than column */
.theatre-intro .img-stack {
  max-width: 72%;
}

/* Show Formats — workshop + MOI split cards: matching centered media */
body[data-page="shows"] .show-stack .show-item--split .img-stack,
body[data-page="shows"] .show-stack .show-item--split .img-ph {
  width: 72%;
  max-width: 72%;
  margin-inline: auto;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.split p + p {
  margin-top: 1.1rem;
}

.split .lead,
.split p {
  color: var(--ink-soft);
}

/* Show grids */
.show-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 1.85rem;
}

.show-stack {
  display: grid;
  gap: 4.5rem;
}

.show-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.show-item--wide {
  max-width: 36rem;
}

.show-item--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.25rem;
  align-items: center;
  max-width: none;
}

.show-item--split .meta h3 {
  margin-bottom: 0.35rem;
}

.show-aka {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.show-item a.media,
.show-item .media {
  display: block;
  overflow: hidden;
  position: relative;
}

.show-item .media > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(201, 162, 39, 0.22);
}

.show-item a.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 15, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.show-item:hover a.media::after {
  opacity: 1;
}

.show-item .meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.show-item h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

.show-facts {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.show-facts li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.show-facts--labeled > div,
.show-facts--labeled .show-fact {
  display: grid;
  grid-template-columns: minmax(5.5rem, auto) 1fr;
  gap: 0.5rem 1.15rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

/* Show Formats — aligned comparison rows (3 main shows, desktop) */
.show-grid--compare {
  align-items: start;
}

.show-grid--compare .show-item h3 {
  text-align: center;
}

@supports (grid-template-rows: subgrid) {
  .show-grid--compare .show-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 11;
  }

  .show-grid--compare .show-item .meta,
  .show-grid--compare .show-facts--compare {
    display: contents;
  }

  .show-grid--compare .show-item h3 {
    margin-top: 1.2rem;
  }

  .show-grid--compare .show-desc {
    margin-bottom: 0;
    padding-bottom: 1.35rem;
  }

  .show-grid--compare .show-fact {
    display: flex;
    align-items: center;
    align-content: center;
    min-height: 2.75rem;
  }

  .show-grid--compare .show-fact:first-child {
    border-top: 1px solid var(--line);
  }

  .show-grid--compare .show-facts {
    margin-bottom: 0;
  }

  .show-grid--compare .link-arrow {
    margin-top: 1.15rem;
  }
}

@supports not (grid-template-rows: subgrid) {
  .show-grid--compare .show-item {
    height: 100%;
  }

  .show-grid--compare .show-item .meta {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .show-grid--compare .show-desc {
    flex: 1;
    margin-bottom: 0;
    padding-bottom: 1.35rem;
  }

  .show-grid--compare .show-fact {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
  }
}

.show-facts--labeled dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0;
}

.show-facts--labeled dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.show-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.show-item .btn-group {
  margin-top: 0.25rem;
}

.link-arrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s, gap 0.3s;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.35s var(--ease);
}

.show-item:hover .link-arrow,
a:hover .link-arrow {
  color: var(--gold-bright);
  gap: 0.75rem;
}

/* Show blocks — stacked with dividers (phone) */
@media (max-width: 640px) {
  body[data-page="shows"] .show-grid .show-item:not(:last-child),
  body[data-page="shows"] .show-stack .show-item:not(:last-child),
  body[data-page="home"] .show-grid .show-item:not(:last-child) {
    position: relative;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid var(--line);
  }

  body[data-page="shows"] .show-grid .show-item:not(:last-child)::after,
  body[data-page="shows"] .show-stack .show-item:not(:last-child)::after,
  body[data-page="home"] .show-grid .show-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: min(12rem, 50%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  }

  /* Magical Multiverse — stacked realms with gold dividers */
  body[data-page="magical-multiverse"] .realm-grid .realm:not(:last-child) {
    position: relative;
    padding-bottom: 2.25rem;
  }

  body[data-page="magical-multiverse"] .realm-grid .realm:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: min(12rem, 50%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  }

  body[data-page="magical-multiverse"] .realm-grid {
    gap: 0;
  }

  /* Magical Multiverse — tighten intro + realms section spacing */
  body[data-page="magical-multiverse"] .page-hero.page-hero--mm {
    padding-bottom: 1.25rem;
  }

  body[data-page="magical-multiverse"] .mm-intro {
    padding-top: 1.35rem;
    padding-bottom: 2.25rem;
  }

  body[data-page="magical-multiverse"] .mm-intro .split {
    gap: 1.5rem;
  }

  body[data-page="magical-multiverse"] .mm-intro .eyebrow {
    margin-bottom: 0.75rem;
  }

  body[data-page="magical-multiverse"] .mm-intro h2 {
    margin-bottom: 0.75rem;
  }

  body[data-page="magical-multiverse"] .mm-intro .fact-list {
    margin-top: 0.35rem;
  }

  body[data-page="magical-multiverse"] .mm-intro .wrap.mt-2 {
    margin-top: 1.35rem;
  }

  body[data-page="magical-multiverse"] .mm-realms {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  body[data-page="magical-multiverse"] .mm-realms .ornament {
    margin-bottom: 0.85rem;
  }

  body[data-page="magical-multiverse"] .mm-realms .section-head {
    margin-bottom: 1.25rem;
  }

  body[data-page="magical-multiverse"] .mm-realms .section-head .lead {
    margin-top: 0.65rem;
  }
}

/* Realms */
.realm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.realm {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-2);
}

.realm-photo {
  position: relative;
  z-index: 0;
  flex-shrink: 0;
}

.realm-photo .img-ph,
.realm-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  height: auto;
  object-fit: cover;
  display: block;
}

.realm-body {
  position: relative;
  z-index: 2;
  padding: 1.35rem 1.85rem;
  flex: 1;
}

.realm h3 {
  margin-bottom: 0.45rem;
}

.realm p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.realm--54 {
  border-bottom: 2px solid var(--magic54);
  box-shadow: 0 20px 50px rgba(167, 139, 250, 0.08);
}

.realm--54 .realm-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 20%, rgba(167, 139, 250, 0.18), transparent 55%);
  pointer-events: none;
}

.realm--clock {
  border-bottom: 2px solid var(--clockwork);
  box-shadow: 0 20px 50px rgba(196, 154, 92, 0.08);
}

.realm--clock .realm-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 20%, rgba(196, 154, 92, 0.16), transparent 55%);
  pointer-events: none;
}

.realm--neon {
  border-bottom: 2px solid var(--neon-green);
  box-shadow: 0 20px 50px rgba(74, 214, 138, 0.08);
}

.realm--neon .realm-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 20%, rgba(184, 58, 50, 0.18), transparent 55%);
  pointer-events: none;
}

/* Lists / facts */
.fact-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.fact-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.45);
}

.fact-list strong {
  color: var(--ink);
  font-weight: 500;
}

.fact-list + .mt-2 {
  margin-top: 1.15rem;
}

/* Detailed acts — illusion rows */
.illusion-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
}

.illusion-row {
  display: grid;
  grid-template-columns: minmax(9rem, 11.5rem) 1fr;
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(212, 175, 106, 0.12);
}

.illusion-row:last-child {
  border-bottom: 0;
}

.illusion-media .img-ph,
.illusion-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  min-height: 0 !important;
  padding: 0.55rem;
  font-size: 0.58rem;
  border: 1px solid rgba(212, 175, 106, 0.22);
}

.illusion-row h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ink);
}

.link-quiet {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.link-quiet:hover {
  color: var(--gold-bright);
}

.soundtrack {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.soundtrack--feature {
  display: grid;
  grid-template-columns: minmax(9rem, 12.5rem) 1fr;
  gap: 1.75rem 2.25rem;
  align-items: center;
}

.soundtrack-art {
  margin: 0;
  max-width: 12.5rem;
}

.soundtrack-art .img-ph,
.soundtrack-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 0 !important;
  padding: 0;
  font-size: 0.62rem;
  border: 1px solid rgba(212, 175, 106, 0.28);
}

.soundtrack-body .eyebrow {
  margin-bottom: 0.45rem;
}

.soundtrack--block {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 106, 0.14);
}

.soundtrack-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.45rem;
}

.soundtrack-top .eyebrow {
  margin: 0;
}

.music-toggle {
  appearance: none;
  border: 1px solid rgba(212, 175, 106, 0.45);
  background: rgba(12, 8, 20, 0.55);
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.music-toggle:hover,
.music-toggle:focus-visible {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  outline: none;
}

.music-toggle[aria-pressed="true"] {
  color: var(--navy-1, #0a0612);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.music-toggle__state {
  font-weight: 600;
}

.soundtrack-title {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  white-space: nowrap;
  max-width: none;
}

.soundtrack-copy {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 36rem;
  margin: 0.35rem 0 1rem;
}

.soundtrack-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
}

.soundtrack-links a {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 106, 0.35);
  padding-bottom: 0.1rem;
  transition: color 0.25s, border-color 0.25s;
}

.soundtrack-links a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.crumb-back {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 106, 0.35);
}

.crumb-back:hover {
  color: var(--gold-soft);
}

/* Compact spacing — detailed acts page (no page-hero; clear fixed nav) */
body[data-page="bookers"] #classically-magical .section-head > h2,
.page-acts #classically-magical .section-head > h2 {
  white-space: normal;
}

.page-acts .section {
  padding: 1.65rem 0;
}

.page-acts .show-block {
  padding: 2rem 0 2.15rem;
}

body[data-page="bookers"] .show-block:first-of-type,
.page-acts .show-block:first-of-type {
  padding-top: calc(var(--nav-h) + 1.75rem);
}

.page-acts .section-head {
  margin-bottom: 0.85rem;
  max-width: none;
}

/* Show intro: text left / image right (desktop); image above text (mobile) */
body[data-page="bookers"] .show-intro,
.page-acts .show-intro {
  margin-bottom: 0.35rem;
  align-items: start;
  gap: 2.25rem;
}

body[data-page="bookers"] .show-intro .section-head,
.page-acts .show-intro .section-head {
  margin-bottom: 0;
}

body[data-page="bookers"] .show-intro .img-stack,
.page-acts .show-intro .img-stack {
  width: 100%;
}

body[data-page="bookers"] .show-intro .img-frame,
.page-acts .show-intro .img-frame {
  aspect-ratio: 16 / 9;
}

/* Secondary labels stay muted; show titles keep display scale */
body[data-page="bookers"] .eyebrow,
.page-acts .eyebrow {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin-bottom: 0.7rem;
  color: var(--gold-soft);
  font-family: var(--font-body);
}

/* Compact act heads: “Act 1 Magic 54” — match .eyebrow gold scale, not h3 display */
body[data-page="bookers"] h3.act-line,
body[data-page="bookers"] .act-line,
.page-acts h3.act-line,
.page-acts .act-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.55rem;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  white-space: nowrap;
}

body[data-page="bookers"] h3.act-line::before,
body[data-page="bookers"] .act-line::before,
.page-acts h3.act-line::before,
.page-acts .act-line::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}

/* Acts stack inside one show — spacing only, no dividers */
body[data-page="bookers"] .show-act,
.page-acts .show-act {
  margin-top: 1.35rem;
  padding-top: 0;
  border: 0;
}

body[data-page="bookers"] .show-act .section-head,
.page-acts .show-act .section-head {
  margin-bottom: 0.45rem;
}

body[data-page="bookers"] .show-act--note,
.page-acts .show-act--note {
  margin-top: 1.5rem;
}

body[data-page="bookers"] .section-head--show h2,
.page-acts .section-head--show h2 {
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

/* Format line under show title — secondary, not an eyebrow above */
body[data-page="bookers"] .show-format,
.page-acts .show-format {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--muted);
  text-transform: none;
}

body[data-page="bookers"] .section-head .lead,
.page-acts .section-head .lead,
body[data-page="bookers"] .show-act--note .lead,
.page-acts .show-act--note .lead {
  margin-top: 0.4rem;
  margin-bottom: 0;
  max-width: 42rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
}

.page-acts .page-acts-cta {
  padding: 1.75rem 0 2.25rem;
}

.page-acts .page-acts-cta .btn-group {
  justify-content: center;
}

/* Power of Emotions — act color accents */
.emotion-act--wonder {
  --emotion-accent: #5b8fd9;
}

.emotion-act--connection {
  --emotion-accent: #c45c5c;
}

.emotion-act--courage {
  --emotion-accent: #8b6bb5;
}

.emotion-act--joy {
  --emotion-accent: var(--gold);
}

.emotion-act .section-head {
  border-left: 2px solid var(--emotion-accent);
  padding-left: 0.9rem;
}

.emotion-act .act-line {
  color: var(--emotion-accent);
}

.emotion-act .act-line::before {
  background: linear-gradient(90deg, var(--emotion-accent), transparent);
}

.page-acts .illusion-list {
  gap: 0;
  margin-top: 0.7rem;
}

.page-acts .illusion-row {
  grid-template-columns: 7.5rem 1fr;
  gap: 0.85rem 1.15rem;
  padding: 0.45rem 0;
}

.page-acts .illusion-media .img-ph,
.page-acts .illusion-media img {
  aspect-ratio: 16 / 10;
  padding: 0.35rem;
  font-size: 0.5rem;
  line-height: 1.35;
}

body[data-page="bookers"] .illusion-row h3,
.page-acts .illusion-row h3,
body[data-page="bookers"] .illusion-row h4,
.page-acts .illusion-row h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 0;
  padding-bottom: 0;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

/* Text-only act lists (no illusion photos) */
.illusion-list--text {
  gap: 0;
  margin-top: 0.55rem;
}

.illusion-list--text .illusion-row {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0.35rem 0;
}

body[data-page="bookers"] .illusion-list--text .illusion-row h3,
.page-acts .illusion-list--text .illusion-row h3,
body[data-page="bookers"] .illusion-list--text .illusion-row h4,
.page-acts .illusion-list--text .illusion-row h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 2.75rem;
}

.pillars--stack {
  grid-template-columns: 1fr;
}

body[data-page="about"] .about-defines-split {
  align-items: center;
}

.pillar {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  position: relative;
}

.pillar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.pillar h3 {
  font-size: 1.4rem;
}

.pillar p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s;
}

.timeline-item:hover {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.04), transparent);
}

.timeline-item time {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.timeline-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.timeline-body {
  display: contents;
}

.timeline-body h3,
.timeline-body p {
  grid-column: 2;
}

.timeline-photos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(100%, 56rem);
  margin-top: 0.85rem;
  margin-inline: auto;
}

.timeline-photos .img-frame {
  aspect-ratio: 16 / 9;
}

.timeline-photos .img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tour table */
/* Tour dates — title + schedule as one composition */
.page-tour {
  padding: calc(var(--nav-h) + 5rem) 0 3.75rem;
  position: relative;
}

.page-tour::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--nav-h) + 2rem);
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, transparent, var(--gold-soft));
  translate: -50% 0;
}

.page-tour h1 {
  max-width: none;
  margin-bottom: 1.35rem;
  font-size: clamp(1.55rem, 3.2vw, 2.85rem);
  white-space: nowrap;
  background: linear-gradient(180deg, var(--ink) 20%, var(--ink-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tour-table {
  width: 100%;
  border-collapse: collapse;
}

.tour-table th,
.tour-table td {
  text-align: left;
  padding: 1.1rem 0.75rem;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
  transition: background 0.3s;
}

.tour-table tbody tr:hover td {
  background: rgba(201, 162, 39, 0.04);
}

.tour-table th {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}

.tour-table td:first-child {
  font-family: var(--font-display);
  color: var(--gold-bright);
  white-space: nowrap;
  width: 14rem;
  font-size: 1.1rem;
}

.tour-table tbody tr.tour-alt td {
  color: #c4b070;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-grid .img-ph,
.gallery-grid .img-frame {
  min-height: 250px;
  transition: box-shadow 0.5s;
}

.gallery-grid .img-ph:hover,
.gallery-grid .img-frame:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.gallery-grid .span-2 {
  grid-column: span 2;
}

/* Media page photography grid — uniform 4:3 cards, even gaps */
#photos .gallery-grid {
  gap: 0.85rem;
  align-items: stretch;
}

#photos .gallery-grid .img-frame {
  aspect-ratio: 4 / 3;
  min-height: 0;
  width: 100%;
}

#photos .gallery-grid .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#photos .media-links {
  margin-top: 2.5rem;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.yt-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0612;
  border: 1px solid rgba(212, 175, 106, 0.18);
}

.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-embed__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #0a0612;
  display: block;
}

.yt-embed__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease;
  filter: saturate(0.92) brightness(0.82);
}

.yt-embed__btn:hover .yt-embed__thumb,
.yt-embed__btn:focus-visible .yt-embed__thumb {
  filter: saturate(1) brightness(0.92);
}

.yt-embed__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.4rem;
  height: 3.4rem;
  translate: -50% -50%;
  border-radius: 50%;
  background: rgba(12, 8, 20, 0.72);
  border: 1px solid rgba(212, 175, 106, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: background 0.3s, border-color 0.3s;
}

.yt-embed__play::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  translate: -40% -50%;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent var(--gold-bright);
}

.yt-embed__btn:hover .yt-embed__play,
.yt-embed__btn:focus-visible .yt-embed__play,
.yt-embed--link:hover .yt-embed__play {
  background: rgba(20, 12, 32, 0.85);
  border-color: var(--gold-bright);
}

.yt-embed--link {
  display: block;
}

.yt-embed--link .img-ph {
  position: absolute;
  inset: 0;
  margin: 0;
  height: 100%;
  min-height: 0;
}

.video-item h3 {
  margin-top: 1.1rem;
  font-size: 1.4rem;
}

.video-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 0.4rem;
}

.video-item a:last-child {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0.85rem;
  transition: color 0.3s;
}

.video-item a:last-child:hover {
  color: var(--gold-bright);
}

.video-item--links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 0.5rem 0 1rem;
}

.video-item--links h3 {
  margin-top: 0;
}

.media-links {
  display: grid;
  gap: 0;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 36rem;
}

.media-links li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.media-links li:first-child {
  border-top: 1px solid var(--line);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.75rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.65rem;
  margin-top: 2.25rem;
}

.contact-details dt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.contact-details dd {
  color: var(--ink-soft);
}

.contact-details a:hover {
  color: var(--gold-bright);
}

.form {
  display: grid;
  gap: 1.1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(201, 162, 39, 0.05), transparent 50%),
    rgba(255, 255, 255, 0.015);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1.05rem;
  background: rgba(5, 8, 15, 0.45);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* CTA band */
.cta-band {
  padding: 3.75rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% 50%, rgba(201, 162, 39, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(142, 200, 214, 0.08), transparent 65%);
  pointer-events: none;
  animation: portal-breathe 9s ease-in-out infinite;
}

.cta-band h2 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(1.55rem, 3.2vw, 2.65rem);
  white-space: nowrap;
}

.cta-band .lead {
  margin: 1.1rem auto 2.15rem;
}

.cta-band .btn-group {
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2.25rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  translate: -50% 0;
  width: min(14rem, 35%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.25rem;
}

.footer-brand {
  font-family: var(--font-logo);
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-brand span {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 22rem;
  line-height: 1.65;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.footer ul {
  display: grid;
  gap: 0.6rem;
}

.footer a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.65rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer--compact {
  padding: 1.75rem 0;
}

.footer-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
}

.footer--compact .footer-brand {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.footer-compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
}

.footer-compact-links a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.footer-compact-links a:hover {
  color: var(--gold-bright);
}

.footer-compact-copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Homepage: hero ends at CTAs — no full-viewport band or Enter-era clearance */
body[data-page="home"] .hero {
  min-height: auto;
  align-items: start;
}

body[data-page="home"] .section-tight {
  padding: 1.25rem 0 1.5rem;
}

body[data-page="home"] .proof {
  padding: 1.65rem 1.15rem;
  gap: 1.15rem;
}

body[data-page="home"] .hero-content {
  padding-bottom: 1.35rem;
}

/* Homepage only — ~35% lighter triple-scrim so stage photo reads clearer (desktop + mobile) */
body[data-page="home"] .hero-media::after {
  background:
    linear-gradient(180deg, rgba(5, 2, 8, 0.36) 0%, rgba(5, 2, 8, 0.12) 22%, rgba(5, 2, 8, 0.23) 55%, rgba(2, 1, 4, 0.57) 82%, rgba(2, 1, 4, 0.68) 100%),
    linear-gradient(90deg, rgba(5, 2, 8, 0.51) 0%, rgba(5, 2, 8, 0.13) 38%, rgba(5, 2, 8, 0.10) 62%, rgba(5, 2, 8, 0.36) 100%),
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 40%, rgba(2, 1, 4, 0.29) 100%);
}

body[data-page="home"] .hero-media::before {
  background: radial-gradient(ellipse 40% 30% at 30% 70%, rgba(212, 175, 55, 0.07), transparent 70%);
}

body[data-page="home"] .show-grid {
  gap: 1.75rem 1.5rem;
}

/* Homepage Approach — 3-photo row (matches PoE gallery-grid sizing) */
body[data-page="home"] #approach .approach-gallery {
  margin-top: 2rem;
}

body[data-page="home"] #approach .approach-gallery .img-frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

/* About: biography portrait at ~2/3 display size, tucked toward copy */
body[data-page="about"] .split:has(.about-bio-portrait) {
  gap: 2.25rem;
}

body[data-page="about"] .about-bio-portrait {
  width: 66.667%;
  max-width: 66.667%;
  aspect-ratio: 4 / 5;
  justify-self: end;
  margin-right: 1cm;
}

body[data-page="about"] .about-bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.socials {
  display: flex;
  gap: 1.35rem;
}

/* Reveal — opacity + slight lift only (no scale / blur) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-zoom {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out);
}

.reveal-zoom.is-visible {
  opacity: 1;
}

.text-gold {
  color: var(--gold-soft);
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

blockquote {
  font-family: var(--font-display);
  font-style: italic;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-zoom {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .section-head--productions h2,
  .section-head--productions .lead {
    white-space: normal;
  }

  .proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse,
  .show-item--split,
  .show-grid,
  .realm-grid,
  .illusion-row,
  .soundtrack--feature,
  .contact-grid,
  .footer-grid,
  .poe-intro__row,
  .cm-top {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .show-grid--compare .show-item {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }

  .show-grid--compare .show-facts--compare {
    display: block;
  }

  .show-grid--compare .show-item .meta {
    display: flex;
    flex-direction: column;
  }

  .show-grid--compare .show-item h3 {
    margin-top: 0;
  }

  .show-grid--compare .show-desc {
    flex: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
  }

  .show-grid--compare .show-fact {
    min-height: 0;
    align-items: baseline;
  }

  .show-grid--compare .show-fact:first-child {
    border-top: none;
  }

  .show-grid--compare .show-facts {
    margin-bottom: 1.15rem;
  }

  .show-grid--compare .link-arrow {
    margin-top: 0;
  }

  body[data-page="about"] .about-bio-portrait {
    margin-inline: auto;
  }

  /* Mobile: hero lead → stage pic → intro copy (natural HTML order) */
  .poe-intro__copy,
  .poe-intro__portrait {
    grid-column: auto;
    grid-row: auto;
  }

  /* Stacked: natural image height (no forced aspect box) */
  .poe-intro__portrait.img-frame,
  .poe-intro__portrait {
    aspect-ratio: auto;
    transform: none;
    margin-inline: auto;
  }

  .cm-top {
    gap: 1.75rem;
  }

  .poe-intro__row {
    gap: 1.5rem;
  }

  .poe-intro__gallery,
  .cm-intro__gallery {
    margin-top: 2rem;
  }

  .poe-intro__facts {
    margin-top: 1.25rem;
    max-width: none;
  }

  .cm-intro__facts {
    margin-top: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid .span-2 {
    grid-column: span 2;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .logo {
    min-height: 44px;
    padding-block: 0.35rem;
  }

  .nav-home {
    display: none;
  }

  .logo::after {
    bottom: 0.35rem;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(5, 8, 15, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2.25rem;
    gap: 1.35rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    overflow-y: auto;
  }

  .nav.is-open .nav-links {
    transform: none;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .nav-dropdown__trigger {
    font-size: 0.95rem;
    cursor: pointer;
  }

  a.nav-dropdown__trigger {
    pointer-events: auto;
  }

  button.nav-dropdown__trigger {
    pointer-events: none;
    cursor: default;
  }

  .nav-dropdown__chevron {
    display: none;
  }

  .nav-dropdown__menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0 0 0 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-links .nav-dropdown__menu a {
    display: block;
    font-size: 0.88rem;
    padding: 0;
    background: transparent !important;
    white-space: normal;
    line-height: 1.35;
    max-width: 100%;
  }

  .nav-break {
    display: inline;
  }

  .nav-dropdown__sep {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

@media (max-width: 640px) {
  /* Workshop: title → subtitle → video → body copy */
  body[data-page="workshop"] .workshop-intro .split {
    display: flex;
    flex-direction: column;
  }

  body[data-page="workshop"] .workshop-intro__media {
    order: -1;
  }

  .page-hero h1,
  .page-tour h1,
  .section-head h2,
  .cta-band h2,
  .soundtrack-title,
  .lead--oneline,
  .title-oneline,
  .page-acts .act-line,
  .cm-hero-tagline {
    white-space: normal;
  }

  .cm-hero-tagline {
    letter-spacing: 0.08em;
    transform: rotate(-2deg);
  }

  .page-hero h1,
  .page-tour h1 {
    font-size: clamp(1.55rem, 6.5vw, 2.05rem);
  }

  /* Tour table lives in one tall .reveal — never gate it behind scroll IO on phone */
  .page-tour .reveal {
    opacity: 1;
    transform: none;
  }

  /* Tour dates — card rows: date · city, then show title */
  .tour-table thead {
    display: none;
  }

  .tour-table,
  .tour-table tbody {
    display: block;
    width: 100%;
  }

  .tour-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0.45rem;
    row-gap: 0.3rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .tour-table tbody tr:hover td {
    background: transparent;
  }

  .tour-table tbody tr:hover {
    background: rgba(201, 162, 39, 0.04);
  }

  .tour-table td {
    display: block;
    width: auto;
    padding: 0;
    border-bottom: none;
  }

  .tour-table td:first-child {
    flex: 0 1 auto;
    width: auto;
    white-space: normal;
    font-size: 1rem;
  }

  .tour-table td:nth-child(2) {
    flex: 1 1 auto;
    min-width: 0;
  }

  .tour-table td:nth-child(2)::before {
    content: "·";
    margin-right: 0.45rem;
    color: var(--gold-soft);
    opacity: 0.85;
  }

  .tour-table td:nth-child(3) {
    flex: 1 1 100%;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .tour-table tbody tr.tour-alt td:nth-child(3) {
    color: #a89858;
  }

  .page-hero--cm h1 {
    font-size: clamp(1.45rem, 5.8vw, 2.1rem);
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 6.2vw, 2.1rem);
  }

  .cta-band h2 {
    font-size: clamp(1.4rem, 5.2vw, 1.95rem);
    max-width: none;
  }

  .mm-hero-wide {
    max-width: min(28rem, 90%);
    margin-bottom: 0.95rem;
  }

  .proof,
  .pillars,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-item:last-child {
    grid-column: auto;
  }

  .gallery-grid .span-2 {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .timeline-body h3,
  .timeline-body p,
  .timeline-photos {
    grid-column: auto;
  }

  .timeline-photos {
    grid-template-columns: 1fr;
    width: min(100%, 20rem);
  }

  .hero-content {
    padding-bottom: 2.5rem;
  }

  body[data-page="home"] .hero-content {
    padding-bottom: 0;
  }

  /* Homepage mobile: brand + h1 overlaid on stage pic; copy below */
  body[data-page="home"] .hero {
    display: grid;
    grid-template-columns: 100%;
    justify-content: stretch;
    align-content: start;
    min-height: auto;
    padding-top: var(--nav-h);
  }

  body[data-page="home"] .hero-content,
  body[data-page="home"] .hero-top,
  body[data-page="home"] .hero-copy {
    display: contents;
  }

  body[data-page="home"] .hero-media {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    margin-block: 0;
    height: auto;
    min-height: clamp(13rem, 48vw, 19rem);
    aspect-ratio: auto;
    -webkit-mask-image: none;
    mask-image: none;
    overflow: hidden;
    border-radius: 0;
  }

  body[data-page="home"] .hero-media .hero-photo,
  body[data-page="home"] .hero-media .hero-video,
  body[data-page="home"] .hero-media .hero-photo-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
    transform: none;
    opacity: 1;
  }

  /* Keep edge-to-edge photo; home-specific lighter scrims (see body[data-page="home"] rules above) */
  body[data-page="home"] .hero-media::before,
  body[data-page="home"] .hero-media::after {
    z-index: 1;
  }

  body[data-page="home"] .hero-brand {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    z-index: 3;
    width: auto;
    max-width: calc(100% - 2.3rem);
    margin: 0;
    /* Sit directly under the 3-line h1 (same left inset as headline) */
    padding: calc(0.65rem + (1.125rem * 1.3 * 3) + 0.65rem) 0 0 1.15rem;
    box-sizing: border-box;
    font-size: clamp(2.52rem, 10.8vw, 3.78rem); /* ~90% of prior mobile size */
    font-weight: 600;
    letter-spacing: 0.14em;
  }

  body[data-page="home"] .hero h1 {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 0.65rem 1.15rem 0;
    box-sizing: border-box;
    pointer-events: none;
    font-size: clamp(1.125rem, 2.52vw, 1.665rem);
  }

  body[data-page="home"] .hero .lead:first-of-type {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 0.85rem;
    padding-inline: 1.25rem;
  }

  body[data-page="home"] .hero .lead-secondary {
    grid-column: 1;
    grid-row: 3;
    position: relative;
    z-index: 3;
    width: 100%;
    padding-inline: 1.25rem;
  }

  body[data-page="home"] .hero .btn-group {
    grid-column: 1;
    grid-row: 4;
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 1.15rem;
    padding-inline: 1.25rem;
  }

  /* Full-page sparks on phone — do not clip to the short hero-media band */
  body[data-page="home"] .hero-sparks,
  body[data-page="home"] .hero-sparks.is-page-sparks {
    position: fixed;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
  }

  .hero-brand {
    letter-spacing: 0.1em;
  }

  .section {
    padding: 3rem 0;
  }

  .cm-intro,
  .poe-intro {
    padding-top: 1.35rem;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 1.15rem) 0 2rem;
  }

  .page-hero.page-hero--poe {
    padding-top: calc(var(--nav-h) + 0.65rem);
    padding-bottom: 1.5rem;
  }

  .page-hero.page-hero--poe .hero-media {
    top: calc(-1 * clamp(2.75rem, 10vh, 5.5rem));
    height: calc(100% + clamp(18rem, 48vh, 30rem) + clamp(2.75rem, 10vh, 5.5rem));
  }

  .page-hero.page-hero--poe .hero-media .hero-video,
  .page-hero.page-hero--poe .hero-media .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .form {
    padding: 1.35rem;
  }

  .site-bg .portal-ring {
    opacity: 0.5;
  }

  .site-bg .spark,
  .hero-sparks .spark {
    animation-name: spark-rise-mobile;
    animation-duration: calc(var(--spark-dur, 12s) * 1.65);
    box-shadow: 0 0 12px rgba(245, 224, 160, 0.9), 0 0 24px rgba(212, 175, 55, 0.5);
  }
}


/* ========== Magical motion + gold intensity ========== */
.hero-media {
  transform-origin: center center;
  will-change: transform;
}

.hero-content {
  will-change: transform, opacity;
}

.parallax-zoom {
  will-change: transform;
}

.img-ph {
  border-color: rgba(212, 175, 55, 0.32) !important;
  box-shadow: inset 0 0 40px rgba(107, 63, 160, 0.12), 0 0 30px rgba(212, 175, 55, 0.05);
}

.proof {
  border-color: rgba(245, 224, 160, 0.2) !important;
  box-shadow: 0 0 40px rgba(107, 63, 160, 0.12), inset 0 0 60px rgba(212, 175, 55, 0.03);
}

.btn-primary {
  box-shadow: 0 4px 28px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.cta-band::before {
  background:
    radial-gradient(ellipse 55% 70% at 50% 50%, rgba(212, 175, 55, 0.2), transparent 70%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(107, 63, 160, 0.18), transparent 65%) !important;
}

.nav.is-scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.section-line::before,
.footer::before {
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent) !important;
  height: 1px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .site-bg .aurora,
  .site-bg .portal-orb,
  .site-bg .portal-orb-2,
  .site-bg .portal-orb-3,
  .site-bg .portal-ring,
  .site-bg .rays,
  .site-bg .dust,
  .site-bg .spark,
  .site-bg .smoke-plume,
  .hero-sparks .spark {
    animation: none !important;
  }
  .cursor-glow { display: none !important; }
}

/* Fine pointer + real hover: lift only — no scale / grow on hover */
@media (hover: hover) and (pointer: fine) {
  .logo:hover {
    color: var(--gold-bright);
  }

  .logo:hover::after {
    transform: scaleX(1);
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-text:hover {
    transform: translateY(-1px);
  }

  .btn-text:hover::after {
    transform: translateX(4px);
  }

  .show-item a.media {
    transition: transform 0.6s var(--ease);
  }

  .show-item:hover a.media {
    transform: translateY(-3px);
  }

  .show-item:hover .link-arrow::after,
  a:hover .link-arrow::after {
    transform: translateX(3px);
  }

  .realm {
    transition: transform 0.6s var(--ease);
  }

  .realm:hover {
    transform: translateY(-4px);
  }

  .gallery-grid .img-ph,
  .gallery-grid .img-frame {
    transition: transform 0.5s var(--ease), box-shadow 0.5s;
  }

  .gallery-grid .img-ph:hover,
  .gallery-grid .img-frame:hover {
    transform: translateY(-3px);
  }

  .show-item a.media,
  .realm,
  .gallery-grid .img-frame {
    will-change: transform;
  }
}

/* Coarse pointer: hard-reset any stray hover transforms (e.g. iPad reporting hover:hover) */
@media (pointer: coarse) {
  .btn:hover,
  .btn-text:hover,
  .show-item:hover a.media,
  .realm:hover,
  .gallery-grid .img-ph:hover,
  .gallery-grid .img-frame:hover,
  .btn-text:hover::after,
  .show-item:hover .link-arrow::after,
  a:hover .link-arrow::after {
    transform: none !important;
  }
}

/* Touch / coarse pointer: no transform transitions — prevents sticky-hover lift while scrolling */
@media (hover: none), (pointer: coarse) {
  .show-item a.media,
  .realm,
  .gallery-grid .img-ph,
  .gallery-grid .img-frame,
  .btn,
  .btn-text,
  .link-arrow::after {
    transition-property: background, background-color, border-color, box-shadow, color, opacity, filter, gap;
  }

  .parallax-zoom,
  .hero-media {
    will-change: auto;
  }
}

/* ========== Print / PDF export (bookers) ========== */
@media print {
  @page {
    size: A4;
    margin: 8mm 9mm;
  }

  html,
  body {
    background: #020108 !important;
    color: #f8f0e4 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body[data-page="bookers"] {
    background: #020108 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body[data-page="bookers"] *,
  body[data-page="bookers"] *::before,
  body[data-page="bookers"] *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    animation: none !important;
    transition: none !important;
  }

  /* Scroll-reveal must not hide content in print/PDF */
  body[data-page="bookers"] .reveal,
  body[data-page="bookers"] .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  /* Chrome chrome / atmosphere / CTAs — out of the booker PDF */
  body[data-page="bookers"] .nav,
  body[data-page="bookers"] .nav-toggle,
  body[data-page="bookers"] .cursor-glow,
  body[data-page="bookers"] .site-bg,
  body[data-page="bookers"] .page-acts-cta,
  body[data-page="bookers"] .cta-band,
  body[data-page="bookers"] .footer {
    display: none !important;
  }

  body[data-page="bookers"] main {
    display: block;
    padding: 0;
    margin: 0;
  }

  body[data-page="bookers"] .wrap {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  body[data-page="bookers"] .section-line::before {
    display: none !important;
  }

  /* One show = one page (CTA section follows, so don't use :last-of-type) */
  body[data-page="bookers"] .show-block {
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: auto;
    page-break-after: auto;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0;
  }

  body[data-page="bookers"] .show-block:has(~ .show-block) {
    break-after: page;
    page-break-after: always;
  }

  body[data-page="bookers"] .show-block:first-of-type {
    padding-top: 0 !important;
  }

  /* Compact intro: text + image side-by-side, small pic */
  body[data-page="bookers"] .show-intro {
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 0.85rem 1.1rem !important;
    align-items: start !important;
    margin: 0 0 0.45rem !important;
    direction: ltr !important;
  }

  body[data-page="bookers"] .show-intro.reverse {
    direction: ltr !important;
  }

  body[data-page="bookers"] .show-intro > * {
    direction: ltr !important;
  }

  /* Image column second (text first) even with .reverse markup */
  body[data-page="bookers"] .show-intro .section-head {
    order: 1;
    margin: 0 !important;
  }

  body[data-page="bookers"] .show-intro .img-stack {
    order: 2;
    width: 100%;
    margin: 0;
  }

  body[data-page="bookers"] .show-intro .img-frame {
    aspect-ratio: 16 / 9;
    max-height: 118px;
    overflow: hidden;
  }

  body[data-page="bookers"] .show-intro .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  body[data-page="bookers"] .section-head--show h2,
  body[data-page="bookers"] .show-intro h2,
  body[data-page="bookers"] h2 {
    font-size: 1.45rem !important;
    line-height: 1.15 !important;
    margin: 0 0 0.2rem !important;
    padding-bottom: 0 !important;
    white-space: normal !important;
    max-width: none !important;
    /* Gradient + background-clip:text paints as a solid cream slab in PDF */
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    color: #f8f0e4 !important;
    -webkit-text-fill-color: #f8f0e4 !important;
  }

  body[data-page="bookers"] #classically-magical .section-head > h2 {
    font-size: 1.2rem !important;
    white-space: normal !important;
  }

  body[data-page="bookers"] .show-format {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
    margin: 0 0 0.15rem !important;
  }

  body[data-page="bookers"] .section-head .lead,
  body[data-page="bookers"] .show-act--note .lead {
    font-size: 0.78rem !important;
    line-height: 1.32 !important;
    margin: 0.2rem 0 0 !important;
    max-width: none !important;
  }

  body[data-page="bookers"] .show-act {
    margin-top: 0.45rem !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body[data-page="bookers"] .show-act .section-head {
    margin-bottom: 0.15rem !important;
  }

  body[data-page="bookers"] .show-act--note {
    margin-top: 0.4rem !important;
  }

  body[data-page="bookers"] h3.act-line,
  body[data-page="bookers"] .act-line {
    font-size: 0.58rem !important;
    letter-spacing: 0.22em !important;
    margin: 0 0 0.2rem !important;
    white-space: nowrap;
  }

  body[data-page="bookers"] h3.act-line::before,
  body[data-page="bookers"] .act-line::before {
    width: 0.9rem;
  }

  body[data-page="bookers"] .emotion-act .section-head {
    padding-left: 0.55rem;
    border-left-width: 2px;
  }

  body[data-page="bookers"] .illusion-list,
  body[data-page="bookers"] .illusion-list--text {
    margin-top: 0.15rem !important;
    gap: 0 !important;
  }

  body[data-page="bookers"] .illusion-list--text .illusion-row,
  body[data-page="bookers"] .illusion-row {
    padding: 0.08rem 0 !important;
    gap: 0 !important;
    border-color: rgba(245, 224, 160, 0.12);
  }

  body[data-page="bookers"] .illusion-list--text .illusion-row h3,
  body[data-page="bookers"] .illusion-list--text .illusion-row h4,
  body[data-page="bookers"] .illusion-row h3,
  body[data-page="bookers"] .illusion-row h4 {
    font-size: 0.82rem !important;
    line-height: 1.25 !important;
    margin: 0 !important;
  }
}

