:root {
  --ink: #17211f;
  --muted: #5d6865;
  --line: #dce4df;
  --paper: #fbfcf9;
  --soft: #eef5ef;
  --mint: #d7efdf;
  --green: #1f6f4a;
  --green-dark: #12472f;
  --clay: #c96f44;
  --gold: #e2b64c;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 33, 31, 0.14);
}

@font-face {
  font-family: "LandingSans";
  src: local("Segoe UI"), local("Arial");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "LandingSans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.site-header {
  min-height: 88vh;
  background:
    linear-gradient(120deg, rgba(31, 111, 74, 0.14), transparent 42%),
    linear-gradient(180deg, var(--white), var(--soft));
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(31, 111, 74, 0.24);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green-dark);
  background: transparent;
}

.court-graphic {
  position: relative;
  min-height: 430px;
  border: 2px solid rgba(18, 71, 47, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.72) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, rgba(255,255,255,0.78) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(135deg, #1f6f4a, #5aa16f 54%, #c96f44);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.court-line {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255, 255, 255, 0.78);
}

.court-line.top {
  top: 23%;
}

.court-line.middle {
  top: 50%;
}

.court-line.bottom {
  top: 77%;
}

.racket {
  position: absolute;
  width: 120px;
  height: 170px;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 52% 52% 48% 48%;
}

.racket::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -92px;
  width: 13px;
  height: 96px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  transform: translateX(-50%);
}

.racket::after {
  content: "";
  position: absolute;
  inset: 20px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.55) 1px, transparent 1px) 0 0 / 17px 100%,
    linear-gradient(180deg, rgba(255,255,255,0.55) 1px, transparent 1px) 0 0 / 100% 17px;
  border-radius: 50%;
}

.racket-one {
  left: 12%;
  top: 24%;
  transform: rotate(-24deg);
}

.racket-two {
  right: 11%;
  bottom: 23%;
  transform: rotate(148deg);
}

.ball {
  position: absolute;
  top: 46%;
  left: 48%;
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(226, 182, 76, 0.22);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  border-bottom: 1px solid var(--line);
}

.text-stack {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sport-card,
.fact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.sport-card p,
.fact-box li {
  color: var(--muted);
}

.sport-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.equipment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.equipment-copy {
  max-width: 720px;
}

.equipment-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.mv-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 90px max(16px, calc((100% - 1120px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: start;
  color: var(--white);
  background: var(--green-dark);
}

.mv-panel .section-kicker,
.mv-panel a {
  color: var(--mint);
}

.mv-panel p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.mv-panel .button.primary {
  margin-top: 14px;
  color: var(--green-dark);
  background: var(--mint);
  border-color: var(--mint);
}

.fact-box {
  color: var(--ink);
  background: var(--white);
}

.fact-box ul {
  margin: 0;
  padding-left: 20px;
}

.fact-box li + li {
  margin-top: 10px;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .mv-panel {
    grid-template-columns: 1fr;
  }

  .equipment {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 44px;
  }

  .court-graphic {
    min-height: 330px;
  }

  .sport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: auto;
  }

  .section {
    padding: 58px 0;
  }

  .sport-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .court-graphic {
    min-height: 280px;
  }

  .racket {
    width: 88px;
    height: 124px;
    border-width: 8px;
  }

  .racket::before {
    bottom: -72px;
    height: 76px;
  }
}
