/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --dark:    #1B1918;
  --dark-2:  #252220;
  --red:     #E8352A;
  --red-hover: #c92b20;
  --off-white: #F2EDE6;
  --light-bg: #EDEBE6;
  --white:   #FFFFFF;
  --text-muted: #888480;
  --border:  rgba(255,255,255,0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITIES ──────────────────────────────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 80px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.2s ease;
}
.btn-red {
  background: var(--red); color: var(--white);
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5); color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover { background: #111; }

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 10px;
  border: 1.5px solid var(--red);
  color: var(--red);
}

/* ─── HEADER — styles now inline in index.php (self-contained) ─── */
/* btn-glow & btn-lg kept here for hero buttons */
.btn-glow { transition: all 0.3s ease; }
.btn-glow:hover {
  box-shadow: 0 4px 18px rgba(232,53,42,0.4);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 14px;
  border-radius: 6px;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #0a0908;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* LCP: real <img> in markup (see index.php), not CSS background */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Global `img { max-width:100% }` breaks full-bleed cover on Safari/iOS */
  max-width: none;
  object-fit: cover;
  /* Favour right side (blue corner) — left / red side falls toward edge */
  object-position: 72% center;
  z-index: 0;
}

/* Banner tuning: crush left (red), keep mid-right clear for blue, darken far right */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(6,5,4,0.96) 0%,
      rgba(6,5,4,0.88) 12%,
      rgba(6,5,4,0.45) 26%,
      rgba(6,5,4,0.12) 42%,
      rgba(6,5,4,0) 50%,
      rgba(6,5,4,0) 56%,
      rgba(4,3,2,0.28) 66%,
      rgba(3,2,2,0.58) 82%,
      rgba(2,2,2,0.88) 100%),
    linear-gradient(to top,
      rgba(8,7,6,0.92) 0%,
      rgba(8,7,6,0.35) 22%,
      transparent 45%),
    linear-gradient(to bottom,
      rgba(8,7,6,0.55) 0%,
      transparent 14%);
}

/* Subtle vignette for cinematic depth */
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  box-shadow: inset 0 0 200px 40px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* Ghosted watermark text */
.hero-ghost {
  position: absolute;
  bottom: 4%; right: -4%;
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 400px);
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  color: rgba(255,255,255,0.02);
  white-space: nowrap; line-height: 1;
  pointer-events: none; z-index: 2;
  letter-spacing: -0.04em;
}

/* Red glow behind headline area */
.hero-glow {
  position: absolute;
  top: 30%; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,53,42,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  filter: blur(60px);
}

/* Main content container */
.hero-body {
  position: relative; z-index: 3;
  width: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding: 0;
}
.hero-text {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
}

/* Label with red accent line */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.hero-label__line {
  width: 36px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* Headline — massive and impactful */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 800px;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--red);
  text-shadow: 0 0 80px rgba(232,53,42,0.2);
}

/* Description */
.hero-desc {
  font-family: 'Inter', var(--font-body);
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Buttons */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-btn svg { flex-shrink: 0; }
.hero-btn--primary {
  background: var(--red);
  color: #fff;
  border: none;
}
.hero-btn--primary:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 28px rgba(232,53,42,0.45);
  transform: translateY(-2px);
}
.hero-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.hero-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.04);
}

/* Stats row */
.hero-metrics {
  display: flex;
  align-items: stretch;
  max-width: 680px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-metric {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-metric:last-child { border-right: none; }
.hero-metric__val {
  display: block;
  font-family: var(--font-display);
  font-size: 38px; font-weight: 900;
  line-height: 1;
  color: #fff;
}
.hero-metric__val em {
  font-style: normal;
  color: var(--red);
}
.hero-metric__key {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; right: 80px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll__bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll__tag {
  font-family: 'Inter', var(--font-body);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.4); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1); }
}

