/* ============================================================
   COCOON TRAINING ACADEMY — COMPLETE DESIGN SYSTEM
   style.css | v2.0
   Fonts: Bebas Neue · Cormorant Garamond · Inter
   ============================================================ */

/* ── 1. GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── 2. DESIGN TOKENS ────────────────────────────────────── */
:root {
  /* Background scale */
  --bg:  #070707;
  --bg2: #0d0d0d;
  --bg3: #131313;
  --bg4: #191919;
  --bg5: #1f1f1f;

  /* Gold palette */
  --gold:  #C8973F;
  --gold2: #E8B558;
  --gold3: #8B6420;
  --goldt: rgba(200,151,63,0.10);
  --goldb: rgba(200,151,63,0.18);
  --goldg: rgba(200,151,63,0.35);

  /* Neutrals */
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --g1:    #CCCCCC;
  --g2:    #888888;
  --g3:    #444444;

  /* Typography families */
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  /* Radii */
  --r:  10px;
  --r2: 20px;

  /* Easings */
  --ease:  cubic-bezier(0.16,1,0.3,1);
  --ease2: cubic-bezier(0.4,0,0.2,1);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(200,151,63,0.25);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── 3. BASE RESET ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  background-color: var(--bg);
  color: var(--g1);
  overflow-x: hidden;
  cursor: auto;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul, ol { list-style: none; }

button {
  font-family: var(--ff-body);
  cursor: pointer;
}

input, textarea, select {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--white);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold2); }
* { scrollbar-width: thin; scrollbar-color: var(--gold) var(--bg2); }

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ── 4. PAGE TRANSITION ──────────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.page-transition.done {
  opacity: 0;
  pointer-events: none;
}

/* ── 5. SCROLL PROGRESS BAR ─────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold2));
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 0 8px var(--goldb);
}

/* ── 6. CUSTOM CURSOR ────────────────────────────────────── */
#curOuter {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--goldb);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: width 0.3s var(--ease),
              height 0.3s var(--ease),
              background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              opacity 0.4s var(--ease);
  will-change: left, top;
}

#curInner {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: transform 0.1s linear,
              width 0.2s var(--ease),
              height 0.2s var(--ease),
              opacity 0.4s var(--ease);
  will-change: left, top;
}

.cur-visible {
  opacity: 1 !important;
}

body:has(a:hover) #curOuter,
body:has(button:hover) #curOuter {
  width: 56px;
  height: 56px;
  background: var(--goldt);
  border-color: var(--gold);
}

/* ── 7. LAYOUT UTILITIES ─────────────────────────────────── */
.wrap, .disc-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section,
.story-section,
.timeline-section,
.values-section,
.achievements-section,
.pricing-section,
.included-section,
.pricing-faq,
.sch-board-section,
.facility-block,
.amenities-section,
.safety-strip,
.facility-intro,
.testi-feature,
.cta-banner,
.discipline-block,
.combo-block,
.classes-faq,
.page-cta {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section.section-sm { padding: 70px 0; }
.section.section-dark { background: var(--bg2); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-g2     { color: var(--g2); }

/* ── 8. SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease),
              transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Legacy fade-up support */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease),
              transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.fade-up.in-view {
  opacity: 1;
  transform: none;
}

/* ── 9. TYPOGRAPHY ───────────────────────────────────────── */
.sec-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--goldb);
  border-radius: 999px;
  background: var(--goldt);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 5px;
  margin-bottom: 20px;
}

.cocoon-brand {
  font-family: 'Bebas Neue', var(--ff-display);
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(212,175,55,0.4);
  font-size: 1.15em;
  display: inline-block;
  transform: translateY(2px);
}

.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 48px;
}

.sec-title em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0;
}

.sec-subtitle {
  font-family: var(--ff-body);
  color: var(--g2);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
}

.text-center .sec-subtitle,
.map-header .sec-subtitle,
.section-head.text-center .sec-subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head {
  margin-bottom: 48px;
}

/* ── 10. BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease),
              transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--goldg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary svg {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Ripple */
.btn-primary .ripple,
.btn-ghost .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(6); opacity: 0; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: var(--g1);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--goldb);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              color 0.3s var(--ease),
              transform 0.3s var(--ease);
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--goldt);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── 11. NAVIGATION ──────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease),
              padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  margin: 5px;
}

#nav.scrolled {
  background: rgba(7,7,7,0.90);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  padding: 14px 0;
  border-bottom-color: var(--goldb);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--bg);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.logo-mark.img-mark {
  background: rgba(212,175,55,0.1) !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--gold) !important;
  box-shadow: 0 0 15px rgba(212,175,55,0.3), inset 0 0 10px rgba(212,175,55,0.2) !important;
  padding: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark.img-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.1); /* Zoom slightly to remove native white space if any */
}


.logo:hover .logo-mark {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 4px 20px var(--goldg);
}

.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.lw-top {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212,175,55,0.5);
}

.lw-bot {
  font-size: 0.52rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--g2);
  border-radius: 6px;
  transition: color 0.3s var(--ease);
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--gold);
}

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.78rem;
  border-radius: 6px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--g1);
  border-radius: 2px;
  transition: transform 0.35s var(--ease),
              opacity 0.3s,
              width 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  z-index: 999;
  background: var(--bg3);
  border-left: 1px solid var(--goldb);
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--g2);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.drawer-close:hover { color: var(--gold); }

.mobile-drawer ul { list-style: none; }

.mobile-drawer a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--g2);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s, padding-left 0.3s;
  text-decoration: none;
}

.mobile-drawer a:hover { color: var(--gold); padding-left: 8px; }

.mobile-drawer .drawer-cta {
  display: block;
  margin-top: 24px;
  padding: 14px;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: none;
  transition: background 0.3s;
}

.mobile-drawer .drawer-cta:hover {
  background: var(--gold2);
  color: var(--bg);
  padding-left: 14px;
}

/* Drawer overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── 12. PAGE HERO ───────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg2);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3);
  transform: scale(1.06);
  transition: transform 8s var(--ease);
  will-change: transform;
}

.page-hero.loaded .page-hero-bg {
  transform: scale(1);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,7,7,0.2) 0%,
    rgba(7,7,7,0.5) 50%,
    var(--bg) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.ph-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 10rem);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1.02;
  margin-bottom: 24px;
  animation: slideUp 0.8s var(--ease) both;
}

.ph-sub {
  font-family: var(--ff-body);
  color: var(--g1);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
  animation: slideUp 0.8s var(--ease) 0.2s both;
}

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

/* Scroll cue on page hero */
.page-hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: lineGrow 2s ease-in-out infinite;
}

