/* ══════════════════════════════════════════
   ROOT
══════════════════════════════════════════ */
:root {
  --black:    #080808;
  --dark:     #111111;
  --card:     #161616;
  --border:   #222222;
  --red:      #ff0e01;
  --red-dark: #cc0b00;
  --red-dim:  rgba(255,14,1,0.12);
  --gold:     #2b56ad;
  --gold-lt:  #4a72cc;
  --white:    #F4F0EB;
  --grey:     #b4b1b1;
  --light:    #cccccc;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════
   PAGE SYSTEM
══════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(8,8,8,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.4s;
}
.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(8,8,8,0.99);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 5vw 2rem;
  z-index: 299;
  flex-direction: column;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  cursor: pointer;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mob-menu a:hover { color: var(--white); }
.mob-cta-btn {
  margin-top: 1.2rem;
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
  padding: 1rem !important;
  border: none !important;
  font-size: 0.9rem !important;
}

/* ══════════════════════════════════════════
   GHL BOOKING MODAL
══════════════════════════════════════════ */
#ghl-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#ghl-modal.open { display: flex; }
.ghl-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.ghl-panel {
  position: relative;
  z-index: 2;
  background: var(--dark);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  width: 100%;
  max-width: 780px;
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalIn 0.3s ease both;
}
@keyframes modalIn { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.ghl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  gap: 1rem;
}
.ghl-header-left { display: flex; flex-direction: column; gap: 0.2rem; }
.ghl-header-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.ghl-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.ghl-close {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--grey);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.ghl-close:hover { border-color: var(--red); color: var(--white); }
.ghl-body {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 500px;
}
.ghl-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--dark);
  z-index: 2;
  transition: opacity 0.3s;
}
.ghl-loading.hidden { opacity: 0; pointer-events: none; }
.ghl-spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ghl-loading-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
#ghl-iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
}
.ghl-note {
  padding: 0.8rem 1.8rem;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--grey);
  font-weight: 300;
  flex-shrink: 0;
  font-style: italic;
}

/* ══════════════════════════════════════════
   FLOATING PAGE NAV
══════════════════════════════════════════ */
#page-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5vw;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#page-nav.visible { transform: translateY(0); }
.pnav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}
.pnav-back:hover { color: var(--white); }
.pnav-center {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--border);
}
.pnav-continue {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  background: var(--red);
  border: none;
  padding: 0.6rem 1.5rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.pnav-continue:hover { background: var(--red-dark); }

/* ══════════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════════ */
section { padding: clamp(4rem, 10vw, 7.5rem) 5vw; }
.inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before { content:''; display:block; width:22px; height:2px; background:var(--gold); flex-shrink:0; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}
.section-title .red  { color: var(--red); }
.section-title .gold { color: var(--gold); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.28);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); }
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════════
   HOME — HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 120px 10vw 100px;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}
.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 68% 38%, rgba(255,14,1,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 14% 72%, rgba(43,86,173,0.07) 0%, transparent 55%),
    linear-gradient(160deg, #0d0d0d 0%, #080808 100%);
  animation: bgPulse 7s ease-in-out infinite alternate;
}
@keyframes bgPulse { 0%{opacity:.6} 100%{opacity:1} }
.hero-video-wrap::after {
  content:'';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(255,255,255,0.016) 80px),
    repeating-linear-gradient(90deg,transparent,transparent 79px,rgba(255,255,255,0.016) 80px);
  pointer-events: none;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.hero-ghost {
  position: absolute;
  right: -2vw; bottom: -5vh;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14rem, 34vw, 50rem);
  line-height: 0.8;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  user-select: none;
  z-index: 3;
  letter-spacing: -0.02em;
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 920px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(43,86,173,0.45);
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before { display:block; width:6px; height:6px; background:var(--gold); border-radius:50%; }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.87;
  letter-spacing: 0.01em;
  color: var(--white);
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title .accent { color: var(--red); }
.hero-title .gold-line {
  display: block;
  color: var(--gold);
  font-size: 0.20em;
  letter-spacing: 0.07em;
  line-height: 1.55;
  padding-top: 0.3em;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--light);
  max-width: 500px;
  line-height: 1.78;
  margin-top: 1.6rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,0.09);
  animation: fadeUp 0.8s 0.42s ease both;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.25rem;
}
.scroll-indicator {
  position: absolute;
  right: 5vw; bottom: 8vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
  animation: fadeUp 1s 0.6s ease both;
}
.scroll-indicator span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
}
.scroll-bar {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--grey), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.35} 50%{opacity:1} }