/* Entrance animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s ease forwards;
}
.fade-in--d1 { animation-delay: 0.15s; }
.fade-in--d2 { animation-delay: 0.3s;  }
.fade-in--d3 { animation-delay: 0.45s; }
.fade-in--d4 { animation-delay: 0.6s;  }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TRUST BAR ──────────────────────────────────────── */
.trust-bar {
  background: var(--dark-2);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.trust-bar-track { overflow: hidden; }
.trust-bar-inner {
  display: flex; align-items: center;
  gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.trust-bar-item {
  display: inline-block;
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.trust-bar-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  vertical-align: middle;
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── OUR EXPERTISE ──────────────────────────────────── */
.expertise {
  background: #ffffff;
  padding: 100px 0;
}
.expertise__label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.expertise__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 16px;
  max-width: 700px;
}
.expertise__hubline {
  font-family: 'Inter', var(--font-body);
  font-size: 15px;
  color: rgba(27,25,24,0.55);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}
.expertise__hubline a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.expertise__hubline a:hover { color: var(--dark); }

/* Grid: 3 cols desktop → 2 tablet → 1 mobile */
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/* Card */
.exp-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.exp-card:hover {
  border-color: rgba(232,53,42,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Featured card (SAMBO) */
.exp-card--featured {
  border-color: var(--red);
  background: linear-gradient(170deg, rgba(232,53,42,0.06) 0%, var(--dark-2) 40%);
}
.exp-card--featured:hover {
  border-color: var(--red);
  box-shadow: 0 12px 48px rgba(232,53,42,0.15);
}

/* Card image */
.exp-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.exp-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.85);
  transition: transform 0.5s ease, filter 0.3s ease;
}
.exp-card:hover .exp-card__img img {
  transform: scale(1.05);
  filter: brightness(0.75) saturate(1);
}

/* "Only in Kerala" badge */
.exp-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 5px 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}

/* Card body */
.exp-card__body {
  padding: 28px 28px 32px;
  position: relative;
}
.exp-card__num {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.exp-card__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 90%;
}
.exp-card--featured .exp-card__title {
  color: var(--red);
}
.exp-card__desc {
  font-family: 'Inter', var(--font-body);
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.exp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid rgba(232,53,42,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.exp-card__link:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.35);
}

/* ─── DISCIPLINES ────────────────────────────────────── */
.disciplines {
  background: var(--off-white);
  padding: 96px 0;
}
.disciplines .container { color: var(--dark); }
.section-label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.section-heading-xl {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 56px;
}
.section-heading-lg {
  font-size: clamp(30px, 4vw, 56px);
  margin-bottom: 48px;
}

.disciplines-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.discipline-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-2);
  cursor: pointer;
}
.discipline-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.6) saturate(0.8);
}
.discipline-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.75) saturate(1);
}
.discipline-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,25,24,0.9) 0%, transparent 60%);
  transition: opacity 0.3s;
}
.discipline-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
}
.discipline-card-tag {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.discipline-card-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}
/* Big card spans 2 cols */
.discipline-card.big {
  grid-row: span 1;
  grid-column: span 2;
}

/* ─── LOCATIONS ──────────────────────────────────────── */
/* ─── LOCATIONS ─────────────────────────────────────────── */
.locations {
  background: #0f0f0f;
  padding: 100px 0;
}

.locations__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.locations__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.locations__label-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.locations__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}

.locations__sub {
  max-width: 340px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  text-align: right;
  padding-bottom: 4px;
}

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

/* Location card */
.loc-card {
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.loc-card:hover {
  border-color: rgba(232,53,42,0.35);
  transform: translateY(-3px);
  z-index: 1;
}

/* Ghost number */
.loc-card__number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* NEW badge */
.loc-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border-radius: 2px;
  z-index: 2;
}

/* Top red line */
.loc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.loc-card:hover::before {
  transform: scaleX(1);
}

/* Card body */
.loc-card__body {
  padding: 36px 32px 32px;
}

.loc-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.loc-card__subtitle {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.loc-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
}

/* Divider */
.loc-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 20px;
}

