@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;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;

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

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

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

/* ── 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-lg { padding: 18px 40px; font-size: 15px; }
.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-ghost {
  background: transparent;
  color: rgba(244,229,206,0.8);
  border: 1.5px solid rgba(244,229,206,0.25);
}
.btn-ghost:hover {
  border-color: rgba(244,229,206,0.65);
  background: rgba(244,229,206,0.06);
  color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244,229,206,0.3);
}
.btn-outline:hover {
  border-color: rgba(244,229,206,0.75);
  background: rgba(244,229,206,0.06);
}
/* Secondary button — for use on light/white backgrounds */
.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(26,16,8,0.25);
}
.btn-secondary:hover {
  border-color: rgba(26,16,8,0.6);
  background: rgba(26,16,8,0.04);
}
.btn-white {
  background: var(--white);
  color: var(--terra);
  font-weight: 700;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── 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: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  margin-bottom: var(--sp-5);
  letter-spacing: -1.2px;
  color: var(--dark);
}
.section-body {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
}

/* Centered content container — keeps sections from going edge-to-edge */
.section-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* ─────────────────────────────────────────────
   ① HERO — dark, full viewport, bold typography
───────────────────────────────────────────── */

/* Staggered entry animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-anim {
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0s);
  }
}

.hero-new {
  min-height: 100dvh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Deep terracotta glow — larger, more dramatic */
.hero-new::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(178,67,41,0.25) 0%, rgba(178,67,41,0.05) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* Fine grid texture + bottom vignette */
.hero-new::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,229,206,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,229,206,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, transparent 55%, rgba(26,16,8,0.55) 100%);
  background-size: 60px 60px, 60px 60px, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-new-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: var(--sp-20) var(--sp-10) var(--sp-16);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-new-eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.hero-new-eyebrow::before,
.hero-new-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--terra));
  opacity: 0.6;
}
.hero-new-eyebrow::after {
  background: linear-gradient(to left, transparent, var(--terra));
}

.hero-new-title {
  font-family: 'Damion', cursive;
  font-size: clamp(96px, 15vw, 190px);
  color: var(--cream);
  line-height: 0.84;
  margin-bottom: 0;
  letter-spacing: -2px;
}
.hero-new-title span { color: var(--terra); }

/* Editorial rule between wordmark and body */
.hero-new-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(244,229,206,0.3), transparent);
  margin: var(--sp-8) auto;
}

.hero-new-sub {
  font-size: 16px;
  color: rgba(244,229,206,0.5);
  max-width: 420px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.2px;
  margin-bottom: var(--sp-10);
}

.hero-new-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  justify-content: center;
  align-items: center;
}

/* Secondary CTA — text link in hero, not a bordered button */
.hero-new-ctas .hero-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244,229,206,0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s var(--ease-out);
  padding: 4px 0;
}
.hero-new-ctas .hero-link::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.2s var(--ease-out);
}
.hero-new-ctas .hero-link:hover { color: rgba(244,229,206,0.85); }
.hero-new-ctas .hero-link:hover::after { transform: translateX(3px); }

.hero-new-meta {
  margin-top: var(--sp-12);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(244,229,206,0.28);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.hero-new-meta span { display: inline-block; white-space: nowrap; }
.hero-new-meta::before,
.hero-new-meta::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(244,229,206,0.2);
}

/* ─────────────────────────────────────────────
   ② ABOUT — cream, clear section break
───────────────────────────────────────────── */
.about-new { background: var(--cream); }
.about-new-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-new-map-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  font-size: 13px;
  color: var(--terra);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: opacity 0.2s;
}
.about-new-map-link:hover { opacity: 0.75; }
.about-new-map-link svg { flex-shrink: 0; }

