@import url('https://fonts.googleapis.com/css2?family=Damion&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --terra: #b24329;
  --terra-dark: #8f3320;
  --terra-light: rgba(178, 67, 41, 0.12);
  --cream: #f4e5ce;
  --cream-dark: #e8d4b4;
  --olive: #4a5c2a;
  --dark: #1a1008;
  --dark-mid: #2e1a0e;
  --mauve: #9e7f7a;
  --white: #ffffff;
  --gray: #6b6b6b;
  --gray-light: #f7f4f0;

  /* spacing scale — 4pt base */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;

  /* easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  /* shadows */
  --shadow-sm: 0 1px 4px rgba(26,16,8,0.08);
  --shadow-md: 0 4px 16px rgba(26,16,8,0.10);
  --shadow-lg: 0 12px 40px rgba(26,16,8,0.14);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 16, 8, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  font-family: 'Damion', cursive;
  font-size: 26px;
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
}
.nav-logo span { color: var(--terra); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}
.nav-links a {
  color: rgba(244, 229, 206, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a.active { color: var(--terra); }

.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out) !important;
}
.nav-cta:hover { background: var(--terra-dark) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-1);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.25s var(--ease-out);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

/* SVG court-line pattern — premium background without needing a photo */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-pattern svg {
  width: 100%;
  height: 100%;
  opacity: 0.07;
}

/* subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 65%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(178,67,41,0.22) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-20) var(--sp-20);
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--terra);
  border-radius: 1px;
}

.hero-title {
  font-family: 'Damion', cursive;
  font-size: clamp(72px, 10vw, 120px);
  color: var(--cream);
  line-height: 0.92;
  margin-bottom: var(--sp-6);
}
.hero-title .highlight { color: var(--terra); }

.hero-sub {
  font-size: 18px;
  color: rgba(244, 229, 206, 0.72);
  margin-bottom: var(--sp-10);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 15px 32px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.2s var(--ease-out);
  cursor: pointer;
  border: none;
}
.btn:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(178,67,41,0.35);
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178,67,41,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244,229,206,0.3);
  margin-left: var(--sp-3);
}
.btn-outline:hover {
  border-color: rgba(244,229,206,0.75);
  background: rgba(244,229,206,0.06);
}

.btn-white {
  background: var(--white);
  color: var(--terra);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ── HERO HOURS BADGE ── */
.hero-hours {
  position: absolute;
  bottom: var(--sp-10);
  right: var(--sp-20);
  z-index: 2;
  text-align: right;
}
.hero-hours p {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(244,229,206,0.4);
  margin-bottom: var(--sp-3);
}
.hour-row {
  font-size: 13px;
  color: rgba(244,229,206,0.65);
  line-height: 1.9;
}
.hour-row span {
  color: var(--cream);
  font-weight: 500;
  margin-right: 6px;
}

/* ── SECTION BASE ── */
section { padding: var(--sp-20) var(--sp-20); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--terra);
  border-radius: 1px;
}

.section-title {
  font-family: 'Damion', cursive;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.5px;
}

.section-body {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 520px;
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}
.stat {
  background: var(--white);
  padding: var(--sp-6);
  border-radius: var(--r-md);
  border-top: 3px solid var(--terra);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.stat:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-num {
  font-family: 'Damion', cursive;
  font-size: 52px;
  color: var(--terra);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* About visual — court graphic (no photo needed) */
.about-visual { position: relative; }

.court-graphic {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.court-graphic svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}
.court-graphic-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.court-graphic-logo {
  font-family: 'Damion', cursive;
  font-size: 72px;
  color: var(--terra);
  line-height: 1;
  display: block;
}
.court-graphic-sub {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(244,229,206,0.4);
  margin-top: var(--sp-2);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--terra);
  color: var(--white);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 8px 28px rgba(178,67,41,0.4);
}
.about-badge strong {
  display: block;
  font-size: 22px;
  font-family: 'Damion', cursive;
  font-weight: 400;
  margin-bottom: 2px;
}

/* ── COURTS ── */
.courts {
  background: var(--dark);
  color: var(--cream);
}
.courts .section-title { color: var(--cream); }
.courts .section-body { color: rgba(244,229,206,0.65); }

.courts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}
.court-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  transition: background 0.25s var(--ease-out), border-color 0.25s, transform 0.2s var(--ease-out);
}
.court-card:hover {
  background: rgba(178,67,41,0.12);
  border-color: rgba(178,67,41,0.4);
  transform: translateY(-3px);
}
.court-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--terra-light);
  margin-bottom: var(--sp-5);
}
.court-icon svg { width: 22px; height: 22px; stroke: var(--terra); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.court-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.2px;
}
.court-card p {
  font-size: 14px;
  color: rgba(244,229,206,0.55);
  line-height: 1.7;
}

/* ── COACH ── */
.coach {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.coach-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream);
  position: relative;
}
.coach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.coach-img-wrap:hover img { transform: scale(1.02); }