@keyframes lineGrow {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ── 13. HOME HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 140px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--goldg); }
  50%       { box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.ht-line {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 1.02;
  letter-spacing: 2px;
  color: var(--white);
  overflow: hidden;
}

.ht-line em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
  font-size: clamp(3.5rem, 7vw, 8rem);
}

.ht-1 { animation: slideUp 0.8s var(--ease) 0.1s both; }
.ht-2 { animation: slideUp 0.8s var(--ease) 0.25s both; }
.ht-3 { animation: slideUp 0.8s var(--ease) 0.4s both; }

.hero-sub {
  color: var(--g2);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
  animation: slideUp 0.8s var(--ease) 0.55s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: slideUp 0.8s var(--ease) 0.7s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: slideUp 0.8s var(--ease) 0.85s both;
}

.hs-item { text-align: center; }

.hs-val {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.hs-label {
  font-size: 0.65rem;
  color: var(--g3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.hs-sep {
  width: 1px;
  height: 36px;
  background: var(--goldb);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 540px;
}

.hv-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 70%;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--goldb);
  animation: floatA 8s ease-in-out infinite;
}

.hv-side {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 60%;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--goldb);
  animation: floatB 8s ease-in-out infinite 2s;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(-12px); }
  50%       { transform: translateY(0); }
}

.hv-badge {
  position: absolute;
  top: 16px;
  right: -16px;
  background: var(--gold);
  border-radius: var(--r);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 32px var(--goldg);
  z-index: 3;
}

.hv-badge strong {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--bg);
  display: block;
  line-height: 1;
}

.hv-badge span {
  font-size: 0.62rem;
  color: rgba(7,7,7,0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

/* ── 14. MARQUEE STRIP ───────────────────────────────────── */
.marquee-strip {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg2);
  border-top: 1px solid var(--goldb);
  border-bottom: 1px solid var(--goldb);
  /* Premium edge fades */
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover,
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.mt-text {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee-track:hover .mt-text {
  color: var(--gold2);
}

.mt-sep {
  color: var(--gold);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

/* Duplicate for seamless loop */
.marquee-track::after {
  content: attr(data-dup);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tagline-strip {
  background: var(--bg3);
  border-top: 1px solid var(--goldb);
  border-bottom: 1px solid var(--goldb);
  padding: 32px 0;
  position: relative;
  z-index: 2;
}

.tagline-text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold2);
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin: 0;
}

/* ── 15. DISCIPLINES SECTION (HOME) ──────────────────────── */
.disciplines-section {
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 0;
}

.disc-panels {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  height: 650px;
}


/* ── Disc Badge & Panel Rebranding Accents ── */
.disc-badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}
.disc-badge.primary-badge {
  background: rgba(76, 175, 80, 0.15);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.3);
}
.disc-badge.secondary-badge {
  background: rgba(200, 151, 63, 0.15);
  color: var(--gold2);
  border: 1px solid var(--goldb);
}
.disc-panel.disc-learning .disc-desc {
  max-width: 480px;
}

.disc-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.disc-panel-bg {
  position: absolute;
  inset: 0;
}

.disc-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}

.disc-panel:hover .disc-panel-bg img {
  filter: brightness(0.5);
  transform: scale(1.04);
}

.disc-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  background: linear-gradient(to top, var(--bg) 20%, transparent 100%);
}

.disc-num {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 4px;
}

.disc-title {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.disc-desc {
  font-size: 0.88rem;
  color: var(--g1);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 360px;
}

.disc-list { margin-bottom: 24px; }

.disc-list li {
  font-size: 0.82rem;
  color: var(--g2);
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.disc-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.4rem;
  position: absolute;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
}

/* ── 16. STATS BAND ──────────────────────────────────────── */
.stats-band {
  padding: 72px 0;
  background: var(--bg2);
  border-top: 1px solid var(--goldb);
  border-bottom: 1px solid var(--goldb);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold), transparent 70%);
  opacity: 0.05;
  pointer-events: none;
}

.sb-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.sb-item { text-align: center; }

.sb-val {
  font-family: var(--ff-display);
  font-size: 4.5rem;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}

.sb-label {
  font-size: 0.68rem;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

.sb-sep {
  width: 1px;
  height: 56px;
  background: var(--goldb);
}

/* ── 17. TESTIMONIAL FEATURE ─────────────────────────────── */
.testi-feature {
  text-align: center;
  padding: 100px 40px;
  background: var(--bg);
}

.tf-quote-mark {
  font-family: var(--ff-serif);
  font-size: 12rem;
  line-height: 0;
  color: var(--gold);
  opacity: 0.06;
  margin-bottom: 24px;
  display: block;
  user-select: none;
}

.tf-text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--g1);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
}

.tf-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.tf-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.tf-name strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}

.tf-name span {
  font-size: 0.75rem;
  color: var(--g2);
}

.tf-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.85rem;
}

