/* ═══════════════════════════════════════════════════════════
   TOP GYM DUBAI — MASTER STYLESHEET
   Palette: Black #0A0A0A | Purple #9966EE | Pink #FF2D78 | White #FFFFFF
   Type:    Bebas Neue (display) · Inter (body/UI)
            Noto Sans Arabic (RTL) — limited to two weights (400 / 500)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500&family=Noto+Sans+Arabic:wght@400;500&display=swap');

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

:root {
  --black:   #0A0A0A;
  --purple:    #A374D9;
  --purple-lo: rgba(163, 116, 217, 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;

  /* ── Type ─────────────────────────────────────────────── */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', 'Noto Sans Arabic', system-ui, sans-serif;

  /* Fluid type scale — one consistent scale used everywhere */
  --fs-display: clamp(4rem, 12vw, 10rem);   /* hero wordmark        */
  --fs-h1:      clamp(2.75rem, 6vw, 5rem);
  --fs-h2:      clamp(2.1rem, 4.5vw, 3.6rem);
  --fs-h3:      clamp(1.5rem, 2.6vw, 2.1rem);
  --fs-lead:    clamp(1.1rem, 1.6vw, 1.35rem);
  --fs-body:    1.0625rem;                   /* 17px                */
  --fs-small:   0.875rem;
  --fs-label:   0.72rem;

  /* Deliberate, consistent tracking */
  --ls-display: 0.02em;
  --ls-heading: 0.01em;
  --ls-label:   0.22em;

  /* ── One spacing scale (8px base) ─────────────────────── */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;
  --section-y:  clamp(5rem, 10vw, 9rem);     /* vertical section rhythm */
  --gutter:     clamp(1.25rem, 5vw, 2.5rem); /* horizontal edge padding */
  --maxw:       1200px;

  /* ── Motion — calm, slow, eased ───────────────────────── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-dur: 1.1s;
  --hover-dur: 0.45s;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Only two real weights load — never synthesize a third */
  font-synthesis: none;
}

/* 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"] .disciplines-card { text-align: right; }

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -999px; left: 1rem;
  background: var(--purple); color: var(--black);
  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 var(--purple); outline-offset: 3px; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: var(--ls-heading);
  text-wrap: balance;
}
.display { font-size: var(--fs-display); line-height: 0.95; letter-spacing: var(--ls-display); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.15; }
h4 { font-size: 1.15rem; line-height: 1.25; }
h5 { font-size: var(--fs-small); }
p  { line-height: 1.75; color: rgba(255,255,255,0.72); }

/* A single "lead" paragraph style for the one focal statement per section */
.lead { font-size: var(--fs-lead); line-height: 1.6; color: rgba(255,255,255,0.8); }

/* Emphasis maps to the second (medium) weight only */
strong, b { font-weight: 500; }

/* ── Section label — quiet, wide-tracked eyebrow ─────────── */
.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-3);
  display: block;
}

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

