:root{
  --paper:#FBF7FE;
  --paper-2:#F3E8FF;
  --ink:#5B21B6;
  --ink-soft:#7C3AED;
  --brass:#FFC72C;
  --brass-soft:#FFDA6B;
  --burgundy:#E7368F;
  --burgundy-soft:#F17BB8;
  --blue:#2E9BF0;
  --blue-soft:#7FC6FA;
  --cream:#FFFFFF;
  --text:#3A2657;
  --text-muted:#6B5A85;
  --line: rgba(91,33,182,0.15);
  --radius: 4px;
  --shadow: 0 12px 30px rgba(91,33,182,0.18);
  --maxw: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font-family:'Work Sans', sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.display{
  font-family:'Fraunces', serif;
  font-weight:600;
  letter-spacing:-0.01em;
  margin:0;
  color:var(--ink);
}
.italic{font-style:italic; font-weight:500;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
.eyebrow{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-weight:500;
  color:var(--burgundy);
  font-size:1.05rem;
  letter-spacing:0.01em;
  margin-bottom:10px;
  display:inline-block;
}
button, .btn{
  font-family:'Work Sans', sans-serif;
  font-weight:600;
  font-size:0.95rem;
  cursor:pointer;
  border:none;
  border-radius:var(--radius);
  padding:14px 26px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{ background:var(--burgundy); color:var(--cream); }
.btn-primary:hover{ background:var(--burgundy-soft); transform:translateY(-1px); box-shadow:0 8px 20px rgba(231,54,143,0.35);}
.btn-primary:focus-visible, .btn-ghost:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:3px solid var(--brass);
  outline-offset:2px;
}
.btn-ghost{ background:transparent; color:var(--ink); border:1.5px solid var(--ink); }
.btn-ghost:hover{ background:var(--ink); color:var(--cream); }
.btn-ghost.on-dark{ color:var(--cream); border-color:var(--brass-soft);}
.btn-ghost.on-dark:hover{ background:var(--brass-soft); color:var(--ink); }
.btn-gold{ background:var(--brass); color:var(--ink); }
.btn-gold:hover{ background:var(--brass-soft); transform:translateY(-1px); box-shadow:0 8px 20px rgba(255,199,44,0.4); }
.btn-lg{ padding:17px 32px; font-size:1.02rem; }

/* staff line motif */
.staff{ position:relative; height:56px; }
.staff span{ position:absolute; left:0; right:0; height:1px; background:currentColor; opacity:0.35; }
.staff span:nth-child(1){top:0;}
.staff span:nth-child(2){top:14px;}
.staff span:nth-child(3){top:28px;}
.staff span:nth-child(4){top:42px;}
.staff span:nth-child(5){top:56px;}

/* ===== HEADER ===== */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,247,254,0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:8px 0; gap:24px; position:relative; }
.logo{ display:flex; align-items:center; gap:10px; }
.logo img{ height:66px; width:auto; display:block; }
.nav-links{ display:flex; align-items:center; gap:26px; font-size:0.95rem; font-weight:500; }
.nav-links a{ position:relative; padding:4px 0; }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--burgundy); transition:width .2s ease;
}
.nav-links a:hover::after{ width:100%; }
.nav-links a.active{ color:var(--burgundy); }
.nav-links a.active::after{ width:100%; }
.nav-right{ display:flex; align-items:center; gap:18px; }
.nav-phone{ font-size:0.92rem; font-weight:600; white-space:nowrap; }
.nav-cta{ padding:11px 20px; font-size:0.88rem; }

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  width:38px; height:38px; padding:0; border:none; background:transparent; cursor:pointer; flex-shrink:0;
}
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero{ background:var(--ink); color:var(--cream); position:relative; overflow:hidden; padding:64px 0 56px; }
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(600px 300px at 85% -10%, rgba(255,199,44,0.2), transparent 60%),
    radial-gradient(520px 300px at -10% 20%, rgba(46,155,240,0.2), transparent 60%),
    radial-gradient(500px 260px at 30% 120%, rgba(231,54,143,0.22), transparent 60%);
  pointer-events:none;
}
.page-hero .wrap{ position:relative; z-index:1; max-width:760px; }
.page-hero .eyebrow{ color:var(--brass-soft); }
.page-hero h1{ color:var(--cream); font-size:clamp(2rem, 3vw, 2.7rem); line-height:1.14; }
.page-hero p{ margin-top:16px; color:rgba(247,243,232,0.82); font-size:1.08rem; max-width:600px; }
.page-hero .crumbs{ font-size:0.85rem; color:rgba(247,243,232,0.55); margin-bottom:14px; }
.page-hero .crumbs a{ color:rgba(247,243,232,0.8); font-weight:600; }
.page-hero .crumbs a:hover{ color:var(--brass-soft); }

