
:root {
  --black:   #050505;
  --deep:    #0a0a0a;
  --card:    #111111;
  --border:  #1e1e1e;
  --gold:    #c94444;
  --gold2:   #e05e5e;
  --red:     #e01010;
  --white:   #f5f5f0;
  --muted:   #888880;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── GOLD LINE ── */
.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ── TOP BAR ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 70px;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.top-bar-logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
}

.top-bar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.top-bar-nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.top-bar-nav a:hover { color: var(--gold); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s !important;
  text-decoration: none;
  display: inline-block;
}

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

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.show { display: flex; }
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta { text-align: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.25);
  transform: scale(1.05);
  transition: transform 8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.1) 40%, rgba(5,5,5,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: heroFade 1.2s ease forwards;
  opacity: 0;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245,245,240,0.7);
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.5;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1px;
}

.stat {
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

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

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

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

.section-body {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(245,245,240,0.7);
  max-width: 600px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
  z-index: 1;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  pointer-events: none;
}

.about-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.about-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(245,245,240,0.8);
}

.about-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── PROGRAMS ── */
.programs-section { background: var(--deep); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
  border: 1px solid var(--border);
}

.program-card {  background: var(--card);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.program-card:hover { background: #151515; }
.program-card:hover::before { transform: scaleX(1); }

.program-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}
.program-card:hover .program-num { color: rgba(201,168,76,0.15); }

.program-video-wrap {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 380px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,68,68,0.2);
  position: relative;
  background: #000;
}

.program-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-video-wide {
  aspect-ratio: 4 / 3;
  max-height: 280px;
}

.program-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.program-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.program-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.program-tag {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.3rem 0.7rem;
}

/* ── SCHEDULE ── */
.schedule-section { background: var(--black); }

.schedule-image-wrap {
  margin: 4rem auto 0;
  position: relative;
  border: 1px solid rgba(201,68,68,0.2);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,68,68,0.15), transparent 40%);
  max-width: 780px;
}

.schedule-image {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.02);
  cursor: zoom-in;
}

.schedule-zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.schedule-zoom-overlay.show { display: flex; }

.schedule-zoom-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.schedule-zoom-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 3001;
  transition: border-color 0.3s, color 0.3s;
}
.schedule-zoom-close:hover { border-color: var(--gold); color: var(--gold); }

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4rem;
  font-size: 0.8rem;
}

.schedule-table th {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.schedule-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(30,30,30,0.8);
  color: rgba(245,245,240,0.75);
  vertical-align: middle;
}

.schedule-table tr:hover td { background: rgba(201,168,76,0.03); }

.schedule-class {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
}

.schedule-badge {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.badge-adult  { border-color: var(--gold); color: var(--gold); }
.badge-kids   { border-color: #4a9eff; color: #4a9eff; }
.badge-teens  { border-color: #9b59b6; color: #9b59b6; }
.badge-muay   { border-color: var(--red); color: var(--red); }
.badge-open   { border-color: var(--muted); color: var(--muted); }

/* ── COACHES ── */
/* ── GALLERY ── */
.gallery-section {
  background: var(--black);
  padding-bottom: 5rem;
  overflow: hidden;
}

.gallery-carousel-wrap {
  position: relative;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 auto;
  width: 280px;
  height: 350px;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
}

.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}
.gallery-slide:hover::after { border-color: rgba(201,68,68,0.4); }

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) brightness(0.92);
  transition: filter 0.4s, transform 0.6s;
}
.gallery-slide:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

.gallery-arrow {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-arrow:hover { border-color: var(--gold); color: var(--gold); }

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.gallery-lightbox-overlay.show { display: flex; }

.gallery-lightbox-img {
  max-width: 85%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.gallery-lightbox-nav {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 3001;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.gallery-lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 768px) {
  .gallery-slide { width: 220px; height: 280px; }
  .gallery-carousel-wrap { padding: 0 1rem; gap: 0.5rem; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
  .gallery-lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0 0.5rem;
  flex-wrap: wrap;
}

.testimonials-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.testimonials-rating-text {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,68,68,0.3); }

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245,245,240,0.85);
  flex: 1;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-section { background: var(--black); }

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  width: 24px;
  text-align: center;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.6rem;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(245,245,240,0.65);
  max-width: 700px;
}

.coaches-section { background: var(--deep); }

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

.coach-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.4s;
}

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

.coach-img-wrap {
  height: 320px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.coach-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  letter-spacing: 0.1em;
}

.coach-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent 50%);
}

