﻿:root {
  --ink:         #111111;
  --ink-soft:    #222222;
  --cream:       #FBF8F3;
  --blue:        #00A8DC;
  --yellow:      #FFD93E;
  --blue-deep:   #1e1e2e;
  --mid:         #5D6577;
  --blue-wash:   #EAF7FC;
  --ice:         #f0faff;
  --yellow-wash: #FFF6D1;
  --pink:        #D4427E;
  --pink-wash:   #FCE8F3;
  --yellow-dark: #C9860A;
  --blue-dark:   #005c78;
  --purple:      #7C3DB8;
  --blue-text:        #006695;
  --yellow-dark-text: #975E00;
  --pink-text:        #C03373;
  --purple-wash: #ede0f7;
  --brown:       #7a6040;
  --brown-wash:  #F2E8D8;
  --line:        rgba(17, 17, 17, 0.09);
  --font-display: 'Fraunces', serif;
  --font-body:    'Poppins', sans-serif;

  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  16px;
  --sp-4:  24px;
  --sp-5:  40px;
  --sp-6:  64px;
  --sp-7:  96px;
  --sp-8:  160px;

  --r-card: 12px;
  --r-pill: 100px;

  --col:    1200px;
  --gutter: clamp(var(--sp-4), 5vw, var(--sp-6));
  --nav-h:  64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  background: var(--cream);
  color: var(--ink);
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: calc(88px + 24px);
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-3);
  z-index: 9999;
  padding: var(--sp-2) var(--sp-3);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--r-card) var(--r-card);
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
}

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

/* ── Custom Cursor ── */
a, button, [role="button"], select, label,
input[type="submit"], input[type="button"], input[type="reset"],
.btn, .nav-cta {
  cursor: pointer;
}

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

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Pill button — outline follows the curve */
.cta-primary:focus-visible {
  outline-offset: 4px;
  border-radius: var(--r-pill);
}

/* Hamburger — tighter offset so ring sits close to the bars */
.nav-toggle:focus-visible {
  outline-offset: 6px;
}

/* Pill buttons — outline follows the curve */
.btn:focus-visible {
  border-radius: var(--r-pill);
}

/* Card-shaped interactive elements — outline follows the card radius */
.link-card:focus-visible,
a.class-card:focus-visible {
  border-radius: var(--r-card);
}

/* Mega-menu items — outline follows their respective radii */
.mega-card:focus-visible {
  border-radius: 10px;
}

.mega-view-all:focus-visible {
  border-radius: 8px;
}

/* ── Nav / footer space reservation (prevents CLS before components inject) ── */
#nav-placeholder {
  min-height: 88px;
}
nav:empty {
  min-height: 88px;
}
#footer-placeholder {
  min-height: 400px;
}
footer:empty {
  min-height: 400px;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  padding: 0 var(--gutter);
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-inner {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.site-footer .logo-icon {
  filter: none;
}

.site-footer .logo-text {
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}

.nav-links a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.15s, text-decoration-color 0.15s;
  position: relative;
  z-index: 1;
}

.nav-links a:hover {
  color: var(--ink);
  text-decoration-color: var(--blue-text);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  text-decoration-color: var(--blue-text);
}

.nav-links button,
.nav-links a {
  white-space: nowrap;
}

/* ── Nav item base (ensures links sit above the pill) ── */
.nav-item {
  position: relative;
  z-index: 1;
}

/* ── Nav cursor spotlight ── */
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--nav-glow-x, -9999px) var(--nav-glow-y, 50%), rgba(255, 205, 0, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

nav.has-glow::before {
  opacity: 1;
}

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--yellow);
  z-index: 200; /* above nav (z-index 100) */
  pointer-events: none;
}

/* ── Button component ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--r-pill);
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s, transform 0.12s, box-shadow 0.12s, filter 0.15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 0 var(--yellow-dark);
}

.btn--primary:hover {
  filter: brightness(1.06);
}

.btn--primary:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--yellow-dark);
}

.btn[disabled],
.btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 8px 18px;
  box-shadow: 0 4px 0 rgba(17,17,17,0.22);
}

.btn--secondary:hover {
  background: rgba(17, 17, 17, 0.06);
}

.btn--secondary:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(17,17,17,0.22);
}

/* ── Families & Carers nav item (two-line label) ── */
.nav-item--families > a {
  text-align: center;
  line-height: 1.2;
  max-width: 80px;
}

/* ── Nav CTA (desktop) ── */
.nav-cta {
  display: flex;
  align-items: center;
  margin-left: var(--sp-2);
}


.nav-cta .btn {
  text-decoration: none !important;
}

.nav-cta .btn:hover {
  text-decoration: none !important;
}

/* ── Mobile nav CTA ── */
.mobile-nav-item--cta {
  border-bottom: none !important;
  padding: var(--sp-3) 0 0;
  margin-top: var(--sp-2);
}

.mobile-nav-cta {
  display: block !important;
  text-align: center !important;
  padding: 14px var(--sp-5) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  color: var(--ink) !important;
}

/* ── Dropdowns ── */
.nav-item.has-dropdown {
  position: static;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  z-index: 1000;
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
  box-shadow: 0 8px 24px rgba(20, 20, 43, 0.10);
  border-radius: 0 0 12px 12px;
  padding: 8px 0;
  min-width: 200px;
}

/* Open via JS-managed class or keyboard focus-within */
.nav-item.has-dropdown.is-open > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown {
  display: block;
}

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
}

.nav-dropdown li a:hover {
  background: var(--blue-wash);
  color: var(--blue-text);
}

/* ── Mega menu ── */
.nav-item.has-mega {
  position: relative;
}

.nav-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  min-width: 520px;
  max-width: calc(100vw - 48px);
  padding: 20px 32px;
  border-radius: 0 0 12px 12px;
  z-index: 1000;
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
  box-shadow: 0 8px 24px rgba(20, 20, 43, 0.10);
}

/* Invisible bridge covers any gap between nav link and dropdown */
.nav-mega::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* Open via JS-managed class or keyboard focus-within */
.nav-item.has-mega.is-open > .nav-mega,
.nav-item.has-mega:focus-within > .nav-mega {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mega-card:hover {
  background: var(--blue-wash);
}

.nav-mega .mega-card--mini-geeks:hover {
  background: var(--pink-wash);
  box-shadow: inset 0 2px 8px rgba(212,66,126,0.12), inset 0 1px 3px rgba(212,66,126,0.08);
}

.nav-mega .mega-card--drama-geeks:hover {
  background: rgba(255,217,62,0.35);
  box-shadow: inset 0 2px 8px rgba(201,134,10,0.12), inset 0 1px 3px rgba(201,134,10,0.08);
}

.nav-mega .mega-card--dg-associates:hover {
  background: var(--purple-wash);
  box-shadow: inset 0 2px 8px rgba(106,57,159,0.12), inset 0 1px 3px rgba(106,57,159,0.08);
}

.mega-card--mini-geeks:focus-visible   { outline-color: var(--pink); }
.mega-card--drama-geeks:focus-visible  { outline-color: var(--yellow-dark); }
.mega-card--dg-associates:focus-visible { outline-color: var(--purple); }

.mega-view-all-wrap,
.mega-divider-wrap {
  grid-column: 1 / -1;
}

.mega-view-all {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
  margin-bottom: 8px;
}

.mega-view-all:hover {
  background: var(--blue-wash);
  color: var(--blue-text);
}

.mega-view-all span {
  color: var(--blue-text);
  margin-left: 4px;
}

.mega-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 12px;
}

.mega-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

/* ── Dropdown stagger-fade animation ── */
@keyframes dropdown-item-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate items when their parent dropdown is open */
.nav-item.has-dropdown.is-open > .nav-dropdown li,
.nav-item.has-dropdown:focus-within > .nav-dropdown li,
.nav-item.has-mega.is-open > .nav-mega li,
.nav-item.has-mega:focus-within > .nav-mega li {
  animation: dropdown-item-in 0.2s ease both;
}