/* ── Buttons — solid purple, black text, consistent everywhere ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.05rem 2.4rem; min-height: 48px;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black);
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 1px;
  transition: border-color var(--hover-dur) var(--ease-out),
              background-color var(--hover-dur) var(--ease-out),
              color var(--hover-dur) var(--ease-out),
              opacity var(--hover-dur) var(--ease-out);
  white-space: nowrap;
}
.btn:hover { background: #8f5cc9; border-color: #8f5cc9; color: var(--black); }

/* Primary / outline / pink all share the same solid-purple language */
.btn-primary { background: var(--purple); border-color: var(--purple); color: var(--black); }
.btn-primary:hover { background: #8f5cc9; border-color: #8f5cc9; color: var(--black); }

.btn-outline { background: var(--purple); border-color: var(--purple); color: var(--black); }
.btn-outline:hover { background: #8f5cc9; border-color: #8f5cc9; color: var(--black); }
.btn-pink { background: var(--purple); border-color: var(--purple); color: var(--black); }
.btn-pink:hover { background: #8f5cc9; border-color: #8f5cc9; color: var(--black); }

/* Light sections keep the same purple fill and black text */
.section-light .btn,
.faq-section .btn { color: var(--black); border-color: var(--purple); }
.section-light .btn:hover,
.faq-section .btn:hover { background: #8f5cc9; border-color: #8f5cc9; color: var(--black); }
.section-light .btn-primary { border-color: var(--purple); }
.section-light .btn-primary:hover { background: #8f5cc9; color: var(--black); border-color: #8f5cc9; }

/* Ghost = same purple fill, smaller footprint for inline CTAs */
.btn-ghost {
  color: var(--black); background: var(--purple); border: 1px solid var(--purple);
  min-height: 0; padding: 0.6rem 1.4rem;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 1px;
}
.btn-ghost:hover { background: #8f5cc9; border-color: #8f5cc9; color: var(--black); }

/* ── Layout Helpers ───────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section-sm { padding: calc(var(--section-y) * 0.62) 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 — slow, gentle, eased ───────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--reveal-dur) var(--ease-out),
              transform var(--reveal-dur) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── 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: var(--font-display);
  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.6);
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { background: var(--purple); color: var(--black); }

.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: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 0.92;
  letter-spacing: var(--ls-display);
  color: var(--white);
  margin-bottom: 1.25rem;
}

/* Slogan — display face */
.hero-slogan {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  letter-spacing: 0;
  line-height: 1.2;
  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); }
}

/* ── 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: var(--font-display);
  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: var(--font-display); font-size: 2rem; color: var(--white); letter-spacing: 0.05em; }
.hours-divider { width: 1px; height: 60px; background: var(--border); }

/* ── Gallery Strip (used on contact.html) ────────────────── */
.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: var(--font-display); 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: var(--font-display); 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: var(--font-display);
  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(4, 1fr); gap: 1.5px;
  background: rgba(0,0,0,0.1);
}
@media (max-width: 900px) {
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
}
.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.6); 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.6);
  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: var(--font-display);
  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.62);
  margin-bottom: 0.28rem;
}
.slot-name {
  font-family: var(--font-display);
  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.58);
  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(--purple); border-color: var(--purple); color: var(--black); }
.slot-btn.book:hover { background: #8f5cc9; }
.timetable-day-empty {
  padding: 1.5rem 0.75rem; text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 1; display: flex; align-items: center; justify-content: center;
}
.timetable-noresults {
  text-align: center; margin-top: 2rem;
  color: rgba(0,0,0,0.6); font-size: 0.95rem;
}

/* ── Reservation Modal ─────────────────────────────────── */
.reserve-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.reserve-modal[hidden] { display: none; }
.reserve-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(3px); }
.reserve-modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 420px;
  background: #fff; color: var(--black); border-radius: 12px;
  padding: 2rem 1.75rem; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  max-height: 90vh; overflow-y: auto;
}
.reserve-modal-x {
  position: absolute; top: 0.75rem; right: 1rem;
  background: none; border: none; font-size: 1.75rem; line-height: 1;
  color: rgba(0,0,0,0.4); cursor: pointer; padding: 0.25rem;
}
.reserve-modal-x:hover { color: var(--black); }
.reserve-modal-heading { font-size: 1.9rem; margin: 0.4rem 0 0.25rem; color: var(--black); }
.reserve-modal-meta { font-size: 0.9rem; color: rgba(0,0,0,0.6); margin-bottom: 1.25rem; }
.reserve-field { display: block; margin-bottom: 1rem; }
.reserve-field span { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(0,0,0,0.6); margin-bottom: 0.35rem; }
.reserve-field input {
  width: 100%; padding: 0.7rem 0.85rem; font-size: 1rem;
  border: 1px solid rgba(0,0,0,0.2); border-radius: 6px; background: #fafafa;
}
.reserve-field input:focus { outline: 2px solid var(--pink); outline-offset: 1px; border-color: var(--pink); }
.reserve-form-error { color: #c0143c; font-size: 0.85rem; margin: 0 0 0.75rem; }
.reserve-submit { width: 100%; margin-top: 0.25rem; }
.reserve-modal-note { font-size: 0.78rem; color: rgba(0,0,0,0.5); text-align: center; margin-top: 0.75rem; }
.reserve-step { text-align: left; }
#reserve-step-confirm { text-align: center; }
.reserve-check {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center;
}
.reserve-check svg { width: 32px; height: 32px; }
.reserve-confirm-text { font-size: 0.95rem; color: rgba(0,0,0,0.7); margin-bottom: 1.5rem; line-height: 1.6; }
.reserve-wa { width: 100%; margin-bottom: 0.6rem; }
.reserve-done { width: 100%; }

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-section { background: var(--white); padding: 5rem 0; border-top: 1px solid rgba(0,0,0,0.08); }
.faq-container { max-width: 780px; }
.faq-section h2 { color: var(--black); }
.faq-list { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer; text-align: left;
  padding: 1.35rem 0.25rem; font-size: 1.05rem; font-weight: 600; color: var(--black);
  font-family: inherit;
}
.faq-q:hover { color: var(--purple); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.25s ease; color: rgba(0,0,0,0.55); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--purple); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 0.25rem 1.4rem; margin: 0;
  color: rgba(0,0,0,0.7); font-size: 0.95rem; line-height: 1.7;
}
.faq-a a { color: var(--purple); font-weight: 600; text-decoration: underline; }
.faq-q:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }

/* 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: var(--font-display); 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: 768px) {
  .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: var(--font-display);
  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.62);
  margin-bottom: 0.28rem;
}
.schedule-class-name {
  font-family: var(--font-display);
  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.58);
}
.schedule-day-empty {
  padding: 1.5rem 0.75rem; text-align: center;
  color: rgba(255,255,255,0.45);
  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(--purple); color: var(--black); border-color: var(--purple); }

.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(--purple);
}
.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(--purple); color: var(--black);
  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: var(--font-display);
  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: var(--font-display); 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: var(--font-display); 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(--purple); }
.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; }

/* Mobile: keep the WhatsApp float clear of the bottom bar */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 1.25rem; right: 1rem; }
}

/* ── 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; }

  .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); }

/* ═══════════════════════════════════════════════════════════
   UNIFIED PHOTO TREATMENT + CALM MOTION
   One considered colour grade + subtle overlay so every photo
   reads as part of the same set. Slow, eased hover transitions.
═══════════════════════════════════════════════════════════ */
:root { --img-grade: grayscale(0.14) contrast(1.02) brightness(0.9) saturate(0.88); }

.gallery-strip-item img,
.disciplines-card-img-wrap img,
.class-card-img img,
.train-package picture img,
.about-video-wrap img,
.about-video-wrap video {
  filter: var(--img-grade);
  transition: transform var(--hover-dur) var(--ease-out),
              filter var(--hover-dur) var(--ease-out);
}

/* Subtle unified darkening at the base of framed photos */
.gallery-strip-item,
.disciplines-card-img-wrap,
.class-card-img { position: relative; }
.gallery-strip-item::after,
.disciplines-card-img-wrap::after,
.class-card-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0) 52%, rgba(10,10,10,0.32) 100%);
}

/* Gentle, restrained hover — lifts the grade slightly, no jump */
.gallery-strip-item:hover img,
.disciplines-card:hover .disciplines-card-img-wrap img,
.class-card:hover .class-card-img img {
  transform: scale(1.03);
  filter: grayscale(0) contrast(1.02) brightness(1) saturate(0.98);
}

/* Consistent, quiet card hover across the site */
.disciplines-card,
.class-card,
.testimonial-card,
.feat-item,
.price-card,
.session-card {
  transition: border-color var(--hover-dur) var(--ease-out),
              transform var(--hover-dur) var(--ease-out),
              background-color var(--hover-dur) var(--ease-out);
}

/* ═══════════════════════════════════════════════════════════
   INSTAGRAM FEED (live Behold embed, homepage only)
   Section padding comes from the shared .section rule so it
   matches the rhythm of every neighbouring section.
═══════════════════════════════════════════════════════════ */
.tg-ig { border-top: 1px solid var(--border); }

.tg-ig-head { text-align: center; margin-bottom: var(--sp-6); }
.tg-ig-head h2 { margin: var(--sp-2) 0 var(--sp-4); }
.tg-ig-follow { display: inline-flex; }

/* Reserve space so the widget's async load doesn't jump the page */
.tg-ig-widget { min-height: 260px; }
.tg-ig-widget behold-widget { display: block; width: 100%; }

/* Fallback card — same dark card language as the rest of the site */
.tg-ig-fallback {
  max-width: 480px; margin: 0 auto;
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--off);
}
.tg-ig-fallback-text {
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}
.tg-ig-fallback[hidden] { display: none; }

