/* ═══════════════════════════════════════════════════════════════
   UMHLANGA TENNIS CLUB — Premium Stylesheet
   Colour palette:
     --green-deep   : #1B5E20
     --green-mid    : #2E7D32
     --navy         : #0F172A
     --navy-mid     : #1E293B
     --sand         : #F8FAFC
     --gold         : #D4AF37
     --gold-light   : #F0D060
     --white        : #FFFFFF
     --glass-bg     : rgba(255,255,255,0.08)
     --glass-border : rgba(255,255,255,0.15)
   ═══════════════════════════════════════════════════════════════ */

.nav__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.footer__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

/* Ensure local hero images cover correctly regardless of orientation */
.hero__bg-img {
  object-position: center 30%;
}

/* ── CSS Custom Properties ── */
:root {
  --green-deep:   #1B5E20;
  --green-mid:    #2E7D32;
  --green-light:  #43A047;
  --navy:         #0F172A;
  --navy-mid:     #1E293B;
  --navy-light:   #334155;
  --sand:         #F8FAFC;
  --sand-dark:    #E2E8F0;
  --gold:         #D4AF37;
  --gold-light:   #F0D060;
  --gold-dark:    #A8861F;
  --white:        #FFFFFF;
  --text-dark:    #0F172A;
  --text-mid:     #475569;
  --text-light:   #94A3B8;
  --wa-green:     #25D366;
  --glass-bg:     rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.14);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.25);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-lg:    24px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:  'Bebas Neue', 'Arial Narrow', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* Focus accessibility */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-white   { color: var(--white); }
.text-white-70 { color: rgba(255,255,255,0.72); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-light); }

.heading-display {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.heading-display em { font-style: italic; color: var(--green-mid); }
.heading-display.text-white { color: var(--white); }
.heading-display.text-white em { color: var(--gold-light); }

.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-intro {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Glass card ── */
.glass-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 28px rgba(212,175,55,0.5);
  transform: translateY(-2px);
}

.btn--green {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,94,32,0.35);
}
.btn--green:hover {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-mid) 100%);
  box-shadow: 0 6px 28px rgba(27,94,32,0.5);
  transform: translateY(-2px);
}

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

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn--whatsapp {
  background: var(--wa-green);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover {
  background: #20b356;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}

.btn--text {
  background: transparent;
  color: var(--green-mid);
  padding: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}
.btn--text:hover { color: var(--green-deep); gap: 12px; }


/* ════════════════════════════════════════════
   FLOATING ACTION BUTTONS
════════════════════════════════════════════ */
.fab {
  position: fixed;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 900;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  overflow: hidden;
}

.fab__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width var(--transition);
}

.fab:hover .fab__label,
.fab:focus .fab__label { max-width: 140px; }

.fab--whatsapp {
  bottom: 32px;
  background: var(--wa-green);
  color: var(--white);
  animation: fab-pulse 3s infinite;
}
.fab--whatsapp:hover { background: #20b356; transform: scale(1.06); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }

.fab--book {
  bottom: 96px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
}
.fab--book:hover { transform: scale(1.06); box-shadow: 0 6px 30px rgba(212,175,55,0.55); }

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--green-mid); transform: translateY(-3px); }


/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 950;
  transition: all 0.4s ease;
}

.nav-header.scrolled {
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-text strong { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.nav__logo-text em { font-style: normal; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.06em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav__cta { margin-left: 8px; padding: 10px 20px; font-size: 0.875rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 6px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-out forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(15,23,42,0.82) 0%, rgba(27,94,32,0.55) 60%, rgba(15,23,42,0.65) 100%);
}
.hero__overlay-green {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(27,94,32,0.3) 0%, transparent 70%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 400px; height: 400px;
  background: rgba(212,175,55,0.12);
  top: -100px; right: 10%;
  animation: orb-float 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: rgba(27,94,32,0.25);
  bottom: 10%; left: 5%;
  animation: orb-float 10s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(20px,-20px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 80px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.badge--glass {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  max-width: 640px;
}

.hero__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__notice {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}
.hero__notice i { color: var(--gold); }

.hero__partners {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: var(--white);
}
.partner-badge i { font-size: 1.5rem; color: var(--gold); }
.partner-badge strong { display: block; font-size: 0.9rem; font-weight: 600; }
.partner-badge small { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}


/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

.about__content .heading-display { margin-bottom: 24px; }
.about__content p { color: var(--text-mid); margin-bottom: 16px; }

.about__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.about__image { position: relative; }
.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.about__image-badge i { color: var(--gold); font-size: 1.2rem; }
.about__image-badge strong { display: block; font-weight: 700; }
.about__image-badge span { font-size: 0.78rem; color: var(--text-mid); }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--sand);
  border-radius: var(--radius);
  border: 1px solid var(--sand-dark);
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--green-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
}


/* ════════════════════════════════════════════
   FACILITIES
════════════════════════════════════════════ */
.facilities {
  background: var(--navy);
  overflow: hidden;
}
.facilities .section-header { margin-bottom: 56px; }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.facility-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.facility-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.facility-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.facility-card:hover::before { opacity: 1; }

.facility-card__icon {
  width: 50px; height: 50px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--gold);
  transition: all var(--transition);
}
.facility-card:hover .facility-card__icon {
  background: rgba(212,175,55,0.2);
  color: var(--gold-light);
}

.facility-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.facility-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}


