/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --dark: #141414;
  --card: #1c1c1c;
  --yellow: #e8d84c;
  --yellow-light: #f5ee7e;
  --white: #ffffff;
  --gray: #888888;
  --light: #c8c8c8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.accent { color: var(--yellow); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.center { text-align: center; }

section { padding: 6rem 2rem; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
  padding: 1.2rem 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
}

.logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border: 2px solid #444;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-nav {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.3rem !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.btn-nav:hover { background: var(--yellow-light) !important; color: var(--black) !important; }


/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.hero-content { flex: 1; }

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero-sub {
  color: var(--light);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ===== ABOUT ===== */
.about { background: var(--dark); }

.about-grid {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-photo-wrap { flex: 0 0 360px; }

.about-photo-img {
  width: 360px;
  height: 460px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.about-text { flex: 1; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-text p {
  color: var(--light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.75;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0 2.5rem;
}

.about-list li {
  padding: 0.5rem 0;
  color: var(--light);
  font-size: 0.95rem;
  border-bottom: 1px solid #252525;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing { background: var(--black); }

.section-sub {
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid #252525;
  padding: 2.5rem;
  flex: 1;
  max-width: 420px;
  min-width: 280px;
  text-align: left;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  border-color: #3a3a3a;
  transform: translateY(-4px);
}

.card-featured {
  border-color: var(--yellow);
  background: #171700;
}

.card-featured:hover { border-color: var(--yellow-light); }

.badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
}

.price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  color: var(--yellow);
  line-height: 1;
  margin: 1rem 0;
  letter-spacing: 0.02em;
}

.price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0;
}

.card > p {
  color: var(--light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.card ul li {
  color: var(--light);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #252525;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card ul li::before {
  content: '→';
  color: var(--yellow);
  font-size: 0.85rem;
}

.free-lesson {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.free-lesson strong { color: var(--yellow); }

/* ===== REVIEWS ===== */
.reviews { background: var(--black); }

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.review-card {
  background: var(--card);
  border: 1px solid #252525;
  padding: 2rem;
  text-align: left;
  transition: border-color 0.2s;
}

.review-card:hover { border-color: #3a3a3a; }

.stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-card p {
  color: var(--light);
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.reviewer {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .review-grid { grid-template-columns: 1fr; }
}

.leave-review { background: var(--dark); }

.review-form-wrap {
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}


.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-form input,
.review-form select,
.review-form textarea {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  color: var(--white);
  padding: 0.95rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.review-form input::placeholder,
.review-form textarea::placeholder { color: #555; }

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus { border-color: var(--yellow); }

.review-form select { cursor: pointer; }
.review-form select option { background: #1a1a1a; color: var(--white); }
.review-form textarea { resize: vertical; min-height: 110px; }

.review-form button {
  width: 100%;
  padding: 1.05rem;
  font-size: 0.95rem;
  cursor: pointer;
}

/* ===== SCHEDULE ===== */
.schedule { background: var(--black); }

.calendly-inline-widget {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

/* ===== CONTACT ===== */
.contact { background: var(--dark); }

.courts {
  margin-bottom: 2rem;
}

.courts-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}

.courts p {
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.phone-link {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  transition: color 0.2s;
}

.phone-link:hover { color: var(--yellow-light); }


/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 1px solid #1c1c1c;
  padding: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p { color: var(--gray); font-size: 0.88rem; }
footer a { color: var(--yellow); text-decoration: none; }
footer a:hover { color: var(--yellow-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 4rem 1.5rem;
    min-height: auto;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid { flex-direction: column; gap: 3rem; }
  .about-photo-wrap { display: none; }

  .cards { flex-direction: column; align-items: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links a:not(.btn-nav) { display: none; }
  section { padding: 4rem 1.25rem; }
}