/* Editorial stat rows — cleaner than chunky cards */
.about-new-stats {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.about-stat-card {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid #f0e8dc;
}
.about-stat-card:last-child { border-bottom: none; }
.about-stat-num {
  font-family: 'Damion', cursive;
  font-size: 46px;
  color: var(--terra);
  line-height: 1;
}
.about-stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   ③ COURTS — dark (unchanged)
───────────────────────────────────────────── */
.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); }
.court-card p { font-size: 14px; color: rgba(244,229,206,0.55); line-height: 1.7; }

/* ─────────────────────────────────────────────
   ④ COACH — white
───────────────────────────────────────────── */
.coach { background: var(--white); }
.coach-inner {
  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;
}

/* ─────────────────────────────────────────────
   ⑤ MEMBERSHIPS — olive
───────────────────────────────────────────── */
.memberships-new { background: var(--terra); }
.memberships-new-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.memberships-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.mem-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: background 0.2s;
}
.mem-card:hover { background: rgba(255,255,255,0.16); }
.mem-card--accent {
  background: rgba(26,16,8,0.22);
  border-color: rgba(26,16,8,0.3);
}
.mem-card-title {
  font-family: 'Damion', cursive;
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}
.mem-card-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.memberships-new-embed {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─────────────────────────────────────────────
   ⑥ SOCIAL / TIKTOK — cream (light break)
───────────────────────────────────────────── */
.social-new {
  background: var(--cream);
}
.social-new-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.social-new-text .section-title { color: var(--dark); }
.social-new-links {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}
.social-new-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--terra);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.social-new-btn:hover { background: var(--terra-dark); transform: translateY(-1px); }
.social-new-btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(26,16,8,0.2);
}
.social-new-btn--outline:hover { background: rgba(26,16,8,0.06); border-color: rgba(26,16,8,0.4); }
.social-new-handle {
  font-family: 'Damion', cursive;
  font-size: 44px;
  color: var(--terra);
  line-height: 1;
  margin-top: var(--sp-6);
}
.social-new-embed {
  display: flex;
  justify-content: center;
}

/* ─────────────────────────────────────────────
   ⑦ HOURS — white
───────────────────────────────────────────── */
.hours-section {
  background: var(--white);
  text-align: center;
}
.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 — terracotta
───────────────────────────────────────────── */
.cta-banner {
  background: var(--dark);
  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 50% 60%, rgba(178,67,41,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .section-label { color: var(--terra); justify-content: center; }
.cta-banner .section-title { color: var(--cream); }
.cta-banner p { color: rgba(244,229,206,0.7); font-size: 18px; margin-bottom: var(--sp-10); font-weight: 300; }

/* ── FOOTER — dark ── */
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; }
.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); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-new-stats { gap: 0; }
}

@media (max-width: 768px) {
  section { padding: var(--sp-12) var(--sp-6); }
  .about-new-inner,
  .coach-inner,
  .memberships-new-inner,
  .social-new-inner { 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); }
  .hero-new-stat-div { display: none; }
  .hero-new-stats { gap: var(--sp-2); }
  .hero-new-stat { padding: var(--sp-2) var(--sp-4); }
  .hero-new-address { display: none; }
}

@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-new-title { font-size: clamp(72px, 20vw, 110px); }
  .hero-new-sub { font-size: 16px; }
  /* Eyebrow: hide flanking lines so text doesn't wrap on narrow screens */
  .hero-new-eyebrow::before,
  .hero-new-eyebrow::after { display: none; }
  .hero-new-eyebrow { letter-spacing: 3px; }
  /* Meta: tighten gap so three spans fit in one row */
  .hero-new-meta { gap: var(--sp-3); margin-top: var(--sp-8); }
  .hero-new-meta::before,
  .hero-new-meta::after { display: none; }
  /* Hero inner: reduce side padding */
  .hero-new-inner { padding-left: var(--sp-6); padding-right: var(--sp-6); }
  /* Divider: slightly shorter */
  .hero-new-divider { height: 36px; }
  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-new-stats { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 110px var(--sp-5) var(--sp-10); }
  .map-full { min-height: 260px; }
  .memberships-new-grid { grid-template-columns: 1fr 1fr; }
}

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