.coach-flag {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  background: var(--terra);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.coach-creds {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.cred {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}
.cred svg {
  width: 16px;
  height: 16px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── HOURS ── */
.hours-section {
  background: var(--gray-light);
  text-align: center;
  padding: var(--sp-20) var(--sp-20);
}

.hours-table {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  margin: var(--sp-12) auto 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--cream-dark);
}
.hours-row { display: contents; }
.hours-row .day,
.hours-row .time {
  padding: 15px var(--sp-8);
  background: var(--white);
  border-bottom: 1px solid #f0e8dc;
  font-size: 15px;
}
.hours-row .day { font-weight: 600; color: var(--dark); }
.hours-row .time { color: var(--gray); text-align: right; }
.hours-row:last-child .day,
.hours-row:last-child .time { border-bottom: none; }
.hours-row.highlight .day,
.hours-row.highlight .time {
  background: var(--terra);
  color: var(--white);
  font-weight: 600;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--terra);
  text-align: center;
  padding: var(--sp-20) var(--sp-10);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .section-label { color: rgba(255,255,255,0.65); }
.cta-banner .section-label::before { background: rgba(255,255,255,0.5); }
.cta-banner .section-title { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 18px; margin-bottom: var(--sp-10); font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: var(--cream);
  padding: var(--sp-16) var(--sp-20) var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-16);
  margin-bottom: var(--sp-12);
}
.footer-brand .nav-logo {
  font-size: 30px;
  display: block;
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(244,229,206,0.55);
  line-height: 1.75;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(244,229,206,0.15);
  border-radius: 50%;
  color: rgba(244,229,206,0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.social-link:hover {
  border-color: var(--terra);
  background: var(--terra);
  color: var(--white);
}
footer h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: var(--sp-5);
  font-weight: 600;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: var(--sp-3); }
footer ul li a {
  color: rgba(244,229,206,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--cream); }

.footer-contact-info p {
  font-size: 14px;
  color: rgba(244,229,206,0.55);
  margin-bottom: var(--sp-3);
  line-height: 1.65;
}
.footer-contact-info a {
  color: rgba(244,229,206,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--terra); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(244,229,206,0.3); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 140px var(--sp-20) var(--sp-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(178,67,41,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .section-label { justify-content: center; }
.page-hero .section-label::before { display: none; }
.page-hero .section-title { color: var(--cream); }
.page-hero p { color: rgba(244,229,206,0.65); font-size: 18px; margin-top: var(--sp-3); font-weight: 300; }

/* ── CONTACT PAGE ── */
.contact-page { background: var(--white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  padding: var(--sp-20);
  max-width: 1200px;
  margin: 0 auto;
}
.contact-detail {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--terra-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terra);
  margin-bottom: var(--sp-2);
}
.contact-detail p, .contact-detail a {
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.65;
}
.contact-detail a:hover { color: var(--terra); }

.hours-compact { margin-top: var(--sp-2); }
.hours-compact .h-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid #f0e8dc;
  color: var(--dark);
}
.hours-compact .h-row:last-child { border-bottom: none; }
.hours-compact .h-row .day { color: var(--gray); }
.hours-compact .h-row.late .day,
.hours-compact .h-row.late .time { color: var(--terra); font-weight: 600; }

.map-full {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  background: var(--cream);
  box-shadow: var(--shadow-md);
}
.map-full iframe { width: 100%; height: 100%; border: none; min-height: 420px; }

.social-row {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--gray-light);
  color: var(--dark);
  padding: 10px var(--sp-5);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--cream-dark);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.social-pill:hover {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
  transform: translateY(-1px);
}

/* ── COACHING PAGE ── */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}
.coaching-card {
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out);
  background: var(--white);
}
.coaching-card:hover {
  border-color: var(--terra);
  box-shadow: 0 8px 32px rgba(178,67,41,0.1);
  transform: translateY(-3px);
}
.coaching-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--terra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.coaching-card .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coaching-card h3 { font-size: 18px; font-weight: 700; margin-bottom: var(--sp-3); color: var(--dark); }
.coaching-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* Book button */
.playtomic-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--terra);
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-top: var(--sp-8);
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(178,67,41,0.3);
}
.playtomic-btn:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178,67,41,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: var(--sp-16) var(--sp-8); }
  .hero-content { padding: var(--sp-16) var(--sp-8); }
  .hero-hours { right: var(--sp-8); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: var(--sp-12) var(--sp-6); }
  .hero-content { padding: var(--sp-12) var(--sp-6); }
  .hero-hours { display: none; }
  .about, .coach { grid-template-columns: 1fr; gap: var(--sp-10); }
  .courts-grid { grid-template-columns: 1fr 1fr; }
  .coaching-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; padding: var(--sp-10) var(--sp-6); gap: var(--sp-10); }
  .page-hero { padding: 120px var(--sp-6) var(--sp-12); }
  .about-badge { bottom: -16px; left: -12px; }
}

@media (max-width: 600px) {
  nav { padding: 0 var(--sp-5); }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(26,16,8,0.99);
    padding: var(--sp-5) var(--sp-5) var(--sp-6);
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 14px 0; font-size: 14px; }
  .nav-cta { margin-top: var(--sp-3); text-align: center; display: block; padding: 12px var(--sp-5) !important; }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: clamp(60px, 18vw, 90px); }
  .hero-sub { font-size: 16px; }
  .btn-outline { margin-left: 0; margin-top: var(--sp-3); display: flex; }

  section { padding: var(--sp-10) var(--sp-5); }
  .courts-grid { grid-template-columns: 1fr; }
  .coaching-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; gap: var(--sp-2); text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 110px var(--sp-5) var(--sp-10); }
  .map-full { min-height: 260px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
