@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #121212;
  line-height: 1.6;
}
body.nav-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

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

ul, ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.25rem;
  background: #121212;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  transition: top 0.1s ease;
}
.skip-link:focus {
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.text-center {
  text-align: center;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4b15a;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border-radius: 2px;
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background-color: #d4b15a;
  color: #121212;
  border-color: #d4b15a;
}
.btn--gold:hover {
  background-color: #b18a2e;
  border-color: #b18a2e;
}
.btn--dark {
  background-color: #121212;
  color: #ffffff;
  border-color: #121212;
}
.btn--dark:hover {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  border-color: #d4b15a;
  color: #d4b15a;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #121212;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 88px;
  transition: height 0.3s ease;
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo img {
  height: 68px;
  width: auto;
  transition: height 0.3s ease;
}

.is-home .site-header:not(.is-scrolled) .site-header__inner {
  height: 160px;
}
.is-home .site-header:not(.is-scrolled) .site-header__logo img {
  height: 140px;
}

.site-header__logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-header__cta {
  display: none;
  margin-left: 1rem;
}
@media (min-width: 992px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.site-nav {
  margin-left: auto;
  display: none;
}
@media (min-width: 992px) {
  .site-nav {
    display: block;
  }
}
.site-nav__list {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.site-nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.site-nav__link:hover, .site-nav__link.is-active {
  color: #d4b15a;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}
.hamburger:hover .hamburger__line {
  background-color: #d4b15a;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background-color: #121212;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav[aria-hidden=false] {
  transform: translateX(0);
}
.mobile-nav__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.mobile-nav__logo {
  height: 48px;
  width: auto;
}
.mobile-nav__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  text-transform: uppercase;
}
.mobile-nav__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.mobile-nav__close:hover {
  color: #d4b15a;
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-nav__link {
  display: block;
  padding: 0.9rem 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease;
}
.mobile-nav__link:hover {
  color: #d4b15a;
}
.mobile-nav__cta {
  margin-top: 2.5rem;
  text-align: center;
  width: 100%;
  justify-content: center;
}
.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 18, 18, 0.65);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav__overlay[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  background-color: #121212;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 160px;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 4rem;
}
.hero__text {
  max-width: 700px;
}
.hero__headline {
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: #ffffff;
  line-height: 0.92;
  margin-bottom: 0.4rem;
}
.hero__subheadline {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: #d4b15a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
}
.hero__body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__media {
  display: none;
}
@media (min-width: 992px) {
  .hero__media {
    display: block;
    position: absolute;
    bottom: 0;
    right: 20%;
    z-index: 0;
    line-height: 0;
  }
}
.hero__img {
  display: block;
  height: 82vh;
  width: auto;
}

.section {
  padding-block: 5rem;
}
@media (min-width: 992px) {
  .section {
    padding-block: 7rem;
  }
}
.section--surface {
  background-color: #f7f7f7;
}
.section--charcoal {
  background-color: #121212;
  color: #ffffff;
}
.section--charcoal .section__body {
  color: rgba(255, 255, 255, 0.65);
}
.section--charcoal .section__headline {
  color: #ffffff;
}
.section__header {
  margin-bottom: 3.5rem;
  text-align: center;
}
.section__header--left {
  text-align: left;
}
.section__header--left .section__body {
  margin-inline: 0;
}
.section__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}
.section__body {
  margin-top: 1rem;
  color: rgba(18, 18, 18, 0.7);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}
.section__footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.about__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about__media {
  aspect-ratio: 4/3;
  background-color: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img-placeholder {
  width: 100%;
  height: 100%;
  background-color: rgb(236.8, 236.8, 236.8);
}

.about__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.about__body {
  color: rgba(18, 18, 18, 0.72);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.75rem;
  color: #d4b15a;
  line-height: 1;
}

.about__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(18, 18, 18, 0.55);
  margin-top: 0.25rem;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .proof__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.achievement-stat {
  text-align: center;
  padding: 2rem 1rem;
}
.achievement-stat__value {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #d4b15a;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.achievement-stat__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(18, 18, 18, 0.6);
}

.getting-started__inner {
  display: grid;
  gap: 4rem;
}
@media (min-width: 992px) {
  .getting-started__inner {
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
  }
}
.getting-started__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}
.getting-started .steps__list {
  margin-bottom: 2.5rem;
}

.who-can-join {
  margin-bottom: 3rem;
}
.who-can-join__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.45);
  margin-bottom: 0.75rem;
}
.who-can-join__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.who-can-join__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 100px;
  font-size: 0.85rem;
  color: #121212;
}
.who-can-join__item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d4b15a;
  flex-shrink: 0;
}

