:root {
  --navy: #061321;
  --navy-2: #0b1d2d;
  --ink: #102436;
  --panel: #122a3d;
  --gold: #d5ad43;
  --gold-light: #edc65b;
  --cream: #f7f3ea;
  --white: #ffffff;
  --muted: #a9bac9;
  --muted-2: #7f94a8;
  --line: rgba(213, 173, 67, 0.3);
  --soft-line: rgba(255, 255, 255, 0.1);
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #061321 0%, #071827 48%, #0a1724 100%);
  color: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.section-shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--soft-line);
  background: rgba(5, 17, 28, 0.97);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(213, 173, 67, 0.55);
  border-radius: 8px;
  background: var(--white);
  padding: 4px;
}

.brand-logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  color: var(--cream);
  font: 800 15px/1.02 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-name b {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font: 800 14px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav a {
  color: #94a8bb;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--cream);
}

.main-nav .active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
}

.nav-button {
  min-width: 124px;
  padding: 12px 22px;
  border-radius: 4px;
  background: var(--gold);
  color: #06121e !important;
  text-align: center;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(213, 173, 67, 0.18);
  background:
    linear-gradient(90deg, rgba(3, 13, 23, 0.98) 0%, rgba(5, 25, 36, 0.93) 42%, rgba(6, 46, 50, 0.76) 100%),
    repeating-linear-gradient(110deg, transparent 0 98px, rgba(228, 190, 86, 0.13) 99px 100px, transparent 101px 190px);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(6, 19, 33, 0.9));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: center;
  padding: 80px 0 96px;
}

.hero-court {
  position: absolute;
  right: 6%;
  top: 8%;
  width: 45%;
  height: 78%;
  border: 1px solid rgba(213, 173, 67, 0.34);
  transform: perspective(900px) rotateY(-16deg) rotateZ(-4deg);
  box-shadow: inset 0 0 0 42px rgba(7, 21, 34, 0.25);
}

.hero-court::before,
.hero-court::after {
  position: absolute;
  content: "";
  background: rgba(213, 173, 67, 0.32);
}

.hero-court::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.hero-court::after {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font: 800 14px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  font-size: 116px;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-text {
  max-width: 560px;
  margin: 26px 0;
  color: #c3d0db;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 26px;
  font: 800 15px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: #071522;
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-outline {
  border-color: var(--gold);
  color: var(--cream);
}

.button-outline:hover {
  background: rgba(213, 173, 67, 0.12);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 48px;
}

.hero-stats div {
  min-width: 118px;
  border-right: 1px solid var(--line);
  padding-right: 26px;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font: 800 36px/1 "Barlow Condensed", sans-serif;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: #95a8bb;
  font-size: 11px;
  text-transform: uppercase;
}

.hero-logo-panel {
  width: min(100%, 430px);
  justify-self: end;
  border: 1px solid rgba(213, 173, 67, 0.34);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 237, 0.95));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  color: var(--navy);
  padding: 28px;
  text-align: center;
}