.coach-info {
  padding: 1.5rem;
  background: var(--card);
}

.coach-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.coach-rank {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.coach-bio {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.cta-banner-inner { position: relative; z-index: 1; }

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-banner-title em { font-style: italic; color: var(--gold); }

.cta-banner-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact-section { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.contact-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-value:hover { color: var(--gold); }

.map-embed {
  width: 100%;
  height: 350px;
  border: 1px solid var(--border);
  filter: grayscale(100%) brightness(0.6) contrast(1.1);
  transition: filter 0.4s;
}
.map-embed:hover { filter: grayscale(60%) brightness(0.75); }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  height: 50px;
  margin: 0 auto 1.5rem;
  opacity: 0.7;
  display: block;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.65rem;
  color: rgba(136,136,128,0.5);
  letter-spacing: 0.1em;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.show { display: flex; }

.modal {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.2);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}

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

.modal-header {
  padding: 2rem 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.modal-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.modal-sub {
  font-size: 0.75rem;
  color: var(--muted);
  padding-bottom: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: var(--gold); }

.modal-body { padding: 0; }

.modal-body iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: none;
}

/* ── CHATBOT ── */
.chatbot-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  font-size: 1.3rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.chatbot-fab:hover { background: var(--gold2); transform: scale(1.05); }

.chatbot-window {
  display: none;
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 340px;
  height: 480px;
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.2);
  z-index: 1500;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: modalIn 0.3s ease;
}
.chatbot-window.show { display: flex; }

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

.chatbot-header-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
}

.chatbot-header-sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.chatbot-close-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.chatbot-close-btn:hover { color: var(--white); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); }

.chat-bubble {
  max-width: 85%;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  line-height: 1.6;
  border-radius: 0;
}

.chat-bubble.ai {
  background: rgba(201,168,76,0.08);
  border-left: 2px solid var(--gold);
  color: rgba(245,245,240,0.85);
  align-self: flex-start;
}

.chat-bubble.user {
  background: rgba(255,255,255,0.05);
  border-right: 2px solid rgba(255,255,255,0.2);
  color: rgba(245,245,240,0.75);
  align-self: flex-end;
}

.chatbot-input-row {
  padding: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}

.chatbot-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  outline: none;
  transition: border-color 0.3s;
}
.chatbot-input:focus { border-color: rgba(201,168,76,0.4); }
.chatbot-input::placeholder { color: var(--muted); }

.chatbot-send {
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.chatbot-send:hover { background: var(--gold2); }
.chatbot-send:disabled { background: var(--border); cursor: not-allowed; }

/* ── DIVIDER ── */
.luxury-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
}
.luxury-divider::before, .luxury-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.luxury-divider::after {
  background: linear-gradient(90deg, var(--border), transparent);
}
.luxury-divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .top-bar { padding: 0 1.5rem; }
  .top-bar-nav { display: none; }
  .hamburger { display: flex; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-image-wrap img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-table { font-size: 0.7rem; }
  .schedule-table th, .schedule-table td { padding: 0.8rem 0.8rem; }
  section { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .coaches-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { width: 160px; }
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; }
}

/* ── BLOG ── */
.blog-hero {
  padding: 11rem 2rem 5rem;
  text-align: center;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

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

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { border-color: rgba(201,68,68,0.4); }

.blog-card-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 1.5rem 1.5rem 0;
}

.blog-card-body { padding: 0.8rem 1.5rem 1.8rem; flex: 1; display: flex; flex-direction: column; }

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.blog-card-excerpt {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
}

.blog-card-readmore {
  margin-top: 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Article page */
.article-hero {
  padding: 10rem 2rem 3rem;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.article-hero-inner { max-width: 760px; margin: 0 auto; }

.article-meta {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.article-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.article-title em { font-style: italic; color: var(--gold); }

.article-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(245,245,240,0.8);
  margin-bottom: 1.6rem;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  margin: 2.8rem 0 1.2rem;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin: 2rem 0 0.8rem;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.article-body ul li, .article-body ol li {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245,245,240,0.8);
}

.article-body strong { color: var(--white); font-weight: 600; }

.article-cta {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid rgba(201,68,68,0.25);
  text-align: center;
}

.article-cta p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.article-back {
  display: block;
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.article-back:hover { color: var(--gold); }

.text-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
}
.text-logo span { color: var(--gold); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 8rem 1.5rem 2.5rem; }
  .article-body { padding: 3rem 1.5rem 1.5rem; }
}
