/* ═══════════════════════════════════════════════════════════
   TOP GYM DUBAI — MASTER STYLESHEET
   Palette: Black #0A0A0A | Blue #0800FF | Pink #FF2D78 | White #FFFFFF
   Fonts:   Bebas Neue (display) · Barlow Condensed italic (slogan) · Inter (body)
            Noto Sans Arabic (RTL)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@1,700;1,800&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Arabic:wght@400;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0A0A0A;
  --blue:    #0800FF;
  --blue-lo: rgba(8, 0, 255, 0.12);
  --pink:    #FF2D78;
  --pink-lo: rgba(255, 45, 120, 0.12);
  --white:   #FFFFFF;
  --off:     #111111;
  --mid:     #888888;
  --border:  rgba(255,255,255,0.08);
  --nav-h:   72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Arabic font for RTL */
body.rtl,
[dir="rtl"] {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── RTL Adjustments ──────────────────────────────────────── */
[dir="rtl"] .nav-links,
[dir="rtl"] .footer-cols { flex-direction: row-reverse; }
[dir="rtl"] .stat-item { text-align: right; }
[dir="rtl"] .feat-item { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .hero-ctas { flex-direction: row-reverse; }
[dir="rtl"] .about-copy { text-align: right; }
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .about-grid > * { direction: ltr; }
[dir="rtl"] .schedule-week { direction: rtl; }
[dir="rtl"] .price-perk { flex-direction: row-reverse; }
[dir="rtl"] .contact-detail { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .section-label { text-align: right; }
[dir="rtl"] .nav-right { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .offer-bar { text-align: right; }
[dir="rtl"] .disciplines-card { text-align: right; }

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -999px; left: 1rem;
  background: var(--blue); color: var(--white);
  padding: 0.5rem 1rem; border-radius: 2px;
  font-size: 0.85rem; font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Focus styles (WCAG 2.1 AA) ──────────────────────────── */
:focus-visible { outline: 2px solid #0800FF; outline-offset: 3px; }

/* ── Typography ───────────────────────────────────────────── */
.display { font-family: 'Bebas Neue', sans-serif; line-height: 1; letter-spacing: 0.02em; }
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(3.5rem, 9vw, 9rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
p { line-height: 1.7; color: rgba(255,255,255,0.72); }

/* ── Item 1: Section label — white, not blue/pink ─────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.8rem;
  display: block;
}

/* On light sections use black */
.section-light .section-label { color: rgba(0,0,0,0.5); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
}
.btn-primary:hover { background: #2a22ff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(8,0,255,0.45); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: #ff4d8f; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,45,120,0.4); }

/* Item 1: btn-ghost — border is white now, not blue */
.btn-ghost { color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 0; border-bottom: 1.5px solid var(--white); }
.btn-ghost:hover { color: rgba(255,255,255,0.7); }

/* ── Layout Helpers ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-light { background: var(--white); color: var(--black); }
.section-light p { color: rgba(0,0,0,0.65); }
.section-dark { background: var(--black); }

/* ── Reveal Animation ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2rem;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.nav-logo img { height: 44px; width: 44px; object-fit: contain; }
.nav-wordmark {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-link {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
/* Item 1: nav underline — white, not blue */
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px;
  background: var(--white); transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Language Selector */
.lang-selector { display: flex; gap: 0.4rem; }
.lang-btn {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem; border-radius: 2px;
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { background: var(--blue); color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; height: 2px; width: 24px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.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); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #0a0a0a;
  display: flex; flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 999;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu .nav-link { font-size: 1.1rem; }
.mobile-menu .lang-selector { margin-top: 0.5rem; }
.mobile-menu .btn { align-self: flex-start; }

/* ── Logo — transparent PNG, inverted to white on dark bg ── */
.logo-invert { filter: invert(1); }
.nav-logo img, .site-footer .footer-brand img { filter: invert(1); }

/* ── Inline SVG Icons ─────────────────────────────────────── */
.icon { display: inline-block; flex-shrink: 0; }
.icon svg { display: block; width: 100%; height: 100%; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 2rem 5rem;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
/* Item 1: hero eyebrow — white, not blue */
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1.5px; background: rgba(255,255,255,0.5);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .line1 { display: block; }
/* Item 1: hero accent line2 — white */
.hero h1 .line2 { display: block; color: var(--white); }

/* Hero name — BIG "TOP GYM" */
.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Energetic slogan — italic condensed, kinetic */
.hero-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  display: block;
}
.hero-slogan .line1 { color: rgba(255,255,255,0.82); display: block; }
/* Item 1: slogan line2 — white */
.hero-slogan .line2 { color: var(--white); display: block; }

.hero-sub {
  font-size: 1.05rem; max-width: 520px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-hint-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Item 3: Offer Bar ────────────────────────────────────── */
.offer-bar {
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.offer-bar-inner {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.offer-bar-icon {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--white);
}
.offer-bar-text {
  font-size: 0.85rem; font-weight: 500; color: var(--white);
}
.offer-bar .btn {
  padding: 0.55rem 1.25rem; font-size: 0.75rem;
}

/* Classes page sticky trial bar */
.trial-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 0.85rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.trial-bar.hidden { transform: translateY(100%); }
.trial-bar-inner { display: flex; align-items: center; gap: 0.75rem; }
.trial-bar-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--white); }
.trial-bar-text { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.trial-bar-actions { display: flex; align-items: center; gap: 0.75rem; }
.trial-bar-dismiss {
  font-size: 1.2rem; color: rgba(255,255,255,0.4); line-height: 1;
  background: none; border: none; cursor: pointer; padding: 0.25rem;
  transition: color 0.2s;
}
.trial-bar-dismiss:hover { color: var(--white); }
.trial-bar .btn { padding: 0.55rem 1.25rem; font-size: 0.75rem; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 0 1.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
/* Item 1: stat-number — white, not blue */
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-number.stat-text {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.stat-icon {
  width: 36px; height: 36px;
  margin: 0 auto 0.5rem;
  color: var(--white);
}
.stat-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
/* Item 9: bump stat-label contrast */
.stat-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── About ────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-media {
  position: relative; border-radius: 4px; overflow: hidden;
}
.about-video-wrap {
  aspect-ratio: 9/16; max-height: 560px;
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.about-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.about-video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}
.about-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 4px; z-index: -1;
}
.about-copy h2 { margin-bottom: 1.5rem; }
.about-copy p { margin-bottom: 3rem; font-size: 1.05rem; }
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.feat-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--off); padding: 1.25rem; border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feat-item:hover { border-color: rgba(255,255,255,0.3); }
.feat-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.08); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.feat-text h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.3rem; }
.feat-text p { font-size: 0.8rem; line-height: 1.5; color: rgba(255,255,255,0.5); margin: 0; }

/* ── Hours ─────────────────────────────────────────────────── */
.hours-section { background: var(--off); border-top: 1px solid var(--border); padding: 3.5rem 0; }
.hours-inner { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.hours-block { text-align: center; }
.hours-day { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.hours-time { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); letter-spacing: 0.05em; }
.hours-divider { width: 1px; height: 60px; background: var(--border); }

/* ── Gallery Strip ────────────────────────────────────────── */
.gallery-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); height: 340px; overflow: hidden;
}
.gallery-strip-item {
  overflow: hidden; position: relative;
  transition: flex 0.5s ease;
}
.gallery-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75);
}
.gallery-strip-item:hover img { transform: scale(1.05); filter: brightness(1); }

/* ── Item 2: Testimonials Section ────────────────────────── */
.testimonials-section {
  background: var(--black);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.google-rating-row {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.google-rating-badge {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.6rem 1rem;
}
.google-rating-score {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--white); line-height: 1;
}
.google-rating-stars {
  display: flex; align-items: center; gap: 2px;
}
.google-rating-stars svg { width: 16px; height: 16px; fill: #FFD700; }
.google-rating-count {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
}
.google-rating-link {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.google-rating-link:hover { color: var(--white); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
/* Mobile scroll-snap carousel */
@media (max-width: 600px) {
  .testimonials-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 85vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 4px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(255,255,255,0.25); }
.testimonial-header {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.06em;
}
.testimonial-name {
  font-size: 0.92rem; font-weight: 700; color: var(--white);
}
.testimonial-type {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 0.1rem;
}
.testimonial-stars {
  display: flex; gap: 2px;
}
.testimonial-stars svg { width: 14px; height: 14px; fill: #FFD700; }
.testimonial-quote {
  font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.65;
  font-style: italic;
  flex: 1;
}

/* ── Item 4: Disciplines Grid ─────────────────────────────── */
.disciplines-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  margin: 3rem 0;
}
.disciplines-card {
  background: var(--off);
  text-decoration: none;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s;
  border-top: 2px solid transparent;
  position: relative;
}
.disciplines-card:hover { border-top-color: var(--white); }
.disciplines-card-img-wrap {
  aspect-ratio: 4/3; overflow: hidden;
}
.disciplines-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; filter: brightness(0.85);
}
.disciplines-card:hover .disciplines-card-img-wrap img {
  transform: scale(1.05); filter: brightness(1);
}
.disciplines-card-body {
  padding: 1.1rem 1.25rem;
}
.disciplines-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 0.25rem;
}
.disciplines-card-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.4; margin: 0;
}
@media (max-width: 900px) {
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Classes Page ─────────────────────────────────────────── */
.classes-hero {
  background: var(--white);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
}
.classes-hero h1 { color: var(--black); }
.classes-hero .section-label { color: rgba(0,0,0,0.5); }
.classes-hero p { color: rgba(0,0,0,0.6); max-width: 600px; }

.classes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5px;
  background: rgba(0,0,0,0.1);
}
.class-card {
  background: var(--white); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.class-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: var(--black);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.class-card:hover { background: #f7f7f7; }
.class-card:hover::before { transform: scaleX(1); }
.class-card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 3px; margin-bottom: 1.5rem;
  filter: brightness(0.9); transition: filter 0.3s;
}
.class-card:hover .class-card-img { filter: brightness(1); }
.class-card h3 { font-size: 1.6rem; margin-bottom: 0.6rem; color: var(--black); }
.class-card p { font-size: 0.88rem; line-height: 1.6; color: rgba(0,0,0,0.55); margin: 0; }

/* Dance Day */
.dance-section { background: var(--black); }
.dance-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.dance-img-wrap {
  border-radius: 4px; overflow: hidden; aspect-ratio: 3/4;
}
.dance-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
/* Item 1: dance-copy section-label — white */
.dance-copy .section-label { color: rgba(255,255,255,0.55); }
.dance-copy h2 { margin-bottom: 1rem; }
.dance-copy > p { margin-bottom: 2rem; }
.dance-times { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.dance-time-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1rem; font-weight: 500;
}
.dance-time-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--white); flex-shrink: 0;
}
.dance-price-tag {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.15);
  padding: 1rem 1.5rem; border-radius: 4px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--white); margin-bottom: 2rem;
}

/* ── Item 5: Interactive Timetable ───────────────────────── */
/* Filter Bar */
.schedule-filter-wrap {
  margin-bottom: 2rem;
}
.schedule-filter-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.schedule-filter-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); min-width: 100px; flex-shrink: 0;
}
.filter-btn {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 2px;
  color: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  transition: all 0.18s; background: none;
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.filter-btn.active,
.filter-btn[aria-pressed="true"] {
  background: var(--white); color: var(--black); border-color: var(--white);
}

/* Desktop timetable grid */
.timetable-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.timetable-day-col {
  background: #0e0e0e;
  display: flex; flex-direction: column;
  min-height: 180px;
}
.timetable-day-col.hidden { display: none; }
.timetable-day-header {
  background: var(--white); color: var(--black);
  text-align: center;
  padding: 0.9rem 0.5rem 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.timetable-day-header span {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(0,0,0,0.4);
  margin-top: 0.1rem;
}
.timetable-slots {
  padding: 0.75rem 0.6rem; flex: 1;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.timetable-slot {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 0.65rem 0.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.timetable-slot:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}
.timetable-slot.hidden { display: none; }
.slot-time {
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.28rem;
}
.slot-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.04em;
  color: var(--white); line-height: 1.1;
  margin-bottom: 0.2rem;
}
.slot-instructor {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}
.slot-actions {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.slot-btn {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.6rem; border-radius: 2px;
  border: 1px solid var(--border); color: rgba(255,255,255,0.6);
  background: none; cursor: pointer;
  transition: all 0.18s; text-decoration: none; display: inline-block;
}
.slot-btn:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.slot-btn.book { background: var(--blue); border-color: var(--blue); color: var(--white); }
.slot-btn.book:hover { background: #2a22ff; }
.timetable-day-empty {
  padding: 1.5rem 0.75rem; text-align: center;
  color: rgba(255,255,255,0.1);
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 1; display: flex; align-items: center; justify-content: center;
}

/* Mobile accordion timetable */
.timetable-accordion { display: none; }
.accordion-day {
  border: 1px solid var(--border); border-radius: 4px; margin-bottom: 0.5rem;
  overflow: hidden;
}
.accordion-day.hidden { display: none; }
.accordion-day-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; cursor: pointer;
  background: var(--off);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.08em;
  color: var(--white); user-select: none;
  transition: background 0.2s;
}
.accordion-day-header:hover { background: rgba(255,255,255,0.06); }
.accordion-chevron { transition: transform 0.25s; color: rgba(255,255,255,0.4); }
.accordion-day.open .accordion-chevron { transform: rotate(180deg); }
.accordion-day-body {
  display: none; padding: 0.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.accordion-day.open .accordion-day-body { display: flex; }
.accordion-slot {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px; padding: 0.75rem 1rem;
}
.accordion-slot.hidden { display: none; }

@media (max-width: 700px) {
  .timetable-grid { display: none; }
  .timetable-accordion { display: block; }
}

/* Legacy schedule styles (keep hidden) */
.schedule-scroll, .schedule-table { display: none; }

/* Premium schedule week (existing on classes page) */
.schedule-section { background: var(--black); color: var(--white); padding: 5rem 0; }
.schedule-section h2 { color: var(--white); margin-bottom: 0.5rem; }
/* Item 1: schedule section label — white */
.schedule-section .section-label { color: rgba(255,255,255,0.55); }
.schedule-subtitle { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 3rem; }

.schedule-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.schedule-day { background: #0e0e0e; display: flex; flex-direction: column; }
.schedule-day-header {
  background: var(--white); color: var(--black);
  text-align: center;
  padding: 0.9rem 0.5rem 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.schedule-day-header span {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(0,0,0,0.4);
  margin-top: 0.1rem;
}
.schedule-classes { padding: 0.75rem 0.6rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.schedule-class-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 0.65rem 0.75rem;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}
.schedule-class-block:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}
.schedule-class-time {
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.28rem;
}
.schedule-class-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.04em;
  color: var(--white); line-height: 1.1;
  margin-bottom: 0.2rem;
}
.schedule-class-instructor {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.schedule-day-empty {
  padding: 1.5rem 0.75rem; text-align: center;
  color: rgba(255,255,255,0.1);
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 1; display: flex; align-items: center; justify-content: center;
}

/* Schedule responsive */
@media (max-width: 900px) {
  .schedule-week { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .schedule-week { grid-template-columns: repeat(2, 1fr); }
}

/* ── Memberships Page ─────────────────────────────────────── */
.memb-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background: var(--black);
  text-align: center;
}
.memb-hero p { max-width: 620px; margin: 0.75rem auto 0; }

.pricing-tabs-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; padding: 2rem 2rem 0;
  max-width: 1200px; margin: 0 auto;
}
.pricing-tab {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1.4rem; border-radius: 2px;
  color: rgba(255,255,255,0.55);
  border: 1.5px solid var(--border);
  transition: all 0.22s;
}
.pricing-tab:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.pricing-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

.pricing-panels { padding: 3rem 0; }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.price-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.price-card {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: 4px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
  position: relative; overflow: hidden;
}
.price-card:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-4px); }
/* Item 1: featured card — white left border */
.price-card.featured {
  border-color: var(--white);
  background: #161616;
  border-left: 3px solid var(--blue);
}
.price-card.featured::before {
  content: 'BEST VALUE'; position: absolute; top: 1rem; right: 1rem;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
  background: var(--blue); color: var(--white);
  padding: 0.2rem 0.5rem; border-radius: 2px;
}
.price-card-duration {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 1rem;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1;
}
.price-currency { font-size: 1.2rem; vertical-align: super; }
/* Item 9: bump price-vat contrast */
.price-vat { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin: 0.3rem 0 1.5rem; }
.price-perks { flex: 1; margin-bottom: 1.75rem; }
.price-perk {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem; line-height: 1.4;
}
/* Item 1: checkmark — white */
.price-perk::before {
  content: '✓'; color: var(--white); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem;
}
.price-cta { margin-top: auto; }

/* Session-based pricing (PT/Boxing) */
.session-table-wrap { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.session-section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  margin-bottom: 1.2rem; color: var(--white);
}
.session-section-title + .session-section-title { margin-top: 3rem; }
.session-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem; margin-bottom: 3rem;
}
.session-card {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: 4px; padding: 1.5rem 1.25rem; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.session-card:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.session-qty {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.6rem;
}
.session-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--white); line-height: 1;
}
/* Item 9: bump session-price-label contrast */
.session-price-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }

/* BMI */
.bmi-note {
  max-width: 620px; margin: 0 auto; padding: 2rem;
  background: var(--off); border: 1.5px solid var(--border); border-radius: 4px;
  text-align: center;
}
.bmi-note h3 { margin-bottom: 0.75rem; }
.bmi-note p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── Training Page ────────────────────────────────────────── */
.train-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-top: var(--nav-h);
}
.train-hero-video { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.train-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.2) 100%);
}
.train-hero-content { position: relative; z-index: 2; padding: 0 2rem 5rem; max-width: 1200px; margin: 0 auto; width: 100%; }

.train-packages { padding: 5rem 0; }
.train-package {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  max-width: 1100px; margin: 0 auto 6rem; padding: 0 2rem;
}
.train-package:nth-child(even) { direction: rtl; }
.train-package:nth-child(even) > * { direction: ltr; }
.train-pkg-image { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
.train-pkg-image img { width: 100%; height: 100%; object-fit: cover; }
/* Item 1: train-pkg section-label — white */
.train-pkg-copy .section-label { color: rgba(255,255,255,0.55); }
.train-pkg-copy h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.5rem); }
.train-pkg-copy p { margin-bottom: 2rem; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--black);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  max-width: 1100px; margin: 0 auto; padding: 0 2rem 5rem;
}
/* Item 1: contact-info section-label — white */
.contact-info .section-label { color: rgba(255,255,255,0.55); }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.contact-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(255,255,255,0.06); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; border: 1px solid var(--border);
}
.contact-detail-text p { font-size: 0.88rem; white-space: pre-line; margin: 0; }
.contact-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }

.contact-form-wrap { background: var(--off); border-radius: 4px; padding: 2.5rem; border: 1.5px solid var(--border); }
.contact-form-wrap h3 { margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group input, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border); border-radius: 3px;
  padding: 0.9rem 1rem; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
[data-fs-success] {
  display: none;
  align-items: center; gap: 0.75rem;
  background: rgba(74, 222, 128, 0.08);
  border: 1.5px solid rgba(74, 222, 128, 0.3);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: #4ade80;
  font-size: 0.9rem; font-weight: 600;
}
[data-fs-success] svg { width: 18px; height: 18px; flex-shrink: 0; }
[data-fs-error]:not(:empty) {
  display: block;
  background: rgba(255, 80, 80, 0.08);
  border: 1.5px solid rgba(255, 80, 80, 0.3);
  border-radius: 4px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.25rem;
  color: #ff6b6b;
  font-size: 0.85rem; font-weight: 500;
}
[data-fs-error]:empty { display: none; }
.fs-field-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.75rem; font-weight: 600;
  margin-top: 0.3rem;
  min-height: 0;
}
.fs-field-error:empty { display: none; }
input[aria-invalid="true"],
textarea[aria-invalid="true"] { border-color: #ff6b6b !important; }
.fs-error-banner { }

.map-embed { margin-top: 1rem; }
.map-embed iframe {
  width: 100%; height: 320px; border-radius: 4px;
  border: 1.5px solid var(--border); filter: grayscale(0.3) contrast(1.05);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #060606; border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-main {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { height: 40px; width: 40px; object-fit: contain; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); max-width: 260px; line-height: 1.65; }
.footer-col h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-address { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── Item 11: Cookie Consent Banner ──────────────────────── */
.cookie-banner {
  position: fixed; bottom: 5rem; left: 1.5rem; right: 1.5rem;
  z-index: 850;
  background: #161616; border: 1px solid var(--border);
  border-radius: 4px; padding: 1.1rem 1.5rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  max-width: 680px;
}
.cookie-banner.hidden { display: none; }
.cookie-banner-text {
  font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.5;
  flex: 1; min-width: 200px;
}
.cookie-banner-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-banner .btn { padding: 0.5rem 1.1rem; font-size: 0.75rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-video-wrap { max-height: 380px; aspect-ratio: 16/9; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .train-package { grid-template-columns: 1fr; gap: 2rem; }
  .train-package:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(3rem, 11vw, 6rem); }
  .hero-sub { font-size: 0.95rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 220px; }
  .gallery-strip-item:nth-child(n+4) { display: none; }

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

  .dance-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .dance-img-wrap { aspect-ratio: 16/9; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

  .hours-inner { gap: 2rem; }
  .hours-divider { display: none; }

  .pricing-tabs-bar { gap: 0.4rem; }
  .pricing-tab { font-size: 0.7rem; padding: 0.5rem 0.9rem; }

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

  .offer-bar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
  .price-cards { grid-template-columns: 1fr; }
  .session-cards { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── Page top padding for fixed nav ──────────────────────── */
.page-top { padding-top: var(--nav-h); }
