:root {
  --sport-bg: #f6f5f1;
  --sport-bg-soft: #efede7;
  --sport-panel: #ffffff;
  --sport-panel-strong: #f4f2ec;
  --sport-line: rgba(17, 17, 17, 0.1);
  --sport-line-strong: rgba(17, 17, 17, 0.16);
  --sport-text: #121212;
  --sport-text-soft: rgba(17, 17, 17, 0.7);
  --sport-text-faint: rgba(17, 17, 17, 0.46);
  --sport-accent: #111111;
  --sport-highlight: rgba(17, 17, 17, 0.04);
  --header-height: var(--brand-header-height, 84px);
  --nav-text: #111111;
  --nav-bg: rgba(255, 255, 255, 0.94);
  --nav-line: rgba(17, 17, 17, 0.08);
  --nav-line-strong: rgba(17, 17, 17, 0.16);
  --sport-glow: rgba(255, 255, 255, 0.34);
  --sport-hero-position: center center;
  --sport-section-position: center center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--brand-font-sans, "Inter", sans-serif);
  color: var(--sport-text);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(180deg, #faf9f5 0%, #f1efe9 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 86%);
  pointer-events: none;
  opacity: 0.5;
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-wrap {
  position: relative;
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), 1180px);
  margin-inline: auto;
}

.sport-main {
  padding-bottom: 48px;
}

.sport-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sport-line);
  background:
    radial-gradient(circle at 80% 12%, var(--sport-glow, rgba(255, 255, 255, 0.08)), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(180deg, #d8d4ca 0%, #cfc9bd 100%);
}

.sport-hero__media,
.sport-hero__media img {
  position: absolute;
  inset: 0;
}

.sport-hero__media {
  z-index: 0;
}

.sport-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--sport-hero-position, center center);
  filter: saturate(0.78) brightness(0.52) contrast(1.04);
  transform: scale(1.02);
}

.sport-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.sport-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 36px;
  align-items: end;
  min-height: calc(100vh - var(--header-height));
  padding: 96px 0 72px;
}

.sport-hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sport-text-faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.sport-hero .eyebrow,
.sport-hero h1,
.sport-hero__sub,
.sport-hero__lead,
.sport-hero .sport-stat__label,
.sport-hero .sport-stat p {
  color: #ffffff;
}

.sport-hero h1,
.sport-section h2,
.sport-cta h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.sport-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.sport-hero__sub {
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.82);
}

.sport-hero__lead {
  margin: 26px 0 0;
  max-width: 680px;
  color: var(--sport-text-soft);
  font-size: 1.04rem;
}

.sport-hero__meta {
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.sport-stat {
  padding: 22px 24px;
  border: 1px solid var(--sport-line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.sport-stat__label {
  margin: 0 0 10px;
  color: var(--sport-text-faint);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sport-stat p {
  margin: 0;
  color: var(--sport-text-soft);
}

.sport-section {
  padding: 26px 0;
}

.sport-section__card,
.sport-cta__inner {
  border: 1px solid var(--sport-line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 243, 237, 0.96)),
    var(--sport-panel);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.sport-section__card {
  padding: 34px;
}

.sport-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 28px;
  align-items: start;
}

.sport-section h2 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

.sport-section__copy {
  margin: 0;
  color: var(--sport-text-soft);
}

.sport-section__visual {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--sport-line);
  border-radius: 26px;
  background: #f0eee8;
  aspect-ratio: 16 / 8.6;
}

.sport-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--sport-section-position, center center);
  filter: saturate(0.82) brightness(0.62) contrast(1.02);
  transform: scale(1.02);
}

.sport-section__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.sport-section__visual--tight {
  aspect-ratio: 16 / 7.2;
}

.sport-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sport-list li {
  min-height: 100%;
  padding: 20px 22px;
  border: 1px solid var(--sport-line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fcfbf8, #f3f0ea);
  color: var(--sport-text);
}

.sport-list--targets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sport-list--targets li {
  padding: 0 18px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f3f0e9;
}

.sport-philosophy {
  position: relative;
  overflow: hidden;
}

.sport-philosophy::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--sport-glow, rgba(255, 255, 255, 0.08));
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.sport-philosophy__statement {
  position: relative;
  margin: 28px 0 0;
  padding-left: 24px;
  font-size: clamp(1.24rem, 2.3vw, 1.72rem);
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.sport-philosophy__statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.1em;
  width: 2px;
  background: rgba(17, 17, 17, 0.18);
}

.sport-cta {
  padding: 26px 0 0;
}

.sport-cta__inner {
  padding: 44px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f2efe8 100%);
}

.sport-cta h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.sport-cta p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--sport-text-soft);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--light {
  background: #111111;
  color: #ffffff;
}

.btn--ghost {
  background: rgba(17, 17, 17, 0.02);
  color: #111111;
  border-color: rgba(17, 17, 17, 0.14);
}

.sport-hero .btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--sport-line);
  background: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin: 0;
  color: var(--sport-text-faint);
  font-size: 13px;
  line-height: 1.7;
}

.footer-address {
  margin-top: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .sport-hero__inner,
  .sport-section__head,
  .sport-list {
    grid-template-columns: 1fr;
  }

  .sport-hero__inner {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .sport-hero__meta {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  body::before {
    background-size: 42px 42px;
  }

  .sport-section__card,
  .sport-cta__inner {
    padding: 26px;
    border-radius: 24px;
  }

  .sport-section__visual {
    border-radius: 20px;
  }

  .sport-stat {
    padding: 20px;
    border-radius: 20px;
  }

  .sport-hero h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .sport-hero__media img {
    transform: scale(1.06);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}