/* Stagger each item by 40ms */
.nav-dropdown li:nth-child(1), .nav-mega li:nth-child(1) { animation-delay: 0ms; }
.nav-dropdown li:nth-child(2), .nav-mega li:nth-child(2) { animation-delay: 40ms; }
.nav-dropdown li:nth-child(3), .nav-mega li:nth-child(3) { animation-delay: 80ms; }
.nav-dropdown li:nth-child(4), .nav-mega li:nth-child(4) { animation-delay: 120ms; }

/* Respect prefers-reduced-motion: items appear instantly */
@media (prefers-reduced-motion: reduce) {
  .nav-item.has-dropdown.is-open > .nav-dropdown li,
  .nav-item.has-dropdown:focus-within > .nav-dropdown li,
  .nav-item.has-mega.is-open > .nav-mega li,
  .nav-item.has-mega:focus-within > .nav-mega li {
    animation: none;
  }
}

.nav-item.has-dropdown.is-open .nav-chevron,
.nav-item.has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* -- Nav polish (additive overrides - appended after main nav block) -- */

/* Smoother scroll-shrink transition */
nav {
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

nav.nav--scrolled {
  height: 64px;
  background: rgba(251, 248, 243, 0.95);
  border-bottom-color: transparent;
  box-shadow: 0 4px 20px rgba(20, 20, 43, 0.06);
}

/* Logo lockup - tighter, more confident proportions */
.logo {
  gap: 10px;
  transition: transform 0.18s ease;
}

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

.logo-icon {
  height: 46px;
  transition: height 0.25s ease;
}

.logo-text {
  height: 30px;
  transition: height 0.25s ease;
}

nav.nav--scrolled .logo-icon { height: 38px; }
nav.nav--scrolled .logo-text  { height: 26px; }

/* Nav links - refined typography */
.nav-links {
  gap: 38px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a {
  letter-spacing: 0.005em;
  padding: 6px 0;
  transition: color 0.15s ease;
}

/* Glow carries ambient state; colour shift gives per-link signal */
.nav-links .nav-item:not(.nav-cta) > a:hover {
  color: var(--blue);
  text-decoration-color: transparent;
}

/* Active page: subtle yellow underline (warmer than blue, ties to brand) */
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Pill polish - softer colour, slight scale-in feel */
/* Families & Carers - single-line, slightly smaller type */
.nav-item--families > a {
  font-size: 13.5px;
  white-space: nowrap;
  padding: 4px 0;
}

/* CTA polish - slightly more presence in the nav */
.nav-cta {
  margin-left: var(--sp-2);
}

.nav-cta .btn {
  padding: 11px 22px;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 0 var(--yellow-dark);
  transition: background 0.12s, box-shadow 0.12s, transform 0.12s, filter 0.12s;
}

.nav-cta .btn:hover {
  filter: brightness(1.06);
}

.nav-cta .btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--yellow-dark);
}

/* -- Dropdown polish -- */
.nav-dropdown {
  border-top-width: 3px;
  border-radius: 0 0 14px 14px;
  padding: 10px 0 12px;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(20, 20, 43, 0.12), 0 2px 8px rgba(20, 20, 43, 0.04);
}

.nav-dropdown:not(.nav-mega) li a {
  position: relative;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s, padding-left 0.18s ease;
}

.nav-dropdown:not(.nav-mega) li a::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 6px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.18s ease;
}

.nav-dropdown:not(.nav-mega) li a:hover {
  background: transparent;
  color: var(--ink);
  padding-left: 32px;
}

.nav-dropdown:not(.nav-mega) li a:hover::before {
  transform: translateY(-50%) scaleX(1);
}

/* "View all" link - refined, with arrow that slides on hover */
.mega-view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 12px 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  background: transparent;
  transition: background 0.15s, color 0.15s;
}

.mega-view-all__label {
  flex: 1;
}

.mega-view-all__arrow {
  display: inline-block;
  font-size: 14px;
  color: var(--blue-text);
  transition: transform 0.2s ease;
}

.mega-view-all:hover {
  background: var(--blue-wash);
  color: var(--ink);
}

.mega-view-all:hover .mega-view-all__arrow {
  transform: translateX(4px);
}

/* "View all classes" in mega — match the slide+dash animation used in regular dropdowns */
.nav-mega .mega-view-all {
  position: relative;
  padding: 11px 24px;
  margin: 0 0 6px;
  font-weight: 500;
  transition: color 0.15s, padding-left 0.18s ease;
}

.nav-mega .mega-view-all::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 6px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.18s ease;
}

.nav-mega .mega-view-all:hover {
  background: transparent;
  color: var(--ink);
  padding-left: 32px;
}

.nav-mega .mega-view-all:hover::before {
  transform: translateY(-50%) scaleX(1);
}

.mega-divider {
  margin: 0 16px 10px;
}

/* -- Mega menu polish -- */
.nav-mega {
  min-width: 600px;
  padding: 16px 16px 20px;
  border-top-width: 3px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 36px rgba(20, 20, 43, 0.14), 0 2px 8px rgba(20, 20, 43, 0.04);
}

.nav-item.has-mega.is-open > .nav-mega,
.nav-item.has-mega:focus-within > .nav-mega {
  gap: 6px;
}

/* Mega cards */
.mega-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 14px 12px 16px;
  border-radius: 12px;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.15s, box-shadow 0.15s;
}

.mega-card__accent {
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mega-card--mini-geeks .mega-card__accent    { background: var(--pink); }
.mega-card--drama-geeks .mega-card__accent   { background: var(--yellow); }
.mega-card--dg-associates .mega-card__accent { background: var(--purple); }

.mega-card:hover .mega-card__accent { opacity: 1; }

.mega-thumb {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Age tag */
.mega-age {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(0, 168, 220, 0.1);
  color: var(--blue-text);
}

.mega-card--mini-geeks .mega-age {
  background: rgba(212, 66, 126, 0.1);
  color: var(--pink-text);
}

.mega-card--drama-geeks .mega-age {
  background: rgba(201, 134, 10, 0.12);
  color: var(--yellow-dark-text);
}

.mega-card--dg-associates .mega-age {
  background: rgba(124, 61, 184, 0.1);
  color: var(--purple);
}

.mega-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.mega-desc {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.4;
}

/* ── Nav chevron ── */
.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  margin-left: 6px;
  opacity: 0.4;
  transition: transform 0.2s ease, opacity 0.15s ease;
  vertical-align: middle;
}

.nav-item.has-dropdown:hover .nav-chevron {
  opacity: 0.8;
}

/* -- Mobile nav polish -- */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-3) var(--gutter) var(--sp-5);
  gap: 0;
  box-shadow: 0 12px 28px rgba(20, 20, 43, 0.12);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .nav-backdrop { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .nav-backdrop {
    transition: none;
  }
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-item:last-child,
.mobile-nav-item--cta {
  border-bottom: none;
}

.mobile-nav-direct:hover,
.mobile-nav-parent:hover {
  color: var(--blue-text);
}

/* ── Mobile nav sub-menu (tinted group box) ── */
.mobile-nav-sub {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  background: rgba(0, 168, 220, 0.04);
  border-radius: 10px;
  overflow: hidden;
}

.mobile-nav-sub li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

.mobile-nav-sub li:last-child a {
  border-bottom: none;
}

.mobile-nav-sub li a:hover {
  background: rgba(0, 168, 220, 0.07);
}

/* Age pill badges */
.mob-age {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  background: rgba(17, 17, 17, 0.07);
  color: var(--mid);
}

.mob-age--mini  { background: var(--pink-wash);   color: var(--pink); }
.mob-age--drama { background: var(--yellow-wash); color: var(--yellow-dark); }
.mob-age--assoc { background: var(--purple-wash); color: var(--purple); }

.mobile-nav-cta {
  margin-top: var(--sp-3);
}

.mobile-nav__email {
  display: block;
  text-align: center;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4) !important;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  padding: 0 0 var(--sp-7);
  overflow-x: clip;
  overflow-y: visible;
}