/* ════════════════════════════════════════════
   COACHING
════════════════════════════════════════════ */
.coaching { background: var(--sand); }

.coaching__header { text-align: center; margin-bottom: 60px; }

.coaching__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

/* Coach profile */
.coaching__profile {
  overflow: hidden;
  padding: 0;
}

.coach-image-wrap {
  position: relative;
  overflow: hidden;
}
.coach-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}
.coaching__profile:hover .coach-image-wrap img { transform: scale(1.03); }

.coach-accent-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--gold));
}

.coaching__profile-body { padding: 28px 28px 32px; }

.coach-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}
.coach-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.coaching__profile-body p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }

.coach-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.coach-contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.coach-contact__item i { color: var(--green-mid); width: 16px; }
.coach-contact__item:hover { color: var(--green-mid); }

.coaching__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Programmes grid */
.coaching__prog-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.prog-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: all var(--transition);
}
.prog-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 8px 28px rgba(27,94,32,0.12);
  transform: translateY(-3px);
}
.prog-card i {
  font-size: 1.25rem;
  color: var(--green-mid);
  margin-bottom: 10px;
  display: block;
}
.prog-card h4 { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.prog-card p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }

/* Benefits strip */
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: var(--white);
}
.benefit i { font-size: 1.3rem; color: var(--gold); }
.benefit span { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.75); }


/* ════════════════════════════════════════════
   MEMBERSHIPS
════════════════════════════════════════════ */
.memberships { background: var(--white); }

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.membership-card {
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.membership-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

.membership-card__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}

.membership-card__header {
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.membership-card__header i { font-size: 1.6rem; }
.membership-tier { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }

.membership-card__header--junior { color: var(--green-mid); }
.membership-card__header--adult { color: var(--navy); }
.membership-card__header--family { color: var(--green-deep); }

.membership-card--featured {
  border-color: var(--gold) !important;
  box-shadow: 0 8px 40px rgba(212,175,55,0.2) !important;
}

.membership-card__body { padding: 0 28px 28px; }

.membership-price {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand-dark);
}
.price-label { display: block; font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.price-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy); }

.membership-features { margin-bottom: 28px; }
.membership-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--sand-dark);
}
.membership-features li:last-child { border-bottom: none; }
.membership-features li i { color: var(--green-mid); flex-shrink: 0; font-size: 0.8rem; }

.memberships__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.memberships__note a { color: var(--green-mid); text-decoration: underline; }


/* ════════════════════════════════════════════
   CLUB LIFE
════════════════════════════════════════════ */
.club-life { background: var(--sand); }

.club-life__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.life-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.life-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.life-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.life-item:hover img { transform: scale(1.06); }

.life-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--transition);
}
.life-item:hover .life-item__overlay {
  background: linear-gradient(to top, rgba(27,94,32,0.75) 0%, rgba(15,23,42,0.4) 100%);
}
.life-item__overlay h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.life-item__overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.8); }


/* ════════════════════════════════════════════
   BOOKINGS
════════════════════════════════════════════ */
.bookings { background: var(--white); }

.booking-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.booking-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px 12px;
  background: var(--sand);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.booking-feature:hover { background: var(--green-mid); color: var(--white); transform: translateY(-3px); }
.booking-feature i { font-size: 1.35rem; color: var(--green-mid); }
.booking-feature:hover i { color: var(--gold); }
.booking-feature span { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); }
.booking-feature:hover span { color: rgba(255,255,255,0.9); }

/* How to book */
.how-to-book { margin-bottom: 48px; }
.how-to-book__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 36px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: var(--sand);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
}
.step-card:hover { background: var(--white); box-shadow: 0 10px 36px rgba(0,0,0,0.08); transform: translateY(-4px); }

.step-card__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__icon {
  width: 56px; height: 56px;
  background: rgba(27,94,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--green-mid);
}

.step-card h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

.step-card__stores {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all var(--transition);
}
.store-btn:hover { background: var(--green-mid); transform: scale(1.04); }

.steps-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  margin-top: 60px;
  flex-shrink: 0;
}

/* Visitors notice */
.visitors-notice {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 40px;
  border-left: 4px solid var(--green-mid);
}
.visitors-notice__icon {
  width: 44px; height: 44px;
  background: rgba(27,94,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.visitors-notice h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.visitors-notice p { font-size: 0.9rem; color: var(--text-mid); }

/* Playtomic CTA */
.playtomic-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--green-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  overflow: hidden;
  position: relative;
}
.playtomic-cta::after {
  content: '\f45f';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}

.playtomic-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.playtomic-cta__text h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.playtomic-cta__text p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 480px; }
.playtomic-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }


/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery { background: var(--navy); }
.gallery .section-header { margin-bottom: 48px; }
.gallery .heading-display { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--navy-mid);
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2001;
}
.lightbox__close:hover { background: rgba(255,255,255,0.3); }


/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials { background: var(--sand); }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.testimonial-card--featured {
  border-color: var(--gold) !important;
}
.testimonial-card--featured::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--sand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
}
.testimonial-card__author cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
}
.testimonial-card__author span { font-size: 0.78rem; color: var(--text-light); }


/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card { padding: 36px; }
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--navy);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-dark);
}
.contact-item:last-child { border-bottom: none; }
.contact-item > i {
  color: var(--green-mid);
  font-size: 1rem;
  margin-top: 2px;
  width: 18px;
}
.contact-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: var(--text-mid); }
.contact-item a:hover { color: var(--green-mid); }

.contact-divider { height: 1px; background: var(--sand-dark); margin: 24px 0; }
.contact-info-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 16px; }

.social-links { display: flex; gap: 12px; margin-bottom: 24px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: all var(--transition);
}
.social-link:hover { transform: translateY(-3px) scale(1.1); }
.social-link--whatsapp { background: var(--wa-green); }
.social-link--facebook { background: #1877f2; }
.social-link--instagram { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

.map-container { overflow: hidden; border-radius: var(--radius); }

/* Form */
.contact-form-card { padding: 36px; }
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--navy);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-field label span { color: #e74c3c; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--sand);
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error { border-color: #e74c3c; }

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: 12px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--green-mid);
}

span.form-error { font-size: 0.78rem; color: #e74c3c; }

.form-success {
  background: rgba(27,94,32,0.1);
  border: 1px solid rgba(27,94,32,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--green-deep);
}
.form-success i { font-size: 1.1rem; }

.form-error-msg {
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #c0392b;
}


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer__cta-bar {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--navy) 100%);
  padding: 60px 0;
}

.footer__cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__cta-text p { color: rgba(255,255,255,0.7); }
.footer__cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.footer__main {
  background: var(--navy);
  padding: 64px 0 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__logo i { font-size: 1.5rem; color: var(--gold); }
.footer__logo strong { display: block; font-size: 1rem; font-weight: 700; }
.footer__logo em { font-style: normal; font-size: 0.72rem; color: var(--gold); letter-spacing: 0.06em; }

.footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }

.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer__social-link:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.footer__nav h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__nav li a:hover { color: var(--white); }

.footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__contact address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer__contact address i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer__contact address a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__contact address a:hover { color: var(--white); }

.footer__bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__bottom a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer__bottom a:hover { color: var(--gold); }


/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"] { transform: translateY(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }

[data-animate].animated {
  opacity: 1;
  transform: none;
}


/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }

  .about__grid { gap: 48px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

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

  .coaching__grid { grid-template-columns: 1fr; gap: 36px; }
  .benefits-strip { grid-template-columns: repeat(3, 1fr); }

  .membership-grid { gap: 20px; }

  .club-life__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .life-item--wide { grid-column: span 2; }

  .booking-features { grid-template-columns: repeat(3, 1fr); }
  .steps-row { flex-direction: column; gap: 24px; }
  .steps-connector { width: 2px; height: 24px; margin: 0 auto; }

  .playtomic-cta__content { flex-direction: column; gap: 28px; }
  .playtomic-cta { padding: 40px; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: span 2; }

  .footer__cta-content { flex-direction: column; text-align: center; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Navigation */
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 24px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 940;
    border-left: 1px solid rgba(255,255,255,0.08);
    overflow-y: auto;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { padding: 12px 16px; width: 100%; font-size: 1rem; border-radius: 12px; }
  .nav__cta { margin-left: 0; width: 100%; justify-content: center; }
  .nav__burger { display: flex; z-index: 945; }

  /* Overlay */
  .nav__links.open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }

  /* Hero */
  .hero__title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__partners { flex-direction: column; }
  .hero__scroll { display: none; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__image-badge { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  /* Facilities */
  .facilities-grid { grid-template-columns: 1fr; }

  /* Coaching */
  .programmes-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-strip { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .coaching__ctas { flex-direction: column; }

  /* Memberships */
  .membership-grid { grid-template-columns: 1fr; }

  /* Club Life */
  .club-life__grid { grid-template-columns: 1fr; }
  .life-item--wide { grid-column: span 1; aspect-ratio: 4/3; }

  /* Bookings */
  .booking-features { grid-template-columns: repeat(2, 1fr); }
  .playtomic-cta { padding: 28px 24px; }
  .playtomic-cta__actions { flex-direction: column; }
  .playtomic-cta__actions .btn { width: 100%; justify-content: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item--wide,
  .gallery-item--tall { grid-column: span 1; grid-row: span 1; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  /* FABs */
  .fab__label { display: none; }
  .fab { padding: 14px; border-radius: 50%; }

  /* Contact grid */
  .contact-grid { gap: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__body { font-size: 0.95rem; }
  .programmes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .benefits-strip { grid-template-columns: 1fr; }
  .booking-features { grid-template-columns: repeat(2, 1fr); }
}