/* ── 18. CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 120px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--g1);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-fine {
  display: block;
  font-size: 0.8rem;
  color: var(--g2);
  margin-top: 20px;
}


.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cta-small {
  font-size: 0.78rem;
  color: var(--g3);
  margin-top: 20px;
}

/* ── 19. STORY SECTION ───────────────────────────────────── */
.story-section {
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-img {
  position: relative;
  height: 520px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--goldb);
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.story-stat-boxes {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}

.story-stat-box {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 20px 24px;
  text-align: center;
  flex: 1;
}

.story-stat-box strong {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.story-stat-box span {
  font-size: 0.68rem;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ── 20. TIMELINE ────────────────────────────────────────── */
.timeline-section {
  background: var(--bg2);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--goldb);
  z-index: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: start;
  position: relative;
}

.tl-item:nth-child(odd) .tl-content {
  grid-column: 1;
  text-align: right;
}

.tl-item:nth-child(even) .tl-content {
  grid-column: 2;
}

.tl-year {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--ff-display);
  font-size: 1.2rem;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.tl-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.tl-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 0.83rem;
  color: var(--g2);
  line-height: 1.65;
}

/* ── 21. VALUES GRID ─────────────────────────────────────── */
.values-section { background: var(--bg); }

.values-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.value-card:hover {
  border-color: var(--gold3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--g2);
  line-height: 1.7;
}

/* ── 22. TEAM / COACH CARDS ──────────────────────────────── */
.team-section { background: var(--bg2); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.coach-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.coach-card:hover {
  border-color: var(--gold3);
  transform: translateY(-4px);
}

.cc-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--r);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--ff-display);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.cc-role {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.cc-body p {
  font-size: 0.83rem;
  color: var(--g2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cc-tags span {
  padding: 3px 10px;
  background: var(--goldt);
  border: 1px solid var(--goldb);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ── 23. CLASSES PAGE ────────────────────────────────────── */
.disc-filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.dft {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  color: var(--g2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.dft:hover { color: var(--gold); border-color: var(--gold3); }
.dft.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.discipline-block {
  padding: 50px 0;
  position: relative;
}

.discipline-block + .discipline-block {
  border-top: 1px solid var(--goldb);
}

.disc-block-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.disc-block-grid.reverse {
  direction: rtl;
}

.disc-block-grid.reverse > * {
  direction: ltr;
}

.disc-block-img {
  height: 480px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--goldb);
  position: relative;
}

.disc-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.sub-programs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.sp-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color 0.3s, background 0.3s;
}

.sp-card:hover {
  border-color: var(--gold3);
  background: var(--goldt);
}

.sp-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.sp-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.sp-desc {
  font-size: 0.78rem;
  color: var(--g2);
  line-height: 1.6;
}

.level-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.ls-step {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--g2);
  white-space: nowrap;
  transition: all 0.3s;
}

.ls-step.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.ls-arrow {
  color: var(--g3);
  font-size: 1.2rem;
}

/* ── 24. SCHEDULE PAGE ───────────────────────────────────── */
.day-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.day-tab {
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  color: var(--g2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.day-tab:hover { color: var(--gold); border-color: var(--gold3); }
.day-tab.active { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* Legacy day-btn from home page */
.dt {
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  color: var(--g2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.dt:hover { color: var(--gold); border-color: var(--gold3); }
.dt.active { background: var(--gold); border-color: var(--gold); color: var(--bg); }

.sch-board {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sch-slot-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g3);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--goldb);
}

.sch-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}

.sch-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 20px;
  position: relative;
  overflow: hidden;
  animation: scFade 0.4s var(--ease) both;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.sch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  border-color: var(--gold3);
}

.sch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.sch-card.zumba-card::before {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

.sch-card.sil-card::before {
  background: linear-gradient(90deg, var(--gold3), var(--gold));
}

.sch-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.zumba-card .sch-badge { color: var(--gold); }
.sil-card   .sch-badge { color: var(--gold3); }

.sch-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.sch-time-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.sch-time-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.sch-time-arr { color: var(--g3); }

.sch-coach {
  font-size: 0.75rem;
  color: var(--g2);
  margin-bottom: 10px;
}

.sch-level {
  display: inline-block;
  padding: 2px 10px;
  background: var(--goldt);
  border: 1px solid var(--goldb);
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

/* ── 25. PRICING PAGE ────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  border: 1px solid var(--goldb);
  border-radius: 8px;
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto 52px;
}

.pt-btn {
  flex: 1;
  padding: 11px 20px;
  background: transparent;
  border: none;
  color: var(--g2);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: var(--ff-body);
}

.pt-btn:hover { color: var(--gold); }
.pt-btn.active { background: var(--gold); color: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.price-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.price-card:hover {
  border-color: var(--gold3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  background: linear-gradient(145deg, var(--bg4), rgba(139,100,32,0.08));
  border-color: var(--gold3);
  transform: scale(1.04);
  box-shadow: 0 0 60px var(--goldt);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pc-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.pc-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.pc-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.pc-tagline {
  font-size: 0.75rem;
  color: var(--g2);
  margin-bottom: 20px;
  display: block;
}

.pc-price {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.pc-price sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 8px;
}

.pc-price-period {
  font-size: 0.75rem;
  color: var(--g2);
  margin-bottom: 24px;
  display: block;
}

.pc-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.pc-features li {
  font-size: 0.83rem;
  color: var(--g2);
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.pc-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Pricing FAQ / Accordion */
.pricing-faq { background: var(--bg2); }

.accordion {
  display: flex;
  flex-direction: column;
}

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

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--ff-body);
}

.accordion-trigger:hover { color: var(--gold); }

.accordion-icon {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.accordion-item.open .accordion-body {
  max-height: 300px;
}

.accordion-body p {
  padding-bottom: 20px;
  color: var(--g2);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Guarantee strip */
.guarantee-strip {
  display: flex;
  border-top: 1px solid var(--goldb);
  border-bottom: 1px solid var(--goldb);
  padding: 36px 0;
  background: var(--bg2);
  flex-wrap: wrap;
}

.guarantee-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--goldb);
  min-width: 140px;
}

.guarantee-item:last-child {
  border-right: none;
}

.guarantee-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}

.guarantee-item span {
  font-size: 0.75rem;
  color: var(--g2);
}

/* ── 26. CONTACT PAGE ────────────────────────────────────── */
/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--goldb);
  border-bottom: 1px solid var(--goldb);
  padding: 20px;
  background: var(--bg2);
  flex-wrap: wrap;
}

.ts-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid var(--goldb);
}

.ts-item:last-child { border-right: none; }

.ts-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ts-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.ts-item span {
  font-size: 0.72rem;
  color: var(--g2);
}

/* Contact section layout */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Contact form column */
.contact-form-col {}

/* Trial form */
.trial-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fg label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--g2);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fg input,
.fg select,
.fg textarea {
  padding: 13px 16px;
  background: var(--bg4);
  border: 1px solid var(--goldb);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--g3);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--goldt);
}

.fg select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.fg select option {
  background: var(--bg3);
  color: var(--white);
}

.fg textarea {
  height: 100px;
  resize: vertical;
  line-height: 1.6;
}

.form-privacy {
  font-size: 0.72rem;
  color: var(--g3);
  text-align: center;
  margin-top: 4px;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  animation: fadeIn 0.5s var(--ease) both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.fs-butterfly {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

.fs-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.fs-sub {
  font-size: 1rem;
  color: var(--g1);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 24px;
}

.fs-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

.fs-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--g2);
}

.fs-d-icon { font-size: 1rem; flex-shrink: 0; }

/* Contact info column */
.contact-info-col {}

