:root {
  --bg: #f6f8f3;
  --text: #111410;
  --muted: #6b7468;
  --line: #dfe5da;
  --green: #b9ff39;
  --green-dark: #92db13;
  --dark: #111510;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 243, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 800; letter-spacing: -1px; font-size: 21px; }
.logo span { color: #69a800; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.nav-links a:hover { opacity: .65; }
.nav-cta { padding: 11px 18px; background: var(--dark); color: white; border-radius: 999px; }
.menu-btn { display: none; border: 0; background: transparent; font-size: 28px; cursor: pointer; }

.hero { padding: 84px 0 76px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.badge { display: inline-flex; padding: 7px 12px; border: 1px solid var(--line); background: white; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 22px; }
.hero h1 { font-size: clamp(52px, 7vw, 86px); line-height: .98; letter-spacing: -5px; margin: 0; max-width: 820px; }
.hero h1 span { color: #6eab09; }
.hero-copy > p { max-width: 610px; color: var(--muted); font-size: 18px; margin: 26px 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 12px; border: 1px solid transparent; font-weight: 700; cursor: pointer; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #172000; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { border-color: #ccd4c7; background: transparent; }
.btn-light { background: white; color: #111; }
.full { width: 100%; }
.stats { display: flex; gap: 38px; margin-top: 38px; flex-wrap: wrap; }
.stats div { display: grid; gap: 2px; }
.stats strong { font-size: 22px; }
.stats span { color: var(--muted); font-size: 12px; }

.hero-card { border-radius: 30px; overflow: hidden; background: #1a2117; box-shadow: 0 30px 70px rgba(22,35,12,.18); transform: rotate(1.5deg); }
.court-visual { min-height: 420px; position: relative; background: linear-gradient(145deg, #7fb61f, #3c6b11); overflow: hidden; }
.court-visual::before, .court-visual::after { content: ""; position: absolute; inset: 42px; border: 4px solid rgba(255,255,255,.82); }
.court-visual::after { inset: 42px 50%; border-top: 0; border-bottom: 0; border-right: 0; }
.court-net { position: absolute; left: 50%; top: 35px; bottom: 35px; width: 4px; background: rgba(255,255,255,.9); transform: translateX(-50%); }
.shuttle { position: absolute; right: 16%; top: 15%; font-size: 72px; filter: drop-shadow(0 10px 9px rgba(0,0,0,.22)); transform: rotate(-18deg); }
.availability { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; color: white; }
.availability small { display: block; color: #abb7a4; }
.availability strong { display: block; font-size: 18px; }
.availability a { color: var(--green); font-weight: 700; }

.section { padding: 92px 0; }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 38px; }
.section-head.center { justify-content: center; text-align: center; }
.section-head > p { max-width: 460px; color: var(--muted); }
.eyebrow { margin: 0 0 7px; color: #669e0c; font-size: 12px; font-weight: 800; letter-spacing: 1.8px; }
h2 { font-size: clamp(36px, 5vw, 54px); line-height: 1.05; letter-spacing: -2.5px; margin: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: white; border: 1px solid var(--line); padding: 28px; border-radius: 18px; }
.card .icon { font-size: 29px; }
.card h3 { margin: 18px 0 7px; }
.card p { color: var(--muted); margin: 0; }

.section-dark { background: var(--dark); color: white; }
.coaching-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 72px; align-items: center; }
.muted { color: #a6b09f; max-width: 620px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 800; margin-right: 10px; }
.coach-panel { background: #1d241a; border: 1px solid #303a2b; border-radius: 24px; padding: 34px; }
.coach-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--green); color: #172000; font-size: 12px; font-weight: 800; }
.coach-panel h3 { font-size: 29px; margin-bottom: 3px; }
.coach-panel p { color: #a6b09f; }
.coach-price { font-size: 36px; font-weight: 800; margin: 26px 0; }
.coach-price small { font-size: 13px; color: #a6b09f; font-weight: 500; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { position: relative; border: 1px solid var(--line); border-radius: 20px; padding: 30px; background: white; }
.price-card > span { font-size: 12px; font-weight: 800; color: #6e7a69; letter-spacing: 1.4px; }
.price-card h3 { font-size: 38px; margin: 14px 0 7px; }
.price-card h3 small { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card p { color: var(--muted); min-height: 74px; }
.price-card.featured { border: 2px solid #9fe016; box-shadow: 0 15px 50px rgba(105,168,0,.12); }
.popular { position: absolute; top: -13px; right: 18px; background: var(--green); padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; }

.booking-section { background: #edf2e7; }
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.booking-grid > div > p:last-child { color: var(--muted); max-width: 430px; }
.booking-form { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px; display: grid; gap: 18px; }
.booking-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; }
.booking-form input, .booking-form select { width: 100%; min-height: 48px; border: 1px solid #d7ddd2; border-radius: 10px; padding: 0 13px; background: white; outline: none; }
.booking-form input:focus, .booking-form select:focus { border-color: #8ac31e; box-shadow: 0 0 0 3px rgba(138,195,30,.14); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-message { margin: 0; font-size: 13px; color: #4d7210; font-weight: 700; }

.contact-card { background: #151a13; color: white; border-radius: 28px; padding: 48px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.contact-card p { color: #9daa96; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-card .btn-ghost { border-color: #4a5545; }
footer { padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 70px; flex-direction: column; align-items: stretch; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 18px 45px rgba(0,0,0,.1); }
  .nav-links.show { display: flex; }
  .hero-grid, .coaching-grid, .booking-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero h1 { letter-spacing: -3px; }
  .hero-card { max-width: 650px; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 26px, 1120px); }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: 52px; }
  .court-visual { min-height: 330px; }
  .stats { gap: 24px; }
  .section { padding: 70px 0; }
  .check-list { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