.teams-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .teams-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .teams-grid--full {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}
.team-card:hover .team-card__img {
  transform: scale(1.05);
}
.team-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.team-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: rgb(236.8, 236.8, 236.8);
}
.team-card__content {
  padding: 1.5rem;
}
.team-card__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: rgba(18, 18, 18, 0.07);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.team-card__name {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.team-card__age {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4b15a;
  margin-bottom: 0.25rem;
}
.team-card__level {
  font-size: 0.75rem;
  color: rgba(18, 18, 18, 0.5);
  margin-bottom: 0.75rem;
}
.team-card__desc {
  font-size: 0.9rem;
  color: rgba(18, 18, 18, 0.68);
  line-height: 1.65;
}

.teams-carousel {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .teams-carousel {
    grid-template-columns: 2.5rem 1fr 2.5rem;
  }
}
.teams-carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.teams-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
}
.teams-carousel__slide {
  flex-shrink: 0;
  padding: 0 0.5rem;
}
.teams-carousel__btn {
  background: none;
  border: none;
  color: rgba(18, 18, 18, 0.35);
  font-size: 1.1rem;
  padding: 0.5rem;
  transition: color 0.2s ease;
  justify-self: center;
}
.teams-carousel__btn:hover {
  color: #121212;
}

.values__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.value-item__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: rgba(212, 177, 90, 0.45);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.value-item__headline {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.value-item__body {
  font-size: 0.9rem;
  color: rgba(18, 18, 18, 0.68);
  line-height: 1.65;
}

.gallery__grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: rgb(236.8, 236.8, 236.8);
  border-radius: 2px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__empty {
  text-align: center;
  color: rgba(18, 18, 18, 0.35);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-block: 4rem;
}

.testimonials__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: #f7f7f7;
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(18, 18, 18, 0.82);
  flex: 1;
}
.testimonial-card__quote::before {
  content: "“";
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #d4b15a;
  line-height: 0.5;
  display: block;
  margin-bottom: 0.75rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgb(226.6, 226.6, 226.6);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: rgba(18, 18, 18, 0.55);
  margin-top: 0.15rem;
}

.section--charcoal .testimonial-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.section--charcoal .testimonial-card__quote p {
  color: rgba(255, 255, 255, 0.82);
}
.section--charcoal .testimonial-card__name {
  color: #ffffff;
}
.section--charcoal .testimonial-card__role {
  color: rgba(255, 255, 255, 0.45);
}
.section--charcoal .testimonial-card__avatar-placeholder {
  background-color: rgba(255, 255, 255, 0.08);
}
.section--charcoal .gallery__item {
  background-color: rgba(255, 255, 255, 0.06);
}
.section--charcoal .gallery__empty {
  color: rgba(255, 255, 255, 0.3);
}
.section--charcoal .step__headline {
  color: #ffffff;
}
.section--charcoal .step__body {
  color: rgba(255, 255, 255, 0.6);
}
.section--charcoal .section__headline {
  color: #ffffff;
}