/* ===== HOME HERO ===== */
.hero{ background:var(--ink); color:var(--cream); position:relative; overflow:hidden; padding:52px 0 60px; }
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(600px 300px at 85% -10%, rgba(255,199,44,0.22), transparent 60%),
    radial-gradient(520px 300px at -10% 15%, rgba(46,155,240,0.22), transparent 60%),
    radial-gradient(500px 260px at 20% 115%, rgba(231,54,143,0.24), transparent 60%);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:1; display:grid; grid-template-columns: 1.1fr 0.9fr; gap:56px; align-items:center; }
.hero .crumbs{ font-size:0.85rem; color:rgba(247,243,232,0.55); margin-bottom:14px; }
.hero .crumbs a{ color:rgba(247,243,232,0.8); font-weight:600; }
.hero .crumbs a:hover{ color:var(--brass-soft); }
.hero .eyebrow-row{ display:inline-flex; align-items:center; gap:9px; margin-bottom:16px; background:rgba(255,199,44,0.14); border:1px solid rgba(255,218,107,0.4); border-radius:100px; padding:7px 16px 7px 12px; }
.hero .eyebrow-row .dot{ width:7px; height:7px; border-radius:50%; background:var(--brass-soft); animation:pulse 1.8s ease-in-out infinite; flex-shrink:0; }
@keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero .live-label{ font-size:0.8rem; text-transform:uppercase; letter-spacing:0.06em; font-weight:700; color:var(--brass-soft); }
.hero h1{ font-size:clamp(2.2rem, 3.4vw, 3.2rem); line-height:1.1; color:var(--cream); }
.hero h1 .accent{ color:var(--brass-soft); }
.hero p.lede{ margin-top:20px; font-size:1.08rem; color:rgba(247,243,232,0.85); max-width:520px; }
.hero-ctas{ display:flex; gap:14px; margin-top:28px; flex-wrap:wrap; align-items:center; }
.hero-urgency{ margin-top:16px; font-size:0.88rem; color:var(--brass-soft); font-weight:600; }
.trust-strip{
  margin-top:34px; display:flex; flex-wrap:wrap; gap:10px 26px; font-size:0.85rem;
  color:rgba(247,243,232,0.68); border-top:1px solid rgba(247,243,232,0.18); padding-top:20px;
}
.trust-strip span{ white-space:nowrap; }

.hero.theatre-lead{ padding-bottom:52px; }
.hero.theatre-lead .wrap{ max-width:800px; }
.hero.theatre-lead .skill-pills{ margin-top:22px; margin-bottom:0; }
.hero.theatre-lead .hero-ctas{ margin-top:24px; }
.hero.theatre-lead .class-note{ margin-top:10px; font-size:0.85rem; color:rgba(247,243,232,0.6); }
.photo-strip{ display:flex; flex-wrap:wrap; gap:14px; margin-top:40px; }
.photo-strip img{ height:210px; width:auto; max-width:100%; border-radius:8px; object-fit:cover; box-shadow:var(--shadow); flex-shrink:0; }
@media (max-width:920px){ .photo-strip img{ height:170px; } }
@media (max-width:600px){ .photo-strip img{ height:130px; flex:1 1 45%; } }

.loc-strip{
  background:rgba(247,243,232,0.05); border:1px solid rgba(247,243,232,0.14); border-radius:10px; padding:32px 36px;
}
.loc-strip h3{ color:var(--cream); font-size:1.1rem; margin-bottom:20px; }
.loc-strip .loc-rows{ flex-direction:row; flex-wrap:wrap; gap:36px; }
.loc-strip-hero{ margin-top:24px; padding:22px 24px; }
.loc-strip-hero h3{ font-size:1rem; margin-bottom:14px; }
.loc-strip-hero .loc-rows{ flex-direction:column; gap:12px; }

.hero-visual{ position:relative; width:100%; aspect-ratio: 4/5; border-radius:10px; overflow:hidden; border:1px solid rgba(247,243,232,0.2); box-shadow:0 20px 50px rgba(0,0,0,0.35); background:#241145; }
.hero-visual-static img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-carousel{ position:absolute; inset:0; --carousel-count:5; }
.hero-carousel img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0;
  animation-name:heroFade;
  animation-duration: calc(var(--carousel-count) * 4s);
  animation-iteration-count:infinite;
}
.hero-carousel img:nth-child(1){ animation-delay:0s; }
.hero-carousel img:nth-child(2){ animation-delay:4s; }
.hero-carousel img:nth-child(3){ animation-delay:8s; }
.hero-carousel img:nth-child(4){ animation-delay:12s; }
.hero-carousel img:nth-child(5){ animation-delay:16s; }
.hero-carousel img:nth-child(6){ animation-delay:20s; }
@keyframes heroFade{
  0%{opacity:0;} 4%{opacity:1;} 20%{opacity:1;} 25%{opacity:0;} 100%{opacity:0;}
}
.hero-visual::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(20,10,35,0.55) 0%, rgba(20,10,35,0.0) 30%, transparent 60%);
  pointer-events:none;
}
.hero-visual .cap{
  position:absolute; left:16px; bottom:14px; z-index:2;
  color:var(--cream); font-size:0.82rem; font-weight:600;
  display:flex; align-items:center; gap:8px;
}
.hero-visual .cap .dot{ width:6px; height:6px; border-radius:50%; background:var(--blue-soft); }
@media (prefers-reduced-motion: reduce){
  .hero-carousel img{ animation:none; opacity:0; }
  .hero-carousel img:first-child{ opacity:1; }
}