.contact-info-heading {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.info-card:hover {
  border-color: var(--gold3);
  transform: translateX(4px);
}

.ic-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--goldt);
  border: 1px solid var(--goldb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ic-body strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ic-body a,
.ic-body p,
.ic-body span {
  font-size: 0.82rem;
  color: var(--g2);
  display: block;
  line-height: 1.5;
}

.ic-body a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.ic-body a:hover { color: var(--gold2); }

.ic-link {
  font-size: 0.75rem !important;
  color: var(--gold) !important;
  margin-top: 6px;
  display: inline-block !important;
}

/* Social links in contact */
.contact-social {
  margin-top: 32px;
}

.contact-social-heading {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--g3);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.csocial-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.csocial-link:hover {
  background: var(--goldt);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.csocial-icon {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.csocial-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--g2);
  transition: color 0.3s;
}

.csocial-link:hover .csocial-name { color: var(--white); }

.csocial-wa:hover {
  border-color: #25D366;
  background: rgba(37,211,102,0.08);
}

.csocial-wa .csocial-icon { color: #25D366; }
.csocial-wa:hover .csocial-name { color: #25D366; }

/* Quick facts row */
.contact-quick-facts {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  overflow: hidden;
}

.cqf-item {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
}

.cqf-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.cqf-item span {
  font-size: 0.65rem;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.cqf-sep {
  width: 1px;
  height: 40px;
  background: var(--goldb);
  flex-shrink: 0;
}

/* Map section */
.map-section { background: var(--bg2); }

.map-header { text-align: center; }

.map-container {
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--goldb);
  height: 360px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-address-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.mas-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--g2);
}

.mas-icon { font-size: 1rem; }

/* Mini CTA Section */
.mini-cta-section {
  background: var(--bg);
  border-top: 1px solid var(--goldb);
}

.mini-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.mini-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mini-cta-note {
  font-size: 0.75rem;
  color: var(--g3);
  text-align: center;
}

/* ── 27. FOOTER ──────────────────────────────────────────── */
.footer-top {
  padding: 72px 0;
  background: var(--bg2);
  border-top: 1px solid var(--goldb);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.fg-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fg-brand p {
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.7;
  max-width: 220px;
  margin-top: 16px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--g2);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.fg-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.fg-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.fg-col li,
.fg-col a {
  font-size: 0.82rem;
  color: var(--g2);
  text-decoration: none;
  transition: color 0.3s;
}

.fg-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--g3);
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badges span {
  padding: 4px 12px;
  background: var(--goldt);
  border: 1px solid var(--goldb);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ── 28. BACK TO TOP ─────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s;
  z-index: 900;
  pointer-events: none;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold2);
}

/* ── 29. COMBO BLOCK ─────────────────────────────────────── */
.combo-block {
  background: var(--gold);
  color: var(--bg);
}

.combo-block .sec-tag {
  border-color: rgba(7,7,7,0.2);
  color: var(--bg);
  background: rgba(7,7,7,0.1);
}

.combo-block .sec-title { color: var(--bg); }
.combo-block .sec-title em { color: var(--bg); }

.combo-block .btn-primary {
  background: var(--bg);
  color: var(--gold);
}

.combo-block .btn-primary:hover {
  background: var(--bg2);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

/* ── 30. ACHIEVEMENTS ────────────────────────────────────── */
.achievements-section { background: var(--bg2); }

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ach-tile {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.ach-tile:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.ach-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.ach-label {
  font-size: 0.72rem;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ach-year {
  font-size: 0.65rem;
  color: var(--g3);
  margin-top: 4px;
}

/* ── AMBIENT BACKGROUND (home page) ─────────────────────── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.amb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
}

.amb-1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -200px;
  right: -200px;
  animation: ambOrb 20s ease-in-out infinite;
}

.amb-2 {
  width: 400px;
  height: 400px;
  background: var(--gold3);
  bottom: 10%;
  left: -100px;
  animation: ambOrb 25s ease-in-out infinite reverse 5s;
}

.amb-3 {
  width: 300px;
  height: 300px;
  background: var(--gold2);
  top: 50%;
  left: 40%;
  animation: ambOrb 18s ease-in-out infinite 10s;
}

@keyframes ambOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}

/* ── HOME BENTO / CLASS SPLIT / COACHES (index.html compat) ─ */
.bento-sec {}

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.6fr 0.6fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.bento-card {
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--goldb);
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.bento-card:hover {
  border-color: var(--gold3);
  transform: translateY(-4px);
}

.bc-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.bc-img-main img,
.bc-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.bc-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(7,7,7,0.7), transparent);
}

.bc-img-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream);
  line-height: 1.5;
}

.bc-story {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.bc-inner {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-icon { font-size: 2rem; margin-bottom: 12px; }

.bc-inner h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.bc-inner p {
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.65;
}

.bc-stat {
  grid-row: 2 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bc-stat-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}

.bc-stat-gold .bc-stat-num { color: var(--gold2); }

.bc-stat-label {
  font-size: 0.7rem;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  text-align: center;
}

.bc-img-side {
  grid-column: 5 / 7;
  grid-row: 1 / 2;
  position: relative;
}

.bc-chip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.bc-mission {
  grid-column: 2 / 5;
  grid-row: 2 / 3;
}

.bc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.bc-list li {
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.4;
}

/* Class split (home) */
.class-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 600px;
  margin-top: 40px;
}

.cs-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cs-bg {
  position: absolute;
  inset: 0;
}

.cs-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
  transition: filter 0.6s, transform 0.6s var(--ease);
}

.cs-panel:hover .cs-bg img {
  filter: brightness(0.4);
  transform: scale(1.04);
}

.cs-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  background: linear-gradient(to top, var(--bg) 20%, transparent);
}

.cs-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.cs-title {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.cs-desc {
  font-size: 0.85rem;
  color: var(--g1);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 320px;
}

.cs-perks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  list-style: none;
}

.cs-perks li {
  font-size: 0.78rem;
  color: var(--g2);
  padding: 6px 0 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.cs-perks li::before {
  content: '◆';
  font-size: 0.36rem;
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.cs-btn:hover { background: var(--gold2); transform: translateY(-2px); }

/* Prog row (home classes section) */
.prog-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.prog-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.prog-card:hover {
  border-color: var(--gold3);
  transform: translateY(-4px);
}

.prog-card span { font-size: 2rem; display: block; margin-bottom: 10px; }
.prog-card strong { display: block; font-size: 0.9rem; color: var(--white); font-weight: 700; margin-bottom: 6px; }
.prog-card p { font-size: 0.78rem; color: var(--g2); }

/* Coaches track (home) */
.coaches-track-wrap {
  overflow-x: auto;
  padding: 0 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold3) var(--bg2);
}

.coaches-track {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  width: max-content;
}

.coaches-track .coach-card {
  width: 320px;
  flex-shrink: 0;
}

/* Testimonial grid (home) */
.testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
}

.tg-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.tg-card:hover {
  border-color: var(--gold3);
  transform: translateY(-4px);
}

.tg-large { grid-column: 1 / 2; }