.coaches__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .coaches__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .coaches__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.coach-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.875rem;
}
.coach-card__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: rgb(236.8, 236.8, 236.8);
  border-radius: 4px;
  margin-bottom: 0.875rem;
}
.coach-card__name {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.coach-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4b15a;
  margin-bottom: 0.5rem;
}
.coach-card__bio {
  font-size: 0.875rem;
  color: rgba(18, 18, 18, 0.68);
  line-height: 1.6;
  margin-top: 0.5rem;
}
.coach-card__teams {
  font-size: 0.75rem;
  color: rgba(18, 18, 18, 0.45);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.steps__list {
  display: grid;
  gap: 2rem;
  counter-reset: steps;
}
@media (min-width: 768px) {
  .steps__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .step {
    flex-direction: column;
    gap: 1rem;
  }
}
.step__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: rgba(212, 177, 90, 0.5);
  line-height: 1;
  flex-shrink: 0;
}
.step__headline {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.step__body {
  font-size: 0.9rem;
  color: rgba(18, 18, 18, 0.68);
  line-height: 1.65;
}

.section-cta {
  background-color: #121212;
  color: #ffffff;
  padding-block: 6rem;
}
.section-cta__inner {
  text-align: center;
}
.section-cta__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #ffffff;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.section-cta__body {
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.section-cta__note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.site-footer {
  background-color: #121212;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(212, 177, 90, 0.3);
}
.site-footer__inner {
  display: grid;
  gap: 2.5rem;
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1.25fr 1fr 2.75fr;
    column-gap: 2rem;
    align-items: start;
  }
}
.site-footer__brand {
  align-self: center;
}
.site-footer__logo {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.site-footer__logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  text-transform: uppercase;
  display: block;
}
.site-footer__contact {
  padding-top: 2.5rem;
}
.site-footer__contact ul:not(.site-footer__socials) {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.site-footer__col-heading {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}
.site-footer__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding-block: 0.35rem;
  transition: color 0.2s ease;
}
.site-footer__link i {
  color: #d4b15a;
  font-size: 0.75rem;
  width: 14px;
  flex-shrink: 0;
}
.site-footer__link:hover {
  color: #d4b15a;
}
.site-footer__socials {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
}
.site-footer__social-link {
  color: rgba(212, 177, 90, 0.65);
  font-size: 1.1rem;
  transition: color 0.2s ease;
}
.site-footer__social-link:hover, .site-footer__social-link:focus {
  color: #d4b15a;
}
.site-footer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .site-footer__cta {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 3.5rem;
  }
}
.site-footer__cta-headline {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.site-footer__cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-top: -0.5rem;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 1.25rem;
}
.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.site-footer__bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}
.site-footer__legal .site-footer__link {
  font-size: 0.8rem;
  padding-block: 0;
}
.site-footer__credit-link {
  color: rgba(212, 177, 90, 0.5);
  transition: color 0.2s ease;
}
.site-footer__credit-link:hover {
  color: #d4b15a;
}

.page-hero {
  padding-top: calc(88px + 3rem);
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.page-hero--dark {
  background-color: #121212;
  color: #ffffff;
  padding-top: calc(88px + 4rem);
  padding-bottom: 4rem;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-hero--dark .page-hero__headline,
.page-hero--dark .page-hero__body {
  color: #ffffff;
}
.page-hero--dark .page-hero__body {
  color: rgba(255, 255, 255, 0.65);
}
.page-hero__headline {
  font-size: clamp(3rem, 5vw, 5.5rem);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.page-hero__body {
  font-size: 1.1rem;
  color: rgba(18, 18, 18, 0.72);
  max-width: 560px;
  line-height: 1.75;
}
.page-hero__img {
  margin-top: 3rem;
  border-radius: 4px;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.page-hero__inline-link {
  color: #d4b15a;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.page-hero__inline-link:hover {
  opacity: 0.8;
}

.page-header {
  background-color: #121212;
  color: #ffffff;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding-block: 5rem;
}
.page-header .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}
.page-header__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.page-header__body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.75;
}

.about-who__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about-who__inner {
    grid-template-columns: 5fr 6fr;
    gap: 7rem;
  }
}
@media (min-width: 992px) {
  .about-who__inner--reverse {
    direction: rtl;
  }
  .about-who__inner--reverse > * {
    direction: ltr;
  }
}
.about-who__media {
  aspect-ratio: 3/4;
  background-color: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
}
.about-who__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-who__placeholder {
  width: 100%;
  height: 100%;
  background-color: rgb(236.8, 236.8, 236.8);
}
.about-who__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-who__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.about-who__body {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.7;
}
.about-who__body + .about-who__body {
  margin-top: 1rem;
}

.about-quick-facts {
  background-color: #ffffff;
  margin-top: 3rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .about-quick-facts {
    padding-bottom: 6rem;
  }
}
.about-quick-facts .eyebrow {
  margin-bottom: 1.25rem;
}
.about-quick-facts .section__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
}

