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

:root {
  --dark: #071014;
  --dark-2: #101820;
  --gold: #e7b437;
  --gold-2: #ffcf48;
  --white: #ffffff;
  --muted: #d9e1e5;
  --panel: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
}

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

.topbar {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 12px 7%;
  font-size: 14px;
  background: #05090b;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero {
  min-height: 100vh;
  padding: 22px 7% 60px;
  background:
    linear-gradient(90deg, rgba(5, 9, 11, 0.98) 0%, rgba(7, 16, 20, 0.85) 42%, rgba(7, 16, 20, 0.55) 100%),
    url("assets/hero-squash.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -90px;
  width: 60%;
  height: 180px;
  background: var(--gold);
  transform: rotate(-7deg);
  opacity: 0.85;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gold-2), #9d6d10);
  color: #111;
  font-size: 42px;
  font-weight: 900;
  border-radius: 8px;
}

.brand strong {
  display: block;
  font-size: 28px;
  letter-spacing: 2px;
}

.brand small {
  display: block;
  letter-spacing: 6px;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu a:first-child {
  color: var(--gold-2);
}

.nav-button,
.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-button,
.button.gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
}

.button.outline {
  border: 1px solid var(--gold);
  color: var(--white);
}

.button.full {
  display: block;
  text-align: center;
  margin-top: 16px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 50px;
  align-items: center;
  padding-top: 95px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-style: italic;
}

h1 span {
  color: var(--gold-2);
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 620px;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 30px;
}

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

.register-card {
  background: rgba(255,255,255,0.92);
  color: #101820;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 22px 60px rgba(0,0,0,0.38);
}

.register-card h3 {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  padding: 18px;
  text-transform: uppercase;
  font-size: 18px;
}

.register-card p {
  padding: 0 22px;
  margin-top: 16px;
}

.registration-list {
  display: grid;
  gap: 8px;
  margin: 20px 22px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.registration-list li {
  color: #101820;
  font-weight: 800;
  padding: 10px 12px;
  background: rgba(231, 180, 55, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.small {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(5, 9, 11, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.feature-strip div {
  padding: 24px;
  border-right: 1px solid var(--border);
}

.feature-strip div:last-child {
  border-right: none;
}

.feature-strip span {
  font-size: 34px;
  display: block;
  margin-bottom: 10px;
}

.feature-strip h4 {
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.stats {
  margin: -40px auto 0;
  position: relative;
  z-index: 3;
  width: 86%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f7f7f7;
  color: #101820;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.stats div {
  padding: 28px;
  border-right: 1px solid #ddd;
}

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

.stats strong {
  display: block;
  color: #c89518;
  font-size: 28px;
}

.stats span {
  display: block;
  font-weight: 700;
}

.section {
  padding: 95px 7%;
}

.section-intro {
  max-width: 860px;
  font-size: 18px;
}

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

.light {
  background: #f8f8f8;
  color: #101820;
}

.light .eyebrow {
  color: #9d6d10;
}

.cards {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards article,
.coach-card,
.partner-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
}

.cards article {
  min-height: 210px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cards article:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.cards p,
.section p,
li {
  color: var(--muted);
}

.section.light > div > p,
.section.light > div > ul li {
  color: #34434c;
}

.split,
.coach {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.weeks {
  display: grid;
  gap: 12px;
}

.weeks div {
  background: #fff;
  color: #101820;
  padding: 18px;
  border-left: 6px solid var(--gold);
  border-radius: 12px;
  font-weight: 700;
}

.coach {
  background: linear-gradient(135deg, #111c22, #071014);
}

.coach-card ul {
  padding-left: 20px;
}

.partner-box {
  background: #101820;
  color: white;
}

.partner-box p {
  color: #d9e1e5;
}

.section.light .partner-box p {
  color: #eaf1f4;
}

.partner-box .button {
  margin-top: 22px;
}

.faq {
  background: #0b1419;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.faq-grid article {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.faq-grid p {
  color: var(--muted);
}

.contact {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #101820;
  text-align: center;
}

.contact .eyebrow {
  color: #5d3e00;
}

.contact p {
  color: #101820;
  max-width: 720px;
  margin: 0 auto 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-grid a {
  background: #101820;
  color: white;
  padding: 20px;
  border-radius: 12px;
  font-weight: 900;
}

footer {
  text-align: center;
  padding: 34px 7%;
  background: #05090b;
  color: var(--muted);
}

footer strong {
  color: var(--gold-2);
  font-size: 22px;
}

footer a {
  color: var(--gold-2);
  font-weight: 700;
}

@media (max-width: 1050px) {
  .menu {
    display: none;
  }

  .hero-content,
  .split,
  .coach {
    grid-template-columns: 1fr;
  }

  .register-card {
    max-width: 360px;
  }

  .feature-strip,
  .stats,
  .cards.three,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .topbar {
    justify-content: flex-start;
    gap: 12px;
  }

  .hero {
    padding: 18px 5% 50px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    letter-spacing: 3px;
  }

  .nav-button {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  .feature-strip,
  .stats,
  .cards.three,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    width: 92%;
  }

  .section {
    padding: 70px 5%;
  }
}
