/* DW Calhoun: Broadway stage layer.
   Opening night, balanced with warm paper. Everything here is CSS or inline SVG: no image requests.
   Motion: one-shot choreography under 5 seconds; nothing loops. Reduced motion shows the final state. */

:root {
  --gold: #f0c35a;
  --gold-soft: #f7dfa3;
  --gold-line: rgba(240, 195, 90, 0.55);
  --velvet-1: #0a1224;
  --velvet-2: #13213f;
  --velvet-3: #1c2f57;
  --ivory: #fbf7ee;
  --satin: #f1ebdf;
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .07  0 0 0 0 .08  0 0 0 0 .12  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  --noise-soft: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .35  0 0 0 0 .3  0 0 0 0 .2  0 0 0 .07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  --swash: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 420' fill='none'><path d='M30 330 C 250 90, 520 420, 780 210 S 1120 40, 1180 120' stroke='%230c71c3' stroke-width='38' stroke-linecap='round'/><path d='M120 380 C 380 220, 600 400, 860 300' stroke='%230c71c3' stroke-width='12' stroke-linecap='round' opacity='.6'/></svg>");
  --ease-curtain: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------------ paper: warm, luminous, never flat */
body {
  background-color: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 110% -10%, rgba(240, 195, 90, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(12, 113, 195, 0.06), transparent 60%),
    var(--noise-soft);
  background-size: auto, auto, 160px 160px;
}
.section--paper-2 {
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(255, 255, 255, 0.55), transparent 70%),
    linear-gradient(180deg, var(--satin), var(--paper-2));
}
.site-header { box-shadow: inset 0 -1px 0 var(--gold-line), 0 10px 30px -24px rgba(11, 18, 32, 0.5); border-bottom: 0; }

/* Brush-swash watermark behind section heads and page heroes */
.page-hero, .section-head { position: relative; isolation: isolate; }
.page-hero:not(.stage)::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  right: -8vw; top: 10%; width: min(70vw, 900px); aspect-ratio: 1200 / 420;
  background: var(--swash) center / contain no-repeat; opacity: 0.07; transform: rotate(-6deg);
}
.section:not(.stage) > .wrap > .section-head::before,
.section:not(.stage) > .wrap.split > .section-head::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -3rem; top: -1.5rem; width: 22rem; aspect-ratio: 1200 / 420;
  background: var(--swash) center / contain no-repeat; opacity: 0.06;
}

/* ------------------------------------------------ stage: velvet, beams, floor, dust */
.stage {
  background:
    radial-gradient(120% 70% at 50% 110%, rgba(28, 47, 87, 0.95), transparent 60%),
    linear-gradient(180deg, var(--velvet-1) 0%, var(--velvet-2) 55%, var(--velvet-1) 100%);
}
.stage::before {
  background:
    radial-gradient(55% 60% at 50% -5%, rgba(255, 223, 160, 0.20), rgba(255, 223, 160, 0) 70%),
    radial-gradient(35% 40% at 88% 15%, rgba(74, 163, 236, 0.16), rgba(74, 163, 236, 0) 70%);
}
.stage::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.35; mix-blend-mode: soft-light;
  background-image: var(--noise); background-size: 160px 160px;
}
.stage-fx { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }

/* Velvet drapes (left and right) with folds, and a swag valance */
.drape {
  position: absolute; top: 0; bottom: 0; width: clamp(1.5rem, 7vw, 8.5rem);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 35%, rgba(0, 0, 0, 0.35) 70%, transparent),
    repeating-linear-gradient(90deg, #0b1a3a 0 14px, #17305f 22px, #0e2147 34px, #081430 44px);
  box-shadow: inset -18px 0 30px -12px rgba(0, 0, 0, 0.7);
  transition: transform 1.4s var(--ease-curtain);
}
.drape--l { left: 0; border-radius: 0 0 60% 0 / 0 0 6% 0; transform-origin: left top; }
.drape--r { right: 0; transform: scaleX(-1); border-radius: 0 0 60% 0 / 0 0 6% 0; transform-origin: right top; }
.drape::after { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 3px; background: linear-gradient(180deg, var(--gold-line), transparent 70%); }
.js .hero .drape--l { transform: scaleX(2.4); animation: drape-open 1.6s var(--ease-curtain) 0.15s forwards; }
.js .hero .drape--r { transform: scaleX(-2.4); animation: drape-open-r 1.6s var(--ease-curtain) 0.15s forwards; }
@keyframes drape-open { to { transform: scaleX(1); } }
@keyframes drape-open-r { to { transform: scaleX(-1); } }
.swag {
  position: absolute; left: 0; right: 0; top: 0; height: 2.4rem;
  background:
    radial-gradient(60px 26px at 60px 0, #17305f 70%, transparent 72%) 0 0 / 120px 2.4rem repeat-x,
    linear-gradient(180deg, #0b1a3a, transparent);
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.45));
}
.swag::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-line), transparent); }