.about-training {
  background-color: #f7f7f7;
  padding-block: 4rem;
}
@media (min-width: 992px) {
  .about-training {
    padding-block: 5.5rem;
  }
}
.about-training__header {
  margin-bottom: 3rem;
}
.about-training__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.about-training__intro {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.75;
  max-width: 560px;
}
.about-training__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .about-training__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .about-training__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}
.about-training__pillar {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(18, 18, 18, 0.12);
}
.about-training__title {
  font-size: clamp(1.2rem, 1.75vw, 1.5rem);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.about-training__body {
  font-size: 0.95rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.7;
}

.about-season {
  background-color: #121212;
  color: #ffffff;
  padding-block: 3rem;
}
@media (min-width: 992px) {
  .about-season {
    padding-block: 4.5rem;
  }
}
.about-season__split {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 992px) {
  .about-season__split {
    grid-template-columns: 6fr 4fr;
    gap: 8rem;
    align-items: center;
  }
}
.about-season__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.about-season__context {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 380px;
}
.about-season .season-stats__row {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.about-season .season-stats__label {
  color: rgba(255, 255, 255, 0.4);
}
.about-season .season-stats__value {
  color: #ffffff;
}
.about-season .season-stats__caption {
  color: rgba(255, 255, 255, 0.35);
}

.season-stats {
  width: 100%;
}
.season-stats__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  padding-block: 1rem;
}
.season-stats__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.45);
}
.season-stats__value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: #121212;
  line-height: 1;
}
.season-stats__caption {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(18, 18, 18, 0.4);
}

.about-beyond__header {
  padding-block: 6rem 0.75rem;
}
.about-beyond__conclusion {
  padding-block: 3rem 5rem;
}
@media (min-width: 992px) {
  .about-beyond__conclusion {
    padding-bottom: 7rem;
  }
}
.about-beyond__conclusion-text {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.6);
  line-height: 1.85;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .beyond-block--reverse .beyond-block__inner {
    direction: rtl;
  }
  .beyond-block--reverse .beyond-block__inner > * {
    direction: ltr;
  }
}
.beyond-block__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .beyond-block__inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }
}
.beyond-block__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: rgb(231.7, 231.7, 231.7);
  border-radius: 4px;
}
@media (min-width: 992px) {
  .beyond-block__media {
    aspect-ratio: auto;
    min-height: 400px;
    border-radius: 0;
  }
}
.beyond-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.beyond-block__placeholder {
  width: 100%;
  height: 100%;
  background-color: rgb(231.7, 231.7, 231.7);
}
.beyond-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
}
@media (min-width: 992px) {
  .beyond-block__content {
    padding: 4rem 5rem;
  }
}
.beyond-block__headline {
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.beyond-block__body {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.7;
  max-width: 420px;
}

.about-beyond .beyond-block__content {
  background-color: #f7f7f7;
}

.faq__contact-cue {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  font-size: 0.95rem;
  color: rgba(18, 18, 18, 0.6);
}
@media (min-width: 992px) {
  .faq__contact-cue {
    grid-column: 1/-1;
  }
}

.season-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .season-journey {
    flex-direction: row;
    align-items: flex-start;
  }
}
.season-journey__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
  flex: 1;
}
@media (min-width: 768px) {
  .season-journey__item {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0;
    padding-top: 1.25rem;
    border-top: 2px solid rgba(18, 18, 18, 0.12);
    border-left: none;
    gap: 0.75rem;
  }
}
.season-journey__item:last-child {
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}
@media (min-width: 768px) {
  .season-journey__item:last-child {
    border-bottom: none;
  }
}
.season-journey__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: rgba(18, 18, 18, 0.12);
  line-height: 1;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .season-journey__number {
    font-size: 2.5rem;
  }
}
.season-journey__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.6);
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .quick-facts {
    grid-template-columns: repeat(4, 1fr);
  }
}
.quick-facts__item {
  padding: 1.25rem 1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .quick-facts__item:nth-child(odd) {
    border-right: 1px solid rgba(18, 18, 18, 0.08);
  }
  .quick-facts__item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  }
}
@media (min-width: 768px) {
  .quick-facts__item {
    padding: 0.75rem 2rem;
    border-right: 1px solid rgba(18, 18, 18, 0.08);
  }
  .quick-facts__item:first-child {
    padding-left: 0;
  }
  .quick-facts__item:last-child {
    border-right: none;
    padding-right: 0;
  }
}
.quick-facts__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.4);
  margin-bottom: 0.5rem;
}
.quick-facts__value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  color: #121212;
  line-height: 1.1;
}