/* Info rows */
.loc-card__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.loc-card__row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.loc-card__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
  opacity: 0.85;
}
.loc-card__row p {
  font-family: 'Inter', var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.loc-card__row a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.loc-card__row a:hover {
  color: var(--red);
}

/* Tags */
.loc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 26px;
}
.loc-card__tags span {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.loc-card__tags span:hover {
  color: var(--white);
  background: rgba(232,53,42,0.12);
  border-color: rgba(232,53,42,0.3);
}

/* Buttons */
.loc-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.loc-btn svg { flex-shrink: 0; }
.loc-btn--red {
  background: var(--red);
  color: #fff;
  border: 1.5px solid var(--red);
}
.loc-btn--red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 6px 24px rgba(232,53,42,0.45);
  transform: translateY(-1px);
}
.loc-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.loc-btn--outline:hover {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* ─── PROGRAMS ───────────────────────────────────────── */
.programs {
  background: var(--dark);
  padding: 96px 0;
}
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.program-card {
  background: var(--dark-2);
  padding: 56px 48px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
}
.program-card-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.program-card-heading {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.program-card-desc {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 32px;
  max-width: 340px;
}
.program-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.program-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.program-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SCHEDULE ───────────────────────────────────────── */
.schedule {
  background: var(--light-bg);
  padding: 96px 0;
  color: var(--dark);
}
.schedule-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.9; letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 800px;
}
.schedule-tabs {
  display: flex; gap: 3px;
  margin-bottom: 0;
}
.schedule-tab {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 32px;
  background: rgba(27,25,24,0.08);
  color: rgba(27,25,24,0.4);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.schedule-tab.active {
  background: var(--dark);
  color: var(--white);
}
.schedule-tab:hover:not(.active) {
  background: rgba(27,25,24,0.15);
  color: var(--dark);
}
.schedule-panel { display: none; }
.schedule-panel.active { display: block; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-top: none;
}
.schedule-table thead tr {
  background: var(--dark);
}
.schedule-table thead th {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 18px 28px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.schedule-table tbody tr {
  border-bottom: 1px solid rgba(27,25,24,0.12);
  transition: background 0.15s;
}
.schedule-table tbody tr:hover { background: rgba(27,25,24,0.04); }
.schedule-table tbody td {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  border-right: 1px solid rgba(27,25,24,0.1);
}
.schedule-table tbody td:last-child { border-right: none; }
.schedule-table tbody td.timing {
  font-size: 15px; font-weight: 600;
  color: rgba(27,25,24,0.65);
}
.schedule-footer {
  padding: 20px 28px;
  background: rgba(27,25,24,0.04);
  border-top: 2px solid var(--red);
  display: flex; align-items: center; gap: 8px;
}
.schedule-footer-text {
  font-size: 14px; color: rgba(27,25,24,0.65);
}
.schedule-footer-link {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}
.schedule-footer-link:hover { text-decoration-color: var(--red); }

/* ─── KIDS BANNER ────────────────────────────────────── */
.kids-banner {
  background: var(--dark);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.kids-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.kids-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.kids-banner__line {
  width: 32px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.kids-banner__label span {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.kids-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.kids-banner__desc {
  font-family: 'Inter', var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 640px;
}
.kids-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.kids-banner__btn:hover {
  background: var(--red-hover);
  box-shadow: 0 4px 20px rgba(232,53,42,0.4);
  transform: translateY(-1px);
}

/* ─── COACHES ────────────────────────────────────────── */
.coaches {
  background: var(--off-white);
  padding: 100px 0;
}
.coaches__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 56px;
}
.coaches__heading em {
  font-style: italic;
  color: var(--red);
}

.coaches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Coach card */
.coach-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.coach-card__img {
  aspect-ratio: 16 / 12;
  overflow: hidden;
  background: var(--dark-2);
}
.coach-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.9);
  transition: filter 0.4s, transform 0.4s;
}
.coach-card:hover .coach-card__img img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}
.coach-card__body {
  padding: 28px 28px 32px;
}
.coach-card__tag {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,53,42,0.08);
  border-radius: 3px;
  margin-bottom: 14px;
}
.coach-card__name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.coach-card__disc {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.coach-card__bio {
  font-family: 'Inter', var(--font-body);
  font-size: 14px;
  color: rgba(27,25,24,0.55);
  line-height: 1.7;
}

/* "Meet our team" link */
.coaches__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.2s;
}
.coaches__link:hover { gap: 14px; }

/* ─── GOOGLE REVIEWS ─────────────────────────────────── */
.reviews {
  background: var(--dark);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.reviews-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.reviews-rating-block {
  display: flex; align-items: center; gap: 20px;
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 900;
  line-height: 1;
}
.reviews-score-sub {
  display: flex; flex-direction: column; gap: 4px;
}
.stars { display: flex; gap: 3px; }
.star { color: #FFB800; font-size: 18px; }
.reviews-count {
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.05em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.review-card {
  background: var(--dark-2);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.review-card-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.review-card-stars { display: flex; gap: 3px; }
.review-card-stars .star { font-size: 14px; }
.review-card-date {
  font-size: 12px; color: var(--text-muted);
}
.review-card-text {
  font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 20px;
}
.review-card-author {
  display: flex; align-items: center; gap: 12px;
}
.review-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-card-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.review-card-meta {
  font-size: 12px; color: var(--text-muted);
}
.reviews-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ─── ABOUT / VIDEO ──────────────────────────────────── */
.about {
  background: #ffffff;
  padding: 96px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-video-thumb {
  width: 100%; aspect-ratio: 16/11;
  background: #1a1918 url('../assets/images/home/gallery-01.webp') center/cover no-repeat;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.about-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.about-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.about-play-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}
.about-play-circle:hover { transform: scale(1.1); background: var(--red-hover); }
.about-play-circle svg { margin-left: 4px; }

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--red);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900;
  line-height: 1;
}
.about-badge-label {
  font-family: var(--font-display);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--dark);
}
.about-heading em { font-style: italic; color: var(--red); }
.about-desc {
  font-size: 15px; color: rgba(27,25,24,0.6);
  line-height: 1.8; margin-bottom: 36px;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 40px;
}
.about-stat {
  border-left: 3px solid var(--red);
  padding-left: 16px;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 900;
  line-height: 1;
  color: var(--dark);
}
.about-stat-num span { color: var(--red); }
.about-stat-label {
  font-size: 12px; color: rgba(27,25,24,0.5);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}

/* ─── FINAL CTA ──────────────────────────────────────── */
.final-cta {
  background: var(--red);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-ghost {
  position: absolute; bottom: -30px; right: -20px;
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 320px);
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  color: rgba(0,0,0,0.12);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}
.final-cta .container {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
}
.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.9; letter-spacing: -0.02em;
  max-width: 700px;
}
.final-cta-actions {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 12px;
  flex-shrink: 0;
}
.btn-white {
  background: var(--white); color: var(--dark);
}
.btn-white:hover { background: var(--off-white); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.6); color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #111010;
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.6; margin-bottom: 24px;
  max-width: 260px;
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col-heading {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links li a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--white); }
.footer-address {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-address strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.footer-address a { color: var(--red); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .hero-text { padding: 110px 40px 52px; }
  .hero-scroll { right: 40px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .expertise__grid { grid-template-columns: repeat(2, 1fr); }
  .coaches__grid { grid-template-columns: repeat(2, 1fr); }
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
  .discipline-card.big { grid-column: span 2; }
  .programs-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .final-cta .container { flex-direction: column; align-items: flex-start; }
  /* Locations: stack to single column on tablet */
  .locations__grid { grid-template-columns: 1fr; }
  .locations__header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .locations__sub { text-align: left; max-width: 100%; }
}

/* Phones + tablets: shift crop so blue fighter stays in frame (was only ≤768, too narrow) */
@media (max-width: 991px) {
  .hero__bg {
    object-position: 86% center;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Hero mobile */
  .hero { min-height: 100svh; min-height: 100dvh; }
  .hero-overlay {
    background:
      linear-gradient(90deg,
        rgba(6,5,4,0.94) 0%,
        rgba(6,5,4,0.55) 35%,
        rgba(6,5,4,0.18) 52%,
        rgba(4,3,2,0.45) 72%,
        rgba(2,2,2,0.82) 100%),
      linear-gradient(to bottom,
        rgba(8,7,6,0.88) 0%,
        rgba(8,7,6,0.45) 40%,
        rgba(8,7,6,0.92) 100%);
  }
  .hero-text { padding: 110px 20px 40px; }
  .hero-title { font-size: clamp(40px, 11vw, 72px); }
  .hero-desc { font-size: 14px; margin-bottom: 28px; }
  .hero-label { font-size: 11px; letter-spacing: 0.15em; }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-btn { justify-content: center; padding: 14px 28px; }
  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: none;
    border-top: none;
    padding-top: 0;
  }
  .hero-metric {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 0 14px;
  }
  .hero-metric:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.06);
    padding-right: 14px;
  }
  .hero-metric:nth-child(n+3) { border-bottom: none; }
  .hero-scroll { display: none; }
  .hero-glow { display: none; }

  /* Expertise + Locations mobile */
  .expertise { padding: 64px 0; }
  .expertise__grid { grid-template-columns: 1fr; }
  .locations { padding: 64px 0; }
  .locations__header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .locations__sub { text-align: left; max-width: 100%; }
  .locations__grid { grid-template-columns: 1fr; }
  .kids-banner__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .kids-banner { padding: 40px 0; }
  .coaches { padding: 64px 0; }
  .coaches__grid { grid-template-columns: 1fr; }
  .coach-card__body { padding: 24px 22px 28px; }
  .loc-card__number { font-size: 70px; }
  .loc-card__body { padding: 28px 22px; }
  .loc-card__title { font-size: 20px; }
  .loc-card__actions { flex-direction: column; }
  .loc-btn { justify-content: center; }
  .exp-card__body { padding: 24px 22px 28px; }
  .exp-card__title { font-size: 18px; }

  /* Other sections */
  .reviews-grid { grid-template-columns: 1fr; }
  .disciplines-grid { grid-template-columns: 1fr; }
  .discipline-card.big { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .disciplines, .programs, .schedule, .reviews, .about, .final-cta { padding: 64px 0; }
}
