/* ───────────────────────────────────────────────────────────
   Modern variant — clean, photo-forward, sans-only.
   White-dominant, warm coral accent, subtle motion.
   Mobile-first.
─────────────────────────────────────────────────────────── */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-soft: #f6f5f1;
  --bg-warm: #fbfaf6;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --muted: #6b6b6b;
  --rule: rgba(10, 10, 10, 0.10);
  --rule-soft: rgba(10, 10, 10, 0.06);
  --accent: #e85e3c;
  --accent-warm: #f0a17a;
  --ball: #d9e85a;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --pad-x: 22px;
  --section-pad-y: 80px;
  --maxw: 1280px;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }
body.menu-open { overflow: hidden; }

/* ─── PLACEHOLDERS ─────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ddd5c5, #c5b89a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(10,10,10,0.5);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(10,10,10,0.18);
  border-radius: 8px;
}
.img-placeholder.tall { aspect-ratio: 4 / 5; }

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  padding: 14px 22px;
  border-radius: 8px;
  transition: transform .2s ease, background .2s ease;
}
.btn-primary:hover { transform: translateY(-1px); background: var(--accent); }
.btn-primary.large { padding: 18px 32px; font-size: 15px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 2px solid var(--ink);
  transition: color .2s ease, border-color .2s ease;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 18px;
  transition: gap .2s ease;
}
.link-arrow:hover { gap: 14px; }

/* ─── EYEBROWS / SECTION HEADS ─────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 18px;
}
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 6vw, 52px); line-height: 1.05; }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ─── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--pad-x);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.logo-mark { font-size: 18px; color: var(--accent); }
.logo-amp { font-style: italic; opacity: 0.6; padding: 0 3px; font-weight: 500; }

.nav-toggle {
  position: relative;
  z-index: 110;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-links {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-105%);
  transition: transform .45s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 90;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.nav-links.open { transform: translateY(0); }
.nav-links a {
  display: block;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--rule);
}
.nav-cta-li { margin-top: 18px; }
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  background: var(--ink);
  color: #fff !important;
  padding: 12px 22px !important;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600;
  border: none;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  padding: 120px var(--pad-x) 60px;
  background: var(--bg-warm);
}
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero-title {
  font-size: clamp(40px, 9vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hl { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 50ch;
}
.hero-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero-meta li { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}
.hero-visual {
  position: relative;
}
.hero-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.hero-photo .img-placeholder { border-radius: 0; }
.hero-photo .img-placeholder::before { inset: 18px; }
.hero-paddle {
  position: absolute;
  width: clamp(60px, 13vw, 110px);
  aspect-ratio: 1 / 1;
  bottom: -20px;
  right: -10px;
  z-index: 2;
  --px-y: 0px;
  --px-rot: 0deg;
  transform: translate3d(0, var(--px-y), 0) rotate(var(--px-rot));
  will-change: transform;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.18));
}
.hero-paddle svg { width: 100%; height: 100%; overflow: visible; }
@media (prefers-reduced-motion: reduce) {
  .hero-paddle { transform: rotate(var(--px-rot)) !important; }
}

/* ─── LOGOS BAR ────────────────────────────────────────── */
.logos {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px var(--pad-x);
}
.logos-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.logos-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.logos-row {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─── ABOUT ────────────────────────────────────────────── */
.about {
  padding: var(--section-pad-y) var(--pad-x);
}
.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}
.about-text h2 {
  margin-bottom: 22px;
}
.about-text p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* ─── PROGRAMS ─────────────────────────────────────────── */
.programs {
  padding: var(--section-pad-y) var(--pad-x);
  background: var(--bg-soft);
}
.program-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.program-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.program-photo {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
}
.program-photo .img-placeholder { border-radius: 0; }
.program-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.program-card h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.program-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.program-card .text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* ─── STATS ────────────────────────────────────────────── */
.stats {
  background: var(--ink);
  color: #fff;
  padding: 56px var(--pad-x);
}
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
}
.stat { text-align: left; }
.stat-num {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
}