.faq__inner {
  max-width: 720px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .faq__inner {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 10rem;
  }
}

.faq-category {
  padding-top: 0;
}
.faq-category + .faq-category {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}
.faq-category[data-open] + .faq-category {
  border-top: none;
}
@media (min-width: 992px) {
  .faq-category {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: subgrid;
  }
}
.faq-category__toggle {
  background: none;
  border: none;
  padding: 0 0 0.75rem 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 992px) {
  .faq-category__toggle {
    padding-top: 0.8rem;
    padding-bottom: 0;
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.faq-category__label {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.faq-category__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #121212;
  line-height: 1.05;
}
.faq-category__count {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(18, 18, 18, 0.35);
  white-space: nowrap;
  position: relative;
  top: -0.1em;
}
.faq-category__chevron {
  display: none;
}
.faq-category__items {
  display: none;
}
.faq-category__items .faq-item:last-child {
  border-bottom: none;
}
.faq-category[data-open] .faq-category__items {
  display: block;
}

.faq-item {
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}
.faq-item[open] .faq-item__question {
  color: #121212;
}
.faq-item__question {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(18, 18, 18, 0.85);
  padding: 0.55rem 2rem 0.55rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
}
.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #d4b15a;
  line-height: 1;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item[open] .faq-item__question::after {
  content: "−";
}
.faq-item__answer {
  padding: 0 0 0.875rem 0;
  font-size: 0.95rem;
  color: rgba(18, 18, 18, 0.72);
  line-height: 1.75;
}

.page-hero--dark .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.contact-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .contact-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6rem;
    row-gap: 0;
  }
}
@media (min-width: 992px) {
  .contact-hero__headline-group {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (min-width: 992px) {
  .contact-hero__body-group {
    grid-column: 1;
    grid-row: 2;
  }
}
.contact-hero__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .contact-hero__info {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
  }
}
.contact-hero__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-hero__item i {
  font-size: 0.85rem;
  color: #ffffff;
  flex-shrink: 0;
  opacity: 0.75;
}
.contact-hero__value {
  font-size: 1rem;
  color: #ffffff;
  transition: color 0.2s ease;
}
.contact-hero__value:hover {
  color: #d4b15a;
}
.contact-hero__socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.875rem;
  padding-left: 0;
}
.contact-hero__social-icon {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}
.contact-hero__social-icon:hover {
  color: #d4b15a;
}

.contact-locations {
  background-color: #f7f7f7;
  padding-block: 6rem;
}
.contact-locations__header {
  margin-bottom: 3rem;
}
.contact-locations__headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-top: 0.5rem;
  line-height: 1.05;
}
.contact-locations__intro {
  margin-top: 0.875rem;
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.6);
  line-height: 1.7;
  max-width: 560px;
}

.location-cards {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
}

.location-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.location-card__content {
  padding: 1.5rem 1.75rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.location-card__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.location-card__venue {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(18, 18, 18, 0.75);
  margin-bottom: 0.15rem;
}
.location-card__address {
  font-size: 0.8rem;
  color: rgba(18, 18, 18, 0.45);
  line-height: 1.55;
  flex: 1;
}
.location-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #121212;
  transition: color 0.2s ease;
}
.location-card__link:hover {
  color: #d4b15a;
}
.location-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: rgb(234.25, 234.25, 234.25);
  flex-shrink: 0;
}
.location-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-card__img-placeholder {
  width: 100%;
  height: 100%;
  background-color: rgb(226.6, 226.6, 226.6);
}