.tg-quote {
  font-family: var(--ff-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.tg-card p {
  font-size: 0.85rem;
  color: var(--g1);
  line-height: 1.7;
  flex: 1;
}

.tg-large p { font-size: 0.9rem; }

.tg-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tg-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tg-author strong { display: block; font-size: 0.83rem; color: var(--white); }
.tg-author span   { display: block; font-size: 0.72rem; color: var(--g2); }
.tg-stars { font-size: 0.75rem; color: var(--gold); margin-left: auto; }

/* Price cards (home) */
.price-cards {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.pc {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.pc:hover { border-color: var(--gold3); transform: translateY(-6px); }

.pc-hero {
  background: linear-gradient(145deg, var(--bg4), rgba(139,100,32,0.1));
  border-color: var(--gold3);
  transform: scale(1.04);
  box-shadow: 0 0 60px var(--goldt);
}

.pc-hero:hover { transform: scale(1.04) translateY(-6px); }

.pc .pc-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.pc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pc .pc-icon { font-size: 1.8rem; margin-bottom: 0; display: inline; }

.pc-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--white);
}

.pc-price {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.pc-price span {
  font-size: 1rem;
  color: var(--g2);
  font-family: var(--ff-body);
}

.pc-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.pc-list li {
  font-size: 0.83rem;
  color: var(--g2);
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.pc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pc-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid var(--goldb);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--g1);
  text-decoration: none;
  transition: all 0.3s;
}

.pc-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--goldt); }

.pc-btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.pc-btn-primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--bg);
}

/* Contact section (home) */
.contact-sec {}

.contact-grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cg-left {}

.cg-desc {
  font-size: 0.95rem;
  color: var(--g2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.cg-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cgd {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cgd-ic {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--goldt);
  border: 1px solid var(--goldb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cgd strong { display: block; font-size: 0.78rem; color: var(--white); margin-bottom: 3px; }
.cgd p { font-size: 0.82rem; color: var(--g2); }

.cg-right {}

.form-glass {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  padding: 36px;
}

.form-glass h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-glass .fg label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--g2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-glass .fg input,
.form-glass .fg select {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--bg4);
  border: 1px solid var(--goldb);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-glass .fg input:focus,
.form-glass .fg select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--goldt);
}

.form-glass .fg { margin-bottom: 14px; }

.form-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  font-family: var(--ff-body);
}

.form-submit:hover { background: var(--gold2); transform: translateY(-2px); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.fs-icon { font-size: 3rem; margin-bottom: 16px; }

.form-success h4 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.form-success p { font-size: 0.88rem; color: var(--g2); line-height: 1.65; }

/* Schedule board (home) */
.schedule-sec {}

.sch-board {}

/* Stats band (home) */
.sb-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}

.sb-lbl {
  font-size: 0.7rem;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

.sb-div {
  width: 1px;
  height: 48px;
  background: var(--goldb);
}

/* Footer (home page compat) */
.footer { background: var(--bg2); }

.ft-top { padding: 60px 0; border-top: 1px solid var(--goldb); }

.ft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ft-brand {}
.ft-brand .brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.ft-brand p {
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.7;
  max-width: 220px;
}

.ft-links { display: flex; gap: 48px; }

.ftl-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ftl-col ul { display: flex; flex-direction: column; gap: 8px; }

.ftl-col li,
.ftl-col a {
  font-size: 0.8rem;
  color: var(--g2);
  text-decoration: none;
  transition: color 0.3s;
}

.ftl-col a:hover { color: var(--gold); }

.ft-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.04); }

.ft-btm-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-btm-inner p { font-size: 0.75rem; color: var(--g3); }

.ft-seals { display: flex; gap: 8px; flex-wrap: wrap; }

.ft-seals span {
  padding: 4px 10px;
  background: var(--goldt);
  border: 1px solid var(--goldb);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
}

/* Marquee (home compat) */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  background: var(--bg2);
  border-top: 1px solid var(--goldb);
  border-bottom: 1px solid var(--goldb);
}

.mq-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--g3);
}

.mq-track span:not(.mq-star) { white-space: nowrap; }
.mq-star { color: var(--gold); }

/* Hero scroll cue (home) */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hs-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lineGrow 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g3);
}

/* Hero visual labels */
.hv-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(7,7,7,0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  z-index: 1;
}

.hv-main, .hv-secondary {
  position: absolute;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--goldb);
}

.hv-main {
  top: 0; left: 0;
  width: 65%; height: 68%;
  animation: floatA 8s ease-in-out infinite;
}

.hv-secondary {
  bottom: 0; right: 0;
  width: 58%; height: 60%;
  animation: floatB 8s ease-in-out infinite 2s;
}

.hv-main img, .hv-secondary img {
  width: 100%; height: 100%; object-fit: cover;
}

.hv-badge-num {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--bg);
  line-height: 1;
}