.hero-stage {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: clamp(40px, 5vw, 72px);
  max-width: var(--col);
  margin: 0 auto;
  padding: 32px var(--gutter) 80px clamp(20px, 4vw, 60px);
  align-items: start;
}
.hero-center {
  padding-right: 40px; /* pushes text away from the photo */
}

/* ── Photo cluster hero ── */
.hero-photos {
  position: relative;
  min-height: 620px;
  padding-top: 40px;
  padding-bottom: 10px;
}

.hero-yellow-card {
  position: absolute;
  top: 50px;
  left: -15px;
  width: 92%;
  height: 400px;
  background: var(--yellow);
  border-radius: var(--r-card);
  z-index: 0;
  transform: rotate(-1.5deg);
  box-shadow:
    inset 0 14px 52px rgba(180, 100, 0, 0.38),
    inset 0 -8px 28px rgba(0, 0, 0, 0.10),
    inset 12px 0 40px rgba(180, 100, 0, 0.22),
    inset -6px 0 20px rgba(255, 255, 255, 0.18);
}

.hero-photo-a {
  position: relative;
  z-index: 1;
  border-radius: var(--r-card);
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 0 0 20px 10px rgba(255, 210, 63, 0.5);
  margin-top: 0;
}

.hero-photo-a img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.hero-photo-b {
  position: absolute;
  bottom: -100px;
  right: -40px;
  width: 52%;
  z-index: 2;
  border-radius: var(--r-card);
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: 0 0 20px 10px rgba(0, 168, 220, 0.5);
}

.hero-photo-b img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-photo-a,
.hero-photo-b,
.about-intro__img,
.production-feature-grid > div:first-child {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-photo-a:hover,
.hero-photo-b:hover,
.about-intro__img:hover,
.production-feature-grid > div:first-child:hover {
  transform: translateY(-4px) scale(1.02);
}

.hero-photo-a:hover {
  box-shadow: 0 0 32px 16px rgba(255, 210, 63, 0.65);
}

.hero-photo-b:hover {
  box-shadow: 0 0 32px 16px rgba(0, 168, 220, 0.65);
}

.about-intro__img:hover,
.production-feature-grid > div:first-child:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.production-feature-grid > div:last-child {
  background: white;
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* ── Trust strip ── */
.trust-strip {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: #f0faff;
  position: relative;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  pointer-events: none;
}

.trust-strip__inner {
  max-width: var(--col);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "lead lead"
    "quote signals";
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.trust-strip__lead {
  grid-area: lead;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.trust-strip__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-bottom: 0.75rem;
}

.trust-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

.trust-strip__heading-accent {
  color: var(--blue-text);
}

.trust-strip__quote {
  grid-area: quote;
  margin: 0;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 3px solid var(--blue);
  align-self: center;
}

.trust-strip__quote blockquote {
  margin: 0 0 1rem 0;
}

.trust-strip__quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}

.trust-strip__quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-family: var(--font-body);
}

.trust-strip__quote-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.trust-strip__quote-meta {
  font-size: 0.85rem;
  color: var(--mid);
}

.trust-strip__signals {
  grid-area: signals;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  align-self: center;
}

.trust-strip__signal {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.6);
  border-radius: var(--r-card);
  border-left: 3px solid var(--blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 1px 4px rgba(0,100,180,0.07);
}

.trust-strip__signal-stat {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blue-text);
  letter-spacing: -0.02em;
}

.trust-strip__signal-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--mid);
}

@media (max-width: 860px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "quote"
      "signals";
  }
  .trust-strip__quote {
    max-width: 560px;
    margin-inline: auto;
  }
  .trust-strip__signals {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .trust-strip__signals {
    grid-template-columns: 1fr;
  }
  .trust-strip__signal {
    flex-direction: row;
    align-items: baseline;
    gap: 0.875rem;
  }
  .trust-strip__signal-stat {
    flex-shrink: 0;
    min-width: 4rem;
  }
}

.eyebrow {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}

.eyebrow::before,
.eyebrow::after {
  content: none;
}

h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  text-align: left;
  font-size: clamp(56px, 10vw, 112px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--blue-text);
}

h1 .dot {
  color: var(--yellow);
}

.hero-center h1 {
  font-family: 'Amatic SC', cursive;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.hero-center h1 em {
  font-style: normal;
}

.subtitle {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 48px;
}

.tagline {
  text-align: left;
  font-size: 18px;
  color: var(--mid);
  max-width: 420px;
  margin: 0 0 var(--sp-5);
  line-height: 1.65;
  font-weight: 400;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: 0;
}

.cta-primary {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 14px var(--sp-5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 0 var(--blue-dark);
  transition: background 0.15s, box-shadow 0.12s, transform 0.12s, filter 0.15s;
}

.cta-primary:hover {
  filter: brightness(1.08);
}

.cta-primary:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--blue-dark);
}

/* ── Venue strip ── */
.venues-strip {
  background: linear-gradient(to bottom, var(--cream), var(--yellow-wash));
  padding: var(--sp-6) var(--gutter);
}

.venues-strip__inner {
  max-width: var(--col);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.venues-strip__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
  padding-right: var(--sp-5);
  border-right: 1px solid var(--line);
}

.venues-strip__locations {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  flex: 1;
}

.venues-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.venues-strip__item svg {
  color: var(--blue-text);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.venues-strip__item em {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  display: block;
  letter-spacing: 0;
}

.venues-strip__divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .venues-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .venues-strip__label {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: var(--sp-2);
    width: 100%;
  }
  .venues-strip__divider {
    display: none;
  }
  .venues-strip__locations {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }
}

/* ── Classes section ── */
.classes {
  padding: var(--sp-5) var(--gutter) var(--sp-5);
  max-width: var(--col);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(28px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-4);
}

.section-title em {
  color: var(--blue-text);
  font-style: normal;
}

.section-sub {
  font-size: 16px;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.65;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.class-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

@media (hover: hover) {
  .class-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(20, 20, 43, 0.08);
  }

  .class-card--mini-geeks:hover {
    border-color: var(--pink);
  }

  .class-card--drama-geeks:hover {
    border-color: var(--yellow-dark);
  }

  .class-card--dg-associates:hover {
    border-color: var(--purple);
  }
}

.class-card .age {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-text);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  text-align: center;
}

.class-card .age-num {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(36px, 14vw, 56px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.class-card .age-num em {
  color: var(--yellow);
  font-style: normal;
}

.age-num-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.age-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.class-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.class-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
  min-height: 80px;
}

.class-card .meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.class-card .meta span {
  display: block;
  margin-bottom: 6px;
}

/* ── ClassCard — link variant ── */
a.class-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

a.class-card--mini-geeks:hover {
  border-color: var(--pink);
}

a.class-card--drama-geeks:hover {
  border-color: var(--yellow-dark);
}

a.class-card--dg-associates:hover {
  border-color: var(--purple);
}

/* ── ClassCard — image variant ── */
.class-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: var(--sp-4);
}

/* ── ClassCard — CTA link ── */
.class-card__cta {
  display: block;
  text-align: center;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-text);
  text-decoration: none;
}

.class-card__cta:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.class-card .meta span::before {
  content: '• ';
  color: var(--blue-text);
}

/* ── Also Available divider ── */
.also-available-divider {
  margin: var(--sp-7) 0 var(--sp-5);
}