/* ===== HERO / CAROUSEL DOTS (clickable) ===== */
.hero-dots{
  position:absolute; left:0; right:0; bottom:44px; z-index:3;
  display:flex; justify-content:center; gap:8px;
}
.hero-dot{
  width:9px; height:9px; padding:0; border-radius:50%; border:1.5px solid rgba(247,243,232,0.7);
  background:rgba(247,243,232,0.25); cursor:pointer; transition:background .2s ease, transform .2s ease;
}
.hero-dot:hover{ transform:scale(1.15); }
.hero-dot.is-active{ background:var(--brass-soft); border-color:var(--brass-soft); }
.hero-carousel.is-manual img{ animation:none !important; opacity:0; }
.hero-carousel.is-manual img.is-shown{ opacity:1; }

/* ===== WHAT'S ON TITLE (replaces news strip) ===== */
.whats-on-title{
  color:var(--cream); font-size:clamp(1.5rem, 2.1vw, 1.9rem); margin-bottom:24px;
}

/* ===== VIDEO FEATURE (single or paired) ===== */
.video-feature{ max-width:760px; margin:0 auto; }
.video-feature .video-frame{ border-radius:12px; box-shadow:var(--shadow); }
.video-feature .video-caption{ text-align:center; margin-top:16px; color:var(--text-muted); font-size:0.95rem; }
.video-feature .video-caption strong{ color:var(--ink); }
.video-feature-grid{ display:grid; grid-template-columns:1fr 1fr; gap:32px; max-width:920px; margin:0 auto; }
.video-feature-grid.triple{ grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); max-width:1140px; }
.video-feature-item .video-frame{ position:relative; aspect-ratio:16/9; border-radius:12px; box-shadow:var(--shadow); overflow:hidden; }
.video-feature-item .video-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-feature-item .video-caption{ text-align:center; margin-top:14px; color:var(--text-muted); font-size:0.92rem; }
.video-feature-item .video-caption strong{ color:var(--ink); }
@media (max-width:760px){ .video-feature-grid, .video-feature-grid.triple{ grid-template-columns:1fr; } }

/* ===== URGENCY STRIP (site-wide) ===== */
.urgency-strip{
  background:linear-gradient(90deg, var(--burgundy), var(--ink));
  color:var(--cream);
  padding:10px 0;
  font-size:0.86rem;
  font-weight:600;
  text-align:center;
}
.urgency-strip .wrap{ display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; }
.urgency-strip a{ text-decoration:underline; text-underline-offset:2px; color:var(--brass-soft); }

/* ===== SPOTLIGHT BANNER ===== */
.spotlight{ background:var(--paper); padding:80px 0; border-bottom:1px solid var(--line); }
.spotlight-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:52px; align-items:center; }
.spotlight-photo{ position:relative; border-radius:10px; overflow:hidden; box-shadow:var(--shadow); line-height:0; }
.spotlight-photo img{ width:100%; height:auto; display:block; }
.spotlight-tag{
  position:absolute; left:16px; bottom:16px;
  background:rgba(20,10,35,0.72); backdrop-filter:blur(4px);
  color:var(--cream); font-size:0.78rem; font-weight:600;
  padding:7px 14px; border-radius:100px;
}
.spotlight-photo-stack{ position:relative; display:flex; flex-direction:column; gap:14px; }
.spotlight-photo-stack .stack-item{ border-radius:10px; overflow:hidden; box-shadow:var(--shadow); line-height:0; }
.spotlight-photo-stack .stack-item img{ width:100%; height:auto; display:block; }
.spotlight-photo-stack .spotlight-tag{ position:static; align-self:flex-start; margin-top:2px; }
.spotlight-copy h2{ font-size:clamp(1.5rem, 2.1vw, 2rem); line-height:1.18; margin-top:6px; }
.spotlight-copy p{ margin-top:14px; color:var(--text-muted); font-size:1.02rem; max-width:520px; }
.mini-gallery{ display:flex; flex-wrap:wrap; gap:10px; margin:24px 0 18px; max-width:520px; }
.mini-gallery a{ display:block; border-radius:6px; overflow:hidden; width:110px; height:92px; background:var(--paper-2); flex-shrink:0; }
.mini-gallery img{ width:100%; height:100%; object-fit:contain; transition:transform .3s ease; }
.mini-gallery a:hover img{ transform:scale(1.08); }
.spotlight-copy .card-link{ font-size:0.92rem; font-weight:600; color:var(--burgundy); }
.spotlight-copy .card-link:hover{ text-decoration:underline; }
@media (max-width:820px){
  .spotlight-grid{ grid-template-columns:1fr; }
  .spotlight-photo{ max-width:380px; margin:0 auto; }
}