/* ─── MEMBERSHIP ───────────────────────────────────────── */
.membership {
  padding: var(--section-pad-y) var(--pad-x);
}
.tier-grid {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.tier {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.tier:hover { border-color: var(--ink); }
.tier.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tier-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
}
.tier-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: var(--accent);
}
.tier.featured .tier-name { color: var(--accent-warm); }
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.tier.featured .tier-price { border-color: rgba(255,255,255,0.15); }
.dollar { font-size: 18px; font-weight: 600; opacity: 0.6; }
.amount { font-size: 48px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.period { font-size: 14px; color: var(--muted); margin-left: 4px; }
.tier.featured .period { color: rgba(255,255,255,0.6); }
.invite { font-size: 24px; font-weight: 600; font-style: italic; }
.tier-features { flex: 1; margin-bottom: 24px; }
.tier-features li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
}
.bullet { color: var(--accent); font-weight: 700; }
.tier.featured .bullet { color: var(--accent-warm); }
.tier-cta {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: background .2s ease, color .2s ease;
}
.tier-cta:hover { background: var(--ink); color: #fff; }
.tier-cta.filled {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.tier-cta.filled:hover { background: #fff; color: var(--ink); border-color: #fff; }
.tier.featured .tier-cta:not(.filled) { border-color: rgba(255,255,255,0.4); color: #fff; }
.tier.featured .tier-cta:not(.filled):hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ─── TESTIMONIAL ──────────────────────────────────────── */
.testimonial {
  background: var(--bg-warm);
  padding: var(--section-pad-y) var(--pad-x);
}
.t-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  align-items: center;
}
.t-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.t-photo .img-placeholder { border-radius: 0; }
.quote-mark {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 12px;
}
.testimonial blockquote {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.byline-name {
  font-size: 15px;
  font-weight: 700;
}
.byline-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* ─── COURTS ───────────────────────────────────────────── */
.courts {
  padding: var(--section-pad-y) var(--pad-x);
}
.courts-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 36px;
  align-items: start;
}
.courts-text > p {
  font-size: 16px;
  color: var(--muted);
  margin: 18px 0 24px;
}
.courts-list {
  margin-bottom: 28px;
}
.courts-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.courts-list li span { color: var(--accent); font-weight: 700; }
.courts-side { position: relative; }
.court-card {
  margin-top: -20px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  margin-left: 16px;
  margin-right: 16px;
  position: relative;
  z-index: 2;
}
.court-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.court-row:last-child { border-bottom: none; }
.court-row span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.court-row strong {
  font-size: 15px;
  font-weight: 600;
}

/* ─── CTA ──────────────────────────────────────────────── */
.cta {
  background: var(--ink);
  color: #fff;
  padding: 80px var(--pad-x);
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta .eyebrow { color: var(--accent-warm); }
.cta h2 {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #fff;
}
.cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.cta .btn-primary { background: var(--accent); }
.cta .btn-primary:hover { background: #fff; color: var(--ink); }

/* ─── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 60px var(--pad-x) 28px;
  border-top: 1px solid var(--rule);
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}
.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  max-width: 30ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.footer-h {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-cols p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.footer-cols p + p { margin-top: 10px; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 22px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ─── TABLET ───────────────────────────────────────────── */
@media (min-width: 640px) {
  :root { --pad-x: 32px; --section-pad-y: 110px; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { max-width: 560px; }
}

/* ─── DESKTOP ──────────────────────────────────────────── */
@media (min-width: 980px) {
  :root { --pad-x: 48px; --section-pad-y: 140px; }
  .nav { padding: 18px var(--pad-x); }
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    flex-direction: row;
    gap: 32px;
    box-shadow: none;
    align-items: center;
    margin-left: auto;
  }
  .nav-links a {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
    color: var(--ink-soft);
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta-li { margin-top: 0; margin-left: 8px; }
  .nav-cta { padding: 10px 18px !important; font-size: 13px !important; }

  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
  .hero { padding: 140px var(--pad-x) 100px; }

  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }

  .program-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .tier-grid { max-width: var(--maxw); grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .t-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
  }

  .courts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .court-card {
    margin: -28px 28px 0 -28px;
    padding: 24px 28px;
  }
}

@media (min-width: 1280px) {
  :root { --section-pad-y: 160px; }
}
