:root {
  --bg: #F5EFE0;
  --bg-alt: #EDE4D3;
  --fg: #1A1A18;
  --fg-muted: #6B6356;
  --primary: #1B3D2F;
  --accent: #D97706;
  --accent-light: #FEF3C7;
  --white: #FDFAF5;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  padding: 24px 48px;
  position: relative;
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, #E8DED1 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
  z-index: 2;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 48px;
  position: relative;
  z-index: 2;
}
.court-illustration {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 20px 60px rgba(27,61,47,0.15));
}
.court-svg {
  width: 100%;
  height: auto;
}
.hero-badge {
  margin-top: 28px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.badge-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.badge-sub {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--primary);
  padding: 100px 48px;
}
.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
}
.philosophy-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.philosophy-body {
  font-size: 1.05rem;
  color: rgba(253,250,245,0.75);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 56px;
}
.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(253,250,245,0.15);
  padding-top: 40px;
}
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(253,250,245,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== GEAR ===== */
.gear {
  padding: 100px 48px;
  background: var(--bg);
}
.gear-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 56px;
}
.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 900px;
}
.gear-card {
  background: var(--bg-alt);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease;
}
.gear-card:hover {
  transform: translateY(-2px);
}
.gear-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.gear-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.gear-card-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== COMMUNITY ===== */
.community {
  background: var(--bg-alt);
  padding: 100px 48px;
}
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.community-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.community-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.community-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.community-list li {
  font-size: 0.9rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
  font-weight: 500;
}
.community-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.community-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.community-block {
  background: var(--bg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 3px solid var(--accent);
}
.block-icon {
  color: var(--accent);
  flex-shrink: 0;
}
.community-block span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

/* ===== CLOSING ===== */
.closing {
  background: var(--primary);
  padding: 100px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}
.closing-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 1rem;
  color: rgba(253,250,245,0.7);
  line-height: 1.75;
  margin-bottom: 40px;
}
.closing-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 40px;
  border-radius: 2px;
}
.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(253,250,245,0.5);
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(27,61,47,0.1);
  padding: 48px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 8px;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 60px 24px 40px; }
  .hero-visual { padding: 40px 24px 60px; }
  .philosophy { padding: 72px 24px; }
  .philosophy-stats { grid-template-columns: 1fr; gap: 24px; }
  .gear { padding: 72px 24px; }
  .gear-grid { grid-template-columns: 1fr; }
  .community { padding: 72px 24px; }
  .community-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 40px 24px; }
}