/* ===== SECTION SPACING ===== */
section{ padding:88px 0; }
.section-sm{ padding:56px 0; }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ max-width:680px; margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem, 2.4vw, 2.3rem); line-height:1.15; }
.section-head p{ margin-top:14px; color:var(--text-muted); font-size:1.05rem; }
.section-foot{ margin-top:40px; text-align:center; }

/* ===== TEASER CARDS (home page hub links) ===== */
.teaser-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
.teaser-card{
  background:var(--cream); border:1px solid var(--line); border-radius:10px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease;
}
.teaser-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.teaser-card .thumb{ aspect-ratio:4/3; overflow:hidden; background:var(--paper-2); }
.teaser-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.teaser-card .body{ padding:20px 22px 24px; display:flex; flex-direction:column; flex-grow:1; }
.teaser-card .tag{ font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; color:var(--burgundy); margin-bottom:8px; }
.teaser-card h3{ font-size:1.08rem; margin-bottom:8px; }
.teaser-card p{ color:var(--text-muted); font-size:0.9rem; margin:0 0 16px; flex-grow:1; }
.teaser-card .go{ font-size:0.88rem; font-weight:700; color:var(--ink); display:inline-flex; align-items:center; gap:6px; }
.teaser-card:hover .go{ color:var(--burgundy); }
@media (max-width:920px){ .teaser-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .teaser-grid{ grid-template-columns:1fr; } }