/* Spotlight beams, haze, floor pool */
.beam {
  position: absolute; top: -10%; width: 38%; height: 130%;
  background: linear-gradient(180deg, rgba(255, 228, 170, 0.22), rgba(255, 228, 170, 0.05) 60%, transparent 85%);
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0 100%);
  filter: blur(6px); opacity: 0.9; mix-blend-mode: screen;
}
.beam--l { left: 8%; transform: rotate(-16deg); transform-origin: 50% 0; }
.beam--r { right: 4%; transform: rotate(14deg); transform-origin: 50% 0; background: linear-gradient(180deg, rgba(120, 190, 255, 0.20), rgba(120, 190, 255, 0.04) 60%, transparent 85%); }
.js .hero .beam { opacity: 0; animation: lights-up 1.8s ease-out 0.5s forwards; }
@keyframes lights-up { to { opacity: 0.9; } }
.floor {
  position: absolute; left: -10%; right: -10%; bottom: 0; height: 26%;
  background:
    radial-gradient(40% 60% at 68% 100%, rgba(255, 223, 160, 0.16), transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 90px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
  transform: perspective(600px) rotateX(55deg); transform-origin: bottom;
}
.dust {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, var(--gold-soft), transparent),
    radial-gradient(1.2px 1.2px at 27% 64%, var(--gold), transparent),
    radial-gradient(1.8px 1.8px at 41% 14%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 58% 38%, var(--gold-soft), transparent),
    radial-gradient(1.5px 1.5px at 73% 12%, var(--gold), transparent),
    radial-gradient(1.1px 1.1px at 84% 52%, #fff, transparent),
    radial-gradient(1.6px 1.6px at 93% 28%, var(--gold-soft), transparent),
    radial-gradient(1.2px 1.2px at 6% 78%, var(--gold), transparent),
    radial-gradient(1.4px 1.4px at 35% 88%, var(--gold-soft), transparent),
    radial-gradient(1.2px 1.2px at 66% 82%, #fff, transparent);
  opacity: 0.7;
}
.js .hero .dust { opacity: 0; animation: lights-up 2.4s ease-out 0.9s forwards; }

/* Brush edges where stage meets paper */
.stage-edge { display: block; width: 100%; height: clamp(22px, 3.2vw, 46px); color: var(--velvet-1); margin-bottom: -1px; }
.stage-edge--bottom { transform: scaleY(-1); margin-top: -1px; margin-bottom: 0; }
.stage-edge path { fill: currentColor; }

/* ------------------------------------------------ hero */
.hero { position: relative; isolation: isolate; overflow: clip; padding-inline: clamp(0rem, 4vw, 3rem); }
.hero .eyebrow { color: var(--gold); }
.hero h1 { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35); }
.hero h1 .accent { color: var(--gold); }
.hero .swash { color: var(--brand-bright); filter: drop-shadow(0 0 18px rgba(74, 163, 236, 0.45)); }
.hero__media { position: relative; padding: clamp(0.6rem, 1.2vw, 1rem); }
.hero__media picture img, .hero__media img {
  border-radius: 999px 999px var(--radius-l) var(--radius-l) / 44% 44% var(--radius-l) var(--radius-l);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero__media::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid var(--gold-line);
  border-radius: 999px 999px calc(var(--radius-l) + 10px) calc(var(--radius-l) + 10px) / 44% 44% calc(var(--radius-l) + 10px) calc(var(--radius-l) + 10px);
}
.hero__media::after {
  content: ""; position: absolute; left: 5%; right: 5%; bottom: -8%; height: 18%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 223, 160, 0.35), transparent 70%); filter: blur(10px);
}
.hero__badge {
  background: linear-gradient(180deg, var(--ivory), var(--satin));
  border: 1px solid rgba(154, 106, 18, 0.35);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.75), inset 0 1px 0 #fff;
}
.hero__badge::before {
  content: "Program note"; display: block; margin-bottom: var(--s-1);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted);
}