.hv-badge-txt {
  font-size: 0.62rem;
  color: rgba(7,7,7,0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dot */
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

/* Hero counters (home compat) */
.hero-counters {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hc-item { text-align: center; }

.hc-val {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.hc-label {
  font-size: 0.62rem;
  color: var(--g3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.hc-sep {
  width: 1px;
  height: 32px;
  background: var(--goldb);
}

/* Nav compat (index.html uses #navbar, these pages use #nav) */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(7,7,7,0.90);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--goldb);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* ── 30. RESPONSIVE BREAKPOINTS ──────────────────────────── */

/* ── 1200px ─ */
@media (max-width: 1200px) {
  .hero { padding: 120px 48px 60px; gap: 40px; }
  .bento-grid { grid-template-columns: 1fr 1fr 1fr; }
  .bc-img-main { grid-column: 1 / 2; grid-row: 1 / 2; }
  .bc-story { grid-column: 2 / 4; grid-row: 1 / 2; }
  .bc-stat { grid-row: auto; }
  .bc-img-side { grid-column: 1 / 2; }
  .bc-mission { grid-column: 2 / 4; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .tg-large { grid-column: 1 / 2; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 1024px ─ */
@media (max-width: 1024px) {
  .nav-wrap { padding: 0 20px; }

  #nav {
    padding: 12px 0 !important;
    background: rgba(7,7,7,0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--goldb) !important;
  }
  .nav-cta {
    display: none !important;
  }
  .nav-right {
    margin-left: auto;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 60px;
  }
  .hero-visual { display: none; }

  .disc-panels { grid-template-columns: 1fr; height: auto; }
  
/* ── Disc Badge & Panel Rebranding Accents ── */
.disc-badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}
.disc-badge.primary-badge {
  background: rgba(76, 175, 80, 0.15);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.3);
}
.disc-badge.secondary-badge {
  background: rgba(200, 151, 63, 0.15);
  color: var(--gold2);
  border: 1px solid var(--goldb);
}
.disc-panel.disc-learning .disc-desc {
  max-width: 480px;
}

.disc-panel { height: auto; min-height: 600px; }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img { height: 320px; }

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

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-6px); }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid-home { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .disc-block-grid { grid-template-columns: 1fr; gap: 40px; }
  .disc-block-img { height: 320px; }
  .disc-block-grid.reverse { direction: ltr; }

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

  .class-split { grid-template-columns: 1fr; height: auto; }
  .cs-panel { height: 400px; }

  .prog-row { grid-template-columns: repeat(2, 1fr); }

  .ft-inner { grid-template-columns: 1fr; }
}

/* ── 768px ─ */
@media (max-width: 768px) {
  .wrap, .disc-inner { padding: 0 20px; }

  .section,
  .story-section,
  .timeline-section,
  .values-section,
  .achievements-section,
  .pricing-section,
  .included-section,
  .pricing-faq,
  .sch-board-section,
  .facility-block,
  .amenities-section,
  .safety-strip,
  .facility-intro,
  .testi-feature,
  .cta-banner,
  .discipline-block,
  .combo-block,
  .classes-faq,
  .page-cta {
    padding: 70px 0;
  }
  .section.section-sm { padding: 50px 0; }
  .disciplines-section { padding-top: 90px; padding-bottom: 0; }

  .hero { padding: 100px 20px 60px; gap: 32px; }

  .sec-title { font-size: clamp(2rem, 7vw, 3.5rem); }

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

  .sub-programs { grid-template-columns: 1fr; }

  .day-tabs { flex-wrap: wrap; }
  .day-tab { padding: 8px 14px; font-size: 0.68rem; }

  .dt { padding: 8px 14px; font-size: 0.68rem; }

  .disc-panels { grid-template-columns: 1fr; }
  
/* ── Disc Badge & Panel Rebranding Accents ── */
.disc-badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}
.disc-badge.primary-badge {
  background: rgba(76, 175, 80, 0.15);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.3);
}
.disc-badge.secondary-badge {
  background: rgba(200, 151, 63, 0.15);
  color: var(--gold2);
  border: 1px solid var(--goldb);
}
.disc-panel.disc-learning .disc-desc {
  max-width: 480px;
}

.disc-panel { height: auto; min-height: 540px; }
  .disc-content { padding: 28px; }

  .stats-band { padding: 48px 0; }
  .sb-val { font-size: 3rem; }

  .trust-strip { gap: 0; }
  .ts-item { padding: 8px 16px; }
  .ts-item:last-child { border-right: none; }

  .form-row { grid-template-columns: 1fr; }

  .contact-social-links { flex-wrap: wrap; }

  .map-container { height: 280px; }

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

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

  .cta-banner { padding: 80px 20px; }

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

  .story-stat-boxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 1fr; gap: 16px; padding-left: 48px; }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content {
    grid-column: 1;
    text-align: left;
  }
  .tl-dot { left: 20px; }

  .map-address-strip { flex-direction: column; align-items: center; gap: 12px; }

  .mini-cta-actions { flex-direction: column; align-items: center; }

  .guarantee-strip { flex-wrap: wrap; }
  .guarantee-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--goldb); }
  .guarantee-item:last-child { border-bottom: none; }

  .hero-stats, .hero-counters { gap: 16px; }
  .hs-val, .hc-val { font-size: 1.8rem; }

  .coaches-track-wrap { padding: 0 20px; }
  .coaches-track .coach-card { width: 280px; }

  .achievements-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-quick-facts { flex-wrap: wrap; }
  .cqf-item { min-width: 100px; }
}

/* ── 480px ─ */
@media (max-width: 480px) {
  .logo {
    gap: 8px !important;
  }
  .logo-mark {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.2rem !important;
  }
  .lw-top {
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
  }
  .lw-bot {
    font-size: 0.45rem !important;
    letter-spacing: 1px !important;
  }

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

  .prog-row { grid-template-columns: 1fr; }

  .class-split { grid-template-columns: 1fr; height: auto; }
  .cs-panel { height: 320px; }

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

  .price-cards { grid-template-columns: 1fr; }
  .pc-hero { transform: none; }

  .achievements-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { padding: 90px 16px 48px; }

  .ph-title { font-size: clamp(3rem, 12vw, 6rem); }

  .trust-strip { flex-direction: column; align-items: stretch; }
  .ts-item { border-right: none; border-bottom: 1px solid var(--goldb); justify-content: center; }
  .ts-item:last-child { border-bottom: none; }

  .back-to-top { bottom: 16px; right: 16px; width: 38px; height: 38px; }

  .form-glass { padding: 24px; }

  .disc-block-grid { gap: 24px; }
  .disc-block-img { height: 260px; }

  .cqf-item { padding: 12px 8px; }
  .cqf-item strong { font-size: 1.2rem; }

  .mini-cta-actions .btn-primary,
  .mini-cta-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .sb-inner { padding: 0 20px; }

  .sb-sep, .hs-sep, .hc-sep { display: none; }
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  #nav, #curOuter, #curInner, .page-transition, .scroll-progress,
  .mobile-drawer, .back-to-top, .ambient { display: none !important; }
  body { background: white; color: black; }
}


/* ── ADDITIONAL COMPONENT STYLES FOR SPACING & RESPONSIVENESS ── */