/* ===== HOW IT WORKS ===== */
.steps{ background:var(--paper); }
.steps-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; }
.step-card{ text-align:center; }
.step-num{
  width:48px; height:48px; border-radius:50%; background:var(--ink); color:var(--brass-soft);
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
  font-family:'Fraunces', serif; font-weight:600; font-size:1.2rem;
}
.step-card:nth-child(2) .step-num{ background:var(--blue); color:#fff; }
.step-card:nth-child(3) .step-num{ background:var(--burgundy); color:#fff; }
.step-card h3{ font-size:1.1rem; margin-bottom:8px; }
.step-card p{ color:var(--text-muted); font-size:0.95rem; margin:0; }
@media (max-width:820px){ .steps-grid{ grid-template-columns:1fr; gap:28px; } }

/* ===== PROGRAMS ===== */
.programs{ background:var(--paper); }
.prog-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:6px; overflow:hidden; }
.prog-card{ background:var(--cream); padding:34px 30px; transition: background .2s ease; }
.prog-card:hover{ background:#fff; }
.prog-icon{ width:42px; height:42px; border-radius:50%; background:var(--ink); color:var(--brass-soft); display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:1.15rem; }
.prog-card:nth-child(3n+2) .prog-icon{ background:var(--blue); color:#fff; }
.prog-card:nth-child(3n) .prog-icon{ background:var(--burgundy); color:#fff; }
.prog-card h3{ font-size:1.15rem; margin-bottom:8px; }
.prog-card p{ color:var(--text-muted); font-size:0.95rem; margin:0 0 12px; }
.prog-card a.card-link{ font-size:0.85rem; font-weight:600; color:var(--burgundy); }
.prog-card a.card-link:hover{ text-decoration:underline; }
@media (max-width:920px){ .prog-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .prog-grid{ grid-template-columns:1fr; } }

/* ===== DARK SECTION (theatre / testimonials) ===== */
.dark-section{ background:var(--ink); color:var(--cream); }
.dark-section .eyebrow{ color:var(--brass-soft); }
.dark-section .section-head h2{ color:var(--cream); }
.dark-section .section-head p{ color:rgba(247,243,232,0.75); }

.urgency-box{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
  background:linear-gradient(120deg, rgba(255,199,44,0.16), rgba(46,155,240,0.14));
  border:1px solid rgba(247,243,232,0.22);
  border-radius:10px;
  padding:26px 30px;
  margin-bottom:44px;
}
.urgency-box .tag{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--brass-soft); color:var(--ink);
  font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em;
  padding:4px 10px; border-radius:100px; margin-bottom:10px;
}
.urgency-box h3{ color:var(--cream); font-size:1.2rem; margin-bottom:6px; }
.urgency-box p{ color:rgba(247,243,232,0.78); margin:0; font-size:0.95rem; max-width:520px; }
.urgency-box .btns{ display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.urgency-box .fine{ font-size:0.78rem; color:rgba(247,243,232,0.6); font-weight:600; }
.urgency-box.compact{
  margin-top:28px; margin-bottom:0; max-width:480px;
  flex-direction:column; align-items:flex-start; gap:14px; padding:20px 24px;
}
.urgency-box.compact h3{ font-size:1.05rem; }
.urgency-box.compact p{ font-size:0.88rem; }
.urgency-box.compact .btns{ align-items:flex-start; }

.show-gallery{ columns: 3 240px; column-gap:14px; margin-bottom:44px; }
.show-gallery.compact{ columns: 4 200px; }
.show-gallery figure{
  position:relative; margin:0 0 14px; overflow:hidden; border-radius:8px;
  background:rgba(247,243,232,0.06);
  break-inside:avoid;
  line-height:0;
}
.show-gallery img{ width:100%; height:auto; display:block; transition:transform .5s ease; }
.show-gallery figure:hover img{ transform:scale(1.05); }
.show-gallery figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:16px 14px 12px;
  background:linear-gradient(0deg, rgba(20,10,35,0.88), transparent);
  color:var(--cream); font-size:0.8rem; font-weight:600;
  line-height:1.4;
  opacity:0; transform:translateY(6px);
  transition:opacity .25s ease, transform .25s ease;
}
.show-gallery figure:hover figcaption{ opacity:1; transform:translateY(0); }
.show-gallery.light figure{ background:var(--paper-2); }
.home-gallery-section{ background:var(--cream); }

.proof-strip{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:44px; }
.proof-chip{
  background:rgba(247,243,232,0.07);
  border:1px solid rgba(247,243,232,0.16);
  border-radius:100px;
  padding:9px 18px;
  font-size:0.85rem;
  color:rgba(247,243,232,0.85);
  font-weight:500;
}
.proof-chip strong{ color:var(--brass-soft); font-weight:700; }
.proof-chip.blue strong{ color:var(--blue-soft); }

.class-details{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:40px; align-items:center;
  background:rgba(247,243,232,0.05);
  border:1px solid rgba(247,243,232,0.14);
  border-radius:10px;
  padding:36px;
}
.class-details h3{ color:var(--cream); font-size:1.25rem; margin-bottom:10px; }
.class-details p{ color:rgba(247,243,232,0.75); margin:0 0 18px; }
.class-note{ font-size:0.85rem; color:rgba(247,243,232,0.6); margin:14px 0 0; }
.skill-pills{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.skill-pills span{ font-size:0.78rem; font-weight:600; color:var(--ink); background:var(--brass-soft); padding:5px 12px; border-radius:100px; }
.skill-pills span:nth-child(2n){ background:var(--blue-soft); }
.loc-rows{ display:flex; flex-direction:column; gap:14px; }
.loc-row{ display:flex; align-items:flex-start; gap:12px; }
.loc-row .ico{
  width:30px; height:30px; border-radius:50%; background:rgba(255,199,44,0.22); color:var(--brass-soft);
  display:flex; align-items:center; justify-content:center; font-size:0.85rem; flex-shrink:0; margin-top:2px;
}
.loc-row strong{ color:var(--cream); display:block; font-size:0.95rem; }
.loc-row span.sub{ color:rgba(247,243,232,0.65); font-size:0.85rem; }

@media (max-width: 920px){
  .show-gallery{ columns: 2 200px; }
  .show-gallery.compact{ columns:2 180px; }
  .class-details{ grid-template-columns:1fr; }
}

/* ===== SHOWCASE NOTE (theatre page) ===== */
.showcase-note{
  display:grid; grid-template-columns:0.4fr 1fr; gap:28px; align-items:center;
  background:rgba(247,243,232,0.05); border:1px solid rgba(247,243,232,0.14);
  border-radius:10px; padding:28px; margin-bottom:44px;
}
.showcase-note-photo{ border-radius:8px; overflow:hidden; aspect-ratio:4/3; }
.showcase-note-photo img{ width:100%; height:100%; object-fit:cover; }
.showcase-note .tag{
  display:inline-block; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em;
  color:var(--ink); background:var(--brass-soft); padding:4px 10px; border-radius:100px; margin-bottom:10px;
}
.showcase-note h3{ color:var(--cream); font-size:1.2rem; margin-bottom:8px; }
.showcase-note p{ color:rgba(247,243,232,0.75); margin:0; }
@media (max-width:720px){ .showcase-note{ grid-template-columns:1fr; } }

/* ===== VIDEOS ===== */
.watch{ background:var(--paper-2); }
.video-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.video-grid.small{ grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); }
.video-card{ background:var(--cream); border:1px solid var(--line); border-radius:10px; overflow:hidden; box-shadow:var(--shadow); }
.video-frame{ position:relative; aspect-ratio:16/9; background:var(--ink); }
.video-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-card .video-label{ padding:14px 18px; font-size:0.92rem; font-weight:600; color:var(--ink); }
@media (max-width:820px){ .video-grid, .video-grid.small{ grid-template-columns:1fr; } }

/* ===== PRICING / PACKAGES ===== */
.pricing{ background:var(--paper-2); }
.trial-callout{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px;
  background:var(--ink); color:var(--cream); border-radius:8px; padding:26px 32px; margin-top:36px; margin-bottom:0;
  box-shadow:0 10px 26px rgba(91,33,182,0.22);
}
.trial-callout h3{ color:var(--cream); font-size:1.15rem; margin-bottom:4px; }
.trial-callout p{ color:rgba(247,243,232,0.75); margin:0; font-size:0.95rem; }
.pricing-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.price-card{ background:var(--cream); border:1.5px solid var(--line); border-radius:10px; padding:32px 28px; position:relative; display:flex; flex-direction:column; }
.price-card.popular{ border-color:var(--burgundy); box-shadow:var(--shadow); }
.price-card .ribbon{
  position:absolute; top:-13px; left:28px; background:var(--burgundy); color:var(--cream);
  font-size:0.72rem; font-weight:600; text-transform:uppercase; letter-spacing:0.04em; padding:5px 12px; border-radius:100px;
}
.price-card h3{ font-size:1.2rem; margin-bottom:6px; }
.price-card .price-sub{ color:var(--text-muted); font-size:0.9rem; margin-bottom:18px; }
.price-card .enquire-tag{
  display:inline-block; font-family:'Fraunces', serif; font-style:italic; font-weight:500;
  font-size:1.25rem; color:var(--burgundy); margin-bottom:6px;
}
.price-card .per-lesson{ font-size:0.85rem; color:var(--text-muted); margin-bottom:22px; }
.price-card ul{ list-style:none; margin:0 0 26px; padding:0; display:flex; flex-direction:column; gap:10px; flex-grow:1; }
.price-card li{ padding-left:22px; position:relative; font-size:0.92rem; color:var(--text-muted); }
.price-card li::before{ content:"♪"; position:absolute; left:0; top:0; color:var(--burgundy); }
.price-card .btn{ width:100%; justify-content:center; }
.pricing-footnote{
  margin-top:32px; font-size:0.92rem; color:var(--text-muted);
  background:var(--cream); border:1px solid var(--line); border-radius:8px; padding:16px 20px;
}
.pricing-footnote a{ color:var(--burgundy); font-weight:600; }
@media (max-width:920px){ .pricing-grid{ grid-template-columns:1fr; } }

/* ===== WHO IT'S FOR ===== */
.who{ background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.who-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.who-card{ background:var(--cream); border:1px solid var(--line); border-radius:6px; padding:38px; }
.who-card .staff{ color:var(--brass); height:36px; max-width:120px; margin-bottom:18px;}
.who-card .staff span:nth-child(4), .who-card .staff span:nth-child(5){ display:none; }
.who-card h3{ font-size:1.4rem; margin-bottom:14px; }
.who-card ul{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px; }
.who-card li{ padding-left:22px; position:relative; color:var(--text-muted); font-size:0.98rem; }
.who-card li::before{ content:"♪"; position:absolute; left:0; top:0; color:var(--burgundy); font-size:1rem; }
@media (max-width:920px){ .who-grid{ grid-template-columns:1fr; } }

/* ===== TEACHER ===== */
.teacher .wrap{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:56px; align-items:center; }
.teacher-photo{ position:relative; border-radius:8px; overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); line-height:0; }
.teacher-photo img{ width:100%; height:auto; display:block; }
.teacher-carousel{ position:relative; aspect-ratio:4/5; }
.teacher-carousel img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .5s ease; }
.teacher-carousel img.is-shown{ opacity:1; }
.teacher-dots{ position:absolute; left:0; right:0; bottom:14px; }
.teacher-dots .hero-dot{ border-color:rgba(58,38,87,0.5); background:rgba(255,255,255,0.55); }
.teacher-dots .hero-dot.is-active{ background:var(--burgundy); border-color:var(--burgundy); }
.teacher-photo-stack{ display:flex; flex-direction:column; gap:14px; }
.teacher-photo-stack .stack-item{ border-radius:8px; overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); line-height:0; }
.teacher-photo-stack .stack-item img{ width:100%; height:auto; display:block; }
.teacher-copy .badges{ display:flex; gap:10px; margin-top:24px; flex-wrap:wrap; }
.badge{
  font-size:0.78rem; font-weight:600; letter-spacing:0.03em; text-transform:uppercase; color:var(--ink-soft);
  border:1px solid var(--line); border-radius:100px; padding:6px 14px; background:var(--cream);
}
.teacher-copy p.quote{
  font-family:'Fraunces', serif; font-style:italic; font-weight:500; font-size:1.3rem; color:var(--ink);
  line-height:1.4; margin:0 0 18px;
}
.teacher-copy p.body-text{ color:var(--text-muted); }
.teacher-copy .btn-ghost{ margin-top:22px; }
@media (max-width:920px){ .teacher .wrap{ grid-template-columns:1fr; } .teacher-photo{ max-width:320px; margin:0 auto; } }

/* ===== AUTHOR FEATURE (children's book) ===== */
.author-feature{ background:var(--paper-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.author-grid{ display:grid; grid-template-columns:0.7fr 1.3fr; gap:52px; align-items:center; }
.author-photo{ border-radius:10px; overflow:hidden; box-shadow:var(--shadow); line-height:0; }
.author-photo img{ width:100%; height:auto; display:block; }
.author-photo-stack{ display:flex; flex-direction:column; gap:14px; }
.author-photo-stack .stack-item{ border-radius:10px; overflow:hidden; box-shadow:var(--shadow); line-height:0; }
.author-photo-stack .stack-item img{ width:100%; height:auto; display:block; }
.author-copy h2{ font-size:clamp(1.5rem, 2.1vw, 2rem); line-height:1.18; margin-top:6px; }
.author-copy .body-text{ margin-top:14px; color:var(--text-muted); font-size:1.02rem; max-width:520px; }
.author-copy .btn-ghost{ margin-top:22px; }
@media (max-width:820px){ .author-grid{ grid-template-columns:1fr; } .author-photo{ max-width:380px; margin:0 auto; } }

/* ===== PAGE HERO H1 SIZE MODIFIER ===== */
.page-hero h1.h1-sm{ font-size:clamp(1.5rem, 2.1vw, 1.9rem); }

/* ===== TESTIMONIALS ===== */
.trust-years{
  display:inline-flex; align-items:center; gap:8px; background:rgba(255,199,44,0.14);
  border:1px solid rgba(255,218,107,0.4); border-radius:100px; padding:9px 18px; font-size:0.92rem;
  font-weight:600; color:var(--cream); margin-top:18px;
}
.trust-years .years-num{ color:var(--brass-soft); font-weight:700; }

.g-badge{
  display:inline-flex; align-items:center; gap:8px; background:rgba(247,243,232,0.08);
  border:1px solid rgba(247,243,232,0.22); border-radius:100px; padding:9px 16px; font-size:0.85rem;
  font-weight:600; color:var(--cream); margin-top:18px;
}
.g-badge .stars{ color:var(--brass-soft); letter-spacing:1px; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.hero-badges .g-badge{ margin-top:0; }

.director-card{
  display:grid; grid-template-columns:0.42fr 1fr; gap:32px; align-items:center;
  background:rgba(247,243,232,0.06);
  border:1px solid rgba(247,243,232,0.16);
  border-radius:10px;
  padding:32px;
  margin-bottom:32px;
}
.director-card .photo{ border-radius:8px; overflow:hidden; aspect-ratio:1/1; }
.director-card .photo img{ width:100%; height:100%; object-fit:cover; }
.director-card .role{
  display:inline-block; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em;
  color:var(--ink); background:var(--brass-soft); padding:4px 10px; border-radius:100px; margin-bottom:12px;
}
.director-card p.quote{
  font-family:'Fraunces', serif; font-style:italic; font-weight:500; font-size:1.35rem; color:var(--cream);
  line-height:1.42; margin:0 0 14px;
}
.director-card .who{ font-size:0.9rem; color:rgba(247,243,232,0.65); font-weight:600; }
@media (max-width: 720px){ .director-card{ grid-template-columns:1fr; } .director-card .photo{ max-width:180px; } }

.t-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.t-card{ background:rgba(247,243,232,0.06); border:1px solid rgba(247,243,232,0.14); border-radius:8px; padding:30px; }
.t-card .staff{ color:var(--brass-soft); height:24px; margin-bottom:16px;}
.t-card .staff span:nth-child(n+3){ display:none; }
.t-card p.quote{ font-family:'Fraunces', serif; font-style:italic; font-size:1.05rem; line-height:1.5; margin:0 0 20px; color:var(--cream); }
.t-card .who{ background:none; border:none; padding:0; font-size:0.85rem; color:rgba(247,243,232,0.6); font-weight:600;}
@media (max-width:920px){ .t-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .t-grid{ grid-template-columns:1fr; } }

/* ===== BOOKING / CONTACT ===== */
.book{ background:var(--paper); }
.book-grid{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:start; }
.book-form{ background:var(--cream); border:1px solid var(--line); border-radius:8px; padding:38px; box-shadow:var(--shadow); }
.trial-toggle{
  display:flex; align-items:center; gap:12px; background:var(--paper-2); border:1px solid var(--line);
  border-radius:6px; padding:14px 18px; margin-bottom:24px; font-size:0.92rem; color:var(--ink);
}
.trial-toggle input{ width:auto; accent-color:var(--burgundy); transform:scale(1.15); }
.trial-toggle label{ font-weight:600; margin:0; cursor:pointer; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:0.85rem; font-weight:600; color:var(--ink-soft); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; font-family:'Work Sans', sans-serif; font-size:0.98rem; padding:12px 14px;
  border:1.5px solid var(--line); border-radius:5px; background:#fff; color:var(--text);
}
.field textarea{ resize:vertical; min-height:100px; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--burgundy); outline:none; }
.book-form .btn-primary{ width:100%; justify-content:center; font-size:1rem; padding:15px; margin-top:6px; }
.book-form .fine{ font-size:0.82rem; color:var(--text-muted); margin-top:14px; text-align:center; }
.trust-badges-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.trust-badges-row .badge{ background:var(--paper); }

.contact-card{ background:var(--ink); color:var(--cream); border-radius:8px; padding:38px; position:relative; overflow:hidden; }
.contact-card .staff{ color:var(--brass-soft); max-width:200px; margin-bottom:24px; }
.contact-card h3{ color:var(--cream); font-size:1.3rem; margin-bottom:8px; }
.contact-card p.sub{ color:rgba(247,243,232,0.7); margin-bottom:28px; font-size:0.95rem;}
.contact-line{ display:flex; align-items:flex-start; gap:12px; padding:14px 0; border-top:1px solid rgba(247,243,232,0.14); font-size:0.98rem; }
.contact-line:first-of-type{ border-top:none; }
.contact-line .ico{
  width:32px; height:32px; border-radius:50%; background:rgba(255,199,44,0.22); color:var(--brass-soft);
  display:flex; align-items:center; justify-content:center; font-size:0.9rem; flex-shrink:0;
}
.contact-line a{ font-weight:600; }
.contact-line a:hover{ color:var(--brass-soft); }
@media (max-width:920px){ .book-grid{ grid-template-columns:1fr; } }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }

/* ===== FOOTER ===== */
footer{ background:var(--ink); color:rgba(247,243,232,0.7); padding:56px 0 32px; border-top:1px solid rgba(247,243,232,0.12); }
.foot-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:32px; padding-bottom:36px; border-bottom:1px solid rgba(247,243,232,0.12); }
.foot-logo{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.foot-logo-badge{
  display:inline-flex; align-items:center; justify-content:center; flex-shrink:0;
  width:104px; height:104px; border-radius:50%; background:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,0.25);
}
.foot-logo-badge img{ height:48px; width:auto; filter:none; }
.foot-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.foot-col h4{ font-size:0.8rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--brass-soft); margin:0 0 14px; font-weight:600; }
.foot-col a{ display:block; margin-bottom:10px; font-size:0.92rem; color:rgba(247,243,232,0.75); }
.foot-col a:hover{ color:var(--cream); }
.foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:0.82rem; color:rgba(247,243,232,0.5); flex-wrap:wrap; gap:12px; }
.foot-social{ display:flex; gap:14px; }
.foot-social a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(247,243,232,0.3); display:flex; align-items:center; justify-content:center; font-size:0.85rem; }
.foot-social a:hover{ background:var(--brass-soft); color:var(--ink); border-color:var(--brass-soft); }
@media (max-width:600px){ .foot-top{ flex-direction:column; } }