/* ══════════════════════════════════════════
   HOME — ABOUT
══════════════════════════════════════════ */
#home-about { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-block {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}
.about-block::before {
  content:'';
  position: absolute;
  top:0; left:0;
  width:4px; height:100%;
  background: linear-gradient(to bottom, var(--red), var(--gold));
}
.about-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--white);
}
.about-quote em { color: var(--red); font-style: normal; }
.about-founded {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-founded-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.about-founded-text { font-size: 0.84rem; color: var(--grey); line-height: 1.55; }
.about-text p {
  font-size: clamp(0.93rem, 1.8vw, 1.02rem);
  line-height: 1.82;
  color: var(--light);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.about-text p strong { color: var(--white); font-weight: 500; }
.values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.vpill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(43,86,173,0.4);
  padding: 0.35rem 0.85rem;
}

/* ══════════════════════════════════════════
   VALUES STRIP
══════════════════════════════════════════ */
#values-strip {
  background: var(--red);
  padding: 3.2rem 5vw;
  overflow: hidden;
}
.vs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.vs-track {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1200px;
  margin: 0 auto;
}
.vs-track::-webkit-scrollbar { display: none; }
.vs-item {
  flex: 0 0 auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  padding-right: 2.8rem;
  display: flex;
  align-items: center;
  gap: 2.8rem;
  line-height: 1;
}
.vs-item::after { content:'✦'; color:rgba(255,255,255,0.28); font-size:0.48em; }