.hero-logo-panel img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.hero-logo-panel p {
  margin: 18px 0 2px;
  color: var(--navy);
  font: 800 26px/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.hero-logo-panel span {
  color: #526273;
  font-size: 13px;
  font-weight: 700;
}

.scroll-note {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #8aa0b3;
  font: 800 11px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.benefits {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -36px;
  border: 1px solid rgba(145, 165, 187, 0.17);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.benefit-card {
  min-height: 196px;
  border-right: 1px solid rgba(145, 165, 187, 0.16);
  padding: 26px;
}

.benefit-card:last-child {
  border-right: 0;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 6px;
  background: rgba(213, 173, 67, 0.13);
  color: var(--gold);
  font-size: 25px;
}

.benefit-card h3 {
  font-size: 25px;
}

.benefit-card p,
.copy-block p,
.section-intro,
.section-heading > p,
.price-card p,
.review-card p,
.join-banner p {
  color: var(--muted);
  font-size: 15px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 92px;
  align-items: center;
  padding-top: 135px;
  padding-bottom: 130px;
}

.image-stack {
  position: relative;
  min-height: 430px;
}

.club-badge-card,
.court-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
}

.club-badge-card {
  left: 0;
  top: 0;
  display: grid;
  width: 62%;
  height: 82%;
  place-items: center;
  border: 1px solid rgba(213, 173, 67, 0.38);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.club-badge-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.court-photo {
  right: 0;
  bottom: 0;
  display: grid;
  width: 52%;
  height: 70%;
  place-items: end start;
  border: 1px solid rgba(213, 173, 67, 0.28);
  background:
    linear-gradient(145deg, rgba(13, 45, 57, 0.96), rgba(16, 35, 55, 0.92) 55%, rgba(188, 143, 56, 0.76)),
    repeating-linear-gradient(110deg, transparent 0 42px, rgba(255, 255, 255, 0.13) 43px 44px, transparent 45px 84px);
  padding: 22px;
}

.court-photo::before,
.court-photo::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.court-photo::before {
  inset: 38px 24px;
}

.court-photo::after {
  left: 50%;
  top: 38px;
  bottom: 38px;
}

.court-photo span {
  position: relative;
  z-index: 1;
  color: rgba(246, 244, 237, 0.82);
  font: 800 15px "Barlow Condensed", sans-serif;
}

.copy-block h2,
.prices h2,
.teams h2,
.join-banner h2,
.reviews h2 {
  font-size: 74px;
}

.copy-block p {
  max-width: 570px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  color: var(--gold-light);
  font: 800 15px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.text-link span {
  font-size: 22px;
}

.prices {
  padding: 78px 0 112px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading > p {
  margin: 0;
  text-align: right;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  min-height: 178px;
  border: 1px solid rgba(145, 165, 187, 0.18);
  border-radius: 8px;
  background: var(--panel);
  padding: 25px;
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(213, 173, 67, 0.26);
}

.card-label,
.footer-title {
  color: #91a8bc;
  font: 800 12px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price-card strong {
  display: block;
  margin-top: 15px;
  color: var(--gold);
  font: 800 38px/1 "Barlow Condensed", sans-serif;
}

.price-card p {
  margin: 8px 0 0;
}

.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 8px;
  font: 800 10px "Barlow Condensed", sans-serif;
}

.fine-print {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.teams {
  padding: 74px 0 110px;
}

.section-intro {
  max-width: 600px;
  margin: 10px 0 34px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.team-card {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(213, 173, 67, 0.3);
  border-radius: 8px;
  background: rgba(18, 42, 61, 0.76);
  padding: 16px;
  text-align: center;
}

.team-card strong {
  color: var(--gold);
  font: 800 28px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.team-card span {
  color: var(--cream);
  font-size: 13px;
}

.team-card small {
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 8px;
  font: 800 10px "Barlow Condensed", sans-serif;
}

.training-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  border: 1px solid rgba(213, 173, 67, 0.3);
  border-radius: 8px;
  background: rgba(213, 173, 67, 0.05);
  padding: 20px 24px;
}

.clock {
  color: var(--gold);
  font-size: 26px;
}

.training-note strong {
  font-size: 15px;
}

.training-note p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-line {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-line a {
  color: var(--gold-light);
}

.join-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(6, 20, 32, 0.96), rgba(10, 50, 60, 0.78)),
    repeating-linear-gradient(165deg, #153547 0 2px, #0d2736 2px 30px);
  padding: 66px max(48px, 8%);
}

.join-banner::after {
  position: absolute;
  top: -50%;
  right: -5%;
  width: 55%;
  height: 200%;
  content: "";
  border: 1px solid rgba(213, 173, 67, 0.22);
  transform: rotate(18deg);
}

.join-banner > div,
.join-banner > a {
  position: relative;
  z-index: 1;
}

.join-banner h2 {
  font-size: 78px;
}

.join-banner p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
}

.reviews {
  padding-top: 112px;
  padding-bottom: 130px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.review-card {
  min-height: 255px;
  border: 1px solid rgba(145, 165, 187, 0.17);
  border-radius: 8px;
  background: var(--panel);
  padding: 27px;
}

.stars {
  color: var(--gold);
}

.review-card p {
  min-height: 80px;
  font-style: italic;
}

.review-card hr {
  border: 0;
  border-top: 1px solid rgba(145, 165, 187, 0.16);
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  margin-top: 15px;
  font: 800 18px "Barlow Condensed", sans-serif;
}

.review-card span {
  color: var(--gold);
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid rgba(145, 165, 187, 0.16);
  background: #0b1b2a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-top: 58px;
  padding-bottom: 48px;
}

.footer-logo {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(213, 173, 67, 0.55);
  border-radius: 8px;
  background: var(--white);
  padding: 5px;
}

.footer-inner p {
  color: var(--muted);
  font-size: 14px;
}

.footer-inner a {
  display: block;
  margin: 7px 0;
  color: #a8bbcb;
  font-size: 14px;
}

.footer-inner a:hover {
  color: var(--gold-light);
}

.footer-title {
  color: var(--gold-light) !important;
}

.copyright {
  border-top: 1px solid rgba(145, 165, 187, 0.12);
  padding: 17px 0;
  color: #657c90;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
  }

  h1 {
    font-size: 92px;
  }

  .copy-block h2,
  .prices h2,
  .teams h2,
  .join-banner h2,
  .reviews h2 {
    font-size: 60px;
  }

  .price-grid,
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(145, 165, 187, 0.16);
  }

  .about {
    gap: 56px;
  }
}

@media (max-width: 850px) {
  .section-shell {
    width: min(100% - 36px, var(--max));
  }

  .site-header {
    min-height: 74px;
    padding: 0 18px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--navy);
    padding: 12px 24px 22px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .main-nav .active {
    border: 0;
    padding-bottom: 12px;
  }

  .main-nav .nav-button {
    margin-top: 8px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 62px 0 88px;
  }

  .hero-logo-panel {
    justify-self: start;
    max-width: 360px;
  }

  .hero-court {
    right: -22%;
    width: 82%;
    opacity: 0.5;
  }

  h1 {
    font-size: 78px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 95px;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand-name {
    font-size: 13px;
  }

  .hero-inner {
    padding-top: 48px;
  }

  h1 {
    font-size: 60px;
  }

  .hero-text {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stats div {
    min-width: calc(50% - 12px);
    border-right: 0;
    padding-right: 0;
  }

  .benefits,
  .price-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(145, 165, 187, 0.16);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    text-align: left;
  }

  .image-stack {
    min-height: 330px;
  }

  .copy-block h2,
  .prices h2,
  .teams h2,
  .join-banner h2,
  .reviews h2 {
    font-size: 46px;
  }

  .training-note {
    align-items: flex-start;
  }

  .join-banner {
    padding: 46px 24px;
  }
}