/* ===== REFERRAL POPUP ===== */
.referral-popup{
  position:fixed; right:24px; bottom:24px; z-index:200;
  width:320px; max-width:calc(100vw - 32px);
  background:var(--ink); color:var(--cream);
  border-radius:12px; padding:22px 22px 20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
  border:1px solid rgba(247,243,232,0.16);
  transform:translateY(24px) scale(0.96); opacity:0; pointer-events:none;
  transition:transform .35s ease, opacity .35s ease;
}
.referral-popup.is-visible{ transform:translateY(0) scale(1); opacity:1; pointer-events:auto; }
.referral-popup-close{
  position:absolute; top:10px; right:10px; width:28px; height:28px; border-radius:50%;
  background:rgba(247,243,232,0.12); color:var(--cream); border:none; cursor:pointer;
  font-size:1.15rem; line-height:1; display:flex; align-items:center; justify-content:center;
  transition:background .15s ease;
}
.referral-popup-close:hover{ background:rgba(247,243,232,0.22); }
.referral-popup-tag{
  display:inline-block; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em;
  color:var(--ink); background:var(--brass-soft); padding:4px 10px; border-radius:100px; margin-bottom:10px;
}
.referral-popup h3{ color:var(--cream); font-size:1.08rem; line-height:1.32; margin-bottom:8px; }
.referral-popup p{ color:rgba(247,243,232,0.8); font-size:0.88rem; margin:0 0 16px; }
.referral-popup p strong{ color:var(--brass-soft); }
.referral-popup .btn{ width:100%; justify-content:center; font-size:0.9rem; padding:12px; }
.referral-popup-fine{ font-size:0.72rem !important; color:rgba(247,243,232,0.5) !important; margin:10px 0 0 !important; text-align:center; }
@media (max-width:600px){
  .referral-popup{ left:16px; right:16px; bottom:16px; width:auto; max-width:none; padding:20px 20px 18px; }
}

.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

@media (max-width: 920px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ max-width:420px; margin:0 auto; }
  .nav-toggle{ display:flex; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0; z-index:60;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--paper); border-bottom:1px solid var(--line);
    box-shadow:0 18px 34px rgba(91,33,182,0.18);
    max-height:0; overflow:hidden; opacity:0; pointer-events:none;
    transition:max-height .3s ease, opacity .2s ease;
    margin:0 -32px; width:calc(100% + 64px);
    padding:0 32px;
  }
  .nav-links.is-open{ max-height:400px; opacity:1; pointer-events:auto; padding:10px 32px 18px; }
  .nav-links a{ padding:13px 0; border-bottom:1px solid var(--line); font-size:1.02rem; }
  .nav-links a:last-child{ border-bottom:none; }
  .nav-links a::after{ display:none; }
}
@media (max-width: 600px){
  .wrap{ padding:0 20px; }
  section{ padding:60px 0; }
  .nav-phone{ display:none; }
  .nav-links{ margin:0 -20px; width:calc(100% + 40px); padding:0 20px; }
  .nav-links.is-open{ padding:10px 20px 18px; }
  .trial-callout{ flex-direction:column; align-items:flex-start; }
  .urgency-box{ flex-direction:column; align-items:flex-start; }
}