/* Buttons: a little stage light */
.btn { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 20px -12px rgba(12, 113, 195, 0.9); }
.stage .btn:not(.btn--ghost) { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 0 0 1px rgba(240, 195, 90, 0.35), 0 14px 30px -14px rgba(74, 163, 236, 0.9); }
.stage .btn--ghost { --btn-border: var(--gold-line); }
.stage .btn--ghost:hover { --btn-bg: var(--gold); color: var(--ink); --btn-border: var(--gold); }

/* ------------------------------------------------ marquee sign (replaces the scrolling ticker) */
.marquee { position: relative; padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
/* Results panel: modern, no bulbs. Soft light from two corners, a gradient hairline edge, calm cards. */
.marquee__board {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(1.5rem, 1rem + 3vw, 3.25rem);
  border-radius: 28px; color: var(--on-dark);
  background:
    radial-gradient(70% 90% at 0% 0%, rgba(74, 163, 236, 0.22), transparent 60%),
    radial-gradient(60% 80% at 100% 110%, rgba(240, 195, 90, 0.16), transparent 60%),
    linear-gradient(160deg, #142546 0%, #0b1428 70%);
  box-shadow: 0 60px 120px -60px rgba(10, 18, 36, 0.85), 0 2px 0 rgba(255, 255, 255, 0.04) inset;
}
.marquee__board::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, rgba(240, 195, 90, 0.7), rgba(255, 255, 255, 0.06) 38%, rgba(255, 255, 255, 0.04) 62%, rgba(74, 163, 236, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
.marquee__board::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none; right: -6%; top: -30%; width: 55%; aspect-ratio: 1200 / 420;
  background: var(--swash) center / contain no-repeat; opacity: 0.12; transform: rotate(-12deg); filter: brightness(1.8);
}
.marquee__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--s-5); margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.marquee__kicker { display: inline-flex; align-items: center; gap: var(--s-2); margin: 0 0 var(--s-3); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.75rem; color: var(--gold); }
.marquee__kicker::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(240, 195, 90, 0.18); }
.marquee h2 { margin: 0; color: var(--on-dark); font-size: var(--step-4); max-width: 18ch; }
.marquee__wins { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); counter-reset: win; }
.marquee__win {
  position: relative; counter-increment: win; display: grid; gap: var(--s-2); align-content: start;
  padding: var(--s-6) var(--s-5) var(--s-5); border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.marquee__win::after {
  content: counter(win, decimal-leading-zero); position: absolute; right: var(--s-5); top: var(--s-4);
  font-family: var(--font-display); font-weight: 800; font-stretch: 80%; font-size: 2.6rem; line-height: 1; color: rgba(255, 255, 255, 0.07);
}
.marquee__win:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px rgba(240, 195, 90, 0.45), 0 30px 50px -30px rgba(0, 0, 0, 0.8); }
.marquee__win strong { font-family: var(--font-display); font-stretch: 88%; font-weight: 800; font-size: var(--step-2); line-height: 1.08; color: var(--on-dark); letter-spacing: -0.01em; }
.marquee__win span { color: var(--on-dark-muted); font-size: var(--step--1); line-height: 1.5; }
.marquee__win .marquee__tier {
  justify-self: start; display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: var(--s-1);
  padding: 0.3rem 0.7rem 0.3rem 0.5rem; border-radius: 999px; background: rgba(240, 195, 90, 0.12); color: var(--gold-soft);
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.7rem;
}
.marquee__tier svg { width: 0.95rem; height: 0.95rem; color: var(--gold); }
.marquee__meta { display: flex; flex-wrap: wrap; gap: 0.15rem 0; margin-top: var(--s-2); padding-top: var(--s-3); border-top: 1px solid rgba(255, 255, 255, 0.08); }
.marquee__meta > span + span::before { content: "\00B7"; margin: 0 0.5rem; color: rgba(240, 195, 90, 0.7); }
@media (max-width: 47.99rem) {
  .marquee__head { margin-bottom: var(--s-5); }
  .marquee h2 { font-size: var(--step-3); }
  .marquee__wins { gap: var(--s-3); }
  .marquee__win { padding: var(--s-5) var(--s-4) var(--s-4); gap: var(--s-1); }
  .marquee__win strong { font-size: var(--step-1); }
  .marquee__win::after { font-size: 1.9rem; right: var(--s-4); top: var(--s-3); }
  .marquee__meta { padding-top: var(--s-2); }
}