.also-available-divider__rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 var(--sp-3);
}

/* ── Class grid — 2-col variant (extra classes) ── */
.class-grid--two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-inline: auto;
}

/* ── Classes section footer note ── */
.classes__note {
  text-align: center;
  color: var(--mid);
  font-size: 14px;
  margin-top: var(--sp-4);
}

.classes__note-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── ClassCard — compact variant ── */
.class-card--compact {
  padding: calc(var(--sp-5) * 0.7) calc(var(--sp-4) * 0.7);
}

.class-card--compact p {
  min-height: 0;
}

/* ── Photo strip marquee ── */
.photo-reveal {
  padding-top: 40px;
  padding-bottom: 80px;
  overflow: visible;
  background: var(--ice);
  position: relative;
}

.photo-reveal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
  z-index: 1;
}

.photo-reveal-mask {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.photo-reveal-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  padding: 60px 0;
  will-change: transform;
}

.marquee-photo {
  border-radius: 12px;
  overflow: clip;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.photo-reveal-track .marquee-photo:nth-child(1),
.photo-reveal-track .marquee-photo:nth-child(9)  { --photo-y: -20px;  --photo-r: -1.5deg; }
.photo-reveal-track .marquee-photo:nth-child(2),
.photo-reveal-track .marquee-photo:nth-child(10) { --photo-y:  15px;  --photo-r:  1deg;   }
.photo-reveal-track .marquee-photo:nth-child(3),
.photo-reveal-track .marquee-photo:nth-child(11) { --photo-y: -30px;  --photo-r: -2deg;   }
.photo-reveal-track .marquee-photo:nth-child(4),
.photo-reveal-track .marquee-photo:nth-child(12) { --photo-y:  10px;  --photo-r:  1.5deg; }
.photo-reveal-track .marquee-photo:nth-child(5),
.photo-reveal-track .marquee-photo:nth-child(13) { --photo-y: -15px;  --photo-r: -1deg;   }
.photo-reveal-track .marquee-photo:nth-child(6),
.photo-reveal-track .marquee-photo:nth-child(14) { --photo-y:  25px;  --photo-r:  2deg;   }
.photo-reveal-track .marquee-photo:nth-child(7),
.photo-reveal-track .marquee-photo:nth-child(15) { --photo-y: -10px;  --photo-r: -1.5deg; }
.photo-reveal-track .marquee-photo:nth-child(8),
.photo-reveal-track .marquee-photo:nth-child(16) { --photo-y:  20px;  --photo-r:  1deg;   }

.photo-reveal-track .marquee-photo {
  transform: rotate(var(--photo-r)) translateY(var(--photo-y));
}

.marquee-photo:hover {
  --photo-y: 0px;
  --photo-r: 0deg;
  transform: rotate(var(--photo-r)) translateY(var(--photo-y)) scale(1.05);
  z-index: 10;
}

.marquee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .photo-reveal-track { animation: none; }
}

/* ── Responsive ── */
/* ═══════════════════════════════════════════════════════════════════════════
   INNER-PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Mobile nav list & sub ── */
.mobile-nav-list {
  list-style: none;
}

.mobile-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}

.mobile-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.5;
  transition: transform 0.18s, opacity 0.15s;
}

.mobile-nav-parent[aria-expanded="true"] .mobile-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-nav-direct {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}

/* ── Page Header (inner pages) ── */
.page-header {
  background: var(--blue-deep);
  color: white;
  padding: var(--sp-7) var(--gutter) var(--sp-6);
  position: relative;
  overflow: visible;
}

.page-header--cream {
  background: var(--cream);
  color: var(--ink);
}

.page-header--plain {
  background: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.page-header--blue-wash {
  background: var(--blue-wash);
  color: var(--ink);
}

.page-header--purple-wash {
  background: var(--purple-wash);
  color: var(--ink);
}

.page-header--yellow {
  background: var(--yellow-wash);
  color: var(--ink);
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
  position: relative;
  overflow: visible;
  text-align: center;
}

.page-header--yellow .page-header__title {
  text-align: center;
}

.page-header--yellow .page-header__subtitle {
  margin-inline: auto;
}

.page-header__inner {
  max-width: var(--col);
  margin: 0 auto;
}

.page-header__eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--blue-text);
}

.page-header:not(.page-header--cream):not(.page-header--blue-wash):not(.page-header--purple-wash):not(.page-header--yellow):not(.page-header--about):not(.page-header--plain) .page-header__eyebrow {
  color: rgba(255,255,255,0.65);
}

.page-header__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-3);
}

.page-header:not(.page-header--cream):not(.page-header--blue-wash):not(.page-header--purple-wash):not(.page-header--yellow):not(.page-header--about):not(.page-header--plain) .page-header__title {
  color: white;
}

.page-header__subtitle {
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.6;
  max-width: 560px;
  opacity: 0.8;
}

.page-header--cream .page-header__subtitle,
.page-header--blue-wash .page-header__subtitle,
.page-header--purple-wash .page-header__subtitle,
.page-header--yellow .page-header__subtitle,
.page-header--about .page-header__subtitle,
.page-header--plain .page-header__subtitle {
  color: var(--mid);
  opacity: 1;
}

/* ── Inner section layout ── */
.inner-section {
  padding: var(--sp-7) var(--gutter);
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .inner-section {
    padding-top: var(--sp-5);
    padding-bottom: var(--sp-5);
  }
}

.inner-section--sm {
  padding: var(--sp-6) var(--gutter);
}

.inner-section--alt {
  background: var(--blue-wash);
}

.inner-section--yellow {
  background: var(--yellow-wash);
}

.inner-section--cream {
  background: var(--cream);
}

.inner-content {
  max-width: var(--col);
  margin: 0 auto;
}

.inner-content--narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* ── Section headings (inner pages) ── */
.inner-heading {
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.inner-heading em {
  font-style: italic;
  color: var(--blue-text);
}

.inner-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-text);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  display: block;
}

.inner-lead {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: var(--sp-5);
}

.inner-body {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
}

.inner-body p + p {
  margin-top: var(--sp-4);
}

.inner-body h2 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  color: var(--ink);
}

.inner-body h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
  color: var(--ink);
}

.inner-body ul,
.inner-body ol {
  padding-left: var(--sp-4);
  margin-top: var(--sp-3);
}

.inner-body li {
  margin-bottom: var(--sp-2);
}

.inner-body blockquote {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-left: 3px solid var(--blue);
  background: var(--blue-wash);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
}

/* ── Link cards (landing pages) ── */
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}

.link-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  gap: var(--sp-3);
}

.link-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(20,20,43,0.08);
}

.link-card__icon {
  font-size: 28px;
  line-height: 1;
}

.link-card__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.link-card__desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
}

.link-card__arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-text);
  letter-spacing: 0.04em;
}

.link-card[aria-current="page"] {
  background: var(--brown-wash, #f5ede0);
  border-color: var(--brown, #7a6040);
  pointer-events: none;
  cursor: default;
}

.link-card[aria-current="page"] .link-card__arrow {
  color: var(--brown, #7a6040);
}

.about-subnav.inner-section {
  position: relative;
  z-index: 2;
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-4);
}

.about-subnav .link-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-subnav .link-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  column-gap: var(--sp-3);
  row-gap: 2px;
}

.about-subnav .link-card__icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}

.about-subnav .link-card__title {
  grid-column: 2;
  grid-row: 1;
  font-size: 15px;
  align-self: end;
  margin: 0;
  text-align: center;
}

.about-subnav .link-card__desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 12px;
  align-self: start;
  margin: 0;
  text-align: center;
}

@media (max-width: 640px) {
  .about-subnav .link-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Stats row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-4);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--blue-text);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: var(--sp-2);
}

.stat-item__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── Skill bullets ── */
.skill-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
}

