:root {
  --ink: #11151c;
  --muted: #5b6472;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --line: #dfe4dc;
  --green: #148a4f;
  --lime: #d6f24c;
  --blue: #1467a8;
  --red: #d8493f;
  --shadow: 0 24px 70px rgba(17, 21, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(246, 247, 242, 0.92);
  border-bottom: 1px solid rgba(223, 228, 220, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #e8efe2;
}

.nav-toggle {
  display: none;
  min-width: 64px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: calc(100svh - 75px);
  overflow: hidden;
  color: #fff;
}

.photo-hero {
  display: grid;
  align-items: end;
  padding: clamp(90px, 12vw, 160px) clamp(18px, 5vw, 72px) clamp(44px, 6vw, 78px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 12, 16, 0.82), rgba(8, 12, 16, 0.38) 58%, rgba(8, 12, 16, 0.1));
  content: "";
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-hero .eyebrow,
.band .eyebrow {
  color: var(--lime);
}

.hero-text,
.page-hero p,
.section-heading p,
.sport-hero p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
}

.photo-hero .hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(214, 242, 76, 0.2);
}

.button.primary:hover {
  background: #c2e727;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section,
.content-grid,
.contact-layout {
  padding: clamp(56px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 32px;
  align-items: end;
}

.section-heading {
  max-width: 780px;
}

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

.stat-grid div {
  padding: 18px;
  border-top: 5px solid var(--red);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 21, 28, 0.06);
}

.stat-grid dt {
  font-size: 1.65rem;
  font-weight: 950;
}

.stat-grid dd {
  margin: 0;
  color: var(--muted);
}

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

.sport-card,
.feature-card,
.info-panel,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(17, 21, 28, 0.06);
}

.sport-card {
  overflow: hidden;
}

.sport-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sport-card div,
.feature-card,
.info-panel {
  padding: 24px;
}

.sport-card p,
.feature-card p,
.info-panel p,
.legal-copy p {
  color: var(--muted);
}

.sport-card a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

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

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 34px;
  align-items: start;
  padding: clamp(56px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.timeline strong {
  color: var(--lime);
  font-size: 1.4rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.wide-action {
  min-width: 220px;
}

.page-hero {
  max-width: 980px;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 64px);
}

.page-hero.compact {
  padding-bottom: 22px;
}

.content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: start;
}

.content-grid article {
  max-width: 780px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
  content: "✓";
}

.contact-layout {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  padding-top: 24px;
}

.contact-details a {
  color: var(--blue);
  font-weight: 850;
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form {
  box-shadow: none;
}

.form-row {
  display: grid;
  gap: 8px;
}

.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cdd5ca;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(20, 103, 168, 0.18);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-weight: 650;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.sport-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.sport-hero img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sport-hero .button.primary {
  margin-top: 16px;
}

.policy-page {
  padding-bottom: 72px;
}

.legal-copy {
  max-width: 900px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: 28px;
}

.legal-copy h2 {
  margin-top: 26px;
  font-size: 1.35rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.tracking-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

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

@media (max-width: 820px) {
  .site-header {
    flex-direction: row;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .intro-band,
  .band,
  .split-section,
  .content-grid,
  .contact-layout,
  .sport-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

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

  .sport-hero img {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .brand span:last-child {
    max-width: 150px;
    line-height: 1.1;
  }

  .photo-hero {
    padding-top: 74px;
  }

  .sport-grid,
  .stat-grid,
  .interest-form {
    grid-template-columns: 1fr;
  }

  .timeline div {
    grid-template-columns: 52px 1fr;
  }

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