/* ------------------------------------------------ ticket stubs for the age finder */
.age-index a {
  position: relative; border: 0; border-radius: var(--radius-m);
  background:
    linear-gradient(180deg, var(--ivory), var(--satin));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 18px 36px -24px rgba(11, 18, 32, 0.55), 0 0 0 1px rgba(154, 106, 18, 0.22);
  -webkit-mask: radial-gradient(circle 11px at 0 58%, transparent 98%, #000) left / 51% 100% no-repeat, radial-gradient(circle 11px at 100% 58%, transparent 98%, #000) right / 51% 100% no-repeat;
  mask: radial-gradient(circle 11px at 0 58%, transparent 98%, #000) left / 51% 100% no-repeat, radial-gradient(circle 11px at 100% 58%, transparent 98%, #000) right / 51% 100% no-repeat;
  padding-top: calc(var(--s-5) + 1.1rem);
}
.age-index a::before {
  content: "Admit one"; position: absolute; left: var(--s-5); top: var(--s-4);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-deep);
}
.age-index a::after { content: ""; position: absolute; left: 14px; right: 14px; top: 58%; border-top: 1.5px dashed rgba(11, 18, 32, 0.18); }
.age-index a:hover { background: linear-gradient(180deg, var(--velvet-2), var(--velvet-1)); }
.age-index a:hover::before { color: var(--gold); }
.age-index a:hover::after { border-color: rgba(240, 195, 90, 0.35); }
.age-index__count { position: relative; z-index: 1; }

/* ------------------------------------------------ program cards: depth, not flat boxes */
.program {
  background: linear-gradient(180deg, #fffdf8, var(--ivory));
  border: 0;
  box-shadow: 0 1px 0 #fff inset, 0 0 0 1px rgba(11, 18, 32, 0.07), 0 22px 44px -30px rgba(11, 18, 32, 0.45);
}
.program:hover { box-shadow: 0 1px 0 #fff inset, 0 0 0 1px var(--gold-line), 0 34px 60px -30px rgba(11, 18, 32, 0.55); }
.program--feature {
  background:
    radial-gradient(70% 60% at 20% 0%, rgba(255, 223, 160, 0.22), transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(74, 163, 236, 0.22), transparent 60%),
    linear-gradient(160deg, var(--velvet-3), var(--velvet-1));
  box-shadow: 0 0 0 1px var(--gold-line), 0 34px 60px -28px rgba(11, 18, 32, 0.7);
}
.program--feature::before {
  content: ""; position: absolute; right: -12%; bottom: -8%; width: 90%; aspect-ratio: 1200 / 420; z-index: -1;
  background: var(--swash) center / contain no-repeat; opacity: 0.35; filter: saturate(1.4) brightness(1.4);
}
.program--feature::after { background: none; }
.program__arrow { box-shadow: 0 8px 16px -8px rgba(12, 113, 195, 0.9); }
.program--feature .program__arrow { background: var(--gold); color: var(--ink); }

/* ------------------------------------------------ locations, steps, rules, notes: lift off the page */
.location, .steps > li, .rules > li, .faq details, .age-group, .note {
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 0 0 1px rgba(11, 18, 32, 0.07), 0 16px 34px -28px rgba(11, 18, 32, 0.5);
}
.location { background: linear-gradient(180deg, #fffdf8, var(--ivory)); }
.location h3::before { content: ""; display: block; width: 2.5rem; height: 3px; margin-bottom: var(--s-3); border-radius: 3px; background: linear-gradient(90deg, var(--brand), var(--gold)); }
.steps > li::before { background: radial-gradient(circle at 35% 30%, var(--brand-bright), var(--brand-deep)); box-shadow: 0 6px 14px -6px rgba(12, 113, 195, 0.9), 0 0 0 3px var(--ivory), 0 0 0 4px var(--gold-line); }
.note { border-left: 0; background: linear-gradient(180deg, #fffdf8, var(--satin)); }
.stage .note { background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 0 0 1px rgba(240, 195, 90, 0.25); }

/* ------------------------------------------------ plaques and ribbons */
.plaques { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); margin-top: var(--s-7); }
.plaque {
  position: relative; padding: var(--s-5) var(--s-5) var(--s-4); border-radius: var(--radius-m); text-align: left;
  background: linear-gradient(180deg, #fdf8ea, #efe3c2);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), inset 0 0 0 6px #e3cf98, inset 0 0 0 7px rgba(120, 82, 10, 0.35), 0 26px 50px -28px rgba(0, 0, 0, 0.85);
}
.plaque:first-child { grid-row: span 2; display: grid; align-content: end; }
.plaque__value { font-family: var(--font-display); font-weight: 800; font-stretch: 78%; font-size: var(--step-5); line-height: 0.9; letter-spacing: -0.03em; color: #2b2112; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
.plaque:first-child .plaque__value { font-size: clamp(4rem, 2.5rem + 6vw, 8rem); }
.plaque__label { font-weight: 700; color: #5c4a26; }
.award { position: relative; background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)); border: 0; box-shadow: inset 0 0 0 1px rgba(240, 195, 90, 0.22), 0 24px 40px -30px rgba(0, 0, 0, 0.8); padding-top: calc(var(--s-5) + 0.4rem); }
.award__tier {
  justify-self: start; padding: 0.3rem 1.1rem 0.3rem 0.8rem; color: #2b2112; background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%); font-size: 0.72rem;
}
.award:hover { box-shadow: inset 0 0 0 1px var(--gold-line), 0 30px 50px -30px rgba(0, 0, 0, 0.9); }

/* ------------------------------------------------ CTA band with drapes */
.cta-band { overflow: clip; }
.cta-band .wrap { position: relative; z-index: 1; padding-inline: clamp(0rem, 4vw, 3rem); }
.cta-band h2 { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4); }

/* ------------------------------------------------ small screens: keep drama, give content the width */
@media (max-width: 47.99rem) {
  .drape { width: 1.1rem; }
  .beam { width: 70%; }
  .hero { padding-inline: 0; }
  .plaque:first-child { grid-row: auto; }
}

/* ------------------------------------------------ reduced motion: final state, no choreography */
@media (prefers-reduced-motion: reduce) {
  .js .hero .drape--l { transform: scaleX(1); animation: none; }
  .js .hero .drape--r { transform: scaleX(-1); animation: none; }
  .js .hero .beam { opacity: 0.9; animation: none; }
  .js .hero .dust { opacity: 0.7; animation: none; }
  .js .marquee__board.in-view::before { animation: none; }
}
/* ------------------------------------------------ follow spot (desktop pointer only, set by JS) */
.followspot {
  position: absolute; left: 0; top: 0; width: 46rem; height: 46rem; border-radius: 50%; opacity: 0;
  background: radial-gradient(closest-side, rgba(255, 232, 180, 0.16), rgba(255, 232, 180, 0.06) 45%, transparent 70%);
  mix-blend-mode: screen; transition: opacity 0.6s var(--ease); will-change: transform;
}
.followspot.is-on { opacity: 1; }

/* ------------------------------------------------ home class finder panel */
.classfinder .age-index a[aria-pressed="true"] { background: linear-gradient(180deg, var(--velvet-2), var(--velvet-1)); color: var(--on-dark); box-shadow: 0 0 0 2px var(--gold), 0 18px 36px -20px rgba(11, 18, 32, 0.7); }
.classfinder .age-index a[aria-pressed="true"]::before { color: var(--gold); }
.classfinder .age-index a[aria-pressed="true"] .age-index__count { color: var(--on-dark-muted); }
.finder-panel {
  margin-top: var(--s-5); padding: clamp(1.25rem, 3vw, 2.25rem); border-radius: var(--radius-l);
  background: linear-gradient(180deg, #fffdf8, var(--ivory));
  box-shadow: 0 1px 0 #fff inset, 0 0 0 1px var(--gold-line), 0 30px 60px -36px rgba(11, 18, 32, 0.55);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.finder-panel:focus { outline: none; }
.finder-panel__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--s-4); }
.finder-panel__head h3 { margin: 0; font-size: var(--step-3); }
.finder-panel__head .eyebrow { margin-bottom: var(--s-1); }
.finder-results { list-style: none; margin: var(--s-3) 0 var(--s-5); padding: 0; display: grid; gap: 0 var(--s-6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.finder-result__when { white-space: nowrap; }
.finder-result { display: grid; grid-template-columns: 7.75rem 1fr; gap: var(--s-1) var(--s-3); align-items: baseline; padding: var(--s-3) 0; border-bottom: 1px dashed rgba(11, 18, 32, 0.14); }
.finder-result[hidden] { display: none; }
.finder-result__when strong { color: var(--brand-deep); }
.finder-result__name { font-weight: 700; }
.finder-result .tag { grid-column: 2; justify-self: start; font-size: 0.72rem; }
.tag--gym { background: var(--velvet-2); color: var(--on-dark); }

/* ------------------------------------------------ real photography: credits and gallery strip */
.photo { position: relative; margin: 0; }
.photo-credit {
  position: absolute; right: var(--s-3); bottom: var(--s-3); z-index: 1;
  padding: 0.2rem 0.6rem; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--on-dark); background: rgba(10, 18, 36, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(15rem, 22rem); gap: var(--s-4);
  overflow-x: auto; scroll-snap-type: x mandatory; padding: var(--s-2) var(--gutter) var(--s-5); margin-inline: calc(-1 * var(--gutter));
  -webkit-mask: linear-gradient(90deg, transparent, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent);
  mask: linear-gradient(90deg, transparent, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent);
}
.gallery > * { scroll-snap-align: start; }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-m); box-shadow: 0 24px 40px -28px rgba(11, 18, 32, 0.6); }

/* ------------------------------------------------ studio photography in the layout */
.program--has-photo { overflow: hidden; isolation: isolate; }
.program__media { display: block; margin: calc(-1 * var(--s-6)) calc(-1 * var(--s-6)) var(--s-2); overflow: hidden; }
.program__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.program:hover .program__media img { transform: scale(1.04); }
.program--feature .program__media { position: absolute; inset: 0; margin: 0; z-index: -2; }
.program--feature .program__media img { height: 100%; aspect-ratio: auto; opacity: 0.7; }
.program--feature.program--has-photo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(10, 18, 36, 0.96), rgba(10, 18, 36, 0.35) 70%); }
.program--feature.program--has-photo::before { display: none; }

.photo-band { margin: 0 0 var(--s-6); border-radius: var(--radius-l); overflow: hidden; box-shadow: 0 0 0 1px var(--gold-line), 0 40px 80px -40px rgba(11, 18, 32, 0.7); }
.photo-band img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 50% 55%; }
@media (max-width: 47.99rem) { .photo-band img { aspect-ratio: 3 / 2; } }
.gallery .photo { margin: 0; }

.stage-wall { columns: 3 17rem; column-gap: var(--s-4); }
.stage-wall .photo { break-inside: avoid; margin: 0 0 var(--s-4); border-radius: var(--radius-m); overflow: hidden; box-shadow: 0 0 0 1px rgba(11, 18, 32, 0.08), 0 26px 44px -30px rgba(11, 18, 32, 0.6); }
.stage-wall img { width: 100%; height: auto; }

.page-hero__media--natural .photo { border-radius: var(--radius-l); overflow: hidden; box-shadow: 0 0 0 1px var(--gold-line), 0 40px 70px -40px rgba(11, 18, 32, 0.6); }
.page-hero__media--natural img, .page-hero__media--natural video { display: block; width: 100%; height: auto; aspect-ratio: auto; border-radius: 0; }
.contact-photo { margin: 0 0 var(--s-6); border-radius: var(--radius-l); overflow: hidden; box-shadow: 0 0 0 1px var(--gold-line), 0 30px 60px -36px rgba(11, 18, 32, 0.6); }
.contact-photo img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
@media (max-width: 47.99rem) { .contact-photo img { aspect-ratio: 3 / 2; } }

.loop-video { position: relative; background: var(--velvet-1); }
.loop-video__toggle {
  position: absolute; left: var(--s-3); bottom: var(--s-3); min-height: 2.75rem; padding: 0 var(--s-4);
  border: 1px solid var(--gold-line); border-radius: var(--radius-pill); background: rgba(10, 18, 36, 0.8); color: var(--on-dark);
  font: 700 0.85rem var(--font-body); cursor: pointer;
}
.loop-video__toggle:hover { background: var(--gold); color: var(--ink); }
.loop-video__toggle:focus-visible { outline-color: var(--gold); }

/* ------------------------------------------------ containment and legibility fixes */
/* Decorative layers bleed on purpose; sections clip them so the page never scrolls sideways.
   overflow-x: clip (not hidden) keeps position: sticky working inside. */
.section, .page-hero, .marquee, .hero { overflow-x: clip; }
.stage a.hero__badge:not(.btn), .stage a.hero__badge:not(.btn):hover { color: var(--ink); }
.hero__badge strong { color: var(--brand-deep); }
.marquee .btn--ghost { --btn-fg: var(--on-dark); --btn-border: var(--gold-line); }
.marquee .btn--ghost:hover { --btn-bg: var(--gold); color: var(--ink); --btn-border: var(--gold); }
.marquee :focus-visible { outline-color: var(--gold); }

@media (forced-colors: active) {
  .stage-fx, .marquee__board::before, .age-index a::after { display: none; }
  .age-index a { -webkit-mask: none; mask: none; border: 1px solid CanvasText; }
}