.join-steps-section .container {
  max-width: 1400px;
}
.join-steps-section .steps__list {
  gap: 4rem;
}
.join-steps-section .step {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding-block: 1rem;
}
.join-steps-section .step__headline {
  margin-bottom: 0.875rem;
}
.join-steps-section .step__number {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  padding-top: 0.4rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.join-steps-section .step:hover .step__number {
  color: #d4b15a;
}

.join-editorial {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .join-editorial {
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
  }
}
@media (min-width: 992px) {
  .join-editorial--reverse {
    direction: rtl;
  }
  .join-editorial--reverse > * {
    direction: ltr;
  }
}
.join-editorial__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: rgb(224.05, 224.05, 224.05);
  font-size: 0;
}
@media (min-width: 992px) {
  .join-editorial__media {
    aspect-ratio: auto;
  }
}
.join-editorial__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-editorial__placeholder {
  width: 100%;
  height: 100%;
  background-color: rgb(224.05, 224.05, 224.05);
}
.join-editorial__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
}
@media (min-width: 992px) {
  .join-editorial__content {
    padding: 5rem 8rem;
  }
}
.join-editorial__headline {
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.join-editorial__body {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.75;
}
.join-editorial__body + .join-editorial__body {
  margin-top: 1rem;
}

.join-session__sequence {
  list-style: none;
  padding: 0;
  margin: 0;
}
.join-session__step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-block: 2.5rem;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
  align-items: start;
}
@media (min-width: 768px) {
  .join-session__step {
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    padding-block: 3rem;
  }
}
.join-session__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 6vw, 7rem);
  color: rgba(18, 18, 18, 0.07);
  line-height: 1;
  display: block;
  transition: color 0.2s ease;
}
.join-session__step:hover .join-session__num {
  color: #d4b15a;
}
.join-session__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .join-session__title {
    padding-top: 0.5rem;
  }
}
.join-session__body {
  font-size: 0.95rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.75;
}
.join-session__intro {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.65);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 0.75rem;
}
.join-session__closing {
  margin-top: 3.5rem;
  max-width: 560px;
}
@media (min-width: 768px) {
  .join-session__closing {
    margin-left: calc(120px + 2.5rem);
  }
}
.join-session__closing-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.4);
  margin-bottom: 0.5rem;
}
.join-session__closing-body {
  font-size: 0.9rem;
  color: rgba(18, 18, 18, 0.65);
  line-height: 1.7;
}

.join-teams__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .join-teams__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .join-teams__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}
.join-teams__item {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(18, 18, 18, 0.12);
}
.join-teams__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.join-teams__age {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #d4b15a;
  margin-bottom: 0.875rem;
}
.join-teams__desc {
  font-size: 0.875rem;
  color: rgba(18, 18, 18, 0.65);
  line-height: 1.65;
}
.join-teams__action {
  margin-top: 3rem;
  text-align: center;
}

.join-faq__inner {
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .join-faq__inner {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 10rem;
  }
}
.join-faq__header {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .join-faq__header {
    grid-column: 1/-1;
  }
}
.join-faq__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  margin-top: 0.5rem;
}

.page-join__form-wrap {
  max-width: 680px;
  margin-inline: auto;
}

.page-join__form {
  margin-top: 2.5rem;
}

.join-expect__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
  margin-inline: auto;
}

.join-expect__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(18, 18, 18, 0.8);
  line-height: 1.5;
}
.join-expect__item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d4b15a;
  flex-shrink: 0;
  margin-top: 0.5em;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__botcheck {
  display: none;
}
.form__row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form__field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.7);
}
.form__label--checkbox {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.5;
  cursor: pointer;
}
.form__input, .form__textarea, .form__select {
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #121212;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
  width: 100%;
  appearance: none;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #d4b15a;
}
.form__input::placeholder, .form__textarea::placeholder, .form__select::placeholder {
  color: rgba(18, 18, 18, 0.35);
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: #d4b15a;
  cursor: pointer;
}
.form__link {
  color: #d4b15a;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.form__link:hover {
  opacity: 0.8;
}

.teams-intro {
  padding-block-start: 3rem;
  padding-block-end: 1.25rem;
}
.teams-intro__note {
  font-size: 0.9rem;
  color: rgba(18, 18, 18, 0.55);
  line-height: 1.5;
  margin-bottom: 0.875rem;
}