.skill-list > *:nth-child(1) { grid-column: span 2; }
.skill-list > *:nth-child(2) { grid-column: span 2; }
.skill-list > *:nth-child(3) { grid-column: span 2; }
.skill-list > *:nth-child(4) { grid-column: 2 / span 2; }
.skill-list > *:nth-child(5) { grid-column: 4 / span 2; }

/* 4-item variant: one row of equal columns */
.skill-list--four {
  grid-template-columns: repeat(4, 1fr);
}
.skill-list--four > *:nth-child(n) { grid-column: span 1; }

.skill-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-4);
}

.skill-list__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.skill-list__title {
  font-weight: 600;
  margin-bottom: 4px;
}

.skill-list__desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.55;
}

/* ── Session steps ── */
.session-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
  counter-reset: step-counter;
}

.session-step {
  position: relative;
  padding: var(--sp-5) var(--sp-4);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  counter-increment: step-counter;
}

.session-step::before {
  content: counter(step-counter, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--blue-text);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-3);
}

.session-step__title {
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.session-step__desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* ── FAQ cards ── */
.faq-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}

.faq-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-card__q {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}

.faq-card__a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  font-style: italic;
}

/* ── Workshop cards ── */
.workshop-card {
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.workshop-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

/* ── Testimonial cards ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
  align-items:start;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: var(--sp-4);
  font-style: italic;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-top: auto;
  padding-top: var(--sp-3);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: var(--sp-3);
}

/* ── Comparison table ── */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.styled-table th {
  background: var(--blue-deep);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.styled-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--mid);
}

.styled-table tr:last-child td {
  border-bottom: none;
}

.styled-table tr:nth-child(even) td {
  background: var(--blue-wash);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
}

/* ── FAQ split layout ── */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.faq-split__img {
  border-radius: var(--r-card);
  overflow: hidden;
  width: 100%;
  box-shadow: 0 0 20px 10px rgba(124, 61, 184, 0.5);
  transform: rotate(-2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
}
.faq-split__img:hover {
  transform: rotate(1deg) scale(1.02);
  box-shadow: 0 0 32px 16px rgba(124, 61, 184, 0.65);
}
.faq-split__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .faq-split {
    grid-template-columns: 1fr;
  }
  .faq-split__img {
    display: none;
  }
}

/* ── FAQ accordion ── */
.faq-group {
  margin-bottom: var(--sp-6);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  padding: var(--sp-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  line-height: 1.4;
}

.faq-item__chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.2s;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 600px;
}

.faq-item__answer-inner {
  padding-bottom: var(--sp-4);
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Production cards ── */
.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}

/* Current-show feature: image + text side-by-side, collapses to single column */
.production-feature-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-5);
  align-items: stretch;
}

.production-feature-body {
  cursor: pointer;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.production-feature-body:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--purple);
}

.production-feature-img {
  width: auto;
  height: 450px;
  border-radius: var(--r-card);
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.production-feature-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* Upcoming productions: horizontal rows, stacks on mobile */
.production-grid--upcoming {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.production-grid--upcoming .production-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
}

.production-grid--upcoming .production-card__img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  max-height: 350px;
  object-fit: contain;
  object-position: center top;
  background-color: #1a1a1a;
}

@media (max-width: 600px) {
  .production-grid--upcoming .production-card {
    grid-template-columns: 1fr;
  }
}

.production-card {
  display: block;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.production-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.production-card__body {
  padding: var(--sp-4);
}

.production-card__cta {
  margin-top: var(--sp-3);
  pointer-events: none;
}

.production-card__date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-bottom: var(--sp-2);
}

.production-badge {
  display: inline-block;
  background: var(--purple-wash);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-right: 6px;
}

.workshop-badge {
  display: inline-block;
  background: var(--yellow-wash);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-right: 6px;
}

.production-card__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.production-card__desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* ── Shared card hover ── */
@media (hover: hover) {
  .class-card:hover,
  .link-card:hover,
  .testimonial-card:hover,
  .faq-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .production-card:hover {
    border-color: var(--purple);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
}

/* ── NODA action gallery ── */
.noda-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-2);
  width: 100%;
  height: 560px;
  margin-bottom: var(--sp-6);
}

.noda-gallery__item {
  overflow: hidden;
  border-radius: var(--r-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.noda-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease;
}

.noda-gallery__item:hover img {
  transform: scale(1.03);
}

.noda-gallery__item--left {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.noda-gallery__item--top-mid {
  grid-column: 2;
  grid-row: 1;
}

.noda-gallery__item--bot-mid {
  grid-column: 2;
  grid-row: 2;
}

.noda-gallery__item--right {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.noda-gallery__item--bot-mid img {
  object-position: center 62%;
  transform: scale(2.2);
  transform-origin: center 22%;
}

.noda-gallery__item--bot-mid:hover img {
  transform: scale(2.23);
  transform-origin: center 22%;
}

.noda-gallery__item--right img {
  object-position: center 60%;
  transform: scale(2.2);
  transform-origin: center 70%;
}

.noda-gallery__item--right:hover img {
  transform: scale(2.23);
  transform-origin: center 70%;
}

/* ── NODA section divider ── */
.noda-section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: var(--sp-6) 0;
}

/* ── NODA awards carousel ── */
.noda-carousel {
  position: relative;
  padding: 0 var(--sp-6);
}

.noda-carousel__viewport {
  overflow: hidden;
}

.noda-carousel__track {
  display: flex;
  gap: var(--sp-4);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.noda-carousel__card {
  flex: 0 0 100%;
}

.noda-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
  padding: 0;
}

.noda-carousel__btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.noda-carousel__btn--prev { left: 0; }
.noda-carousel__btn--next { right: 0; }

.noda-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: var(--sp-4);
}

.noda-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.noda-carousel__dot.is-active {
  background: var(--blue);
  transform: scale(1.4);
}

@media (max-width: 640px) {
  .noda-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .noda-gallery__item--left,
  .noda-gallery__item--right {
    grid-row: span 1;
    aspect-ratio: 3/4;
  }
  .noda-gallery__item--top-mid,
  .noda-gallery__item--bot-mid {
    aspect-ratio: 1;
  }
}

/* ── Award cards (NODA carousel) ── */
.award-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 134, 10, 0.2);
  border-color: var(--yellow-dark);
}

.award-card__photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Gallery grid ── */
.gallery-grid {
  columns: 3;
  column-gap: var(--sp-3);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-3);
  border-radius: var(--r-card);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .gallery-grid { columns: 2; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}

.gallery-item--tall img { height: 280px; }
.gallery-item--short img { height: 240px; }

@media (max-width: 480px) {
  .gallery-item--tall img,
  .gallery-item--short img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.competition-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.competition-photos img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--r-card);
  display: block;
}

/* ── Contact form ── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.contact-form .form-full {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* ── Pricing card ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.price-card--featured {
  border-color: var(--blue);
  border-width: 2px;
  position: relative;
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.price-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-bottom: var(--sp-2);
}

.price-card__name {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(32px, 10vw, 48px);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}

.price-card__period {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: var(--sp-4);
}

.price-card__includes {
  list-style: none;
  text-align: left;
  font-size: 14px;
  color: var(--mid);
  margin-bottom: var(--sp-5);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-4);
}

.price-card__includes li {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--line);
}

.price-card__includes li::before {
  content: '✓ ';
  color: var(--blue-text);
  font-weight: 700;
}

/* ── Reassurance cards (parents page) ── */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.reassurance-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.reassurance-card__icon {
  font-size: 32px;
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-3);
}

.reassurance-card__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}

.reassurance-card__desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .reassurance-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About page: two-column intro ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}

.about-intro__img {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-intro__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
}

/* ── Table note / inner text link ── */
.table-note {
  margin-top: var(--sp-4);
  font-size: 14px;
  color: var(--mid);
}