@media (max-width: 768px) {
  .tg-ig-follow,
  .tg-ig-fallback .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-NATIVE REDESIGN  (≤768px)
   Phone-first overrides. Desktop layout above is untouched —
   everything here lives inside mobile media queries and, being
   later in the cascade, wins at equal specificity.
═══════════════════════════════════════════════════════════ */

/* Sticky bottom bar hidden by default (desktop untouched) */
.mobile-bottom-bar { display: none; }

@media (max-width: 768px) {

  /* ── Consistent edge padding & tighter vertical rhythm ──── */
  .container { padding: 0 1.25rem; }
  .section { padding: 3.25rem 0; }
  .section-sm { padding: 2.5rem 0; }

  /* Larger, more legible body text on small screens */
  html { font-size: 16.5px; }
  p { line-height: 1.65; }

  /* Every tappable element ≥ 44px, comfortable full-width feel */
  .btn {
    min-height: 48px; padding: 0.85rem 1.4rem;
    font-size: 0.82rem; justify-content: center;
  }
  .lang-btn { min-height: 40px; padding: 0.4rem 0.7rem; }

  /* Keep page content clear of the sticky bottom bar */
  body { padding-bottom: 4.5rem; }

  /* ── Full-screen nav overlay ──────────────────────────── */
  body.menu-open { overflow: hidden; }
  .mobile-menu {
    top: var(--nav-h);
    height: calc(100dvh - var(--nav-h));
    padding: 2.5rem 1.5rem;
    gap: 0.4rem;
    justify-content: center; align-items: stretch;
    background: #0a0a0a;
    overflow-y: auto;
  }
  .mobile-menu .nav-link {
    font-family: var(--font-display);
    font-size: 2rem; letter-spacing: 0.04em;
    padding: 0.6rem 0; min-height: 48px;
    display: flex; align-items: center;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu .nav-link.active { color: var(--purple); }
  .mobile-menu .lang-selector {
    display: flex; justify-content: center; gap: 0.75rem;
    margin: 1.5rem 0 0.5rem;
  }
  .mobile-menu .lang-btn {
    border: 1px solid var(--border); border-radius: 3px;
    min-width: 52px; text-align: center;
  }
  .mobile-menu .btn {
    align-self: stretch; width: 100%;
    margin-top: 0.75rem; font-size: 0.95rem;
  }

  /* ── Hero: sized for a tall, narrow screen ────────────── */
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-content { padding: 0 1.25rem 2.75rem; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 0.85rem; }
  .hero h1.hero-name { font-size: clamp(4.25rem, 24vw, 7rem); margin-bottom: 0.75rem; }
  .hero-slogan { font-size: 1.6rem; line-height: 1.1; margin-bottom: 1.1rem; }
  .hero-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 1.6rem; max-width: none; }
  .hero-ctas { flex-direction: column; gap: 0.7rem; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .scroll-hint { display: none; }

  /* ── Section headings scale down a touch, tighter gaps ── */
  h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  h2 { font-size: clamp(2rem, 8vw, 3rem); }

  /* ── Membership pricing: swipeable tabs + stacked cards ── */
  .pricing-tabs-bar {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem; padding: 1.5rem 1.25rem 0.25rem;
    scrollbar-width: none;
  }
  .pricing-tabs-bar::-webkit-scrollbar { display: none; }
  .pricing-tab {
    flex: 0 0 auto; scroll-snap-align: start;
    font-size: 0.72rem; padding: 0.65rem 1.1rem; min-height: 44px;
  }
  .pricing-panels { padding: 2rem 0; }
  .price-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem; padding: 0 1.25rem !important;
    max-width: none !important;
  }
  /* Session (PT/boxing) tiles → swipeable horizontal carousel */
  .session-cards {
    display: flex !important; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.85rem; padding: 0 1.25rem 0.5rem;
    scrollbar-width: none;
  }
  .session-cards::-webkit-scrollbar { display: none; }
  .session-card {
    flex: 0 0 76%; scroll-snap-align: center;
  }

  /* ── Galleries: single column, full width ─────────────── */
  .gallery-strip { display: block; height: auto; }
  .gallery-strip-item { display: block !important; height: 220px; margin-bottom: 2px; }
  .gallery-strip-item img { filter: brightness(0.85); }

  /* ── Sticky bottom action bar ─────────────────────────── */
  .mobile-bottom-bar {
    display: flex; gap: 0.6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(10,10,10,0.96);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
  }
  .mobile-bottom-bar .btn {
    flex: 1; min-height: 48px; padding: 0.7rem 0.4rem;
    font-size: 0.78rem; letter-spacing: 0.04em;
  }

  /* Avoid overlap: fold the desktop WhatsApp float away on phones */
  .whatsapp-float { display: none !important; }
}

@media (max-width: 390px) {
  .hero h1.hero-name { font-size: 20vw; }
  .hero-slogan { font-size: 1.45rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .session-card { flex-basis: 82%; }
}