.team-nav {
  margin-top: 0;
}
.team-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.team-nav__item {
  display: flex;
  align-items: center;
}
.team-nav__item + .team-nav__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 0.75em;
  background: rgba(18, 18, 18, 0.12);
  margin: 0 0.5em;
}
.team-nav__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  color: #121212;
  text-decoration: none;
  transition: color 0.15s ease;
}
.team-nav__link:hover {
  color: #d4b15a;
}
.team-nav__name {
  font-size: 0.875rem;
  font-weight: 500;
}
.team-nav__age {
  font-size: 0.6875rem;
  color: rgba(18, 18, 18, 0.38);
}

.teams-intro + .team-profile {
  padding-block-start: 1.75rem;
}
@media (min-width: 992px) {
  .teams-intro + .team-profile {
    padding-block-start: 2rem;
  }
}

.team-profile {
  scroll-margin-top: 100px;
}
.team-profile__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .team-profile__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
@media (min-width: 992px) {
  .team-profile--flip .team-profile__media {
    order: 2;
  }
}
@media (min-width: 992px) {
  .team-profile--flip .team-profile__content {
    order: 1;
  }
}
.team-profile__media {
  aspect-ratio: 4/5;
  background-color: rgb(236.8, 236.8, 236.8);
  border-radius: 4px;
  overflow: hidden;
}
.section--surface .team-profile__media {
  background-color: rgb(226.6, 226.6, 226.6);
}
.team-profile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-profile__placeholder {
  width: 100%;
  height: 100%;
}
.team-profile__content {
  display: flex;
  flex-direction: column;
}
.team-profile__name {
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 1;
  margin-top: 0.25rem;
  margin-bottom: 0.4rem;
}
.team-profile__age {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.4);
  margin-bottom: 1.75rem;
}
.team-profile__desc {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 1.75rem;
}
.team-profile__fits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-profile__fits li {
  font-size: 0.9rem;
  color: rgba(18, 18, 18, 0.65);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}
.team-profile__fits li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #d4b15a;
}

.teams-pillars__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .teams-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.teams-pillar {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(18, 18, 18, 0.12);
}
.teams-pillar__title {
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.teams-pillar__body {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.7;
  max-width: 520px;
}

.coaches-leadership {
  padding-block: 4rem;
}
@media (min-width: 992px) {
  .coaches-leadership {
    padding-block: 5.5rem;
  }
}

.coach-lead {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .coach-lead {
    grid-template-columns: 4fr 7fr;
    gap: 6rem;
  }
}
.coach-lead__media {
  aspect-ratio: 3/4;
  background-color: rgb(236.8, 236.8, 236.8);
  border-radius: 4px;
  overflow: hidden;
}
.coach-lead__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-lead__placeholder {
  width: 100%;
  height: 100%;
  background-color: rgb(236.8, 236.8, 236.8);
}
.coach-lead__content {
  display: flex;
  flex-direction: column;
}
.coach-lead__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4b15a;
  margin-bottom: 0.5rem;
}
.coach-lead__name {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.coach-lead__bio {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.7;
}
.coach-lead__bio + .coach-lead__bio {
  margin-top: 1rem;
}
.coach-lead__quals {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.coach-lead__quals li {
  font-size: 0.875rem;
  color: rgba(18, 18, 18, 0.6);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.coach-lead__quals li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #d4b15a;
}
.coach-lead__teams-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.38);
  margin-bottom: 0.3rem;
}
.coach-lead__teams {
  font-size: 0.875rem;
  color: rgba(18, 18, 18, 0.55);
}

.coaches-staff {
  background-color: #f7f7f7;
  padding-block: 3rem;
}
@media (min-width: 992px) {
  .coaches-staff {
    padding-block: 4.5rem;
  }
}
.coaches-staff__grid {
  display: grid;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .coaches-staff__grid {
    gap: 3rem;
  }
}

.coaches-philosophy--closing {
  background-color: #ffffff;
  padding-block: 5rem;
}
@media (min-width: 992px) {
  .coaches-philosophy--closing {
    padding-block: 7rem;
  }
}

.page-single {
  padding-top: calc(72px + 4rem);
  padding-bottom: 6rem;
}
.page-single__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
}
.page-single__body {
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(18, 18, 18, 0.8);
}
.page-single__body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.page-single__body p {
  margin-bottom: 1rem;
}
.page-single__body a {
  color: #d4b15a;
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