.inner-link {
  display: inline-block;
  margin-top: var(--sp-4);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-text);
  text-decoration: none;
}

.inner-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


.btn--outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 8px 18px;
  box-shadow: 0 4px 0 rgba(255,255,255,0.2);
}

.btn--outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.12);
}

.btn--outline-white:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .btn {
    padding: 14px 22px;
  }
}

/* ── Quick info row ── */
.info-row {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-top: var(--sp-4);
}

.info-row__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 14px;
  color: var(--mid);
}

.info-row__item strong {
  color: var(--ink);
}

/* ── Class hero image (below PageHeader on each class page) ── */
.class-hero__img {
  display: block;
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--r-card);
  object-position: center 20%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ── Venue info card ── */
.venue-info + .venue-info {
  margin-top: var(--sp-4);
}

.venue-info {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-card);
  padding: var(--sp-4) var(--sp-5);
}

.venue-info__name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}

.venue-info__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  margin-bottom: var(--sp-3);
}

.venue-info__details div {
  display: flex;
  gap: var(--sp-2);
  align-items: baseline;
  font-size: 14px;
}

.venue-info__details dt {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.venue-info__details dd {
  color: var(--mid);
  margin: 0;
}

.venue-info__address {
  font-size: 13px;
  color: var(--mid);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-3);
  margin-top: var(--sp-2);
}

/* ── Teacher profile ── */
.teacher-profile {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.teacher-profile__photo {
  width: 220px;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-card);
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  display: block;
}

.teacher-profile__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--sp-2);
}

.teacher-profile__role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-bottom: var(--sp-3);
}

.teacher-profile__bio {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
}

.teacher-profile--wide {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-6);
  align-items: start;
}

.teacher-profile--wide .teacher-profile__photo {
  width: 100%;
}

@media (max-width: 700px) {
  .teacher-profile--wide {
    grid-template-columns: 1fr;
  }
  .teacher-profile--wide .teacher-profile__photo {
    width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .teacher-profile {
    flex-direction: column;
    align-items: center;
  }
}

.bio-2col {
  columns: 2;
  column-gap: var(--sp-6);
}

@media (max-width: 700px) {
  .bio-2col {
    columns: 1;
    text-align: left;
  }
}

.teacher-profile__body-cols {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.credits-card {
  flex-shrink: 0;
  width: 300px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.credits-card__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-bottom: var(--sp-3);
}

.credits-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: 12px;
  color: var(--mid);
  line-height: 1.45;
}

.credits-card__list em {
  font-style: italic;
  color: var(--ink);
}

@media (max-width: 700px) {
  .teacher-profile__body-cols {
    flex-direction: column;
  }
  .credits-card {
    width: 100%;
  }
  .quote-card {
    width: 100%;
  }
}

.quote-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--blue-wash);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: var(--sp-4);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  background: var(--blue-deep);
  color: white;
  position: relative;
  z-index: 1001;
  font-family: var(--font-body);
}

/* ── Footer marquee CTA strip ── */
.footer-marquee {
  position: relative;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.footer-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 120%, rgba(255, 217, 62, 0.07), transparent 45%),
    radial-gradient(circle at 92% -20%, rgba(212, 66, 126, 0.06), transparent 45%);
  pointer-events: none;
}

.footer-marquee__inner {
  position: relative;
  max-width: var(--col);
  margin: 0 auto;
  padding: var(--sp-5) var(--gutter) var(--sp-5);
}

.footer-marquee__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sp-3);
}

.footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.footer-dot--yellow { background: var(--yellow); }
.footer-dot--pink   { background: var(--pink); }
.footer-dot--blue   { background: var(--blue); }
.footer-dot--purple { background: var(--purple); }

.footer-marquee__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-left: var(--sp-2);
}

.footer-marquee__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-marquee__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  max-width: 560px;
  margin: 0;
}

.footer-marquee__title em {
  color: var(--yellow);
  font-style: italic;
  font-weight: 400;
}

.footer-marquee__ctas {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* ── Footer main grid ── */
.footer-inner {
  max-width: var(--col);
  margin: 0 auto;
  padding: var(--sp-6) var(--gutter) var(--sp-5);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: var(--sp-5);
  align-items: start;
}

/* ── Footer brand block ── */
.footer-brand {
  align-self: start;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: var(--sp-2);
}

.footer-logo img {
  filter: brightness(0) invert(1);
  width: auto;
}

.footer-brand .logo-icon { height: 44px; filter: brightness(0) invert(1); }
.footer-brand .logo-text { height: 32px; }

.footer-brand__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 6px;
  max-width: 260px;
}

.footer-brand__line2 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  margin-bottom: var(--sp-2);
  max-width: 260px;
}

.footer-noda-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 217, 62, 0.1);
  border: 1px solid rgba(255, 217, 62, 0.28);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--sp-2);
}

.footer-socials {
  display: flex;
  gap: var(--sp-2);
  margin-top: 4px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.footer-social-link:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* ── Footer link columns ── */
.footer-col {
  min-width: 0;
}

.footer-col__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-3);
}

.footer-col__dash {
  width: 16px;
  height: 2px;
  display: inline-block;
  flex-shrink: 0;
  transition: width 0.25s ease;
}

.footer-col__head--yellow .footer-col__dash { background: var(--yellow); }
.footer-col__head--pink   .footer-col__dash { background: var(--pink); }
.footer-col__head--blue   .footer-col__dash { background: var(--blue); }

.footer-col:hover .footer-col__dash {
  width: 28px;
}

.footer-heading {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-heading--two-line {
  letter-spacing: 0.08em;
}

.footer-heading:hover {
  color: var(--yellow);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col li {
  margin: 0;
}

.footer-col a:not(.footer-heading) {
  position: relative;
  display: inline-block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  padding: 2px 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-col a:not(.footer-heading)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width 0.22s ease;
}

.footer-col a:not(.footer-heading):hover {
  color: white;
  transform: translateX(2px);
}

.footer-col a:not(.footer-heading):hover::after {
  width: 100%;
}

/* ── Footer contact card ── */
.footer-contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-card);
  padding: var(--sp-3) var(--sp-3) 18px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-card__edge {
  position: absolute;
  top: 0;
  left: var(--sp-3);
  right: var(--sp-3);
  height: 2px;
  background: var(--yellow);
}

.site-footer .footer-contact-card__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  margin-top: 4px;
}

.site-footer .footer-contact-card__email {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 8px;
  word-break: break-word;
  transition: color 0.15s ease;
}

.site-footer .footer-contact-card__email:hover {
  color: var(--yellow);
}

.site-footer .footer-contact-card__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer .footer-contact-card__phone:hover {
  color: white;
}

/* ── Footer bottom bar ── */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--sp-3) var(--gutter);
}

.footer-bottom__inner {
  max-width: var(--col);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.footer-copy__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}

.footer-copy__sep {
  opacity: 0.4;
  margin: 0 2px;
}

.footer-legal {
  display: flex;
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: var(--yellow);
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .footer-contact-card {
    grid-column: 1 / -1;
    margin-top: var(--sp-2);
  }
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--sp-2);
  }
  .footer-marquee__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-marquee__title {
    font-size: clamp(26px, 7vw, 36px);
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: var(--sp-5);
  }
  .footer-marquee__inner {
    padding-top: var(--sp-4);
    padding-bottom: var(--sp-4);
  }
  .footer-marquee__ctas {
    width: 100%;
  }
  .footer-marquee__ctas .btn {
    flex: 1;
    text-align: center;
  }
  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal {
    flex-wrap: wrap;
    gap: var(--sp-3);
  }
  .footer-copy {
    font-size: 11.5px;
    flex-wrap: wrap;
  }
}