/* ══════════════════════════════════════════
   WHY
══════════════════════════════════════════ */
#home-why { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
}
.why-card {
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.why-card:hover { border-color: var(--red); }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 0.8rem; right: 1.1rem;
}
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-title::before { content:''; display:block; width:20px; height:2px; background:var(--red); margin-bottom:0.8rem; }
.why-text { font-size: 0.83rem; color: var(--grey); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
#home-team { background: var(--dark); }
.team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
  margin: 2.5rem auto 0;
}
.team-card {
  background: var(--dark);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
}
.team-card.primary { background: var(--card); }
.team-card.primary::before {
  content:'';
  position: absolute;
  top:0; left:0; right:0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.team-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.team-card.primary .team-role { color: var(--gold); }
.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}
.team-card.primary .team-name { font-size: 2.2rem; }
.team-desc { font-size: 0.83rem; color: var(--grey); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════════
   TRAINING PROGRAMS
══════════════════════════════════════════ */
#home-classes { background: var(--black); padding: clamp(4rem,10vw,7.5rem) 5vw; }
.classes-header {
  max-width: 1200px;
  margin: 0 auto 2.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.classes-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.cls-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--grey);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.46rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cls-filter:hover { border-color: rgba(255,14,1,0.5); color: var(--light); }
.cls-filter.active { background: var(--red); border-color: var(--red); color: #fff; }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.cls-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.cls-card:hover { background: #0f0f0f; border-color: var(--cls-color, var(--red)); transform: translateY(-2px); }
.cls-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 85% 85% at 75% 20%, var(--cls-glow, rgba(255,14,1,0.12)) 0%, transparent 70%);
  opacity: 0.6; transition: opacity 0.4s; pointer-events: none;
}
.cls-card:hover .cls-card-glow { opacity: 1; }
.cls-card-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.35;
  transition: opacity 0.4s;
}
.cls-card:hover .cls-card-grid { opacity: 0.8; }
.cls-card-topbar {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cls-color, var(--red));
  opacity: 0.4; transition: opacity 0.3s;
}
.cls-card:hover .cls-card-topbar { opacity: 1; }
.cls-card-body { position: relative; z-index: 2; padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.cls-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; }
.cls-card-icon { font-size: 1.4rem; }
.cls-card-age {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cls-color, var(--gold));
  border: 1px solid var(--cls-color, var(--gold));
  padding: 0.2rem 0.55rem;
  opacity: 0.75;
}
.cls-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  line-height: 0.92; letter-spacing: 0.03em; color: #fff;
  margin-bottom: 0.38rem;
}
.cls-card-tagline { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; color: var(--cls-color, var(--gold)); font-style: italic; margin-bottom: 0.45rem; }
.cls-card-sub { font-size: 0.74rem; color: #868484; line-height: 1.58; font-family: 'Barlow', sans-serif; font-weight: 300; flex: 1; }
.cls-card-cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.9rem; padding-top: 0.85rem;
  border-top: 1px solid #181818;
}
.cls-card-cta-label { font-size: 0.58rem; color: #383838; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; }
.cls-card-arrow { font-size: 0.85rem; color: #2c2c2c; transition: color 0.3s; font-weight: 700; }
.cls-card:hover .cls-card-arrow { color: var(--cls-color, var(--red)); }

/* ══════════════════════════════════════════
   AI CHAT MODAL
══════════════════════════════════════════ */
#ai-class-modal {
  display: none;
  position: fixed; inset: 0; z-index: 600;
  align-items: stretch;
  justify-content: flex-end;
}
#ai-class-modal.open { display: flex; }
.ai-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.ai-modal-panel {
  position: relative; z-index: 2;
  width: min(100%, 960px);
  height: 100svh;
  background: #050505;
  display: flex; flex-direction: column;
  animation: slideFromRight 0.35s ease both;
  border-left: 1px solid #1a1a1a;
}
@keyframes slideFromRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
.ai-panel-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.4rem; height: 56px; flex-shrink: 0;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid #181818;
}
.ai-panel-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.06em; color: #fff; }
.ai-panel-status { display: flex; align-items: center; gap: 6px; }
.ai-panel-dot { width: 6px; height: 6px; border-radius: 50%; animation: aiPulse 2s ease-in-out infinite; }
@keyframes aiPulse { 0%,100%{opacity:0.5} 50%{opacity:1} }
.ai-panel-close {
  width: 34px; height: 34px; background: #0f0f0f; border: 1px solid #252525;
  color: #666; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; line-height: 1;
}
.ai-panel-close:hover { border-color: var(--red); color: #fff; }
.ai-panel-tabs { display: none; }
@media(max-width:640px){
  .ai-panel-tabs {
    display: flex; flex-shrink: 0;
    background: #070707; border-bottom: 1px solid #181818;
  }
  .ai-panel-tab {
    flex: 1; background: none; border: none; border-bottom: 2px solid transparent;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.7rem 0.5rem; cursor: pointer; transition: all 0.2s; color: #444;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .ai-panel-tab.active {
    border-bottom-color: var(--ai-tab-color, var(--red));
    color: var(--ai-tab-color, var(--red));
  }
  .ai-panel-body {
    flex: 1; display: flex; overflow: hidden; position: relative;
  }
  .ai-info-pane, .ai-chat-pane {
    position: absolute; inset: 0; display: flex; flex-direction: column;
  }
  .ai-info-pane { overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .ai-info-pane.hidden, .ai-chat-pane.hidden { display: none; }
}
.ai-panel-body { flex: 1; display: flex; overflow: hidden; }
@media(min-width:641px){
  .ai-panel-body { flex-direction: row; }
  .ai-info-pane {
    width: min(42%, 380px); flex-shrink: 0;
    overflow-y: auto; border-right: 1px solid #161616;
    position: relative; background: #030303;
  }
  .ai-chat-pane { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
}
.ai-info-inner { position: relative; z-index: 2; padding: 1.6rem; }
.ai-info-grid-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ai-info-grid-lines {
  position: absolute; inset: 0;
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}
.ai-info-badge {
  display: inline-flex; align-items: center;
  border: 1px solid transparent; padding: 0.28rem 0.7rem; margin-bottom: 0.75rem;
}
.ai-info-badge span { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.ai-info-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 5vw, 2.6rem); line-height: 1.1; letter-spacing: 0.02em; color: #fff; margin-bottom: 0.5rem; }
.ai-info-tagline { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; font-style: italic; margin-bottom: 0.6rem; }
.ai-info-desc { font-size: 0.8rem; color: #888; line-height: 1.68; font-weight: 300; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; }
.ai-info-times {
  border: 1px solid transparent; padding: 0.6rem 0.85rem; margin-bottom: 0.9rem;
  background: rgba(255,255,255,0.03);
}
.ai-info-times-label { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.2rem; }
.ai-info-times-val { font-size: 0.75rem; color: #ccc; line-height: 1.55; font-weight: 300; font-family: 'Barlow', sans-serif; }
.ai-info-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin-bottom: 0.9rem; }
.ai-info-stat { background: rgba(255,255,255,0.03); border: 1px solid #1e1e1e; padding: 0.5rem 0.7rem; }
.ai-info-stat-k { font-size: 0.53rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #4a4a4a; margin-bottom: 2px; }
.ai-info-stat-v { font-size: 0.8rem; font-weight: 700; color: #ddd; }
.ai-ask-book-btn {
  width: 100%; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.85rem; transition: opacity 0.2s;
}
.ai-ask-book-btn:hover { opacity: 0.88; }
.ai-chat-header {
  padding: 0.75rem 1.2rem; border-bottom: 1px solid #141414; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.ai-chat-header-icon { font-size: 1.1rem; }
.ai-chat-header-title { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ai-chat-header-sub { font-size: 0.72rem; color: #555; font-family: 'Barlow', sans-serif; font-weight: 300; }
.ai-messages {
  flex: 1; overflow-y: auto; padding: 1rem 1.1rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
}
.ai-messages::-webkit-scrollbar { width: 3px; }
.ai-messages::-webkit-scrollbar-thumb { border-radius: 2px; }
.ai-msg { display: flex; gap: 6px; animation: msgIn 0.25s ease both; }
@keyframes msgIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
.ai-msg.user { justify-content: flex-end; }
.ai-msg-avatar { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.ai-msg-bubble {
  max-width: 80%; padding: 0.72rem 0.9rem;
  font-size: 0.82rem; line-height: 1.68; color: #cecece;
  font-family: 'Barlow', sans-serif; font-weight: 300;
}
.ai-msg.user .ai-msg-bubble { border-radius: 10px 10px 2px 10px; }
.ai-msg.bot .ai-msg-bubble { border-radius: 10px 10px 10px 2px; background: rgba(255,255,255,0.04); border: 1px solid #1c1c1c; }
.ai-typing { display: flex; gap: 6px; }
.ai-typing-dots { background: rgba(255,255,255,0.04); border: 1px solid #1c1c1c; border-radius: 10px 10px 10px 2px; padding: 10px 14px; display: flex; gap: 4px; align-items: center; }
.ai-typing-dot { width: 6px; height: 6px; border-radius: 50%; }
.ai-quick-chips {
  padding: 0 1.1rem 0.6rem;
  display: flex; gap: 0.4rem; overflow-x: auto; flex-shrink: 0;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ai-quick-chips::-webkit-scrollbar { display: none; }
.ai-chip {
  flex-shrink: 0; background: transparent;
  border: 1px solid #252525; color: #555;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.68rem; letter-spacing: 0.06em;
  padding: 0.38rem 0.8rem; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.ai-chip:hover, .ai-chip:active { border-color: var(--ai-chip-color, var(--red)); color: #ccc; }
.ai-input-row {
  padding: 0.7rem 1rem; border-top: 1px solid #141414;
  background: rgba(0,0,0,0.85);
  display: flex; gap: 0.5rem; flex-shrink: 0;
}
.ai-text-input {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid #222; color: #e0e0e0;
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: 0.88rem; padding: 0.68rem 0.9rem;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; border-radius: 0;
}
.ai-text-input::placeholder { color: #3a3a3a; }
.ai-send-btn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; padding: 0.68rem 1.1rem; cursor: pointer;
  transition: all 0.2s; flex-shrink: 0;
}
.ai-send-btn:disabled { background: #181818 !important; color: #3a3a3a !important; cursor: not-allowed; }
.ai-notif-badge { background: var(--cls-color, var(--red)); color: #000; border-radius: 50%; width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.5rem; font-weight: 700; }

/* ══════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════ */
#home-reviews {
  background: var(--dark);
  padding: clamp(4rem, 10vw, 7.5rem) 5vw;
  position: relative;
  overflow: hidden;
}
#home-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,14,1,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-header {
  max-width: 1200px;
  margin: 0 auto 2.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.reviews-header-left { flex: 1; }
.reviews-header-right {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.reviews-widget-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Force dark theme override for widget */
  --widget-bg: var(--dark);
}
/* Style the iframe container */
.reviews-widget-wrap iframe.lc_reviews_widget {
  border-radius: 0;
  min-height: 300px;
}
/* Decorative border accent */
.reviews-widget-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red), transparent);
  z-index: 3;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#home-faq { background: var(--black); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6vw;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar-body { margin-top: 1.8rem; }
.faq-sidebar-body p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover .faq-q-text { color: var(--white); }
.faq-q-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--light);
  line-height: 1.35;
  transition: color 0.2s;
}
.faq-item.open .faq-q-text { color: var(--white); }
.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 1.4rem; }
.faq-a-inner { font-size: 0.88rem; color: var(--grey); line-height: 1.78; font-weight: 300; }
.faq-a-inner strong { color: var(--light); font-weight: 500; }
.faq-a-inner a { color: var(--gold); text-decoration: none; }
.faq-a-inner a:hover { text-decoration: underline; }
.faq-a-inner ul {
  margin: 0.6rem 0 0 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#home-contact { background: var(--dark); position: relative; overflow: hidden; }
.contact-bg {
  position: absolute;
  bottom: -3vw; left: -1vw;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 20rem);
  color: rgba(255,255,255,0.016);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 1.4rem 0;
}
.contact-tagline .accent { color: var(--red); }
.contact-sub { font-size: 0.9rem; color: var(--grey); line-height: 1.78; font-weight: 300; margin-bottom: 2rem; }
.contact-rows { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s;
}
.contact-row:hover { border-color: var(--red); }
.cri { font-size: 1.1rem; opacity: 0.65; }
.cr-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.1rem;
}
.cr-val { font-size: 0.88rem; color: var(--white); }
.cr-val a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════
   TIMETABLE PAGE
══════════════════════════════════════════ */
#page-timetable { padding-top: 68px; background: var(--black); padding-bottom: 80px; }
.tt-hero {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 5vw 3rem;
  position: relative;
  overflow: hidden;
}
.tt-hero::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 100% at 88% 50%, rgba(43,86,173,0.07) 0%, transparent 70%);
}
.tt-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.members-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(43,86,173,0.1);
  border: 1px solid rgba(43,86,173,0.4);
  padding: 0.65rem 1.2rem;
  margin-top: 1.2rem;
}
.members-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.tt-body { max-width: 1100px; margin: 0 auto; padding: 3rem 5vw; }
.tt-table-wrap { overflow-x: auto; border: 1px solid var(--border); margin-bottom: 2.5rem; }
.tt-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.tt-table th {
  background: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.tt-table th:first-child { color: var(--gold); min-width: 75px; }
.tt-table td {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0;
  vertical-align: top;
  min-width: 100px;
}
.tt-table td:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 0.9rem 1.1rem;
  background: var(--dark);
  white-space: nowrap;
  vertical-align: middle;
}
.tt-table tr:last-child td { border-bottom: none; }
.tt-cell { padding: 0.5rem; min-height: 56px; }
.tt-class {
  background: var(--card);
  border-left: 3px solid var(--red);
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.4rem;
}
.tt-class.junior   { border-left-color: var(--gold); }
.tt-class.kids     { border-left-color: #4ade80; }
.tt-class.ladies   { border-left-color: #f472b6; }
.tt-class.sparring { border-left-color: orange; background: rgba(255,165,0,0.07); }
.tt-class.taster   { border-left-color: #a855f7; background: rgba(168,85,247,0.07); }
.tt-class.pt       { border-left-color: var(--border); background: transparent; }
.tt-class.pt .tt-class-name { color: var(--grey); font-size: 0.62rem; }
.tt-class-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.tt-class-time { font-size: 0.66rem; color: var(--grey); font-weight: 300; }
.tt-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.tt-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.tt-dot { width:12px; height:12px; flex-shrink:0; }
.tt-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 640px; }
.tt-cta {
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.2s;
}
.tt-cta:hover { border-color: var(--red); }
.tt-cta.gold-cta { border-color: rgba(43,86,173,0.35); }
.tt-cta.gold-cta:hover { border-color: var(--gold); }
.tt-cta-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.6rem;
}
.tt-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.tt-cta-sub { font-size: 0.8rem; color: var(--grey); line-height: 1.55; font-weight: 300; margin-bottom: 1.2rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { cursor: pointer; display: flex; align-items: center; }
.footer-logo img { height: 36px; width: auto; display: block; opacity: 0.85; transition: opacity 0.2s; }
.footer-logo:hover img { opacity: 1; }
.footer-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}
.footer-copy { font-size: 0.76rem; color: var(--grey); font-weight: 300; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1000px){
  .nav-links { display:none; }
  .hamburger { display:flex; }
}
@media(max-width:900px){
  .about-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .team-card.primary { grid-column:span 2; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .contact-inner { grid-template-columns:1fr; }
  .faq-layout { grid-template-columns:1fr; }
  .faq-sidebar { position:static; }
  .tt-ctas { grid-template-columns:1fr; max-width:100%; }
}
@media(max-width:600px){
  .team-grid { grid-template-columns:1fr; }
  .team-card.primary { grid-column:span 1; }
  .why-grid { grid-template-columns:1fr; }
  .about-block { padding:1.8rem; }
  .hero-stats { gap:1.5rem; }
  .hero-title { font-size: clamp(3.2rem, 14vw, 5rem); }
  .ghl-panel { max-height: 92svh; }
  .classes-grid { grid-template-columns:1fr; }
}