/* Spacing and layout for About Page CTA */
.about-cta {
  background: var(--bg2);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--goldb);
  border-bottom: 1px solid var(--goldb);
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--goldt) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.about-cta p {
  font-family: var(--ff-body);
  color: var(--g1);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Mobile responsive fixes for Coach Cards to prevent squeezed text */
@media (max-width: 600px) {
  .coach-card {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 24px !important;
  }
}


/* ── ADDITIONAL MOBILE RESPONSIVENESS OVERRIDES ── */

/* Improve Home Hero layout on Mobile/Tablet */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr !important;
    padding: 110px 24px 60px !important;
    gap: 48px !important;
    text-align: center !important;
  }
  .hero-content {
    align-items: center !important;
  }
  .hero-eyebrow {
    justify-content: center !important;
  }
  .hero-sub {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-ctas {
    justify-content: center !important;
  }
  .hero-stats {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .hero-visual {
    display: block !important;
    height: 380px !important;
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 280px !important;
  }
}

/* Make schedule filters relative on mobile to prevent obscuring viewport */
@media (max-width: 768px) {
  .sch-controls {
    position: relative !important;
    top: 0 !important;
  }
  /* Reduce accordion padding slightly for mobile */
  .faq-q, .accordion-trigger {
    padding: 16px 20px !important;
  }
}

/* ── 20. KIDS & DEVELOPMENT STYLES ───────────────────── */
.level-badge.junior {
  background: rgba(76, 175, 80, 0.15);
  color: #81c784;
}
.level-badge.senior {
  background: rgba(33, 150, 243, 0.15);
  color: #64b5f6;
}
.sch-card.card-learning::before {
  background: linear-gradient(90deg, #4caf50, #81c784) !important;
}
.sch-card.card-learning .sc-type {
  color: #81c784 !important;
}

/* Learning Center Features Grid */
.learning-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.learning-feature-card {
  background: var(--bg3);
  border: 1px solid var(--g3);
  border-radius: var(--r);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.learning-feature-card:hover {
  transform: translateY(-5px);
  border-color: #81c784;
}
.lfc-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.lfc-title {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.lfc-desc {
  font-size: 0.78rem;
  color: var(--g2);
  line-height: 1.5;
}

/* Sub-program Grid & Cards (shared for Classes & Learning Centre) */
.subprog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.subprog-card {
  background: var(--bg3);
  border: 1px solid var(--g3);
  border-radius: var(--r);
  padding: 28px 24px;
  cursor: default;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.subprog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--goldt), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.subprog-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.subprog-card.green-border:hover {
  border-color: #4caf50 !important;
}
.subprog-card:hover::after {
  opacity: 1;
}
.subprog-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.subprog-name {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.subprog-desc {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.55;
  margin-bottom: 12px;
  flex-grow: 1;
}
.subprog-heading {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 20px;
}
.level-badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--goldb);
  color: var(--gold2);
  align-self: flex-start;
}
.level-badge.beginner {
  background: rgba(100, 200, 100, 0.12);
  color: #6dc86d;
}
.level-badge.intermediate {
  background: rgba(200, 151, 63, 0.18);
  color: var(--gold2);
}
.level-badge.advanced {
  background: rgba(200, 80, 80, 0.12);
  color: #e07070;
}
.level-badge.all {
  background: rgba(130, 130, 200, 0.12);
  color: #a0a0e0;
}
.level-badge.kids {
  background: rgba(200, 160, 220, 0.15);
  color: #d0a8e8;
}
.level-badge.cert {
  background: rgba(60, 200, 200, 0.12);
  color: #60d0d0;
}

/* Split Grid Layout (shared for Classes & Learning Centre) */
.disc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}
.disc-split-img {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.disc-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.disc-split-img:hover img {
  transform: scale(1.04);
}
.disc-split-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  z-index: 1;
  pointer-events: none;
}
.disc-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold2);
  margin-bottom: 16px;
}
.disc-split-content {
  padding-top: 20px;
}
.disc-split-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .95;
  color: var(--white);
  margin-bottom: 24px;
}
.disc-split-content p {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--g1);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Kids Pricing Box */
.kids-pricing-header {
  margin: 60px 0 30px;
  text-align: center;
}
.kids-pricing-header h3 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--white);
}

@media(max-width: 1024px) {
  .learning-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 900px) {
  .subprog-grid {
    grid-template-columns: 1fr;
  }
  .disc-split {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px !important;
  }
  }
  .disc-split-img {
    aspect-ratio: 16/10;
    order: -1;
  }
  .disc-split-content {
    padding-top: 0;
  }
}
@media(max-width: 600px) {
  .learning-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Zumba Highlights Page Component styles */
.zumba-highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.zumba-highlight-col {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 36px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.zumba-highlight-col:hover {
  transform: translateY(-4px);
  border-color: var(--gold3);
}
.zumba-highlight-col h3 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.z-highlight-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--g1);
  margin-bottom: 24px;
}
.disc-split-content .disc-desc {
  max-width: none;
  font-size: 1.02rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.z-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.z-check-list li:not(:last-child) {
  margin-bottom: 10px;
}
.z-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.z-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--g2);
  margin-bottom: 14px;
}
.z-check-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.z-outcome-disclaimer {
  font-size: 0.72rem;
  color: var(--g3);
  font-style: italic;
  margin-top: 20px;
}

/* How It Works Grid */
.work-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.step-card {
  background: var(--bg4);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.step-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 12px;
}
.step-card h4 {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.5;
}
.z-post-workout-burn-text {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold2);
  text-align: center;
  font-size: 1.15rem;
  margin: 32px auto 0;
  max-width: 600px;
}

/* Body Sculpting Grid */
.sculpt-targets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.sculpt-card {
  background: var(--bg4);
  border: 1px solid var(--goldb);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.sculpt-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.sculpt-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}
.sculpt-card h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.sculpt-card p {
  font-size: 0.76rem;
  color: var(--g2);
  line-height: 1.4;
}

/* Motivational Success Card */
.motivational-success-card {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg5) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--r2);
  padding: 48px 32px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.motivational-success-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, var(--goldt) 0%, transparent 60%);
  pointer-events: none;
}
.sparkle-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}
.motivational-success-card h3 {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.success-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--g1);
  max-width: 720px;
  margin: 0 auto 28px;
}
.slogan-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.slogan-badge span {
  font-family: var(--ff-display);
}
.join-us-call {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

@media(max-width: 1024px) {
  .sculpt-targets-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
  .work-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 768px) {
  .zumba-highlights-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .zumba-highlight-col {
    padding: 28px;
  }
  .sculpt-targets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 480px) {
  .sculpt-targets-grid {
    grid-template-columns: 1fr;
  }
  .work-steps-grid {
    grid-template-columns: 1fr;
  }
  .slogan-badge {
    flex-direction: column;
    gap: 4px;
    font-size: 1.3rem;
  }
  .motivational-success-card h3 {
    font-size: 2.2rem;
  }
}

/* ── 21. VIDEO SECTION STYLES ────────────────────────── */
.video-section {
  background: var(--bg2);
  padding: 80px 0;
  border-top: 1px solid var(--g3);
  border-bottom: 1px solid var(--g3);
  position: relative;
}
.video-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.video-inner .sec-tag {
  margin-bottom: 16px;
}
.video-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 0.95;
}
.video-inner h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.video-subtitle {
  font-family: var(--ff-body);
  color: var(--g1);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}
.video-container {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--goldb);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  background: #000;
  line-height: 0;
}
.video-player {
  width: 100%;
  max-height: 540px;
  display: block;
  border-radius: var(--r2);
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }
  .video-inner {
    padding: 0 20px;
  }
}