/* ── Compact desktop nav (1025–1280px): icon-only logo + tighter link gaps ── */
@media (min-width: 1025px) and (max-width: 1280px) {
  .logo-text {
    display: none;
  }

  .nav-links {
    gap: 20px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  nav {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .eyebrow {
    margin-bottom: var(--sp-4);
  }

  .hero-stage {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 64px;
    padding-left: var(--gutter);
  }

  .hero-photos {
    min-height: 280px;
    padding-top: 24px;
    padding-bottom: 80px;
  }

  .hero-yellow-card {
    left: -16px;
    height: 200px;
  }

  .hero-photo-b {
    bottom: -40px;
    right: -24px;
    width: 60%;
  }



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

  .class-grid--two-col {
    grid-template-columns: 1fr;
  }

  .class-card p {
    min-height: 0;
  }

}

@media (max-width: 600px) {
  .hero-photo-b {
    right: 0;
    bottom: -20px;
    width: 50%;
    transform: rotate(0deg);
  }

}

/* ── Schedule grid ── */
.schedule-section {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.schedule-day {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
}

.schedule-day__heading {
  background: var(--ink);
  color: var(--yellow);
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.schedule-cards {
  display: flex;
  flex-direction: column;
}

.session-card {
  padding: var(--sp-5);
  border-bottom: 1px solid var(--line);
  background: white;
}

.session-card:last-child {
  border-bottom: none;
}

.session-card__venue {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}

.session-card__time {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: var(--sp-2);
}

.session-card__production {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 15px;
  color: var(--blue-text);
  margin-bottom: var(--sp-4);
}

.session-card__book {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.session-card__book:hover {
  text-decoration: underline;
}

/* ── Age finder ── */
.age-finder {
  text-align: center;
  margin-bottom: var(--sp-5);
}

.age-finder__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}

.age-finder__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

.age-finder__btn {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 8px 22px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.age-finder__btn:hover {
  border-color: var(--blue);
  color: var(--blue-text);
}

.age-finder__btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.age-finder__btn[aria-pressed="true"] {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.age-finder__hint {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 2px;
}

.age-finder__btn[aria-pressed="true"] .age-finder__hint {
  color: var(--ink);
  opacity: 0.55;
}

/* sr-only utility (if not already present) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Card highlight / dim states */
.class-card--highlighted {
  border-color: var(--blue) !important;
  box-shadow: 0 8px 32px rgba(0, 168, 220, 0.18);
  transform: translateY(-4px);
}

.class-card--highlighted::after {
  content: 'Good fit';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  pointer-events: none;
}

.class-card--dimmed {
  opacity: 0.4;
  filter: saturate(0.25);
  transition: opacity 0.25s, filter 0.25s, transform 0.2s;
}

.class-card--highlighted,
.class-card--dimmed {
  transition: opacity 0.25s, filter 0.25s, transform 0.2s,
              border-color 0.15s, box-shadow 0.2s;
}

/* ── Contact forms ── */
.contact-form__honeypot {
  display: none;
}

.form-field {
  margin-bottom: var(--sp-4);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-req {
  color: var(--blue-text);
  margin-left: 2px;
}

.form-optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid);
  margin-left: 4px;
}

.form-hint {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: var(--sp-2);
}

.form-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 168, 220, 0.12);
}

.form-input:focus-visible {
  outline: none;
}

.form-input[aria-invalid="true"] {
  border-color: #C0392B;
}

.form-input[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235D6577' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-error {
  font-size: 13px;
  color: #C0392B;
  margin-top: 5px;
}

.form-privacy {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.form-privacy a {
  color: var(--blue-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-required-note {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: var(--sp-3);
}

.form-submit {
  padding: 14px 32px;
  font-size: 16px;
}

/* Quick contact strip */
.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.contact-quick__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}

.contact-quick__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

a.contact-quick__value:hover {
  color: var(--blue-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Thank-you page */
.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.thankyou-step {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.thankyou-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.thankyou-step__title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.thankyou-step__desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ── Footer photo ── */
.footer-photo {
  width: 100%;
  height: 480px; /* Adjust this to match your pink lines */
  overflow: hidden;
  display: block;
  background-color: var(--blue-deep);
}

.footer-photo img {
  width: 100%;
  height: 100%; /* REQUIRED: This forces the image to fill the 400px container */
  object-fit: cover;
  object-position: center 40%; /* Adjust 30% to move the "view" up or down */
  overflow: hidden;
}

.tagline-strip {
  text-align: center;
  padding: var(--sp-5) var(--gutter);
  background: linear-gradient(to bottom, var(--yellow-wash), var(--cream));
}

.tagline-strip p {
  font-family: 'Amatic SC', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.mini-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 18%;
  padding-right: 8%;
  gap: var(--sp-6);
  align-items: center;
}


.mini-hero-image img {
  width: 90%; /* Increased size */
  height: 380px; /* Slightly taller to match text block */
  object-fit: cover;
  border-radius: var(--r-card);
  position: relative;
  bottom: -60px;
  z-index: 2;

  /* Subtle 3D tilt */
  transform: rotate(2deg); 
  box-shadow: 0 0 40px 8px rgba(0, 168, 220, 0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
}

.mini-hero-image img:hover {
  /* Slightly tilts back to 0 and grows by 5% */
  transform: rotate(0deg) scale(1.02);

  /* Makes the shadow deeper as it "lifts" */
  box-shadow: 0 0 60px 16px rgba(0, 168, 220, 0.25);
}

@media (max-width: 768px) {
  .mini-hero-grid {
    grid-template-columns: 1fr;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    text-align: center;
  }

  .mini-hero-content::after {
    margin-left: auto;
    margin-right: auto;
  }

  .mini-hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    bottom: 0;
    transform: none;
    margin: 0 auto;
  }

  .mini-hero-image img:hover {
    transform: none;
    box-shadow: 0 0 50px 10px rgba(0, 43, 69, 0.12);
  }

}


.page-header--yellow + .inner-section {
  padding-top: 8rem;
}
.section-blur-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(50%);
}


.prose-section {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-8) var(--gutter);
  line-height: 1.8;
}
.insta-feed {
  padding: var(--sp-4) var(--gutter);
  max-width: var(--col);
  margin: 0 auto;
  text-align: center;
}

.insta-feed__header {
  margin-bottom: var(--sp-6);
}

.social-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--blue-text);
  color: var(--blue-text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.social-chip:hover {
  background: var(--blue);
  color: #fff;
}

.insta-feed__embed {
  min-height: 0;
}
.page-header--mini-geeks {
  background: var(--pink-wash) !important;
  color: var(--ink) !important;
  padding-top: var(--sp-4);
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}

.page-header--drama-geeks {
  background: var(--yellow-wash) !important;
  color: var(--ink) !important;
  padding-top: var(--sp-4);
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}

.page-header--drama-geeks .page-header__eyebrow {
  color: var(--blue-deep) !important;
}

.page-header--drama-geeks .page-header__title-accent {
  color: var(--yellow-dark-text);
}

.page-header--dg-associates {
  background: var(--purple-wash) !important;
  color: var(--ink) !important;
  padding-top: var(--sp-4);
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}

@media (min-width: 769px) {
  .page-header--dg-associates .mini-hero-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .page-header--dg-associates .mini-hero-image img {
    width: 100%;
  }
}

.page-header--dg-associates .page-header__eyebrow {
  color: var(--purple) !important;
}

.page-header--dg-associates .page-header__title-accent {
  color: var(--purple);
}

.page-header--mini-geeks .page-header__eyebrow {
  color: var(--blue-deep) !important;
}

.page-header--mini-geeks .page-header__title-accent {
  color: var(--pink-text);
}

/* ── Mini Geeks page accent overrides ── */
.page-mini-geeks .inner-eyebrow {
  color: var(--pink-text);
}

.page-mini-geeks .inner-section--alt {
  background: var(--pink-wash);
}

.page-mini-geeks .session-step::before {
  color: var(--pink-text);
}

.page-mini-geeks .venue-info {
  border-left-color: var(--pink);
}

.page-mini-geeks .price-card__label {
  color: var(--pink-text);
}

.page-mini-geeks .price-card--featured {
  border-color: var(--pink);
}

.page-mini-geeks .price-card__badge {
  background: var(--pink);
}

.page-mini-geeks .price-card__includes li::before {
  color: var(--pink-text);
}

.page-mini-geeks .testimonial-card:hover {
  border-color: var(--pink);
}

/* ── Drama Geeks page accent overrides ── */
.page-drama-geeks .inner-eyebrow {
  color: var(--yellow-dark-text);
}

.page-drama-geeks .inner-section--alt {
  background: var(--yellow-wash);
}

.page-drama-geeks .session-step::before {
  color: var(--yellow-dark-text);
}

.page-drama-geeks .venue-info {
  border-left-color: var(--yellow-dark);
}

.page-drama-geeks .price-card--featured {
  border-color: var(--yellow-dark);
}

.page-drama-geeks .price-card__label {
  color: var(--yellow-dark-text);
}

.page-drama-geeks .price-card__badge {
  background: var(--yellow);
  color: var(--ink);
}

.page-drama-geeks .price-card__includes li::before {
  color: var(--yellow-dark-text);
}

.page-drama-geeks .testimonial-card:hover {
  border-color: var(--yellow);
}

/* ── Mini-hero page-header inner above blur edge ── */
.page-header--dg-associates .page-header__inner,
.page-header--drama-geeks .page-header__inner,
.page-header--mini-geeks .page-header__inner {
  position: relative;
  z-index: 2;
}

/* ── DG Associates page accent overrides ── */

.page-dg-associates .testimonial-card:hover {
  border-color: var(--purple);
}

.page-dg-associates .inner-eyebrow {
  color: var(--purple);
}

.page-dg-associates .inner-section--alt {
  background: var(--purple-wash);
}

.page-dg-associates .nav-dropdown:not(.nav-mega) li a:hover {
  background: var(--purple-wash);
  color: var(--purple);
}

.page-dg-associates .session-step::before {
  color: var(--purple);
}

.page-dg-associates .venue-info {
  border-left-color: var(--purple);
}

.page-dg-associates .price-card--featured {
  border-color: var(--purple);
}

.page-dg-associates .price-card__badge {
  background: var(--purple);
}

.page-dg-associates .price-card__label {
  color: var(--purple);
}

/* ── About page header ── */
.page-header--about {
  background: var(--brown-wash) !important;
  color: var(--ink) !important;
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
  overflow: visible;
  text-align: center;
}

.page-header--about .page-header__title {
  text-align: center;
}

.page-header--about .page-header__subtitle {
  margin-inline: auto;
}

.page-header--about .page-header__eyebrow {
  color: var(--brown) !important;
}

.page-header--about .page-header__title-accent {
  color: var(--brown);
}

/* ── About page accent overrides ── */
.page-about .inner-eyebrow {
  color: var(--brown);
}

.page-about .inner-section--alt {
  background: var(--brown-wash);
}

.page-about .link-card__arrow {
  color: var(--brown);
}

.page-about .link-card:hover {
  border-color: var(--brown);
}

/* ── About section: next-page card (fixed bottom-right) ── */
.story-next-card {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--cream);
  border: 1.5px solid var(--brown-wash);
  border-radius: var(--r-card);
  padding: var(--sp-3) var(--sp-4);
  text-decoration: none;
  color: var(--brown);
  box-shadow: 0 4px 0 rgba(122,96,64,0.28), 0 2px 20px rgba(0,0,0,0.09);
  transition: transform 0.12s, box-shadow 0.12s;
  z-index: 50;
}
.story-next-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(122,96,64,0.28), 0 6px 24px rgba(0,0,0,0.12);
}
.story-next-card:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(122,96,64,0.2), 0 1px 8px rgba(0,0,0,0.06);
}
.story-next-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.story-next-card__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1;
}
.story-next-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
}
.story-next-card__icon {
  flex-shrink: 0;
  color: var(--brown);
  opacity: 0.7;
}
@media (max-width: 480px) {
  .story-next-card {
    bottom: var(--sp-3);
    right: var(--sp-3);
    padding: var(--sp-2) var(--sp-3);
  }
}

/* ── Page loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

#page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-top-color: var(--blue);
  animation: spin 0.9s linear infinite;
}

.loader-logo {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .loader-ring { animation: none; }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 768px) {
  .skill-list {
    grid-template-columns: 1fr 1fr !important;
  }

  .skill-list > *:nth-child(1),
  .skill-list > *:nth-child(2),
  .skill-list > *:nth-child(3),
  .skill-list > *:nth-child(4),
  .skill-list > *:nth-child(5) {
    grid-column: span 1 !important;
  }

  .production-feature-grid {
    grid-template-columns: 1fr;
  }

  .production-feature-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    max-height: 420px;
    object-fit: cover;
  }

  .production-grid--upcoming {
    grid-template-columns: 1fr;
  }
}

.price-note {
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: var(--sp-2);
}
/* ── Safeguarding section ── */
.safeguarding-intro {
  margin-bottom: var(--sp-5);
}

.safeguarding-date {
  font-size: 13px;
  color: var(--mid);
  margin-top: var(--sp-2);
}

.accordion {
  margin-bottom: var(--sp-6);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-heading {
  font-size: 15px;
  font-weight: 600;
  padding: var(--sp-3) 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.accordion-heading::after {
  content: '+';
  font-size: 20px;
  color: var(--blue-text);
  transition: transform 0.2s;
}

details[open] .accordion-heading::after {
  content: '−';
}

.accordion-body {
  padding-bottom: var(--sp-4);
  color: var(--ink);
  line-height: 1.7;
}

.accordion-body ul {
  padding-left: var(--sp-4);
  margin-top: var(--sp-2);
}

.accordion-body li {
  margin-bottom: var(--sp-2);
}

.safeguarding-staff {
  margin-bottom: var(--sp-6);
}

.staff-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-3);
}

.staff-role {
  display: block;
  font-size: 12px;
  color: var(--blue-text);
  font-weight: 600;
}

.safeguarding-contacts {
  margin-bottom: var(--sp-6);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-3);
}

