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

    :root {
      --red:        #C8192A;
      --red-dark:   #9B1220;
      --red-light:  #E03347;
      --charcoal:   #141414;
      --dark-2:     #1c1c1c;
      --cream:      #FAF7F3;
      --warm-white: #FFFFFF;
      --light-gray: #F0ECE8;
      --mid-gray:   #D6D0C9;
      --text-dark:  #1C1C1C;
      --text-muted-dark:  rgba(28,28,28,0.52);
      --text-light: #FAF7F3;
      --text-muted-light: rgba(250,247,243,0.52);
      --gold:       #C9963A;
      --max-w: 1520px;
      /* Default vertical padding for .page-block / class rows */
      --page-block-pad-y: clamp(3.5rem, 6vw, 5.5rem);
      /* Lead section bottom; first class top uses this at mobile (see .our-classes-lead + .class-level) */
      --preschool-lead-pad-bottom: clamp(0.5rem, 1.2vw, 0.9rem);
      --preschool-first-class-pad-top: var(--page-block-pad-y);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; overflow-x: hidden; background: var(--cream); }

    /* ── CONTAINER ── */
    .container {
      max-width: calc(var(--max-w) + 120px);
      margin: 0 auto;
      padding: 0 2.5rem;
      width: 100%;
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(14,14,14,0.94);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      overflow: visible;
    }
    .nav-inner {
      max-width: calc(var(--max-w) + 120px);
      margin: 0 auto;
      padding: 0 2.5rem;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      overflow: visible;
      position: relative;
      transition: height .3s;
    }
    .nav-inner.scrolled { height: 56px; }
    /* Logo box: always anchored to top of nav, protrudes below regardless of nav height */
    .nav-logo {
      display: flex; align-items: center; text-decoration: none;
      position: absolute;
      top: 0; left: 2.5rem;
      z-index: 10;
      background: linear-gradient(160deg, var(--red-light) 0%, var(--red-dark) 100%);
      padding: 12px 22px 16px;
      box-shadow: 0 8px 32px rgba(200,25,42,0.45), 0 2px 8px rgba(0,0,0,0.3);
      /* always the same height — does not shrink with nav */
      height: 106px;
    }
    .nav-logo::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: rgba(0,0,0,0.22);
    }
    .nav-logo-img { height: 78px; width: auto; display: block; filter: brightness(0) invert(1); }
    /* Spacer so nav links don't overlap the logo box */
    .nav-logo-spacer { width: 220px; flex-shrink: 0; }
    .nav-logo span {
      background: linear-gradient(135deg, var(--red-light), var(--red-dark));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      background: none; border: none; cursor: pointer; padding: .4rem;
      width: 2.2rem; height: 2.2rem;
    }
    .nav-hamburger span {
      display: block; height: 2px; background: var(--text-light); border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-links { display: flex; gap: 2.4rem; list-style: none; }
    .nav-links a {
      font-size: .78rem; font-weight: 600; letter-spacing: 1.6px;
      text-transform: uppercase; color: rgba(250,247,243,.55);
      text-decoration: none; transition: color .25s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -.3rem; left: 0; right: 0; height: 1.5px;
      background: linear-gradient(90deg, var(--red-light), var(--red-dark));
      transform: scaleX(0); transform-origin: left; transition: transform .25s;
    }
    .nav-links a:hover { color: var(--text-light); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
      color: #fff;
      padding: .52rem 1.35rem; border-radius: 3px;
      font-size: .77rem; font-weight: 700; letter-spacing: 1.2px;
      text-transform: uppercase; text-decoration: none;
      box-shadow: 0 2px 12px rgba(200,25,42,.3);
      transition: opacity .25s, transform .2s, box-shadow .2s;
    }
    .nav-cta:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(200,25,42,.45); }

    .nav-item--has-dropdown { position: relative; }
    .nav-dropdown__trigger {
      display: inline-flex; align-items: center; gap: 0.35rem;
      font: inherit; font-size: .78rem; font-weight: 600; letter-spacing: 1.6px;
      text-transform: uppercase; color: rgba(250,247,243,.55);
      background: none; border: none; margin: 0; padding: 0;
      cursor: pointer; text-decoration: none; transition: color .25s;
      position: relative;
    }
    .nav-dropdown__trigger::after {
      content: ''; position: absolute; bottom: -.3rem; left: 0; right: 0; height: 1.5px;
      background: linear-gradient(90deg, var(--red-light), var(--red-dark));
      transform: scaleX(0); transform-origin: left; transition: transform .25s;
    }
    .nav-dropdown__trigger:hover { color: var(--text-light); }
    .nav-dropdown__trigger:hover::after { transform: scaleX(1); }
    .nav-item--has-dropdown.is-open .nav-dropdown__trigger { color: var(--text-light); }
    .nav-item--has-dropdown.is-open .nav-dropdown__trigger::after { transform: scaleX(1); }
    .nav-dropdown__chev {
      display: flex; color: currentColor; opacity: 0.75; transition: transform 0.2s ease;
    }
    .nav-item--has-dropdown.is-open .nav-dropdown__chev { transform: rotate(180deg); }
    .nav-dropdown {
      list-style: none; margin: 0; padding: 0.45rem 0; min-width: 16rem; max-width: 18rem;
      position: absolute; top: calc(100% + 0.35rem); left: 0; z-index: 250;
      background: linear-gradient(180deg, #181818 0%, #0c0c0c 100%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 3px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
      opacity: 0; visibility: hidden; transform: translateY(6px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }
    .nav-item--has-dropdown:hover .nav-dropdown,
    .nav-item--has-dropdown:focus-within .nav-dropdown,
    .nav-item--has-dropdown.is-open .nav-dropdown {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .nav-dropdown li { margin: 0; border: none; }
    .nav-dropdown a {
      display: block; padding: 0.5rem 1.1rem;
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: none;
      color: rgba(250, 247, 243, 0.78) !important;
      text-decoration: none; transition: color 0.2s, background 0.2s; border: none;
    }
    .nav-dropdown a::after { display: none !important; }
    .nav-dropdown a:hover {
      color: #fff !important; background: rgba(200, 25, 42, 0.18);
    }

    /* ── HERO — DARK (full bleed, no container) ── */
    .hero {
      height: 100vh;
      display: flex; flex-direction: column;
      background: #000;
      color: var(--text-light);
      position: relative; overflow: hidden;
    }
    /* Full-width grid — left col sized to match container left edge */
    .hero-content-wrap {
      flex: 1; display: flex; overflow: hidden;
      position: relative;
    }
    /* Star field only in the left / copy column (not under the video) */
    .hero-stars-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }
    .hero-left > *:not(.hero-stars-canvas) {
      position: relative;
      z-index: 1;
    }
    .hero-content {
      display: grid;
      /* Left col: from screen left to ~55% of max-width centered;
         Right col: fills remaining space to screen right edge */
      grid-template-columns: calc(50vw + (var(--max-w) * 0.05)) 1fr;
      width: 100%;
      position: relative; overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      /* Pad from the left so text aligns with container — mirrors container padding */
      padding: 7rem 4rem 4rem calc((100vw - var(--max-w)) / 2 + 2.5rem);
      position: relative;
      overflow: hidden;
    }
    /* clamp left padding so it never goes negative on smaller screens */
    @supports (padding-left: max(1rem, 1px)) {
      .hero-left {
        padding-left: max(2.5rem, calc((100vw - var(--max-w)) / 2 + 2.5rem));
      }
    }
    .hero-tag {
      font-size: .68rem; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--red);
      margin-bottom: 1.6rem;
      opacity: 0; animation: fadeUp .6s .15s forwards;
      display: flex; align-items: center; gap: .5rem;
    }
    .hero-h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.8rem, 6.5vw, 7.2rem);
      line-height: .93; letter-spacing: 1px; margin-bottom: 1.8rem;
      opacity: 0; animation: fadeUp .7s .3s forwards;
    }
    .hero-h1 .accent {
      background: linear-gradient(
        105deg,
        var(--red-dark)   0%,
        var(--red-light)  30%,
        #fff              47%,
        #ffd0d5           53%,
        var(--red-light)  60%,
        var(--red-dark)   100%
      );
      background-size: 250% auto;
      background-position: 120% center;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      /* shine sweeps once after h1 finishes fading in */
      animation: heroShine .85s 1.05s cubic-bezier(.4,0,.2,1) forwards;
    }
    .hero-sub {
      font-size: 1rem; font-weight: 300; line-height: 1.8;
      color: var(--text-muted-light); max-width: 441px; margin-bottom: 2.8rem;
      opacity: 0; animation: fadeUp .7s .45s forwards;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .7s .6s forwards; }

    .btn-primary {
      background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
      color: #fff;
      padding: .88rem 2.1rem; border-radius: 3px;
      font-size: .82rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      box-shadow: 0 4px 20px rgba(200,25,42,.38);
      transition: opacity .25s, transform .2s, box-shadow .2s;
    }
    .btn-primary:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,25,42,.55); }

    .btn-ghost-light {
      border: 1px solid rgba(250,247,243,.28); color: var(--text-light);
      padding: .88rem 2.1rem; border-radius: 3px;
      font-size: .82rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      background: rgba(255,255,255,0.03);
      transition: border-color .25s, background .25s, transform .2s;
    }
    .btn-ghost-light:hover { border-color: rgba(250,247,243,.6); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

    .btn-ghost-dark {
      border: 1.5px solid rgba(28,28,28,.22); color: var(--text-dark);
      padding: .88rem 2.1rem; border-radius: 3px;
      font-size: .82rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      background: rgba(28,28,28,0.03);
      transition: border-color .25s, background .25s, transform .2s;
    }
    .btn-ghost-dark:hover { border-color: rgba(28,28,28,.55); background: rgba(200,25,42,0.04); transform: translateY(-2px); }

    /* ── HERO REVIEW CAROUSEL ── */
    .hero-reviews {
      margin-top: 3.5rem;
      padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1);
      opacity: 0; animation: fadeUp .7s .75s forwards;
      overflow: hidden;
      position: relative;
    }
    .hero-reviews-label {
      font-size: .62rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: rgba(250,247,243,.4);
      margin-bottom: 1rem;
    }
    .hero-reviews-track-wrap { overflow: hidden; }
    .hero-reviews-track {
      display: flex; gap: 1.2rem;
      transition: transform .55s cubic-bezier(.4,0,.2,1);
    }
    .hero-review-card {
      flex-shrink: 0;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 4px;
      padding: 1rem 1.3rem;
      min-width: 220px; max-width: 220px;
      backdrop-filter: blur(6px);
    }
    .hero-review-stars {
      display: flex; gap: 3px; margin-bottom: .55rem;
    }
    .hero-review-stars svg { width: .78rem; height: .78rem; fill: var(--gold); }
    .hero-review-text {
      font-size: .78rem; line-height: 1.55; color: rgba(250,247,243,.78);
      margin-bottom: .6rem;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .hero-review-name {
      font-size: .65rem; font-weight: 700; letter-spacing: 1.4px;
      text-transform: uppercase; color: rgba(250,247,243,.4);
    }
    .hero-reviews-dots {
      display: flex; gap: .45rem; margin-top: 1rem;
    }
    .hero-reviews-dot {
      width: 18px; height: 3px; border-radius: 2px;
      background: rgba(255,255,255,.2); border: none; padding: 0; cursor: pointer;
      transition: background .3s, width .3s;
    }
    .hero-reviews-dot.active { background: var(--red-light); width: 28px; }

    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-video {
      position: absolute; inset: 0;
      z-index: 1;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      opacity: 0; animation: fadeIn 1s .5s forwards;
    }
    .hero-video-overlay {
      position: absolute; inset: 0;
      z-index: 2;
      background: linear-gradient(to right, rgba(24,24,24,.55) 0%, transparent 40%),
                  linear-gradient(to top, rgba(24,24,24,.35) 0%, transparent 50%);
    }
    .hero-accent-bar {
      position: absolute; right: 0; top: 0; bottom: 0; width: 5px;
      background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
      z-index: 3;
    }
    .hero-pill {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      background: rgba(20,20,20,.82); border: 1px solid rgba(200,25,42,.45);
      border-radius: 50px; padding: .6rem 1.6rem; white-space: nowrap;
      font-size: .68rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold); z-index: 3;
      opacity: 0; animation: fadeIn .8s 1.3s forwards;
      backdrop-filter: blur(8px);
      display: flex; align-items: center; gap: .5rem;
    }

    /* ── HERO ALERT BAR — pinned to bottom of hero ── */
    .hero-alert-bar {
      background: linear-gradient(100deg, var(--red-dark) 0%, var(--red) 40%, var(--red-light) 100%);
      position: relative; overflow: hidden;
      z-index: 10;
    }
    .hero-alert-bar::after {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        90deg, transparent, transparent 120px,
        rgba(255,255,255,0.04) 120px, rgba(255,255,255,0.04) 121px
      );
      pointer-events: none;
    }
    .hero-alert-inner {
      padding: 1.4rem 0;
      display: grid; grid-template-columns: 1fr auto;
      align-items: center; gap: 2rem;
      color: #fff;
      position: relative; z-index: 1;
    }
    .hero-alert-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: 2px; margin-bottom: .18rem; }
    .hero-alert-sub { font-size: .82rem; font-weight: 400; opacity: .88; line-height: 1.5; }
    .hero-alert-sub strong { font-weight: 700; }
    .alert-btn {
      background: #fff; color: var(--red);
      padding: .85rem 1.9rem; border-radius: 3px;
      font-size: .78rem; font-weight: 700; letter-spacing: 1.3px;
      text-transform: uppercase; text-decoration: none; white-space: nowrap;
      transition: background .2s, transform .2s;
    }
    .alert-btn:hover { background: var(--cream); transform: translateY(-1px); }

    /* ── PROGRAMS — LIGHT (action-packed) ── */
    .programs {
      background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(200,25,42,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 0% 100%, rgba(200,25,42,0.05) 0%, transparent 55%),
        var(--cream);
      color: var(--text-dark); padding: 7rem 0;
      position: relative; overflow: hidden;
    }
    /* diagonal speed-line burst */
    .programs::before {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        repeating-linear-gradient(
          -62deg,
          transparent,
          transparent 56px,
          rgba(200,25,42,0.028) 56px,
          rgba(200,25,42,0.028) 57px
        ),
        repeating-linear-gradient(
          -62deg,
          transparent,
          transparent 112px,
          rgba(200,25,42,0.014) 112px,
          rgba(200,25,42,0.014) 114px
        );
    }
    /* bottom-right burst anchor */
    .programs::after {
      content: '';
      position: absolute; bottom: -120px; right: -80px; z-index: 0; pointer-events: none;
      width: 680px; height: 680px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,25,42,0.07) 0%, transparent 68%);
    }
    .programs .container { position: relative; z-index: 1; max-width: calc(var(--max-w) + 120px); }
    .section-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
    .h2-dark {
      font-family: 'DM Sans', sans-serif; font-weight: 800;
      font-size: clamp(2.4rem, 3.8vw, 3.8rem); letter-spacing: -.5px; line-height: .95; color: var(--text-dark);
    }
    .h2-light {
      font-family: 'DM Sans', sans-serif; font-weight: 800;
      font-size: clamp(2.4rem, 3.8vw, 3.8rem); letter-spacing: -.5px; line-height: .95; color: var(--text-light);
    }
    .body-dark { font-size: .97rem; font-weight: 300; line-height: 1.85; color: var(--text-muted-dark); max-width: 500px; }
    .body-light { font-size: .97rem; font-weight: 300; line-height: 1.85; color: var(--text-muted-light); max-width: 500px; }
    /* ── MASONRY IMAGE GALLERY ── */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      /* Row pair sized so card 1 (2 rows + gap) is 25% taller than prior 280+280+gap */
      grid-template-rows: 352px 352px;
      gap: 18px;
    }
    .program-card:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
    .program-card:nth-child(2) { grid-column: 5 / 9; grid-row: 1 / 2; }
    .program-card:nth-child(3) { grid-column: 5 / 10; grid-row: 2 / 3; }
    .program-card:nth-child(4) { grid-column: 9 / 13; grid-row: 1 / 2; }
    .program-card:nth-child(5) { grid-column: 10 / 13; grid-row: 2 / 3; }

    /* staggered slam-in keyframe */
    @keyframes cardSlam {
      0%   { opacity: 0; transform: translateY(44px) scale(.96); }
      60%  { opacity: 1; transform: translateY(-5px) scale(1.01); }
      100% { opacity: 1; transform: none; }
    }

    .program-card.will-animate { opacity: 0; transform: translateY(44px) scale(.96); }
    .program-card.will-animate.visible {
      animation: cardSlam .6s cubic-bezier(.22,1,.36,1) forwards;
    }

    a.program-card {
      text-decoration: none;
      color: inherit;
    }
    .program-card {
      position: relative; overflow: hidden; cursor: pointer;
      border-radius: 2px;
      box-shadow: 0 6px 28px rgba(0,0,0,.14), 0 2px 6px rgba(0,0,0,.10);
      transition: transform .38s cubic-bezier(.22,1,.36,1), box-shadow .38s;
    }
    .program-card:hover {
      transform: scale(1.022) translateY(-4px);
      z-index: 2;
      box-shadow: 0 20px 56px rgba(0,0,0,.22), 0 4px 16px rgba(200,25,42,.18);
    }

    /* red corner-slash that sweeps in on hover */
    .program-card-slash {
      position: absolute; top: 0; left: -4px; z-index: 4;
      width: 60px; height: 4px;
      background: linear-gradient(90deg, var(--red-light), var(--red-dark));
      transform: scaleX(0) skewX(-14deg);
      transform-origin: left center;
      transition: transform .42s cubic-bezier(.22,1,.36,1);
    }
    .program-card:hover .program-card-slash { transform: scaleX(1) skewX(-14deg); }

    .program-card-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      transition: transform .65s cubic-bezier(.22,1,.36,1), filter .5s;
      filter: brightness(0.88) saturate(1.1) contrast(1.04);
    }
    .program-card:hover .program-card-img {
      transform: scale(1.07);
      filter: brightness(1.02) saturate(1.2) contrast(1.02);
    }

    /* base scrim — angled for energy */
    .program-card::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        158deg,
        rgba(0,0,0,0.04) 0%,
        rgba(0,0,0,0) 28%,
        rgba(0,0,0,0.70) 100%
      );
      transition: background .42s ease;
    }
    .program-card:hover::before {
      background: linear-gradient(
        158deg,
        rgba(0,0,0,0.04) 0%,
        rgba(0,0,0,0) 18%,
        rgba(0,0,0,0.36) 100%
      );
    }

    /* red glow blasts up from bottom on hover */
    .program-card-glow {
      position: absolute; inset: 0; z-index: 1;
      background: radial-gradient(ellipse 100% 55% at 50% 108%, rgba(200,25,42,0.58) 0%, transparent 62%);
      opacity: 0; transition: opacity .42s; pointer-events: none;
    }
    .program-card:hover .program-card-glow { opacity: 1; }

    /* thicker bottom bar sweeps from left */
    .program-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; z-index: 4;
      background: linear-gradient(90deg, var(--red-light), var(--red-dark) 60%, var(--red-light));
      transform: scaleX(0); transform-origin: left;
      transition: transform .42s cubic-bezier(.22,1,.36,1);
    }
    .program-card:hover::after { transform: scaleX(1); }

    .program-card-body {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
      padding: 1.3rem 1.3rem 1.5rem;
    }

    .program-card-num {
      position: absolute; top: .8rem; left: 1rem; z-index: 3;
      font-family: 'Bebas Neue', sans-serif; font-size: 3.4rem; line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
      pointer-events: none;
      transition: color .32s, -webkit-text-stroke .32s, transform .38s cubic-bezier(.22,1,.36,1);
    }
    .program-card:hover .program-card-num {
      color: #fff;
      -webkit-text-stroke: 0px transparent;
      transform: translateX(5px);
    }

    .program-tag {
      display: inline-block; font-size: .58rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: #fff;
      background: rgba(200,25,42,0.72); border: 1px solid rgba(255,255,255,.22);
      padding: .22rem .7rem; border-radius: 2px; margin-bottom: .65rem;
      backdrop-filter: blur(6px);
      transition: background .3s, transform .3s;
    }
    .program-card:hover .program-tag {
      background: var(--red);
      transform: translateX(3px);
    }

    .program-name {
      font-family: 'DM Sans', sans-serif; font-weight: 800;
      font-size: 1.15rem; letter-spacing: -.1px; color: #fff;
      line-height: 1.15; margin-bottom: .4rem;
      text-shadow: 0 1px 8px rgba(0,0,0,.4);
    }
    /* Larger name on the tall card */
    .program-card:nth-child(1) .program-name { font-size: 1.4rem; }

    .program-desc {
      font-size: .76rem; line-height: 1.55; color: rgba(255,255,255,.8);
      display: block;
      text-shadow: 0 1px 4px rgba(0,0,0,.5);
    }

    .program-arrow {
      position: absolute; top: 1rem; right: 1rem; z-index: 3;
      width: 2rem; height: 2rem; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
      color: rgba(255,255,255,.6);
      transition: background .3s, color .3s, transform .32s cubic-bezier(.22,1,.36,1), border-color .3s;
    }
    .program-arrow svg { width: .85rem; height: .85rem; }
    .program-card:hover .program-arrow {
      background: var(--red); border-color: var(--red-light);
      color: #fff; transform: translate(3px,-3px) scale(1.1);
    }

    /* ── WHY US — DARK (history video + mission) ── */
    .why {
      background:
        radial-gradient(ellipse 65% 55% at 100% 30%, rgba(200,25,42,0.12) 0%, transparent 58%),
        radial-gradient(ellipse 45% 50% at 0% 80%, rgba(200,25,42,0.07) 0%, transparent 55%),
        linear-gradient(170deg, #0e0e0e 0%, var(--charcoal) 55%, #1a0a0c 100%);
      color: var(--text-light); padding: 7rem 0;
      position: relative; overflow: hidden;
    }
    .why::before {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      background-image: repeating-linear-gradient(
        -62deg, transparent, transparent 80px,
        rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px
      );
      pointer-events: none;
    }
    .why .container { position: relative; z-index: 1; max-width: calc(var(--max-w) + 120px); }

    /* ── STATS STRIP — DARK ── */
    .stats-strip {
      background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(200,25,42,0.14) 0%, transparent 52%),
        radial-gradient(ellipse 40% 50% at 100% 10%, rgba(200,25,42,0.08) 0%, transparent 50%),
        linear-gradient(170deg, #0e0e0e 0%, #111 60%, #180608 100%);
      color: var(--text-light);
      position: relative; overflow: hidden;
    }
    .stats-strip::before {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image: repeating-linear-gradient(
        -62deg, transparent, transparent 80px,
        rgba(255,255,255,0.008) 80px, rgba(255,255,255,0.008) 81px
      );
    }
    .stats-strip-inner {
      position: relative; z-index: 1;
      max-width: calc(var(--max-w) + 120px);
      margin: 0 auto;
      padding: 0 2.5rem;
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      align-items: center;
      gap: 0;
    }
    .stats-strip-item {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 4rem 2rem;
      text-align: center;
      transition: background .3s;
    }
    .stats-strip-item:hover { background: rgba(200,25,42,0.07); }
    .stats-strip-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 5.5vw, 6rem);
      line-height: 1;
      color: #fff;
      letter-spacing: 1px;
      margin-bottom: .5rem;
    }
    .stats-strip-num sup {
      font-size: .45em;
      color: var(--red-light);
      vertical-align: super;
      line-height: 0;
    }
    .stats-strip-label {
      font-size: .65rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: rgba(250,247,243,.42);
    }
    .stats-strip-divider {
      width: 1px; height: 80px;
      background: rgba(255,255,255,0.1);
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .stats-strip-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0 1.25rem;
      }
      .stats-strip-item { padding: 2.5rem 1rem; }
      .stats-strip-divider { display: none; }
      .stats-strip-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
      .stats-strip-item:nth-child(1),
      .stats-strip-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    }

    /* ── WHY: HISTORY VIDEO BAND ── */
    .why-history {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 3px;
      overflow: hidden;
    }

    /* Video side */
    .why-history-video {
      position: relative;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-history-video::before {
      content: '';
      position: absolute; top: 0; left: 0; width: 52px; height: 4px;
      background: linear-gradient(90deg, var(--red-light), var(--red-dark));
      z-index: 3;
    }
    .why-history-video::after {
      content: '';
      position: absolute; top: 0; left: 0; width: 4px; height: 52px;
      background: linear-gradient(180deg, var(--red-light), var(--red-dark));
      z-index: 3;
    }
    #aboutVideo {
      width: 100%;
      display: block;
      aspect-ratio: unset;
    }
    .why-history-vignette {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        to right,
        transparent 70%,
        rgba(14,14,14,0.6) 100%
      );
      pointer-events: none;
    }

    /* Copy side */
    .why-history-copy {
      background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
      border-left: 1px solid rgba(255,255,255,0.07);
      padding: 3.2rem 3rem;
      display: flex; flex-direction: column; justify-content: center;
      position: relative; overflow: hidden;
    }
    /* large ghost year watermark */
    .why-history-copy::before {
      content: '1990';
      font-family: 'Bebas Neue', sans-serif;
      font-size: 9rem; line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255,255,255,0.05);
      position: absolute; bottom: -1rem; right: 1.5rem;
      pointer-events: none; user-select: none;
    }

    .why-history-label {
      font-size: .65rem; font-weight: 700; letter-spacing: 4.5px;
      text-transform: uppercase; color: var(--red-light);
      margin-bottom: 1.1rem;
      display: flex; align-items: center; gap: .7rem;
    }
    .why-history-label::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(90deg, rgba(200,25,42,.5), transparent);
    }

    .why-history-h3 {
      font-family: 'DM Sans', sans-serif; font-weight: 800;
      font-size: clamp(1.6rem, 2.2vw, 2.2rem);
      line-height: 1.05; letter-spacing: -.3px;
      color: var(--text-light); margin-bottom: 1.4rem;
    }
    .why-history-h3 span {
      background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    .why-history-body {
      font-size: .9rem; font-weight: 300; line-height: 1.88;
      color: rgba(250,247,243,.62);
      border-left: 2px solid rgba(200,25,42,.5);
      padding-left: 1.2rem;
      margin-bottom: 2rem;
      position: relative; z-index: 1;
    }
    .why-history-body a {
      color: var(--red-light);
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid rgba(200, 25, 42, 0.45);
    }
    .why-history-body a:hover {
      color: #fff;
      border-bottom-color: rgba(255, 255, 255, 0.25);
    }

    /* timeline dots */
    .why-timeline {
      display: flex; gap: 0; margin-bottom: 2.2rem;
      position: relative; z-index: 1;
    }
    .why-timeline::before {
      content: '';
      position: absolute; top: 9px; left: 9px; right: 9px; height: 1px;
      background: linear-gradient(90deg, var(--red-dark), rgba(255,255,255,.1));
    }
    .why-tl-item {
      display: flex; flex-direction: column; align-items: center;
      flex: 1; gap: .5rem;
    }
    .why-tl-dot {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--charcoal);
      border: 2px solid var(--red);
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: center;
    }
    .why-tl-dot::after {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--red-light);
    }
    .why-tl-dot.dim { border-color: rgba(255,255,255,.18); }
    .why-tl-dot.dim::after { background: rgba(255,255,255,.18); }
    .why-tl-year {
      font-family: 'Bebas Neue', sans-serif; font-size: .78rem;
      letter-spacing: 1.5px; color: rgba(250,247,243,.45);
    }
    .why-tl-item:first-child .why-tl-year,
    .why-tl-item:last-child .why-tl-year { color: var(--red-light); }

    /* Responsive for history band */
    @media (max-width: 1024px) {
      .why-stats { grid-template-columns: repeat(2, 1fr); }
      .why-history { grid-template-columns: 1fr; }
      .why-history-vignette { background: linear-gradient(to bottom, transparent 70%, rgba(14,14,14,.6) 100%); }
      .why-inner { grid-template-columns: 1fr; gap: 3rem; }
      .why-features { grid-template-columns: 1fr; }
    }
    /* ── LOCATIONS — LIGHT ── */
    .locations {
      background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(200,25,42,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 0% 100%, rgba(200,25,42,0.05) 0%, transparent 55%),
        var(--cream);
      color: var(--text-dark); padding: 7rem 0;
      position: relative; overflow: hidden;
    }
    .locations::before {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        repeating-linear-gradient(
          -62deg, transparent, transparent 56px,
          rgba(200,25,42,0.028) 56px, rgba(200,25,42,0.028) 57px
        ),
        repeating-linear-gradient(
          -62deg, transparent, transparent 112px,
          rgba(200,25,42,0.014) 112px, rgba(200,25,42,0.014) 114px
        );
    }
    .locations::after {
      content: '';
      position: absolute; bottom: -120px; right: -80px; z-index: 0; pointer-events: none;
      width: 680px; height: 680px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,25,42,0.07) 0%, transparent 68%);
    }
    .locations .container { position: relative; z-index: 1; max-width: calc(var(--max-w) + 120px); }

    .locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; margin-top: 4rem; }
    @media (max-width: 1024px) {
      .locations-grid { grid-template-columns: repeat(2, 1fr); }
    }

    .loc-card {
      background: var(--warm-white);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
      transition: transform .38s cubic-bezier(.22,1,.36,1), box-shadow .38s;
      display: flex; flex-direction: column;
      position: relative;
    }
    .loc-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 60px rgba(200,25,42,.13), 0 6px 20px rgba(0,0,0,.1);
    }

    /* ── IMAGE HEADER ── */
    .loc-card-img {
      height: 190px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }
    .loc-card-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
      transition: transform .65s cubic-bezier(.22,1,.36,1), filter .45s;
      filter: brightness(.88) saturate(1.1);
    }
    .loc-card:hover .loc-card-img img {
      transform: scale(1.07);
      filter: brightness(.95) saturate(1.15);
    }
    .loc-card-img::before {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,.58) 100%);
      pointer-events: none;
    }
    .loc-card-img::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px; z-index: 2;
      background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
    }

    /* day badge */
    .loc-day {
      position: absolute;
      bottom: 14px; left: 16px; z-index: 3;
      display: inline-flex; align-items: center; gap: .45rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: .78rem; letter-spacing: 3px;
      color: #fff; pointer-events: none;
    }
    .loc-day-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--red-light);
      box-shadow: 0 0 0 2px rgba(200,25,42,.35);
      flex-shrink: 0;
    }

    /* ── CARD BODY ── */
    .loc-body {
      padding: 1.8rem 1.8rem 2rem;
      display: flex; flex-direction: column; flex: 1;
      gap: 0;
    }

    .loc-name {
      font-family: 'DM Sans', sans-serif; font-weight: 800;
      font-size: 1.05rem; letter-spacing: -.1px;
      color: var(--text-dark); line-height: 1.2;
      margin-bottom: 1.2rem;
    }

    .loc-detail {
      font-size: .82rem; line-height: 1.85;
      color: var(--text-muted-dark);
      padding-top: 1.1rem;
      border-top: 1px solid rgba(28,28,28,0.07);
      flex: 1;
    }
    .loc-detail strong {
      color: var(--text-dark); font-weight: 700;
      display: block; margin-bottom: .25rem;
      font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
    }

    /* ghost day watermark */
    .loc-day-bg {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5.5rem; line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(28,28,28,0.07);
      position: absolute; bottom: 3.8rem; right: .8rem;
      pointer-events: none; user-select: none; white-space: nowrap;
      transition: -webkit-text-stroke .35s;
      z-index: 0;
    }
    .loc-card:hover .loc-day-bg { -webkit-text-stroke: 1.5px rgba(200,25,42,0.18); }

    .loc-pin { display: none; }

    .loc-link {
      display: flex; align-items: center; justify-content: center;
      margin-top: 1.6rem;
      background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
      color: #fff; text-decoration: none;
      padding: .85rem 1rem; border-radius: 3px;
      font-size: .7rem; font-weight: 700; letter-spacing: 1.8px;
      text-transform: uppercase;
      box-shadow: 0 3px 14px rgba(200,25,42,.28);
      transition: opacity .25s, transform .2s, box-shadow .2s;
      position: relative; z-index: 1;
    }
    .loc-link:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(200,25,42,.42); }
    .loc-link svg { display: none; }

    /* ── APP — LIGHT ── */
    .app-section {
      background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(200,25,42,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 0% 100%, rgba(200,25,42,0.05) 0%, transparent 55%),
        var(--cream);
      position: relative; overflow: hidden;
    }
    .app-section::before {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        repeating-linear-gradient(
          -62deg, transparent, transparent 56px,
          rgba(200,25,42,0.028) 56px, rgba(200,25,42,0.028) 57px
        ),
        repeating-linear-gradient(
          -62deg, transparent, transparent 112px,
          rgba(200,25,42,0.014) 112px, rgba(200,25,42,0.014) 114px
        );
    }
    .app-section::after {
      content: '';
      position: absolute; bottom: -120px; right: -80px; z-index: 0; pointer-events: none;
      width: 680px; height: 680px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,25,42,0.07) 0%, transparent 68%);
    }

    .app-inner {
      max-width: calc(var(--max-w) + 120px);
      margin: 0 auto;
      padding: clamp(3.25rem, 6.5vw, 5.75rem) 2.5rem 0;
      display: grid;
      grid-template-columns: 460px 1fr;
      gap: 5rem 6rem;
      align-items: stretch;
      position: relative; z-index: 1;
    }

    .app-phone {
      position: relative;
      align-self: end;
    }
    .app-phone img {
      width: 100%;
      display: block;
      filter: drop-shadow(0 32px 48px rgba(0,0,0,.16)) drop-shadow(0 10px 24px rgba(200,25,42,.12));
    }

    .app-copy {
      padding: 0 0 2rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      align-self: center;
    }

    .app-body {
      font-size: .97rem; font-weight: 300; line-height: 1.85;
      color: var(--text-muted-dark);
      max-width: 100%;
      margin-top: 1.4rem; margin-bottom: 2rem;
    }

    /* Feature pills */
    .app-features {
      display: flex; flex-wrap: wrap; gap: .65rem;
      margin-bottom: 2.4rem;
    }
    .app-feat {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--warm-white);
      border: 1px solid rgba(28,28,28,.09);
      border-radius: 50px;
      padding: .45rem 1rem .45rem .75rem;
      font-size: .75rem; font-weight: 600; color: var(--text-dark);
      box-shadow: 0 1px 4px rgba(0,0,0,.06);
    }
    .app-feat svg { width: .85rem; height: .85rem; color: var(--red); flex-shrink: 0; }

    /* Store buttons */
    .app-store-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .app-store-btn {
      display: inline-flex; align-items: center; gap: .9rem;
      background: var(--text-dark);
      color: #fff; text-decoration: none;
      padding: .75rem 1.4rem; border-radius: 10px;
      transition: background .25s, transform .2s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(0,0,0,.18);
    }
    .app-store-btn:hover { background: #2a2a2a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.26); }
    .app-store-icon { width: 1.6rem; height: 1.6rem; flex-shrink: 0; }
    .app-store-text { display: flex; flex-direction: column; line-height: 1.2; }
    .app-store-sub { font-size: .6rem; font-weight: 400; opacity: .75; letter-spacing: .5px; }
    .app-store-name { font-size: .9rem; font-weight: 700; letter-spacing: -.2px; }

    @media (max-width: 1024px) {
      .app-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: clamp(2.75rem, 5vw, 4rem) 2.5rem 0;
        /* Stacked: copy (headline + body) first, phone image second */
        display: flex;
        flex-direction: column;
      }
      .app-copy {
        order: -1;
        padding: 0 0 2rem;
        align-self: stretch;
        text-align: left;
      }
      .app-phone {
        order: 0;
        max-width: 320px;
        margin: 0 auto;
        padding-top: 0;
        align-self: center;
      }
    }

    /* ── REVIEWS CAROUSEL — minimal, red gradient ── */
    .reviews-section {
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 50%),
        linear-gradient(135deg, #5c0d16 0%, var(--red-dark) 30%, #c41e32 60%, #8b1522 100%);
      padding: clamp(3.25rem, 8vw, 5.25rem) 0 clamp(2.5rem, 5vw, 3.5rem);
      overflow: hidden;
      position: relative;
    }
    .reviews-section::before {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background: repeating-linear-gradient(
        -32deg, transparent, transparent 80px,
        rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px
      );
    }
    .reviews-section .container { position: relative; z-index: 1; }

    .reviews-track-wrap {
      overflow: hidden;
      position: relative;
      width: 100%;
      max-width: none;
    }
    .reviews-track {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .review-card {
      flex-shrink: 0;
      /* width set by JS for 1-up / 3-up */
      min-width: 0;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 2rem 2rem 1.85rem;
      display: flex;
      flex-direction: column;
      gap: 1.35rem;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .review-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .review-author { display: flex; align-items: center; gap: 0.75rem; }
    .review-avatar {
      width: 2.75rem; height: 2.75rem; border-radius: 50%; flex-shrink: 0;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.9); letter-spacing: 0.5px;
    }
    .review-name {
      font-size: 0.88rem; font-weight: 600; color: #fff; line-height: 1.2;
    }
    .review-meta {
      font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(255, 255, 255, 0.45);
      margin-top: 0.2rem;
    }
    .review-stars {
      display: flex; gap: 2px; flex-shrink: 0;
    }
    .review-stars svg { width: 0.8rem; height: 0.8rem; fill: rgba(255, 220, 140, 0.9); }

    .review-text {
      font-size: 0.98rem; font-weight: 400; line-height: 1.7;
      color: rgba(255, 255, 255, 0.88);
      position: relative;
    }
    .review-bigquote { display: none; }
    .review-text-inner {
      position: relative;
      font-size: 0.98rem;
      font-weight: 300;
    }

    .reviews-pagination {
      display: flex;
      justify-content: center;
      margin-top: 1.75rem;
    }
    .reviews-dots {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }
    .reviews-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: none; padding: 0; cursor: pointer;
      transition: background 0.3s, opacity 0.3s, width 0.3s;
    }
    .reviews-dot:hover { background: #fff; }
    .reviews-dot.active {
      background: #fff;
      width: 1.4rem; border-radius: 3px;
    }
    .reviews-dot:focus-visible {
      outline: 1px solid rgba(255, 255, 255, 0.5);
      outline-offset: 3px;
    }

    @media (min-width: 1024px) {
      .reviews-section .review-card {
        padding: 1.5rem 1.2rem 1.4rem;
        gap: 1.1rem;
      }
      .review-text-inner { font-size: 0.9rem; }
      .review-name { font-size: 0.82rem; }
    }

    @media (max-width: 768px) {
      .review-card { padding: 1.5rem 1.35rem; gap: 1.1rem; }
      .review-text-inner { font-size: 0.92rem; }
      .review-card-top { flex-direction: column; align-items: flex-start; }
      .reviews-pagination { margin-top: 1.5rem; }
    }

    /* ── CTA BAND — DARK (full bleed) ── */
    .cta-section {
      background:
        radial-gradient(ellipse 55% 65% at 80% 50%, rgba(200,25,42,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 35% 45% at 10% 80%, rgba(200,25,42,0.10) 0%, transparent 55%),
        linear-gradient(160deg, #0e0e0e 0%, var(--charcoal) 50%, #1a0a0c 100%);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        -60deg, transparent, transparent 100px,
        rgba(255,255,255,0.015) 100px, rgba(255,255,255,0.015) 101px
      );
      pointer-events: none;
    }
    .cta-section .container { position: relative; z-index: 1; max-width: calc(var(--max-w) + 120px); }
    .cta-band {
      color: var(--text-light);
      padding: 7rem 0; display: grid; grid-template-columns: 1fr auto;
      align-items: center; gap: 3rem;
    }
    .cta-h2 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(2.5rem, 4vw, 4.2rem); letter-spacing: -.5px; line-height: .93;
    }
    .cta-h2 .accent {
      background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .cta-sub { font-size: .95rem; font-weight: 300; line-height: 1.75; color: var(--text-muted-light); margin-top: 1.2rem; max-width: 460px; }
    .cta-sub a { color: rgba(250, 247, 243, 0.92); text-decoration: underline; text-underline-offset: 0.18em; }
    .cta-sub a:hover { color: var(--red-light); }
    .cta-btns { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }

    /* ── FOOTER — DARK (full bleed) ── */
    footer {
      background: linear-gradient(170deg, #0e0e0e 0%, #111 60%, #180608 100%);
      color: var(--text-light);
      border-top: 1px solid rgba(255,255,255,0.07);
      position: relative;
    }
    footer::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image: repeating-linear-gradient(
        -62deg, transparent, transparent 80px,
        rgba(255,255,255,0.005) 80px, rgba(255,255,255,0.005) 81px
      );
    }
    .footer-inner {
      padding: 2.8rem 0;
      display: flex; justify-content: space-between; align-items: center;
      position: relative; z-index: 1;
    }
    .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; color: var(--text-light); }
    .footer-logo span {
      background: linear-gradient(135deg, var(--red-light), var(--red-dark));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .footer-copy { font-size: .73rem; color: rgba(250,247,243,0.38); }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { font-size: .73rem; color: rgba(250,247,243,0.38); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--red-light); }

    /* ── INNER PAGES (class, etc.) ── */
    .inner-page {
      background: var(--cream);
      scroll-padding-top: 5.5rem;
    }
    /* iClassPro embed: site chrome + tall iframe (preschool-enroll*.html) */
    /* No page scroll: only the iframe scrolls; doc fills the viewport (see html.enroll-iframe-doc) */
    html.enroll-iframe-doc {
      height: 100%;
      overflow: hidden;
    }
    @supports (height: 100dvh) {
      html.enroll-iframe-doc {
        height: 100dvh;
        max-height: 100dvh;
      }
      html.enroll-iframe-doc body.inner-page--enroll-iframe {
        max-height: 100dvh;
        height: 100dvh;
      }
    }
    html.enroll-iframe-doc body.inner-page--enroll-iframe {
      height: 100%;
      max-height: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      /* Top of iClassPro iframe to hide (portal header); mobile override below keeps 13rem */
      --enroll-iframe-crop-top: 19rem;
    }
    .inner-page--enroll-iframe .enroll-iframe-main {
      flex: 1 1 0;
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      width: 100%;
      background: var(--cream);
    }
    .enroll-iframe-doc .enroll-iframe-gradient {
      flex: 0 0 auto;
    }
    .enroll-iframe-doc footer {
      flex: 0 0 auto;
    }
    .enroll-iframe-hero__note {
      font-size: 0.9rem;
      line-height: 1.6;
      color: rgba(250, 247, 243, 0.62);
      max-width: 32rem;
      margin: 0.85rem 0 1.05rem;
    }
    .enroll-iframe-hero__note a {
      color: var(--red-light);
      text-decoration: underline;
      text-underline-offset: 0.2em;
    }
    .enroll-iframe-hero__note a:hover {
      color: #ff6b7a;
    }
    .enroll-iframe-wrap {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0 0 2.5rem;
      box-sizing: border-box;
    }
    html.enroll-iframe-doc .enroll-iframe-wrap {
      flex: 1 1 0;
      min-height: 0;
      display: flex;
      flex-direction: column;
      padding: 0;
      overflow: hidden;
    }
    /* Crops the top of the cross-origin portal (hides their header) without touching iframe DOM */
    .enroll-iframe-crop {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      box-shadow: 0 10px 48px rgba(0, 0, 0, 0.12);
      min-height: 28rem;
      height: calc(100svh - 12.5rem);
      max-height: 1200px;
      background: #ececec;
    }
    html.enroll-iframe-doc .enroll-iframe-crop {
      flex: 1 1 0;
      min-height: 0;
      height: auto;
      max-height: none;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    .enroll-iframe-crop__shield {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: var(--enroll-iframe-crop-top);
      z-index: 2;
      pointer-events: auto;
    }
    .enroll-iframe {
      position: relative;
      z-index: 0;
      display: block;
      width: 100%;
      height: calc(100% + var(--enroll-iframe-crop-top));
      min-height: calc(28rem + var(--enroll-iframe-crop-top));
      border: 0;
      background: #ececec;
      transform: translateY(calc(-1 * var(--enroll-iframe-crop-top)));
    }
    html.enroll-iframe-doc .enroll-iframe {
      min-height: 0;
      height: calc(100% + var(--enroll-iframe-crop-top));
    }
    @media (max-width: 768px) {
      .inner-page--enroll-iframe {
        --enroll-iframe-crop-top: 13rem;
      }
      html.enroll-iframe-doc .page-hero__art {
        display: none;
      }
      .enroll-iframe-crop {
        height: calc(100svh - 11rem);
        min-height: 24rem;
        border-radius: 0;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
      }
      .enroll-iframe {
        min-height: calc(24rem + var(--enroll-iframe-crop-top));
      }
      .enroll-iframe-wrap {
        padding: 0 0 1.5rem;
      }
      html.enroll-iframe-doc .enroll-iframe-crop {
        height: auto;
        min-height: 0;
      }
      html.enroll-iframe-doc .enroll-iframe {
        min-height: 0;
      }
    }
    .page-hero {
      background: linear-gradient(155deg, #080808 0%, #141414 35%, #1a0c12 70%, #120a0a 100%);
      /* ~50% less vertical space than prior; top stays ≥4.5rem for fixed nav */
      padding: 4.5rem 0 2.9rem;
      position: relative;
      overflow: hidden;
    }
    .page-hero--immersive {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 19vh;
    }
    @media (min-width: 900px) {
      .page-hero { padding: 4.5rem 0 3.1rem; }
      .page-hero--immersive { min-height: 22vh; }
    }
    @media (max-width: 768px) {
      .page-hero { padding: 4.5rem 0 1.9rem; }
      .page-hero--immersive { min-height: 17vh; }
    }
    /* Inner page only: clear hanging nav logo, compact title band (nav CSS unchanged) */
    .inner-page .page-hero {
      padding: calc(106px + 1.1rem) 0 1.35rem;
    }
    .inner-page .page-hero--immersive {
      min-height: 0;
      justify-content: flex-start;
    }
    @media (min-width: 900px) {
      .inner-page .page-hero { padding: calc(106px + 1.15rem) 0 1.5rem; }
      .inner-page .page-hero--immersive { min-height: 0; }
    }
    @media (max-width: 768px) {
      .inner-page .page-hero {
        padding: calc(80px + 1.15rem) 0 1.35rem;
      }
      .inner-page .page-hero--immersive { min-height: 0; }
    }
    /* Enroll (iClassPro): inner-page hero rules above override earlier .enroll-iframe-doc — repeat after them */
    /* ~20% taller title band: scaled rem padding (nav px offsets unchanged) */
    html.enroll-iframe-doc .inner-page .page-hero {
      flex: 0 0 auto;
      padding: calc(106px + 1.32rem) 0 0.9rem;
    }
    @media (min-width: 900px) {
      html.enroll-iframe-doc .inner-page .page-hero {
        padding: calc(106px + 1.38rem) 0 0.96rem;
      }
    }
    @media (max-width: 768px) {
      html.enroll-iframe-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
    }
    /* Enroll: a bit more air before the title, after the back link */
    html.enroll-iframe-doc .inner-page .page-breadcrumb--simple {
      margin-bottom: 1.7rem;
    }
    @media (max-width: 768px) {
      html.enroll-iframe-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
    }
    /* preschool-classes.html: same title-band treatment as enroll on mobile only (no back link) */
    @media (max-width: 768px) {
      html.preschool-classes-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
      html.preschool-classes-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
      html.preschool-classes-doc .page-hero__art {
        display: none;
      }
    }
    /* flip-academy.html: same mobile title band as preschool-classes */
    @media (max-width: 768px) {
      html.flip-academy-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
      html.flip-academy-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
      html.flip-academy-doc .page-hero__art {
        display: none;
      }
    }
    @media (max-width: 768px) {
      html.tumble-classes-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
      html.tumble-classes-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
      html.tumble-classes-doc .page-hero__art {
        display: none;
      }
    }
    @media (max-width: 768px) {
      html.ninja-classes-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
      html.ninja-classes-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
      html.ninja-classes-doc .page-hero__art {
        display: none;
      }
    }
    @media (max-width: 768px) {
      html.cheer-classes-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
      html.cheer-classes-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
      html.cheer-classes-doc .page-hero__art {
        display: none;
      }
    }
    /* contact.html: mobile title band */
    @media (max-width: 768px) {
      html.contact-page-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
      html.contact-page-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
      html.contact-page-doc .page-hero__art {
        display: none;
      }
    }
    @media (max-width: 768px) {
      html.locations-page-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
      html.locations-page-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
      html.locations-page-doc .page-hero__art {
        display: none;
      }
    }
    @media (max-width: 768px) {
      html.about-page-doc .inner-page .page-hero {
        padding: calc(80px + 1.38rem) 0 0.78rem;
      }
      html.about-page-doc .inner-page .page-breadcrumb--simple {
        margin-bottom: 1.1rem;
      }
      html.about-page-doc .page-hero__art {
        display: none;
      }
    }
    /* Inner page title band: mobile / small screens */
    @media (max-width: 899px) {
      .inner-page .page-hero__grid {
        gap: 1.15rem 0;
        align-items: stretch;
      }
      .inner-page .page-hero__main {
        min-width: 0;
        text-align: left;
      }
      .inner-page .page-hero__art,
      .inner-page .page-hero__art-tag {
        text-align: left;
      }
    }
    @media (max-width: 768px) {
      .inner-page .page-hero h1,
      .inner-page .page-hero__title {
        font-size: clamp(2.15rem, 8.2vw, 2.85rem);
        letter-spacing: 1.25px;
        line-height: 0.98;
        margin: 0 0 0.15rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      .inner-page .page-breadcrumb--simple {
        font-size: 0.62rem;
        line-height: 1.5;
        letter-spacing: 0.1em;
        margin: 0 0 0.9rem;
      }
      /* Same left edge as title + breadcrumb (was center-aligned, felt misaligned) */
      .inner-page .page-hero__art {
        text-align: left;
        align-self: stretch;
        max-width: 100%;
        margin-top: 0.6rem;
        padding-top: 0.15rem;
      }
      .inner-page .page-hero__art-num {
        font-size: clamp(2.4rem, 16vw, 3.4rem);
        letter-spacing: 0.5px;
        line-height: 0.9;
        display: block;
        text-align: left;
        opacity: 0.9;
      }
      .inner-page .page-hero__art-tag {
        text-align: left;
        font-size: 0.55rem;
        letter-spacing: 0.25em;
        margin-top: 0.45rem;
        color: rgba(250, 247, 243, 0.45);
      }
    }
    @media (max-width: 380px) {
      .inner-page .page-hero h1,
      .inner-page .page-hero__title {
        font-size: clamp(1.95rem, 7.5vw, 2.4rem);
      }
      .inner-page .page-breadcrumb--simple .page-breadcrumb__div {
        margin: 0 0.2rem;
      }
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
      background:
        radial-gradient(ellipse 90% 60% at 0% 0%, rgba(200, 25, 42, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(200, 25, 42, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(
          -50deg, transparent, transparent 64px,
          rgba(255, 255, 255, 0.018) 64px, rgba(255, 255, 255, 0.018) 65px
        );
    }
    .page-hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px; z-index: 0; pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(200, 25, 42, 0.45) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(200, 25, 42, 0.45) 80%, transparent);
    }
    .page-hero__glow {
      position: absolute;
      top: 15%;
      right: 6%;
      width: 42vw;
      max-width: 520px;
      height: 42vw;
      max-height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 25, 42, 0.18) 0%, transparent 65%);
      filter: blur(2px);
      pointer-events: none;
      z-index: 0;
    }
    .page-hero--immersive .container {
      position: relative;
      z-index: 1;
      max-width: calc(var(--max-w) + 120px);
    }
    .page-hero__grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2.5rem 3.5rem;
      align-items: center;
    }
    @media (max-width: 899px) {
      .page-hero__grid { grid-template-columns: 1fr; align-items: center; }
      .page-hero__glow { opacity: 0.55; right: -10%; }
    }
    .page-hero__art {
      position: relative;
      text-align: right;
      user-select: none;
      line-height: 0.8;
    }
    .page-hero__art-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4.5rem, 12vw, 8rem);
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.04);
      text-shadow: 0 0 80px rgba(200, 25, 42, 0.25);
    }
    .page-hero__art-tag {
      display: block;
      margin-top: 0.75rem;
      padding: 0;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.32);
      text-align: right;
      background: none;
      border: none;
      box-shadow: none;
    }
    .page-breadcrumb--simple {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.42);
      margin: 0 0 1.5rem;
    }
    .page-breadcrumb--simple a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .page-breadcrumb--simple a:hover {
      color: var(--red-light);
    }
    .page-breadcrumb--simple .page-breadcrumb__div {
      color: rgba(255, 255, 255, 0.22);
      margin: 0 0.35rem;
    }
    .page-breadcrumb--simple .page-breadcrumb__current {
      color: rgba(255, 255, 255, 0.75);
    }
    .page-breadcrumb--pills {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.4rem 0.25rem;
      margin: 0 0 1.75rem;
      padding: 0;
    }
    .page-breadcrumb--pills li {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .page-breadcrumb--pills a {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      padding: 0.38rem 0.7rem 0.38rem 0.55rem;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .page-breadcrumb--pills a:hover {
      color: #fff;
      background: rgba(200, 25, 42, 0.35);
      border-color: rgba(200, 25, 42, 0.55);
    }
    .page-breadcrumb--pills li[aria-current="page"] span {
      display: inline-block;
      padding: 0.38rem 0.8rem;
      border-radius: 4px;
      color: #fff;
      background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 20px rgba(200, 25, 42, 0.35);
    }
    .page-breadcrumb--pills .page-breadcrumb__sep {
      list-style: none;
      display: flex;
      align-items: center;
    }
    .page-breadcrumb--pills .page-breadcrumb__chev {
      color: rgba(255, 255, 255, 0.28);
      width: 0.65rem;
      height: 0.65rem;
      flex-shrink: 0;
    }
    .page-hero__eyebrow {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 0.65rem;
    }
    .page-hero__eyebrow .page-hero__eyebrow-dot {
      color: var(--red-light);
    }
    .page-hero h1,
    .page-hero__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.9rem, 7vw, 5.2rem);
      line-height: 0.95;
      letter-spacing: 2px;
      color: var(--text-light);
      margin: 0 0 1.2rem;
    }
    .page-hero__title-accent {
      background: linear-gradient(100deg, #fff 0%, #ffd0d5 40%, var(--red-light) 70%, #fff 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .page-hero__tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--red-light);
      margin-bottom: 0.5rem;
    }
    .page-hero__lead {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(250, 247, 243, 0.72);
      max-width: 40rem;
      margin-bottom: 1.5rem;
    }
    .page-hero__meta {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.25rem;
      margin: 0 0 1.75rem;
      padding: 0;
    }
    .page-hero__meta li {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .page-hero__meta li::before {
      content: '';
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--red-light);
      box-shadow: 0 0 10px var(--red-light);
    }
    .page-hero__cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem 1.25rem;
    }
    .page-hero__cta-row .btn-primary {
      padding: 0.95rem 2.1rem;
      font-size: 0.8rem;
    }
    .page-hero__cta-row .btn-ghost-light {
      font-size: 0.75rem;
      padding: 0.88rem 1.6rem;
    }
    .page-enroll-inline {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem 1.25rem;
      flex-wrap: wrap;
    }
    .page-section-hd {
      text-align: center;
      max-width: 40rem;
      margin: 0 auto 2.5rem;
    }
    .page-section-hd .lbl-red { margin-bottom: 0.5rem; }
    .page-section-hd h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 2.85rem);
      letter-spacing: 0.5px;
      line-height: 1.02;
      color: var(--text-dark);
    }
    .page-panels {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .page-panels--three {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem 1.35rem;
    }
    @media (max-width: 1024px) {
      .page-panels--three { grid-template-columns: 1fr; }
    }
    @media (max-width: 800px) {
      .page-panels { grid-template-columns: 1fr; }
    }
    .page-panel {
      background: var(--warm-white);
      border: 1px solid rgba(28, 28, 28, 0.08);
      border-radius: 3px;
      padding: 1.75rem 1.5rem 1.85rem;
      transition: box-shadow 0.25s, border-color 0.25s;
    }
    .page-panel:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      border-color: rgba(200, 25, 42, 0.18);
    }
    .page-panel h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.5px;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }
    .page-panel p {
      font-size: 0.88rem;
      line-height: 1.65;
      color: var(--text-muted-dark);
      margin-bottom: 1.1rem;
    }
    .page-panel p.page-panel__meta {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      line-height: 1.45;
    }
    .page-panel p.page-panel__meta span {
      display: block;
      color: var(--text-muted-dark);
      font-weight: 600;
      letter-spacing: 0.1em;
      margin-top: 0.2rem;
    }
    .page-panel p:last-of-type { margin-bottom: 0; }

    .page-panel__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem 0.5rem;
    }
    .page-panel__chip {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dark);
      background: var(--light-gray);
      border: 1px solid rgba(28, 28, 28, 0.08);
      padding: 0.38rem 0.7rem 0.32rem;
      border-radius: 999px;
    }

    /* Preschool: class intro (above alternating rows) — handoff into class rows */
    #our-classes {
      /* Offset anchor scrolls / in-page links so the band isn’t hidden under the fixed nav */
      scroll-margin-top: 5.5rem;
    }
    .our-classes-lead {
      position: relative;
      overflow: visible;
    }
    .our-classes-lead::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2.5rem;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--cream));
      pointer-events: none;
      z-index: 0;
    }
    .our-classes-lead__inner {
      position: relative;
      z-index: 1;
      max-width: 52rem;
      margin: 0 auto;
      padding-bottom: 0;
    }
    .our-classes-lead__hd {
      text-align: center;
      margin: 0 auto 1.1rem;
      max-width: 38rem;
    }
    .our-classes-lead__hd .lbl-red {
      margin-bottom: 0.5rem;
    }
    .our-classes-lead__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.9rem, 3.5vw, 2.6rem);
      letter-spacing: 0.5px;
      line-height: 1.05;
      color: var(--text-dark);
    }
    .our-classes-lead__intro {
      font-size: 0.92rem;
      color: var(--text-muted-dark);
      line-height: 1.65;
      margin: 0.75rem 0 0;
    }
    .our-classes-lead + .class-level {
      padding-top: var(--preschool-first-class-pad-top);
    }

    /* Preschool: class level rows (alternating image / copy) — images use .page-figure (match intro) */
    .class-level {
      position: relative;
      padding: clamp(2.25rem, 4vw, 3.25rem) 0;
    }
    .class-level + .class-level {
      border-top: 1px solid rgba(28, 28, 28, 0.07);
    }
    .class-level__grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.96fr);
      align-items: center;
      gap: clamp(1.35rem, 2.5vw, 2.5rem);
    }
    .class-level--img-right .class-level__grid {
      grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.07fr);
    }
    .class-level__media {
      min-width: 0;
    }
    .class-level__media .page-figure {
      margin: 0;
    }
    .class-level .page-figure img {
      max-height: 200px;
      width: 100%;
      aspect-ratio: 2 / 1;
      min-height: 0;
    }
    /* flip-academy + tumble: crop frames center + centered vertically */
    html.flip-academy-doc .class-level__grid,
    html.tumble-classes-doc .class-level__grid,
    html.ninja-classes-doc .class-level__grid,
    html.cheer-classes-doc .class-level__grid {
      align-items: start;
    }
    html.flip-academy-doc .class-level .page-figure img,
    html.tumble-classes-doc .class-level .page-figure img,
    html.ninja-classes-doc .class-level .page-figure img,
    html.cheer-classes-doc .class-level .page-figure img {
      object-fit: cover;
      object-position: center center;
    }
    .class-level__title-sub {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted-dark);
      margin-top: 0.25rem;
      line-height: 1.3;
    }
    @media (min-width: 901px) {
      .class-level .page-figure img {
        max-height: 220px;
      }
    }
    .class-level__content {
      position: relative;
      min-width: 0;
      padding: 0 0.15rem 0 0;
    }
    .class-level__content-inner {
      position: relative;
      padding: 0 0 0 1.2rem;
    }
    .class-level__content-inner::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      border-radius: 2px;
      background: linear-gradient(180deg, var(--red-light) 0%, var(--red-dark) 70%, rgba(200, 25, 42, 0.35) 100%);
    }
    .class-level__index {
      position: absolute;
      top: -0.2rem;
      right: 0;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.85rem);
      line-height: 0.9;
      letter-spacing: 0.02em;
      color: rgba(200, 25, 42, 0.09);
      user-select: none;
      pointer-events: none;
    }
    .class-level__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.4rem, 1vw + 0.85rem, 1.75rem);
      line-height: 1.05;
      letter-spacing: 0.5px;
      color: var(--text-dark);
      margin: 0 0 0.4rem;
      padding-right: 2.25rem;
    }
    .class-level__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem 0.45rem;
      margin-bottom: 0.7rem;
    }
    .class-level__chip {
      display: inline-block;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red-dark);
      background: rgba(200, 25, 42, 0.06);
      border: 1px solid rgba(200, 25, 42, 0.18);
      padding: 0.32rem 0.65rem 0.28rem;
      border-radius: 999px;
    }
    .class-level__text {
      font-size: 0.86rem;
      line-height: 1.6;
      color: var(--text-muted-dark);
      margin: 0 0 1rem;
      max-width: 40rem;
    }
    .class-level__btn {
      display: inline-block;
      text-align: center;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.65rem 1.45rem;
      box-shadow: 0 2px 16px rgba(200, 25, 42, 0.26);
      transition: box-shadow 0.25s ease, transform 0.2s ease;
    }
    .class-level__btn:hover {
      box-shadow: 0 6px 28px rgba(200, 25, 42, 0.35);
      transform: translateY(-1px);
    }
    .class-level__contact-cta {
      align-self: flex-start;
      margin-top: 0;
      font-size: 0.78rem;
      padding: 0.65rem 1.4rem;
      letter-spacing: 0.04em;
      text-transform: none;
    }
    @media (max-width: 900px) {
      :root {
        --preschool-lead-pad-bottom: clamp(0.35rem, 1vw, 0.65rem);
        /* Align with .class-level padding in this breakpoint */
        --preschool-first-class-pad-top: clamp(1.85rem, 4.5vw, 2.5rem);
      }
      .our-classes-lead__hd {
        margin-bottom: 1rem;
      }
      .class-level {
        padding: clamp(1.85rem, 4.5vw, 2.5rem) 0;
      }
      .class-level .page-figure img {
        max-height: 180px;
        aspect-ratio: 16 / 10;
      }
      .class-level__grid,
      .class-level--img-right .class-level__grid {
        grid-template-columns: 1fr;
        gap: 1.1rem 0;
      }
      .class-level--img-right .class-level__media {
        order: -1;
      }
      .class-level__index {
        right: 0.15rem;
        top: 0;
      }
      .class-level__content {
        padding-right: 0;
        padding-left: 0;
      }
      .class-level__content-inner {
        padding-left: 1.1rem;
      }
      .class-level__title {
        padding-right: 2rem;
      }
    }

    .page-list-check {
      list-style: none;
      margin: 0 0 1.1rem;
      padding: 0;
    }
    .page-list-check li {
      position: relative;
      padding-left: 1.35rem;
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }
    .page-list-check li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 0.4rem; height: 0.4rem;
      background: var(--red);
      border-radius: 1px;
      transform: rotate(45deg);
    }
    @media (max-width: 900px) {
      .page-split--rev .page-figure { order: -1; }
    }
    .page-bar-dark {
      background: linear-gradient(125deg, #4a0a12 0%, var(--red-dark) 40%, #b01628 100%);
      color: #fff;
      padding: clamp(2.5rem, 5vw, 3.5rem) 0;
      position: relative;
      overflow: hidden;
    }
    .page-bar-dark::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
      background: repeating-linear-gradient(
        -32deg, transparent, transparent 50px,
        rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px
      );
    }
    .page-bar-dark .container { position: relative; z-index: 1; }
    .page-bar-dark__inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem 2rem;
    }
    .page-bar-dark p {
      font-size: 1.15rem;
      font-weight: 300;
      line-height: 1.5;
      max-width: 32rem;
      color: rgba(255, 255, 255, 0.92);
    }
    .page-bar-dark p strong { font-weight: 700; }
    .page-faq {
      max-width: 40rem;
      margin: 0 auto;
    }
    .page-faq details {
      border-bottom: 1px solid rgba(28, 28, 28, 0.1);
      padding: 1.1rem 0;
    }
    .page-faq summary {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .page-faq summary::-webkit-details-marker { display: none; }
    .page-faq summary::after {
      content: '+';
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--red);
    }
    .page-faq details[open] summary::after { content: '−'; }
    .page-faq p {
      margin-top: 0.75rem;
      font-size: 0.88rem;
      line-height: 1.65;
      color: var(--text-muted-dark);
    }
    .page-faq p a {
      color: var(--red-dark);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: rgba(200, 25, 42, 0.35);
      text-underline-offset: 0.15em;
    }
    .page-faq p a:hover {
      color: var(--red-light);
      text-decoration-color: rgba(200, 25, 42, 0.55);
    }
    /* ── Contact page (contact.html) — intro + two-column, blended into section bg ── */
    .contact-page__intro {
      max-width: 40rem;
    }
    .contact-page__intro .lbl-red {
      margin-bottom: 0.55rem;
    }
    .contact-page__intro .h2-dark {
      margin-bottom: 0.7rem;
    }
    .contact-page__intro-lead {
      margin-bottom: 0;
      max-width: 38rem;
    }
    .contact-page__board {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      gap: clamp(1.75rem, 3vw, 2.5rem);
    }
    @media (min-width: 900px) {
      .contact-page__board {
        flex-direction: row;
        align-items: flex-start;
        gap: clamp(2rem, 4vw, 3.25rem);
      }
    }
    @media (max-width: 899px) {
      .contact-page__form-panel {
        order: -1;
      }
    }
    .contact-page__info {
      position: relative;
      flex: 0 0 auto;
      color: var(--text-dark);
      background: transparent;
      padding: 0;
      border: none;
    }
    @media (min-width: 900px) {
      .contact-page__info {
        flex: 0 0 min(22rem, 36%);
        min-width: 0;
      }
    }
    .contact-page__info-head {
      margin-bottom: 1.25rem;
      padding-bottom: 1.1rem;
      border-bottom: 1px solid rgba(28, 28, 28, 0.1);
    }
    .contact-page__info-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.65rem, 2.5vw, 1.9rem);
      letter-spacing: 0.5px;
      line-height: 1.02;
      color: var(--text-dark);
      margin: 0 0 0.45rem;
    }
    .contact-page__info-kicker {
      font-size: 0.8rem;
      line-height: 1.5;
      color: var(--text-muted-dark);
      margin: 0;
    }
    .contact-page__info-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .contact-page__info-item {
      display: flex;
      gap: 0.9rem 1rem;
      align-items: flex-start;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(28, 28, 28, 0.08);
    }
    .contact-page__info-item:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
    }
    .contact-page__info-icon {
      flex-shrink: 0;
      width: 2.4rem;
      height: 2.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red-dark);
      background: rgba(200, 25, 42, 0.1);
      border: 1px solid rgba(200, 25, 42, 0.12);
      border-radius: 4px;
    }
    .contact-page__info-icon svg {
      width: 1.1rem;
      height: 1.1rem;
    }
    .contact-page__info-text {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .contact-page__info-label {
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red-dark);
    }
    .contact-page__info-value {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      line-height: 1.35;
      border-bottom: 1px solid rgba(200, 25, 42, 0.3);
      align-self: flex-start;
      word-break: break-word;
    }
    .contact-page__info-value:hover {
      color: var(--red-dark);
      border-bottom-color: var(--red-light);
    }
    a.contact-page__info-value--email {
      font-size: 0.8rem;
      font-weight: 500;
    }
    .contact-page__info-hint {
      font-size: 0.75rem;
      line-height: 1.4;
      color: var(--text-muted-dark);
    }
    .contact-page__form-panel {
      flex: 1;
      min-width: 0;
      background: transparent;
      border: none;
      padding: 0;
    }
    @media (min-width: 900px) {
      .contact-page__form-panel {
        border-left: 1px solid rgba(28, 28, 28, 0.1);
        padding-left: clamp(1.5rem, 2.5vw, 2.5rem);
        margin: 0;
      }
    }
    .contact-page__form-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.45rem, 1.1vw + 0.8rem, 1.7rem);
      letter-spacing: 0.5px;
      line-height: 1.02;
      color: var(--text-dark);
      margin: 0 0 0.4rem;
    }
    .contact-page__form-sub {
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--text-muted-dark);
      margin: 0 0 1.2rem;
      max-width: 32rem;
    }
    .contact-page__form-sub a {
      color: var(--red-dark);
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid rgba(200, 25, 42, 0.28);
    }
    .contact-page__form-sub a:hover {
      color: var(--red-light);
    }
    .contact-form__thanks {
      font-size: 0.88rem;
      line-height: 1.5;
      color: var(--text-dark);
      background: rgba(200, 25, 42, 0.06);
      border: 1px solid rgba(200, 25, 42, 0.2);
      border-radius: 4px;
      padding: 0.75rem 1rem;
      margin: 0 0 1.1rem;
    }
    .contact-form {
      display: block;
      position: relative;
    }
    .contact-form__opt {
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0;
      font-size: 0.75rem;
      color: var(--text-muted-dark);
    }
    .contact-form__row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem 1.15rem;
      margin-bottom: 1.05rem;
    }
    @media (min-width: 500px) {
      .contact-form__row--split {
        grid-template-columns: 1fr 1fr;
      }
    }
    .contact-form__field {
      display: flex;
      flex-direction: column;
      gap: 0.32rem;
    }
    .contact-form__field label,
    .contact-form__label {
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--red-dark);
    }
    .contact-form__field input,
    .contact-form__field select,
    .contact-form__field textarea {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      line-height: 1.4;
      color: var(--text-dark);
      /* Use background-color only — `background` shorthand strips custom select chevrons (background-image) */
      background-color: var(--cream);
      border: 1px solid rgba(28, 28, 28, 0.1);
      border-radius: 4px;
      padding: 0.7rem 0.85rem;
      width: 100%;
      box-sizing: border-box;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }
    .contact-form__field input:hover,
    .contact-form__field textarea:hover {
      border-color: rgba(28, 28, 28, 0.16);
      background-color: rgba(255, 255, 255, 0.7);
    }
    .contact-form__field input::placeholder,
    .contact-form__field textarea::placeholder {
      color: rgba(28, 28, 28, 0.38);
    }
    .contact-form__field input:focus,
    .contact-form__field textarea:focus {
      outline: none;
      background-color: var(--warm-white);
      border-color: rgba(200, 25, 42, 0.4);
      box-shadow: 0 0 0 3px rgba(200, 25, 42, 0.08);
    }
    .contact-form__field select:focus {
      outline: none;
      background-color: var(--warm-white);
      border-color: rgba(200, 25, 42, 0.4);
      box-shadow: 0 0 0 3px rgba(200, 25, 42, 0.08);
    }
    .contact-form__field textarea {
      min-height: 6.5rem;
      resize: vertical;
    }
    .contact-form__field select {
      cursor: pointer;
      appearance: none;
      background-color: var(--cream);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231c1c1c' stroke-width='1.5' d='M1 1.5L6 6l5-4.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.7rem center;
      padding-right: 2.25rem;
    }
    .contact-form__field select:hover {
      background-color: rgba(255, 255, 255, 0.7);
    }
    .contact-form__hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .contact-form__actions {
      margin-top: 0.4rem;
    }
    .contact-form__actions .btn-primary {
      width: 100%;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }
    @media (min-width: 500px) {
      .contact-form__actions .btn-primary {
        width: auto;
        min-width: 10.5rem;
      }
    }
    .contact-form__fineprint {
      font-size: 0.7rem;
      line-height: 1.55;
      color: var(--text-muted-dark);
      margin: 0.85rem 0 0;
      max-width: 36rem;
    }
    .contact-form__fineprint a {
      color: var(--red-dark);
      text-decoration: none;
      border-bottom: 1px solid rgba(200, 25, 42, 0.25);
    }
    .contact-form__fineprint a:hover {
      color: var(--red-light);
    }

    /* ── locations.html (template + gym detail) ── */
    .location-page__intro { max-width: none; }
    .location-page__other-heading { margin: 0 0 1.75rem; }
    .location-page__network-grid {
      margin-top: 0;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (max-width: 1024px) {
      .location-page__network-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .location-page__network-grid { grid-template-columns: 1fr; }
    }
    .location-page-detail {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: clamp(1.5rem, 3vw, 2.5rem);
      align-items: stretch;
    }
    .location-page-detail__image-wrap {
      position: relative; border-radius: 4px; overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    .location-page-detail__image-wrap img {
      width: 100%;
      display: block;
      object-fit: cover;
    }
    @media (min-width: 901px) {
      .location-page-detail__media {
        display: flex;
        flex-direction: column;
        min-height: 0;
      }
      .location-page-detail__image-wrap {
        flex: 1 1 auto;
        min-height: 0;
      }
      .location-page-detail__image-wrap img {
        height: 100%;
        min-height: 0;
      }
    }
    @media (max-width: 900px) {
      .location-page-detail { grid-template-columns: 1fr; }
      .location-page-detail__image-wrap img {
        aspect-ratio: 4/3;
        height: auto;
      }
    }
    .location-page-detail__image-wrap::before {
      content: '';
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
    }
    .location-page-detail__image-wrap::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px; z-index: 2;
      background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
    }
    .location-page-detail__badge {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.65rem 1rem 0.9rem; pointer-events: none;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    }
    .location-page-detail__day-label {
      display: inline-flex; align-items: center; gap: 0.45rem;
      font-family: 'Bebas Neue', sans-serif; font-size: 0.78rem; letter-spacing: 3px; color: #fff;
    }
    .location-page-detail__day-bg {
      font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; line-height: 0.9;
      letter-spacing: 1px; color: rgba(255, 255, 255, 0.12); user-select: none;
    }
    .location-page-detail__kicker { margin-bottom: 0.5rem; }
    .location-page-facts { list-style: none; margin: 1.25rem 0 0; padding: 0; }
    .location-page-facts__row {
      display: grid;
      grid-template-columns: 7rem 1fr;
      gap: 0.5rem 1.25rem;
      padding: 0.75rem 0; border-top: 1px solid rgba(28, 28, 28, 0.1);
    }
    .location-page-facts__row:first-of-type { border-top: none; padding-top: 0; }
    @media (max-width: 500px) {
      .location-page-facts__row { grid-template-columns: 1fr; gap: 0.25rem; }
    }
    .location-page-facts__label {
      font-size: 0.58rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-dark);
    }
    .location-page-facts__value { font-size: 0.9rem; line-height: 1.5; color: var(--text-dark); }
    .location-page-detail__actions {
      display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem; margin-top: 1.35rem;
    }

    /* about.html */
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .page-block--cream.about-page__intro-block {
      position: relative;
      background:
        radial-gradient(ellipse 80% 60% at 0% 0%, rgba(200, 25, 42, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 55% 50% at 100% 100%, rgba(200, 25, 42, 0.05) 0%, transparent 50%),
        var(--cream);
    }
    .page-block--cream.about-page__intro-block::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: repeating-linear-gradient(
        -75deg, transparent, transparent 72px, rgba(200, 25, 42, 0.018) 72px, rgba(200, 25, 42, 0.018) 73px
      );
      z-index: 0;
    }
    .about-page__intro-block .container {
      position: relative;
      z-index: 1;
      max-width: min(calc(var(--max-w) + 200px), 100%);
    }
    .about-page__intro--showcase { max-width: none; }
    .about-page__intro-frame {
      position: relative;
      margin: 0;
      padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.75rem) clamp(2rem, 3.5vw, 2.75rem);
      border-radius: 6px;
      border: 1px solid rgba(28, 28, 28, 0.07);
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 252, 247, 0.35) 45%, rgba(255, 250, 244, 0.2) 100%);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 18px 50px -12px rgba(0, 0, 0, 0.08),
        0 8px 32px -8px rgba(200, 25, 42, 0.1);
      overflow: hidden;
    }
    @media (min-width: 520px) {
      .about-page__intro-frame {
        padding-right: clamp(5.25rem, 15vw, 9.5rem);
      }
    }
    .about-page__intro-logo {
      position: absolute;
      top: clamp(0.65rem, 1.5vw, 1.1rem);
      right: clamp(0.5rem, 1.5vw, 1.1rem);
      z-index: 2;
      width: min(200px, 38vw);
      max-width: 100%;
      line-height: 0;
      pointer-events: none;
    }
    .about-page__intro-logo img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.07));
    }
    @media (max-width: 519px) {
      .about-page__intro-frame { padding-right: 7.25rem; }
      .about-page__intro-logo {
        width: min(104px, 36vw);
        top: 0.5rem;
        right: 0.4rem;
      }
    }
    .about-page__intro-frame::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      z-index: 1;
      background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-light) 40%, var(--red-dark) 100%);
    }
    .about-page__intro-deco {
      position: absolute;
      right: -0.5rem;
      bottom: 0.25rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4.5rem, 12vw, 7.5rem);
      line-height: 0.85;
      letter-spacing: 0.02em;
      color: rgba(200, 25, 42, 0.06);
      user-select: none;
      pointer-events: none;
      white-space: nowrap;
    }
    .about-page__intro-eyebrow {
      position: relative;
      z-index: 1;
      margin-bottom: 1.15rem;
    }
    .about-page__headline {
      position: relative;
      z-index: 1;
      margin: 0 0 1.35rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1.05;
    }
    .about-page__headline::after {
      content: '';
      display: block;
      width: min(10rem, 42vw);
      height: 3px;
      margin-top: 1rem;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-light) 50%, rgba(200, 25, 42, 0.15) 100%);
    }
    .about-page__headline-bottom {
      display: inline-block;
      max-width: min(22ch, 100%);
      font-size: clamp(2.15rem, 4.5vw, 3.5rem);
      line-height: 1.04;
      background: linear-gradient(125deg, var(--red-dark) 0%, var(--red-light) 50%, #8a0a1a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .about-page__prose-cols {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: clamp(1.25rem, 2.5vw, 2.25rem);
      row-gap: 0;
      margin-top: 0.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(28, 28, 28, 0.08);
    }
    @media (min-width: 861px) {
      .about-page__lede-2 {
        border-left: 1px solid rgba(200, 25, 42, 0.14);
        padding-left: clamp(1.15rem, 2vw, 1.75rem);
      }
    }
    .about-page__intro--showcase .body-dark,
    .about-page__lede-2 {
      max-width: none;
      margin: 0;
    }
    @media (max-width: 860px) {
      .about-page__prose-cols {
        grid-template-columns: 1fr;
        padding-top: 1.15rem;
        row-gap: 1.1rem;
      }
    }
    @media (max-width: 520px) {
      .about-page__intro-deco { right: 0; font-size: 3.25rem; }
    }
    .about-page__lede a,
    .about-page__lede-2 a {
      color: var(--red-dark);
      font-weight: 500;
      text-decoration: none;
      border-bottom: 1px solid rgba(200, 25, 42, 0.28);
    }
    .about-page__lede a:hover,
    .about-page__lede-2 a:hover { color: var(--red-light); }
    .about-page__lede { margin-top: 0.5rem; }
    .about-page__values {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem 2rem;
      margin-top: 1.5rem;
    }
    @media (max-width: 900px) {
      .about-page__values { grid-template-columns: 1fr; }
    }
    .about-page__value-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-dark);
      margin: 0 0 0.5rem;
    }
    .about-staff {
      list-style: none;
      margin: 1.5rem 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    @media (max-width: 1024px) {
      .about-staff { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .about-staff { grid-template-columns: 1fr; }
    }
    .about-staff__card {
      background: #fff;
      border: 1px solid rgba(28, 28, 28, 0.08);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    }
    .about-staff__photo {
      aspect-ratio: 1;
      background: linear-gradient(160deg, #ececec 0%, #d6d6d6 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-staff__placeholder {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.2em;
      color: rgba(40, 40, 40, 0.35);
      text-transform: uppercase;
    }
    .about-staff__body { padding: 1.1rem 1.2rem 1.35rem; }
    .about-staff__name {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text-dark);
      margin: 0 0 0.2rem;
    }
    .about-staff__role {
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red-dark);
      margin: 0 0 0.65rem;
    }
    .about-staff__bio {
      font-size: 0.88rem;
      line-height: 1.5;
      color: var(--text-muted-dark);
      margin: 0;
    }
    .about-page__staff-lead { max-width: 40rem; margin-bottom: 0.5rem; }
    .tumble-clinic-section {
      position: relative;
    }
    .tumble-clinic__eyebrow {
      margin-bottom: 0.65rem;
    }
    .tumble-clinic__intro .h2-dark {
      margin-bottom: 0.85rem;
    }
    .tumble-clinic__lede {
      font-size: 0.98rem;
      font-weight: 400;
      line-height: 1.75;
      color: var(--text-muted-dark);
      margin: 0 0 0;
      max-width: 38rem;
    }
    .tumble-clinic__info-strip {
      list-style: none;
      margin: 2.25rem 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.85rem 1.1rem;
    }
    @media (min-width: 700px) {
      .tumble-clinic__info-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        align-items: stretch;
      }
    }
    .tumble-clinic__info-tile {
      display: block;
      margin: 0;
      padding: 1.1rem 1.15rem 1.2rem;
      background: var(--warm-white);
      border: 1px solid rgba(28, 28, 28, 0.08);
      border-radius: 4px;
      box-shadow: 0 4px 22px rgba(0, 0, 0, 0.05);
    }
    .tumble-clinic__info-tile--accent {
      background: linear-gradient(165deg, rgba(200, 25, 42, 0.07) 0%, var(--warm-white) 64%);
      border-color: rgba(200, 25, 42, 0.18);
    }
    .tumble-clinic__info-tile-lbl {
      display: block;
      font-size: 0.55rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--red-dark);
      margin-bottom: 0.45rem;
    }
    .tumble-clinic__info-tile-body {
      display: block;
      font-size: 0.84rem;
      line-height: 1.5;
      color: var(--text-dark);
    }
    .tumble-clinic__info-tile-body strong {
      font-size: 0.86rem;
    }
    .tumble-clinic__info-note {
      display: block;
      font-size: 0.75rem;
      color: var(--text-muted-dark);
      font-weight: 500;
    }
    .tumble-clinic__schedule-hd {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.5rem, 1.2vw + 0.85rem, 1.75rem);
      letter-spacing: 0.5px;
      color: var(--text-dark);
      margin: 2.5rem 0 0.35rem;
      line-height: 1.05;
    }
    .tumble-clinic__schedule-sub {
      font-size: 0.82rem;
      color: var(--text-muted-dark);
      margin: 0 0 1.5rem;
      max-width: 32rem;
    }
    .tumble-clinic__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.9rem 1.1rem;
    }
    @media (min-width: 700px) {
      .tumble-clinic__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.15rem;
      }
    }
    .tumble-clinic__item {
      display: block;
      margin: 0;
      padding: 1.1rem 1.15rem 1.2rem 1.2rem;
      background: var(--warm-white);
      border: 1px solid rgba(28, 28, 28, 0.08);
      border-radius: 4px;
      border-left: 3px solid var(--red);
      box-shadow: 0 5px 24px rgba(0, 0, 0, 0.06);
    }
    .tumble-clinic__item-badges {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.4rem 0.75rem;
      margin-bottom: 0.45rem;
    }
    .tumble-clinic__time {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dark);
    }
    .tumble-clinic__price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.25rem;
      letter-spacing: 0.5px;
      color: var(--red-dark);
      line-height: 1;
    }
    .tumble-clinic__name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.18rem;
      letter-spacing: 0.4px;
      color: var(--text-dark);
      margin: 0 0 0.2rem;
      line-height: 1.1;
    }
    .tumble-clinic__ages {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-muted-dark);
      margin: 0 0 0.4rem;
    }
    .tumble-clinic__desc {
      font-size: 0.86rem;
      line-height: 1.6;
      color: var(--text-muted-dark);
      margin: 0;
    }
    .tumble-clinic__outro {
      margin: 1.75rem 0 0;
      display: flex;
      flex-direction: column;
      gap: 1rem 1.5rem;
    }
    @media (min-width: 720px) {
      .tumble-clinic__outro {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
      }
      .tumble-clinic__package {
        flex: 1 1 16rem;
        margin: 0;
        min-width: 0;
      }
      .tumble-clinic__enroll-cta {
        flex: 0 0 auto;
        margin: 0;
        align-self: center;
      }
    }
    .tumble-clinic__package {
      margin: 0;
      padding: 1.1rem 1.25rem 1.2rem;
      background: linear-gradient(135deg, rgba(200, 25, 42, 0.09) 0%, rgba(200, 25, 42, 0.03) 100%);
      border: 1px solid rgba(200, 25, 42, 0.28);
      border-radius: 4px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    .tumble-clinic__package-title {
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red-dark);
      margin: 0 0 0.45rem;
    }
    .tumble-clinic__package-text {
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--text-dark);
      margin: 0;
    }
    .tumble-clinic__enroll-cta {
      margin: 0;
    }
    .tumble-clinic__enroll-btn,
    .tumble-clinic__enroll-cta .btn-primary {
      display: inline-block;
      text-align: center;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.65rem 1.5rem;
      box-shadow: 0 2px 16px rgba(200, 25, 42, 0.26);
    }
    @media (max-width: 719px) {
      .tumble-clinic__enroll-cta {
        width: 100%;
      }
      .tumble-clinic__enroll-btn,
      .tumble-clinic__enroll-cta .btn-primary {
        width: 100%;
        box-sizing: border-box;
      }
    }
    .tumble-clinic__pay {
      font-size: 0.82rem;
      line-height: 1.65;
      color: var(--text-muted-dark);
      margin: 1.4rem 0 0;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(28, 28, 28, 0.08);
      max-width: 42rem;
    }
    .tumble-clinic__pay a {
      color: var(--red-dark);
      text-decoration: none;
      border-bottom: 1px solid rgba(200, 25, 42, 0.28);
    }
    .tumble-clinic__pay a:hover {
      color: var(--red-light);
      border-bottom-color: rgba(200, 25, 42, 0.5);
    }
    .page-faq--in-prose {
      margin: 1.25rem 0 0;
      max-width: none;
    }
    .page-faq--in-prose details:first-of-type {
      border-top: 1px solid rgba(28, 28, 28, 0.1);
    }
    .preschool-typical__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.9rem, 3.2vw, 2.5rem);
      color: var(--text-dark);
      letter-spacing: 0.5px;
      line-height: 1.05;
      margin-bottom: 1.25rem;
    }
    .page-block {
      padding: var(--page-block-pad-y) 0;
    }
    .inner-page main > .page-block:first-of-type {
      padding-top: clamp(3.5rem, 5.5vw, 5.25rem);
    }
    .page-block--tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
    /* Tighter than .page-block--tight: lead’s bottom gap was from generic tight padding (see source order) */
    .page-block--tight.our-classes-lead {
      padding: clamp(1.75rem, 3vw, 2.5rem) 0 var(--preschool-lead-pad-bottom);
    }
    .page-block--cream {
      background: var(--cream);
    }
    .page-block--muted {
      background: var(--light-gray);
    }
    .page-block--line {
      border-top: 1px solid rgba(28, 28, 28, 0.08);
    }
    .page-split {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: clamp(2rem, 4vw, 3.5rem);
      align-items: center;
    }
    @media (max-width: 900px) {
      .page-split { grid-template-columns: 1fr; }
    }
    .page-figure {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    .page-figure::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
      pointer-events: none;
    }
    .page-figure img {
      width: 100%;
      display: block;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .page-prose h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      letter-spacing: 0.5px;
      color: var(--text-dark);
      margin-bottom: 1.25rem;
      line-height: 1.05;
    }
    .page-prose p {
      font-size: 0.98rem;
      font-weight: 400;
      line-height: 1.8;
      color: var(--text-muted-dark);
      margin-bottom: 1.1rem;
    }
    .page-prose p:last-child { margin-bottom: 0; }
    .page-aside {
      background: var(--warm-white);
      border: 1px solid rgba(28, 28, 28, 0.08);
      border-left: 3px solid var(--red);
      border-radius: 2px;
      padding: 1.5rem 1.4rem 1.6rem;
      margin-top: 1.75rem;
    }
    .page-aside h3 {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.6rem;
    }
    .page-aside p {
      font-size: 0.85rem;
      line-height: 1.55;
      color: var(--text-dark);
      margin: 0;
    }
    .page-highlights {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    @media (max-width: 768px) {
      .page-highlights { grid-template-columns: 1fr; }
    }
    .page-highlight {
      background: var(--warm-white);
      border: 1px solid rgba(28, 28, 28, 0.08);
      border-radius: 3px;
      padding: 1.75rem 1.5rem;
      transition: box-shadow 0.25s, border-color 0.25s;
    }
    .page-highlight:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
      border-color: rgba(200, 25, 42, 0.2);
    }
    .page-highlight__icon {
      width: 2.4rem;
      height: 2.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
      color: #fff;
      border-radius: 3px;
      margin-bottom: 1.1rem;
    }
    .page-highlight__icon svg {
      width: 1.15rem;
      height: 1.15rem;
    }
    .page-highlight h3 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.45rem;
      letter-spacing: -0.02em;
    }
    .page-highlight p {
      font-size: 0.82rem;
      line-height: 1.6;
      color: var(--text-muted-dark);
      margin: 0;
    }

    /* Preschool: “What your child will work on” — dark band */
    .page-block.page-block--skills-dark {
      position: relative;
      overflow: hidden;
      color: var(--text-light);
      background: linear-gradient(165deg, #0c0a0a 0%, #121012 40%, #160f12 100%);
      border-top-color: rgba(255, 255, 255, 0.07);
      padding: clamp(3.25rem, 5.5vw, 4.75rem) 0;
    }
    .page-block--skills-dark::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(200, 25, 42, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 100% 100%, rgba(200, 25, 42, 0.14) 0%, transparent 50%),
        repeating-linear-gradient(
          -40deg, transparent, transparent 56px,
          rgba(255, 255, 255, 0.02) 56px, rgba(255, 255, 255, 0.02) 57px
        );
    }
    .page-block--skills-dark::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      z-index: 0;
      background: linear-gradient(90deg, transparent, rgba(200, 25, 42, 0.35) 20%, rgba(255, 255, 255, 0.12) 50%, rgba(200, 25, 42, 0.35) 80%, transparent);
    }
    .page-block--skills-dark__inner {
      position: relative;
      z-index: 1;
    }
    .preschool-work-on__eyebrow {
      text-align: center;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red-light);
      margin: 0 0 0.45rem;
    }
    .preschool-work-on__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 2.9rem);
      text-align: center;
      margin: 0 0 2.25rem;
      letter-spacing: 0.5px;
      line-height: 1.05;
      color: #faf7f3;
      font-weight: 400;
    }
    .page-highlights--on-dark {
      gap: 1.15rem 1.35rem;
    }
    .page-block--skills-dark .page-highlights--on-dark .page-highlight {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(10px);
    }
    .page-block--skills-dark .page-highlights--on-dark .page-highlight:hover {
      border-color: rgba(224, 51, 71, 0.45);
      box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(200, 25, 42, 0.15) inset;
      background: rgba(255, 255, 255, 0.07);
    }
    .page-block--skills-dark .page-highlights--on-dark .page-highlight h3 {
      color: #faf7f3;
    }
    .page-block--skills-dark .page-highlights--on-dark .page-highlight p {
      color: rgba(250, 247, 243, 0.58);
    }
    .page-block--skills-dark .page-highlights--on-dark .page-highlight__icon {
      box-shadow: 0 4px 20px rgba(200, 25, 42, 0.35);
    }
    .page-block--skills-dark .page-highlights--on-dark .page-highlight p a {
      color: var(--red-light);
      text-decoration: underline;
      text-decoration-color: rgba(200, 25, 42, 0.45);
    }
    .page-block--skills-dark .page-highlights--on-dark .page-highlight p a:hover {
      color: #faf7f3;
      text-decoration-color: rgba(250, 247, 243, 0.45);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes heroShine {
      0%   { background-position: -250% center; }
      100% { background-position: 250% center; }
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    .lbl-red {
      font-size: .68rem; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; margin-bottom: 1rem;
      background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-light) 40%, var(--red-dark) 80%);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: shimmer 4s linear infinite;
    }

    .reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
    .reveal.will-animate { opacity: 0; transform: translateY(28px); }
    .reveal.will-animate.visible { opacity: 1; transform: none; }
    .d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .why-inner { grid-template-columns: 1fr; gap: 3rem; }
      .why-visual { height: 380px; }
      .why-big-num { font-size: 14rem; }
      /* 2-col masonry on tablet */
      .programs-grid {
        grid-template-columns: 1fr 1fr;
        /* +25% on first column tall card; bottom row ~+25% to match */
        grid-template-rows: 377px 377px 375px;
        gap: 16px;
      }
      .program-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
      .program-card:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
      .program-card:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
      .program-card:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
      .program-card:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
      .cta-band { grid-template-columns: 1fr; text-align: center; padding: 5rem 0; }
      .cta-btns { flex-direction: row; justify-content: center; }
      .cta-sub { max-width: 100%; }
    }

    @media (max-width: 768px) {
      /* NAV */
      .nav-hamburger { display: flex; }
      .nav-links {
        display: none; flex-direction: column; gap: 0;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: .5rem 0 1rem;
      }
      .nav-links.open { display: flex; }
      .nav-links li { border-top: 1px solid rgba(255,255,255,0.05); }
      .nav-links a {
        display: block; padding: .85rem 1.5rem;
        font-size: .8rem; letter-spacing: 1.4px;
      }
      .nav-links a::after { display: none; }
      .nav-item--has-dropdown { width: 100%; }
      .nav-dropdown__trigger {
        display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 0.5rem;
        padding: .85rem 1.5rem; font-size: .8rem; letter-spacing: 1.4px; text-align: left; border: none; border-top: 1px solid rgba(255, 255, 255, 0.05);
      }
      .nav-dropdown__trigger::after { display: none; }
      .nav-dropdown {
        position: static !important; top: auto; left: auto; z-index: auto;
        min-width: 0; max-width: none; width: 100%; margin: 0; padding: 0; border: none; border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0; background: rgba(0, 0, 0, 0.28);
        box-shadow: none; transform: none; transition: none;
        display: none !important;
        opacity: 1 !important; visibility: visible !important;
      }
      .nav-item--has-dropdown.is-open .nav-dropdown { display: block !important; }
      .nav-dropdown a {
        border-top: 1px solid rgba(255, 255, 255, 0.04); padding: 0.5rem 1.5rem 0.5rem 1.25rem; font-size: 0.76rem; letter-spacing: 0.06em;
      }
      .nav-cta { display: none; }
      .nav-logo { height: 80px; padding: 8px 14px 12px; left: 1.25rem; }
      .nav-logo-img { height: 58px; }
      .nav-logo-spacer { width: 160px; }

      /* HERO — stack copy then video (was hiding video; sound hint must stay in DOM) */
      .hero { height: auto; min-height: 100svh; }
      .hero-content { grid-template-columns: 1fr; }
      .hero-right {
        display: block;
        min-height: max(200px, 42vh);
      }
      .hero-left {
        padding: 7rem 1.5rem 2.5rem 1.5rem !important;
        min-height: 0;
        justify-content: center;
      }
      .hero-h1 { font-size: clamp(3rem, 12vw, 5rem); }
      .hero-sub { max-width: 100%; font-size: .92rem; }
      .hero-reviews { margin-top: 2rem; padding-top: 1.5rem; }
      .hero-review-card { min-width: 180px; max-width: 180px; }
      .hero-alert-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem 0;
      }
      .hero-alert-title { font-size: 1.25rem; }
      .hero-alert-sub { font-size: .75rem; }
      .alert-btn { display: block; text-align: center; }

      /* SECTIONS */
      .programs { padding: 4rem 0; }
      .section-hd { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
      .programs-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 275px repeat(4, 220px);
        gap: 16px;
      }
      .program-card:nth-child(n) { grid-column: 1 / -1; grid-row: auto; }
      .program-card:hover { transform: none; }
      .why { padding: 4rem 0; }
      .why-visual { display: none; }
      .why-inner { grid-template-columns: 1fr; gap: 2rem; }
      .locations { padding: 4rem 0; }
      .locations-grid { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2.5rem; }
      .testimonial { padding: 4rem 0; }
      .reviews-hd { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .cta-band { padding: 4rem 0; }
      .cta-btns { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-ghost-light, .btn-ghost-dark { width: 100%; text-align: center; }
      .footer-inner { flex-direction: column; gap: 1.2rem; text-align: center; }
      .footer-links { justify-content: center; }
      .container { padding: 0 1.25rem; }
      .inner-page .page-hero .container {
        padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
      }
    }

    @media (max-width: 480px) {
      .hero-h1 { font-size: clamp(2.6rem, 11vw, 3.8rem); }
      .hero-btns { flex-direction: column; }
      .programs-grid { grid-template-rows: 250px repeat(4, 200px); }
      .hero-alert-sub { font-size: .7rem; line-height: 1.6; }
    }

    @media (max-width: 768px) and (orientation: landscape) {
      .hero { height: auto; min-height: 100svh; }
      .hero-left { padding-top: 6rem; padding-bottom: 2rem; min-height: auto; }
    }

    /* ── COMING SOON / PREVIEW GATE (coming-soon.html) ── */
    html.coming-soon-doc,
    body.coming-soon-body {
      min-height: 100%;
    }
    body.coming-soon-body {
      margin: 0;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(200, 25, 42, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(200, 25, 42, 0.1) 0%, transparent 50%),
        linear-gradient(170deg, #0a0a0a 0%, var(--charcoal) 45%, #120608 100%);
      color: var(--text-light);
    }
    .coming-soon {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(2rem, 5vw, 3.5rem) 1.5rem 3rem;
      position: relative;
      overflow: hidden;
    }
    .coming-soon::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -62deg, transparent, transparent 80px,
        rgba(255, 255, 255, 0.02) 80px, rgba(255, 255, 255, 0.02) 81px
      );
      pointer-events: none;
    }
    .coming-soon__inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 26rem;
      text-align: center;
    }
    .coming-soon__logo {
      display: block;
      margin: 0 auto 1.75rem;
      max-width: 220px;
      height: auto;
      filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
    }
    .coming-soon__tag {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--red-light);
      margin-bottom: 0.75rem;
    }
    .coming-soon__h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 8vw, 3.4rem);
      letter-spacing: 0.04em;
      line-height: 1;
      color: #fff;
      margin-bottom: 0.75rem;
    }
    .coming-soon__h1 span {
      background: linear-gradient(120deg, var(--red-light) 0%, #fff 45%, var(--red-light) 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .coming-soon__lede {
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(250, 247, 243, 0.58);
      margin-bottom: 1.75rem;
    }
    .coming-soon__card {
      background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      padding: 1.5rem 1.4rem 1.6rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }
    .coming-soon__card::before {
      content: '';
      display: block;
      width: 100%;
      height: 3px;
      margin: -1.5rem -1.4rem 1.15rem;
      width: calc(100% + 2.8rem);
      border-radius: 6px 6px 0 0;
      background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-light) 50%, var(--red-dark) 100%);
    }
    .coming-soon__label {
      display: block;
      text-align: left;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(250, 247, 243, 0.45);
      margin-bottom: 0.5rem;
    }
    .coming-soon__input {
      width: 100%;
      font-family: inherit;
      font-size: 0.95rem;
      padding: 0.75rem 1rem;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(0, 0, 0, 0.35);
      color: #fff;
      margin-bottom: 1rem;
      box-sizing: border-box;
    }
    .coming-soon__input::placeholder { color: rgba(250, 247, 243, 0.35); }
    .coming-soon__input:focus {
      outline: none;
      border-color: var(--red-light);
      box-shadow: 0 0 0 1px rgba(200, 25, 42, 0.35);
    }
    .coming-soon__btn {
      width: 100%;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.95rem 1.25rem;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-light) 100%);
      box-shadow: 0 4px 20px rgba(200, 25, 42, 0.35);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .coming-soon__btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(200, 25, 42, 0.45);
    }
    .coming-soon__error {
      display: block;
      margin-top: 0.9rem;
      font-size: 0.8rem;
      color: #ff8a8a;
    }
    .coming-soon__error[hidden] { display: none; }
    .coming-soon__foot {
      margin-top: 2.25rem;
      font-size: 0.72rem;
      color: rgba(250, 247, 243, 0.35);
    }