/* ── 12. NAVIGATION DROPDOWN MENU ──────────────────────── */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(13, 13, 13, 0.95);
  border: 1px solid var(--goldb);
  border-radius: 8px;
  min-width: 160px;
  padding: 10px 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dropdown-menu li {
  width: 100%;
  display: block;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--g2);
  transition: color 0.2s ease, background 0.2s ease;
  text-align: center;
  border-radius: 0;
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: var(--goldt);
}

/* Show on hover */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Arrow styling */
.nav-dropdown .arrow {
  font-size: 0.65rem;
  margin-left: 2px;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.nav-dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* Mobile submenu drawer styles */
.mobile-submenu {
  list-style: none;
  padding-left: 20px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-left: 1px solid var(--goldb);
}

.mobile-submenu li {
  margin-bottom: 8px !important;
}

.mobile-submenu a {
  font-size: 0.85rem !important;
  color: var(--g2) !important;
  font-weight: 500 !important;
  padding: 4px 0 !important;
}

.mobile-submenu a:hover {
  color: var(--gold) !important;
}


/* ── 13. LAUNCH PROMO BANNER STYLES ────────────────────── */
.launch-promo-box {
  background: linear-gradient(135deg, rgba(200, 151, 63, 0.12), rgba(13, 13, 13, 0.98));
  border: 2px solid var(--gold);
  border-radius: var(--r2);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(200, 151, 63, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.launch-promo-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 151, 63, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: promo-pulse-glow 2s infinite;
}

@keyframes promo-pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(200, 151, 63, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(200, 151, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 151, 63, 0); }
}

.promo-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.promo-title em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.promo-subtitle {
  font-size: 1.1rem;
  color: var(--g1);
  margin-bottom: 28px;
  font-weight: 600;
}

.promo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.promo-feat-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 151, 63, 0.15);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.promo-feat-icon {
  font-size: 1.25rem;
}

.promo-offer-card {
  background: rgba(200, 151, 63, 0.08);
  border: 1px dashed var(--gold);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.promo-offer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-offer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 700;
}

.promo-offer-price {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}

.promo-offer-price span {
  font-size: 0.9rem;
  font-family: var(--ff-body);
  color: var(--g2);
  margin-left: 4px;
}

.promo-offer-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-limited-badge {
  font-size: 0.8rem;
  color: #ff4d4d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: promo-blink 1s infinite alternate;
}

@keyframes promo-blink {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .launch-promo-box {
    padding: 24px;
  }
  .promo-offer-card {
    flex-direction: column;
    align-items: stretch;
  }
  .promo-offer-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ──────────────────────────────────────────────────────────
   TCLC PHASE I FINAL IMPROVEMENT STYLES
   ────────────────────────────────────────────────────────── */

/* 1. WHY CHOOSE TCLC? SECTION (Home Page) */
.why-choose-section {
  background: var(--bg);
  padding: 100px 0;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r2);
  background: linear-gradient(135deg, var(--goldt) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,175,55,0.1);
}
.why-card:hover::before {
  opacity: 1;
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.why-card:hover .why-icon {
  transform: scale(1.15) rotate(5deg);
}
.why-card h3 {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--g2);
  line-height: 1.65;
}

/* 2. QUICK HIGHLIGHTS SECTION (Home Page) */
.highlights-section {
  background: var(--bg2);
  padding: 100px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.highlight-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold3);
}
.highlight-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.highlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.highlight-card:hover .highlight-img-wrap img {
  transform: scale(1.05);
}
.highlight-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.highlight-body h3 {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.highlight-body p {
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.highlight-link {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.highlight-link:hover {
  color: var(--white);
}

/* 3. TESTIMONIALS SECTION (Home Page / About Page) */
.testimonials-section {
  background: var(--bg);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.testi-quote-icon {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testi-rating {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testi-content {
  font-size: 0.88rem;
  color: var(--g1);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--goldt);
  border: 1px solid var(--goldb);
  color: var(--gold);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.testi-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}
.testi-info span {
  display: block;
  font-size: 0.72rem;
  color: var(--g2);
  margin-top: 2px;
}

/* 4. VISUAL JOURNEY TIMELINE (About Page) */
.journey-timeline-section {
  background: var(--bg2);
  padding: 100px 0;
}
.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--goldb);
  transform: translateX(-50%);
}
.jt-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}
.jt-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.jt-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.jt-dot {
  position: absolute;
  top: 30px;
  left: 100%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--gold);
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
}
.jt-item:nth-child(even) .jt-dot {
  left: 0;
}
.jt-content {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  padding: 28px;
  border-radius: var(--r2);
  transition: border-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.jt-content:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}
.jt-year {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.jt-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.jt-desc {
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.6;
}

/* 5. FILTERABLE GALLERY ALBUMS */
.gallery-section {
  background: var(--bg);
  padding: 120px 0;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  color: var(--g2);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 4px 15px var(--goldt);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--goldb);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.85) 0%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold3);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-album {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.gallery-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(7,7,7,0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox-modal.open {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--r2);
  border: 1px solid var(--goldb);
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s, transform 0.2s;
}
.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}
.lightbox-caption {
  color: var(--g1);
  text-align: center;
  font-size: 0.95rem;
  margin-top: 15px;
}

/* 6. TRAINER DETAILS (Fitness Studio / About Us) */
.trainers-section {
  background: var(--bg2);
  padding: 100px 0;
}
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.trainer-card {
  background: var(--bg3);
  border: 1px solid var(--goldb);
  border-radius: var(--r2);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: all 0.4s var(--ease);
}
.trainer-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold3);
}
.trainer-img-wrap {
  width: 40%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--bg4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trainer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trainer-initial {
  font-size: 5rem;
  font-weight: 800;
  color: var(--goldb);
  font-family: var(--ff-display);
}
.trainer-body {
  width: 60%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trainer-body h4 {
  font-family: var(--ff-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.trainer-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}
.trainer-bio {
  font-size: 0.8rem;
  color: var(--g2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.trainer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.trainer-certs span {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--goldb);
  color: var(--gold2);
  border-radius: 4px;
}

/* RESPONSIVE MEDIA QUERIES FOR NEW COMPONENTS */
@media (max-width: 991px) {
  .why-choose-grid,
  .highlights-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trainers-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .journey-timeline::before {
    left: 20px;
  }
  .jt-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  .jt-dot {
    left: 20px !important;
  }
  .jt-item:nth-child(even) {
    left: 0;
  }
  .trainer-card {
    flex-direction: column;
  }
  .trainer-img-wrap {
    width: 100%;
    height: 240px;
    min-height: auto;
  }
  .trainer-body {
    width: 100%;
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .why-choose-grid,
  .highlights-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