.contact-card {
  background: var(--cream);
  border-radius: var(--r-card);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.contact-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-bottom: var(--sp-2);
}

.contact-card__name {
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

.contact-card__detail {
  display: block;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 4px;
}

.contact-card__detail:hover {
  color: var(--blue-text);
}

/* ── Terms & Conditions ── */
.terms-content {
  padding: var(--sp-7) var(--gutter);
}

.terms-inner {
  max-width: 740px;
  margin: 0 auto;
}

.terms-block {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--line);
}

.terms-block:last-of-type {
  border-bottom: none;
}

.terms-block h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--ink);
}

.terms-block ul {
  padding-left: var(--sp-4);
  line-height: 1.7;
}

.terms-block li {
  margin-bottom: var(--sp-2);
}

.terms-contact {
  margin-top: var(--sp-6);
  padding: var(--sp-4);
  background: var(--cream);
  border-radius: var(--r-card);
  text-align: center;
  font-size: 15px;
}

/* ── Terms callout ── */
.terms-callout {
  background: var(--yellow-wash);
  border-left: 4px solid var(--yellow);
  border-radius: var(--r-card);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-6);
}

.terms-callout__heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  text-align: center;
}

.terms-callout__inner {
  text-align: center;
}

.terms-callout__inner .btn {
  display: inline-block;
}

.terms-callout__text {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  line-height: 1.6;
}
