:root {
      --gold: oklch(72% 0.12 85);
      --gold-light: oklch(82% 0.10 85);
      --gold-dim: oklch(55% 0.09 85);
      --black: #0e1013;
      --black-2: #15181c;
      --black-3: #1d2127;
      --off-white: oklch(96% 0.005 250);
      --text-muted: oklch(65% 0.012 250);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--off-white);
      font-family: 'Geist', sans-serif;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 3rem;
      background: linear-gradient(to bottom, rgba(14,16,19,0.92) 0%, transparent 100%);
      backdrop-filter: blur(0px);
    }

    .nav-logo {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--gold);
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--off-white);
      font-weight: 400;
      font-style: normal;
    }

    .nav-links {
      display: flex;
      gap: 2.4rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--off-white);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      opacity: 0.8;
      transition: opacity 0.2s, color 0.2s;
    }

    .nav-links a:hover { opacity: 1; color: var(--gold); }

    .nav-cta {
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      padding: 0.5rem 1.3rem !important;
      opacity: 1 !important;
      transition: background 0.2s, color 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--black) !important;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 640px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    /* Stage lighting SVG pattern overlay */
    .hero-bg {
      position: absolute;
      inset: 0;
      background: var(--black-3);
      overflow: hidden;
    }

    /* Placeholder with striped pattern */
    .hero-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .placeholder-stripes {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 28px,
        rgba(201,168,76,0.04) 28px,
        rgba(201,168,76,0.04) 30px
      );
    }

    /* Spotlight cones */
    .spotlight {
      position: absolute;
      top: -10%;
      width: 0;
      height: 0;
      border-left: solid transparent;
      border-right: solid transparent;
      border-top: solid;
      opacity: 0.07;
      filter: blur(40px);
      transform-origin: top center;
    }

    .spotlight-1 {
      left: 20%;
      border-left-width: 120px;
      border-right-width: 120px;
      border-top-width: 110vh;
      border-top-color: oklch(85% 0.14 85);
      transform: rotate(-8deg);
    }

    .spotlight-2 {
      left: 45%;
      border-left-width: 160px;
      border-right-width: 160px;
      border-top-width: 110vh;
      border-top-color: oklch(85% 0.14 85);
      transform: rotate(3deg);
    }

    .spotlight-3 {
      left: 68%;
      border-left-width: 100px;
      border-right-width: 100px;
      border-top-width: 110vh;
      border-top-color: oklch(85% 0.14 85);
      transform: rotate(10deg);
    }

    /* Stage floor line */
    .stage-floor {
      position: absolute;
      bottom: 22%;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.3) 20%, rgba(201,168,76,0.3) 80%, transparent);
    }

    /* Placeholder label */
    .placeholder-label {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      font-family: 'Geist', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      color: rgba(201,168,76,0.4);
      text-transform: uppercase;
      border: 1px dashed rgba(201,168,76,0.25);
      padding: 2rem 3rem;
      pointer-events: none;
    }

    .placeholder-label strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: rgba(201,168,76,0.55);
    }

    /* Dark gradient at bottom for text readability */
    .hero-vignette {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(14,16,19,0.15) 0%,
        rgba(14,16,19,0.05) 40%,
        rgba(14,16,19,0.55) 70%,
        rgba(14,16,19,0.96) 100%
      );
    }

    /* Left dark panel for dramatic asymmetry */
    .hero-side-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(14,16,19,0.7) 0%,
        rgba(14,16,19,0.2) 35%,
        transparent 60%
      );
    }

    .hero-content {
      position: relative;
      z-index: 10;
      width: 100%;
      padding: 0 3rem 5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      gap: 2rem;
    }

    .hero-left {}

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.3s ease forwards;
    }

    .hero-eyebrow-line {
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .hero-eyebrow-text {
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .hero-title {
      font-family: 'Inter Tight', sans-serif;
      font-size: clamp(3.2rem, 6vw, 5.5rem);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.035em;
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s ease forwards;
    }

    .hero-title em {
      font-style: normal;
      color: var(--gold);
      font-weight: 500;
    }

    .hero-title .line-break { display: block; }

    .hero-divider {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.7s ease forwards;
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 420px;
      font-weight: 300;
      opacity: 0;
      animation: fadeUp 0.8s 0.9s ease forwards;
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 1.5rem;
    }

    .hero-stat-group {
      display: flex;
      gap: 3rem;
      opacity: 0;
      animation: fadeUp 0.8s 1.1s ease forwards;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-num {
      font-family: 'Inter Tight', sans-serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 0.3rem;
    }

    .hero-scroll {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      opacity: 0;
      animation: fadeUp 0.8s 1.3s ease forwards;
      cursor: pointer;
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .hero-scroll:hover { color: var(--gold); }

    .scroll-icon {
      width: 28px;
      height: 44px;
      border: 1px solid currentColor;
      border-radius: 14px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 6px;
    }

    .scroll-dot {
      width: 4px;
      height: 8px;
      background: currentColor;
      border-radius: 2px;
      animation: scrollDot 2s infinite;
    }

    @keyframes scrollDot {
      0%, 100% { transform: translateY(0); opacity: 1; }
      60% { transform: translateY(10px); opacity: 0; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── MARQUEE STRIP ── */
    .marquee-strip {
      background: var(--gold);
      padding: 0.85rem 0;
      overflow: hidden;
      position: relative;
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 22s linear infinite;
      width: max-content;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 0 2rem;
      font-family: 'Inter Tight', sans-serif;
      font-size: 0.85rem;
      font-style: italic;
      color: var(--black);
      font-weight: 700;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    .marquee-dot {
      width: 5px;
      height: 5px;
      background: var(--black);
      border-radius: 50%;
      flex-shrink: 0;
    }

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

    /* ── SECTIONS SHARED ── */
    section {
      padding: 7rem 3rem;
    }

    .section-eyebrow {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    .eyebrow-line {
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .eyebrow-text {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .section-title {
      font-family: 'Inter Tight', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }

    .section-title em { font-style: normal; color: var(--gold); font-weight: 500; }

    /* ── WHAT WE DO ── */
    .what-we-do {
      background: var(--black-2);
    }

    .what-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 3rem;
    }

    .disciplines {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .discipline-card {
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 2rem 1.8rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
      cursor: default;
    }

    .discipline-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0;
      background: var(--gold);
      transition: height 0.35s ease;
    }

    .discipline-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
    .discipline-card:hover::before { height: 100%; }

    .disc-number {
      font-family: 'Inter Tight', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: rgba(201,168,76,0.18);
      margin-bottom: 0.8rem;
      line-height: 1;
    }

    .disc-name {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--off-white);
    }

    .disc-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 300;
    }

    .what-desc {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
      max-width: 420px;
    }

    .what-desc p + p { margin-top: 1.2rem; }

    .gold-rule {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
      margin: 2.5rem 0;
    }

    /* ── PERFORMANCES PLACEHOLDER ── */
    .performances {
      background: var(--black);
    }

    .perf-header {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      margin-bottom: 3rem;
    }

    .perf-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .perf-card {
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.1);
      overflow: hidden;
      position: relative;
      transition: border-color 0.3s;
    }

    .perf-card:hover { border-color: rgba(201,168,76,0.35); }

    .perf-image {
      height: 220px;
      background: var(--black-2);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .perf-image-stripes {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(201,168,76,0.05) 18px,
        rgba(201,168,76,0.05) 20px
      );
    }

    .perf-image-label {
      font-family: 'Geist', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      color: rgba(201,168,76,0.35);
      text-transform: uppercase;
      text-align: center;
      z-index: 1;
      padding: 1rem;
    }

    .perf-tag {
      position: absolute;
      top: 1rem; left: 1rem;
      background: var(--gold);
      color: var(--black);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.3rem 0.7rem;
    }

    .perf-body {
      padding: 1.5rem;
    }

    .perf-date {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 0.5rem;
    }

    .perf-title {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--off-white);
    }

    .perf-venue {
      font-size: 0.83rem;
      color: var(--text-muted);
      font-weight: 300;
    }

    /* ── JOIN US ── */
    .join {
      background: var(--black-2);
      position: relative;
      overflow: hidden;
    }

    .join-bg-text {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      font-family: 'Inter Tight', sans-serif;
      font-size: 18vw;
      font-weight: 900;
      font-style: italic;
      color: rgba(201,168,76,0.03);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    .join-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 3rem;
    }

    .age-bands {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .age-band {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.2rem 1.5rem;
      border: 1px solid rgba(201,168,76,0.15);
      background: var(--black-3);
      transition: border-color 0.3s, background 0.3s;
    }

    .age-band:hover {
      border-color: rgba(201,168,76,0.4);
      background: rgba(201,168,76,0.04);
    }

    .age-badge {
      font-family: 'Inter Tight', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--gold);
      background: rgba(201,168,76,0.08);
      border: 1px solid rgba(201,168,76,0.25);
      padding: 0.4rem 0.8rem;
      white-space: nowrap;
    }

    .age-info-name {
      font-weight: 500;
      font-size: 0.95rem;
      margin-bottom: 0.2rem;
    }

    .age-info-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 300;
    }

    .join-right {
      position: relative;
    }

    .join-image-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .join-img-stripes {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 18px,
        rgba(201,168,76,0.04) 18px,
        rgba(201,168,76,0.04) 20px
      );
    }

    .join-img-label {
      font-family: 'Geist', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: rgba(201,168,76,0.35);
      text-transform: uppercase;
      text-align: center;
      z-index: 1;
    }

    /* gold corner brackets */
    .bracket::before, .bracket::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 24px;
      border-color: var(--gold-dim);
      border-style: solid;
    }

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

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

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--black);
    }

    .testimonials-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .testimonial {
      padding: 2.5rem 2rem;
      border-top: 2px solid rgba(201,168,76,0.25);
      position: relative;
      transition: border-color 0.3s;
    }

    .testimonial:hover { border-top-color: var(--gold); }

    .quote-mark {
      font-family: 'Inter Tight', sans-serif;
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.18;
      line-height: 0.7;
      margin-bottom: 1.5rem;
      display: block;
    }

    .testimonial-text {
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--off-white);
      font-weight: 300;
      font-style: italic;
      margin-bottom: 1.8rem;
    }

    .testimonial-author {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-dim);
      font-weight: 500;
    }

    /* ── CONTACT/FOOTER ── */
    .contact-strip {
      background: var(--gold);
      padding: 5rem 3rem;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 3rem;
    }

    .contact-title {
      font-family: 'Inter Tight', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--black);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .contact-title em { font-style: normal; }

    .contact-btn {
      background: var(--black);
      color: var(--gold);
      border: none;
      padding: 1.1rem 2.4rem;
      font-family: 'Geist', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, color 0.2s;
    }

    .contact-btn:hover {
      background: var(--black-3);
    }

    footer {
      background: var(--black);
      padding: 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 4rem;
      border-top: 1px solid rgba(201,168,76,0.1);
    }

    .footer-logo {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .footer-logo span {
      font-style: normal;
      font-weight: 400;
      color: var(--off-white);
    }

    .footer-tagline {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 300;
    }

    .footer-col-title {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 1.2rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 300;
      transition: color 0.2s;
    }

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

    .footer-bottom {
      background: var(--black);
      padding: 1.2rem 3rem;
      border-top: 1px solid rgba(201,168,76,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 300;
      letter-spacing: 0.06em;
    }

    /* ── LINK BUTTON ── */
    .link-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid rgba(201,168,76,0.3);
      padding-bottom: 0.2rem;
      transition: border-color 0.2s;
    }

    .link-btn:hover { border-color: var(--gold); }
    .link-btn svg { flex-shrink: 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      section { padding: 5rem 1.5rem; }
      .hero-content { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; }
      .hero-right { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
      .hero-stat-group { gap: 1.2rem; }
      .hero-stat-num { font-size: 1.75rem; }
      .what-grid, .join-grid { grid-template-columns: 1fr; gap: 3rem; }
      .disciplines { grid-template-columns: 1fr; }
      .perf-grid { grid-template-columns: 1fr; }
      .testimonials-inner { grid-template-columns: 1fr; }
      .contact-strip { grid-template-columns: 1fr; }
      footer { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }
  


    @media (max-width: 420px) {
      .hero-stat-num { font-size: 1.4rem; }
      .hero-stat-group { gap: 0.8rem; }
      .hero-stat-label { font-size: 0.65rem; }
    }



    /* ── CLASSES INTRO ── */
    .classes-intro {
      background: var(--black-2);
      padding: 5rem 3rem 3rem;
      text-align: center;
    }
    .classes-intro .section-eyebrow { justify-content: center; }

    /* ── CLASS SECTION ── */
    .class-section {
      padding: 5rem 3rem;
      border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .class-section:nth-child(odd) { background: var(--black-2); }
    .class-section:nth-child(even) { background: var(--black); }

    .class-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    /* class-row: text block with optional right-align */
    .class-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    /* Normal: left-aligned text */
    .class-row .class-body { text-align: left; }
    .class-row .section-eyebrow { justify-content: flex-start; }

    /* Flip: right-aligned text */
    .class-row.flip .class-body { text-align: right; }
    .class-row.flip .section-eyebrow { justify-content: flex-end; }
    .class-row.flip .class-bullets li { flex-direction: row-reverse; }
    .class-row.flip .class-number-bg { right: -0.5rem; left: auto; }
    .class-row.flip .class-register { float: right; clear: right; }
    .class-row.flip .class-bullets-clearfix { display: block; clear: both; }

    @media (max-width: 900px) {
      .class-row.flip .class-body { text-align: left; }
      .class-row.flip .section-eyebrow { justify-content: flex-start; }
      .class-row.flip .class-bullets li { flex-direction: row; }
      .class-row.flip .class-register { float: none; }
    }

    .class-header { margin-bottom: 1.4rem; }

    .class-body {
      position: relative;
      padding-top: 3.5rem;
    }

    .class-number-bg {
      font-family: 'Inter Tight', sans-serif;
      font-size: 7rem;
      font-weight: 900;
      font-style: italic;
      color: rgba(201,168,76,0.06);
      line-height: 1;
      position: absolute;
      top: 0;
      left: -0.5rem;
      pointer-events: none;
      user-select: none;
    }

    .class-title {
      font-family: 'Inter Tight', sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
    }

    .class-body p {
      font-size: 0.97rem;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .class-bullets {
      list-style: none;
      margin: 1.4rem 0 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .class-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      font-size: 0.88rem;
      color: var(--off-white);
      font-weight: 300;
      line-height: 1.55;
    }

    .class-bullets li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0.55em;
    }

    .class-meta-wrap {
      padding-top: 0;
    }

    .class-meta {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      align-items: stretch;
    }

    .meta-card {
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.12);
      padding: 1.4rem 1.2rem;
      transition: border-color 0.3s;
      display: flex;
      flex-direction: column;
    }

    .meta-card:hover { border-color: rgba(201,168,76,0.35); }

    .meta-label {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .meta-value {
      font-size: 0.88rem;
      color: var(--off-white);
      line-height: 1.6;
      font-weight: 300;
      flex: 1;
    }

    .class-register {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      background: var(--gold);
      color: var(--black);
      padding: 0.85rem 2rem;
      font-family: 'Geist', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.2s;
    }

    .class-register:hover { background: var(--gold-light); }

    @media (max-width: 900px) {
      .class-meta { grid-template-columns: 1fr 1fr; }
      .class-body { padding-top: 2.5rem; }
      .class-number-bg { left: 0 !important; right: auto !important; }
      .classes-intro { padding: 4rem 1.5rem 2rem; }
      .class-section { padding: 4rem 1.5rem; }
    }
  


    .team-section {
      background: var(--black);
      padding: 6rem 3rem;
      text-align: center;
    }
    .team-intro {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
      font-weight: 300;
      max-width: 540px;
      margin: 0 auto 3.5rem;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .team-card {
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.12);
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.3s, transform 0.3s;
      text-align: center;
    }
    .team-card:hover {
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-4px);
    }
    .team-photo-wrap {
      width: 100%;
      aspect-ratio: 1;
      background: var(--black-2);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .team-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .team-photo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--black-2);
      background-image: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(201,168,76,0.04) 18px, rgba(201,168,76,0.04) 20px);
    }
    .team-photo-placeholder span {
      font-family: 'Inter Tight', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: rgba(201,168,76,0.3);
      letter-spacing: 0.05em;
    }
    .team-info {
      padding: 1.2rem 1rem 1.4rem;
      background: var(--black-3);
    }
    .team-name {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--off-white);
      margin-bottom: 0.3rem;
    }
    .team-role {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .team-btn {
      background: transparent;
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--off-white);
      padding: 0.4rem 1.2rem;
      font-family: 'Geist', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .team-btn:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.08);
    }
    /* BIO MODAL */
    .bio-overlay {
      position: fixed;
      inset: 0;
      background: rgba(14,16,19,0.85);
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      padding: 2rem;
    }
    .bio-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    .bio-modal {
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.2);
      max-width: 600px;
      width: 100%;
      padding: 2.5rem;
      position: relative;
      transform: translateY(20px);
      transition: transform 0.3s;
      max-height: 85vh;
      overflow-y: auto;
    }
    .bio-overlay.active .bio-modal {
      transform: translateY(0);
    }
    .bio-close {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      padding: 0.3rem;
      transition: color 0.2s;
    }
    .bio-close:hover { color: var(--gold); }
    .bio-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .bio-avatar {
      width: 64px;
      height: 64px;
      background: var(--black-2);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: rgba(201,168,76,0.5);
    }
    .bio-name {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--off-white);
      margin-bottom: 0.3rem;
    }
    .bio-role {
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }
    .bio-divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 1.5rem;
    }
    .bio-text {
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
    }
    @media (max-width: 900px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .team-section { padding: 4rem 1.5rem; }
    }
    @media (max-width: 500px) {
      .team-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    }
  


    .venues-section {
      background: var(--black-2);
      padding: 6rem 3rem;
    }
    .venues-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .venue-card {
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.12);
      overflow: hidden;
      transition: border-color 0.3s;
      display: flex;
      flex-direction: column;
    }
    .venue-card:hover { border-color: rgba(201,168,76,0.35); }
    .venue-tag {
      display: inline-block;
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 0.25rem 0.6rem;
      margin-bottom: 0.8rem;
      font-weight: 500;
    }
    .venue-map {
      width: 100%;
      height: 240px;
      background: var(--black-2);
      overflow: hidden;
    }
    .venue-body {
      padding: 1.8rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .venue-address {
      flex: 1;
    }
    .venue-name {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--off-white);
      margin-bottom: 0.6rem;
    }
    .venue-address {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 1.4rem;
    }
    .venue-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gold);
      color: var(--black);
      padding: 0.65rem 1.4rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      font-family: 'Geist', sans-serif;
      transition: background 0.2s;
    }
    .venue-btn:hover { background: var(--gold-light); }

    .contact-us-section {
      background: var(--black);
      padding: 6rem 3rem;
    }
    .contact-options {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 700px;
      margin: 0 auto;
    }
    .contact-option {
      flex: 1;
      min-width: 260px;
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 2.5rem 2rem;
      text-align: center;
      text-decoration: none;
      color: var(--off-white);
      transition: border-color 0.3s, transform 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
    }
    .contact-option:hover {
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-3px);
    }
    .contact-option-icon { color: var(--gold); margin-bottom: 0.3rem; }
    .contact-option.whatsapp .contact-option-icon { color: #25D366; }
    .contact-option-label {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }
    .contact-option.whatsapp .contact-option-label { color: #25D366; }
    .contact-option-value {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--off-white);
    }
    @media (max-width: 900px) {
      .venues-grid { grid-template-columns: 1fr; }
      .venues-section, .contact-us-section { padding: 4rem 1.5rem; }
      .contact-options { flex-direction: column; }
    }
  


    .video-section {
      background: var(--black);
      padding: 7rem 3rem;
      text-align: center;
    }
    .video-section .section-eyebrow { justify-content: center; }
    .video-section .video-intro {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
      font-weight: 300;
      max-width: 540px;
      margin: 0 auto 3rem;
    }
    .video-frame {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      aspect-ratio: 16 / 9;
      background: var(--black-3);
      border: 1px solid rgba(201,168,76,0.18);
      overflow: hidden;
    }
    .video-frame video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    .video-frame::before, .video-frame::after {
      content: '';
      position: absolute;
      width: 28px; height: 28px;
      border-color: var(--gold);
      border-style: solid;
      pointer-events: none;
      z-index: 2;
    }
    .video-frame::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
    .video-frame::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
    @media (max-width: 900px) {
      .video-section { padding: 5rem 1.5rem; }
    }
