@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Qualy";
  src: url("assets/fonts/qualy.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --acid: #edf000;
  --ink: #100f10;
  --black: #070807;
  --charcoal: #1c2024;
  --graphite: #363d45;
  --paper: #f3f3ec;
  --white: #ffffff;
  --muted: #a7aaa6;
  --line: rgba(16, 15, 16, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --radius: 2px;
  --header-height: 84px;
  --wrap: 1280px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(var(--wrap), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(90px, 10vw, 160px);
}

.section--dark {
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.section--ink {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--acid);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 14px 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    min-height 250ms var(--ease),
    background 250ms var(--ease),
    box-shadow 250ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(10, 10, 10, 0.93);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand img {
  width: 46px;
  height: 46px;
  transition: transform 350ms var(--ease);
}

.brand:hover img {
  transform: rotate(-8deg);
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.primary-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--acid);
  transition: transform 220ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

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

.button svg,
.text-link svg,
.mobile-book svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button--header {
  min-height: 46px;
  padding: 11px 19px;
  background: var(--acid);
  color: var(--ink);
}

.button--acid {
  background: var(--acid);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--acid);
}

.button--acid:hover {
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--white);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--ink {
  background: var(--ink);
  color: var(--white);
}

.button--ink:hover {
  background: var(--graphite);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: max(740px, 100svh);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero__video,
.hero__shade,
.hero__court-lines {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.92) 0%, rgba(5, 6, 5, 0.52) 50%, rgba(5, 6, 5, 0.22) 80%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.88) 0%, transparent 45%),
    radial-gradient(circle at 72% 42%, transparent 10%, rgba(0, 0, 0, 0.36) 100%);
}

.hero__court-lines {
  z-index: -1;
  opacity: 0.15;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(32% - 1px), #fff calc(32% - 1px), #fff calc(32% + 1px), transparent calc(32% + 1px));
  mask-image: linear-gradient(90deg, transparent, black 50%, black);
}

.hero__court-lines::before {
  content: "";
  position: absolute;
  top: 9%;
  right: 6%;
  width: min(42vw, 650px);
  aspect-ratio: 1.8;
  border: 1px solid rgba(255, 255, 255, 0.72);
  transform: perspective(600px) rotateX(64deg) rotateZ(-6deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 52px);
  padding-bottom: 180px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--acid);
  font-size: clamp(0.65rem, 0.8vw, 0.78rem);
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.eyebrow > span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--ink);
}

.hero__title {
  max-width: 1050px;
  margin-top: 24px;
  font-size: clamp(5rem, 10.8vw, 10.5rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: -0.075em;
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  color: var(--acid);
  margin-top: 0.08em;
}

.hero__lead {
  max-width: 640px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__proof {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 20px clamp(15px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero__proof li:last-child {
  border-right: 0;
}

.hero__proof strong {
  color: var(--acid);
  font-family: "Qualy", "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}

.hero__proof span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.video-control {
  position: absolute;
  z-index: 4;
  right: 32px;
  bottom: 136px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.video-control svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.video-control .icon-play {
  display: none;
  fill: currentColor;
  stroke: none;
}

.video-control.is-paused .icon-pause {
  display: none;
}

.video-control.is-paused .icon-play {
  display: block;
}

.ticker {
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  min-height: 74px;
  animation: ticker 26s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: clamp(44px, 5vw, 88px);
  min-width: 100vw;
  padding: 11px clamp(28px, 4vw, 70px);
}

.ticker__logo {
  display: grid;
  flex: 0 0 clamp(108px, 9vw, 154px);
  place-items: center;
  height: 50px;
}

.ticker__logo img {
  width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.25);
  mix-blend-mode: multiply;
  opacity: 0.78;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-heading {
  margin-bottom: clamp(50px, 7vw, 94px);
}

.section-heading h2 {
  margin-top: 20px;
  font-size: clamp(3.2rem, 7.4vw, 7.5rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.065em;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.section-heading--split > p {
  max-width: 500px;
  padding-bottom: 8px;
  color: #555956;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.section-heading--light {
  color: var(--white);
}

.club {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(16, 15, 16, 0.06) 50%, transparent 50.05%),
    var(--paper);
}

.club::before {
  content: "UP";
  position: absolute;
  top: 35%;
  left: -0.1em;
  color: rgba(16, 15, 16, 0.025);
  font-family: "Qualy", sans-serif;
  font-size: min(55vw, 780px);
  line-height: 0.7;
  pointer-events: none;
}

.club__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.76fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.club__image {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
}

.club__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.club__image:hover img {
  transform: scale(1.035);
}

.club__image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(8, 8, 8, 0.8);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}

.club__image figcaption span {
  color: var(--acid);
}

.club__image--wide {
  grid-column: 1 / span 2;
  aspect-ratio: 1.8;
}

.club__image--portrait {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 720px;
}

.club__story {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: clamp(28px, 4vw, 54px);
  background: var(--acid);
}

.club__story p {
  max-width: 500px;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 650;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.club__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--white);
}

.club__stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  padding: clamp(20px, 2.5vw, 38px);
  border-right: 1px solid var(--line-light);
}

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

.club__stats dt {
  color: var(--acid);
  font-family: "Qualy", "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  line-height: 1;
}

.club__stats dd {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.paths::before {
  content: "";
  position: absolute;
  top: 0;
  right: -22vw;
  width: 65vw;
  height: 100%;
  opacity: 0.12;
  background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.7) 44px 45px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(255, 255, 255, 0.7) 44px 45px);
  transform: skewX(-12deg);
  pointer-events: none;
}

.path-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-light);
}

.path-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 18px;
  min-height: 116px;
  padding: 26px clamp(18px, 3vw, 38px);
  text-align: left;
  border: 0;
  border-right: 1px solid var(--line-light);
  background: transparent;
  color: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.path-tabs button:last-child {
  border-right: 0;
}

.path-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  transform: scaleX(0);
  background: var(--acid);
  transition: transform 250ms var(--ease);
}

.path-tabs button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.path-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.path-tabs button span {
  grid-row: 1 / span 2;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 800;
}

.path-tabs button strong {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.path-tabs button small {
  margin-top: 7px;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.path-panels {
  position: relative;
  z-index: 1;
}

.path-panel {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  min-height: 650px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.path-panel[hidden] {
  display: none;
}

.path-panel__media {
  position: relative;
  overflow: hidden;
}

.path-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(16, 15, 16, 0.42));
}

.path-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 5vw, 76px);
}

.path-panel__number {
  color: var(--acid);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.path-panel h3 {
  margin-top: 22px;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.055em;
}

.path-panel__content > p:not(.path-panel__number) {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.66);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-block: 30px 36px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.76rem;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--acid);
}

.academy {
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 240, 0, 0.18), transparent 34%),
    var(--paper);
}

.academy__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.course-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(36px, 5vw, 72px);
}

.course-card--dark {
  background:
    linear-gradient(rgba(16, 15, 16, 0.9), rgba(16, 15, 16, 0.95)),
    url("assets/media/court-wide.jpg") center / cover;
  color: var(--white);
}

.course-card--acid {
  background: var(--acid);
  color: var(--ink);
}

.course-card__tag {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid currentColor;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.course-card h3 {
  margin-top: 30px;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.055em;
}

.course-card > p:not(.course-card__tag) {
  max-width: 560px;
  margin-top: 22px;
  opacity: 0.72;
}

.course-card dl {
  display: grid;
  gap: 1px;
  margin-block: auto 36px;
  padding-top: 38px;
}

.course-card dl div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid currentColor;
}

.course-card dt {
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.course-card dd {
  font-size: 1.45rem;
  font-weight: 900;
  white-space: nowrap;
}

.course-card dd span {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
}

.course-card--dark .button {
  align-self: flex-start;
}

.course-card--acid .button {
  align-self: flex-start;
}

.academy__note {
  max-width: 820px;
  margin: 34px auto 0;
  text-align: center;
  color: #666964;
  font-size: 0.78rem;
}

.academy__note a {
  color: var(--ink);
  font-weight: 750;
  border-bottom: 1px solid;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background:
    repeating-linear-gradient(90deg, transparent 0 74px, #fff 74px 75px),
    repeating-linear-gradient(0deg, transparent 0 74px, #fff 74px 75px);
  mask-image: radial-gradient(circle at 85% 20%, black, transparent 44%);
}

.pricing__ball {
  position: absolute;
  top: 110px;
  right: 7vw;
  width: clamp(110px, 15vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffff60, var(--acid) 42%, #bfc200 72%);
  box-shadow: 0 30px 80px rgba(237, 240, 0, 0.15);
  transform: rotate(18deg);
}

.pricing__ball::before,
.pricing__ball::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 2px solid rgba(16, 15, 16, 0.34);
  border-radius: 50%;
}

.pricing__ball::before {
  transform: translateX(-48%);
}

.pricing__ball::after {
  transform: translateX(48%);
}

.pricing-builder {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  border: 1px solid var(--line-light);
}

.pricing-builder__controls {
  display: grid;
  align-content: center;
  gap: 32px;
  padding: clamp(30px, 5vw, 64px);
  border-right: 1px solid var(--line-light);
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.035);
}

.segmented button {
  min-height: 48px;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.segmented button.is-active {
  background: var(--acid);
  color: var(--ink);
}

.pricing-builder__result {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 40px;
  min-height: 360px;
  padding: clamp(30px, 5vw, 70px);
}

.pricing-builder__result > div > p:first-child {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-builder__micro {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.price {
  display: flex;
  align-items: flex-start;
  color: var(--acid);
  line-height: 0.75;
}

.price span {
  padding-top: 12px;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
}

.price strong {
  font-family: "Qualy", "Montserrat", sans-serif;
  font-size: clamp(7rem, 15vw, 13rem);
  font-weight: 400;
  letter-spacing: -0.08em;
}

.pricing-builder__result .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.pricing__notes {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 20px 40px;
  padding: 26px 30px;
  border: 1px solid var(--line-light);
  border-top: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.pricing__notes strong {
  color: var(--acid);
}

.pricing__notes a {
  color: var(--white);
  font-weight: 750;
  border-bottom: 1px solid;
}

.lesson-prices {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  margin-top: clamp(70px, 8vw, 120px);
  padding-top: clamp(60px, 7vw, 100px);
  border-top: 1px solid var(--line-light);
}

.lesson-prices__intro h3 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.055em;
}

.lesson-prices__intro > p:last-child {
  max-width: 460px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.55);
}

.lesson-prices dl {
  display: grid;
}

.lesson-prices dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.lesson-prices dt {
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.lesson-prices dd {
  color: var(--acid);
  font-family: "Qualy", "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.lesson-prices dd span {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 650;
}

.membership {
  position: relative;
  overflow: hidden;
  background: var(--acid);
}

.membership__inner {
  display: grid;
  grid-template-columns: 0.42fr 1fr auto;
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  min-height: 400px;
  padding-block: 60px;
}

.membership__mark {
  display: grid;
  place-items: center;
  width: min(24vw, 270px);
  aspect-ratio: 1;
  border: clamp(16px, 2.2vw, 30px) solid var(--ink);
  border-radius: 50%;
  font-family: "Qualy", "Montserrat", sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 1;
}

.membership h2 {
  margin-top: 12px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}

.membership__inner > div:nth-child(2) > p:last-child {
  max-width: 650px;
  margin-top: 20px;
  font-weight: 560;
}

.membership__price {
  display: grid;
  justify-items: end;
  min-width: 180px;
}

.membership__price > span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.membership__price strong {
  margin-block: 8px 22px;
  font-family: "Qualy", "Montserrat", sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 1;
}

.gallery {
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(16, 15, 16, 0.05) 50%, transparent 50.1%),
    var(--paper);
}

.gallery .section-heading--split {
  align-items: end;
}

.gallery .section-heading--split > .text-link {
  justify-self: end;
  margin-bottom: 8px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 0.75fr;
  grid-template-rows: 340px 340px;
  gap: 18px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
}

.gallery__item--tall {
  grid-row: 1 / span 2;
}

.gallery__item--wide {
  grid-column: 2 / span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 700ms var(--ease), filter 350ms ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: saturate(1.15);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 9px 12px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.visit::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -8%;
  width: 50vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.02),
    0 0 0 160px rgba(255, 255, 255, 0.015);
}

.visit__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: stretch;
}

.visit h2 {
  margin-top: 22px;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.065em;
}

.visit__address {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 600;
}

.open-status {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  margin-top: 30px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.open-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8c9291;
}

.open-status.is-open span {
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(237, 240, 0, 0.12);
}

.visit__hours {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.visit__hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.7rem;
}

.visit__hours dt {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.visit__hours dd {
  font-weight: 800;
}

.visit__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 32px;
}

.visit__actions a {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 750;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.map-card {
  position: relative;
  isolation: isolate;
  min-height: 670px;
  overflow: hidden;
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.map-card > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.55);
  transition: filter 500ms ease, transform 700ms var(--ease);
}

.map-card:hover > img {
  filter: grayscale(0.35) contrast(1.08) brightness(0.65);
  transform: scale(1.035);
}

.map-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 60%);
}

.map-card__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.2;
  background:
    repeating-linear-gradient(90deg, transparent 0 70px, var(--acid) 70px 71px),
    repeating-linear-gradient(0deg, transparent 0 70px, var(--acid) 70px 71px);
}

.map-card__pin {
  position: absolute;
  top: 42%;
  left: 54%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--acid);
  border-radius: 50% 50% 50% 0;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  rotate: -45deg;
}

.map-card__pin img {
  width: 64px;
  height: 64px;
  rotate: 45deg;
}

.map-card__label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.map-card__label strong {
  font-size: 1.35rem;
}

.partners {
  padding-block: 56px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.partners .eyebrow {
  margin-bottom: 30px;
}

.partners__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 24px;
}

.partners__list a {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 20px;
  transition: background 220ms ease;
}

.partners__list a:hover {
  background: var(--paper);
}

.partners__list img {
  width: auto;
  max-width: 140px;
  max-height: 56px;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 220ms ease, opacity 220ms ease;
}

.partners__list a:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.site-footer {
  padding-block: 80px 30px;
  background:
    radial-gradient(circle at 92% 0%, rgba(237, 240, 0, 0.1), transparent 30%),
    var(--black);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  align-items: center;
  gap: 60px;
  padding-bottom: 74px;
}

.site-footer__wordmark {
  width: min(100%, 440px);
  height: auto;
}

.site-footer__top > p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.site-footer__bottom > div {
  display: flex;
  gap: 20px;
}

.site-footer__bottom a:hover {
  color: var(--acid);
}

.mobile-book {
  display: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .brand__name {
    display: none;
  }

  .primary-nav {
    gap: 20px;
  }

  .primary-nav a {
    font-size: 0.66rem;
  }

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

  .club__image--wide {
    grid-column: 1 / -1;
  }

  .club__image--portrait {
    grid-column: 2;
    grid-row: 2 / span 2;
    min-height: 620px;
  }

  .club__story,
  .club__stats {
    grid-column: 1;
  }

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

  .club__stats div {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .path-panel {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .path-panel__content {
    padding: 44px;
  }

  .pricing-builder {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .membership__inner {
    grid-template-columns: auto 1fr;
  }

  .membership__price {
    grid-column: 2;
    justify-items: start;
  }

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

  .gallery__item--wide {
    grid-column: 2;
  }

  .gallery__item:nth-child(4) {
    display: none;
  }

  .visit__grid {
    gap: 54px;
  }

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

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    grid-column: 1;
  }

  .site-footer__top .button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 40px, var(--wrap));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .site-header.is-scrolled {
    backdrop-filter: none;
  }

  .site-header > .button--header {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 100px 34px 40px;
    transform: translateX(100%);
    background:
      radial-gradient(circle at 100% 0%, rgba(237, 240, 0, 0.2), transparent 38%),
      var(--ink);
    transition: transform 350ms var(--ease);
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a {
    width: 100%;
    padding-block: 16px;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(2.1rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.05em;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(5, 6, 5, 0.96) 0%, rgba(5, 6, 5, 0.42) 75%),
      radial-gradient(circle at 50% 45%, transparent, rgba(0, 0, 0, 0.5));
  }

  .hero__content {
    padding-bottom: 250px;
  }

  .hero__title {
    font-size: clamp(4.25rem, 17vw, 7rem);
  }

  .hero__proof {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__proof li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-height: 132px;
  }

  .video-control {
    right: 20px;
    bottom: 156px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading--split > p {
    padding-bottom: 0;
  }

  .path-tabs {
    grid-template-columns: 1fr;
  }

  .path-tabs button {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .path-tabs button:last-child {
    border-bottom: 0;
  }

  .path-panel {
    grid-template-columns: 1fr;
  }

  .path-panel__media {
    min-height: 430px;
  }

  .path-panel__media::after {
    background: linear-gradient(0deg, rgba(16, 15, 16, 0.65), transparent 45%);
  }

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

  .pricing-builder {
    grid-template-columns: 1fr;
  }

  .pricing-builder__controls {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .pricing__notes a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .lesson-prices {
    grid-template-columns: 1fr;
  }

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

  .membership__mark {
    width: 180px;
  }

  .membership__price {
    grid-column: 1;
  }

  .gallery__grid {
    grid-template-rows: 360px 360px;
  }

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

  .map-card {
    min-height: 550px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__top > p,
  .site-footer__top .button {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer__top .button {
    justify-self: start;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 68px;
  }

  .wrap {
    width: min(100% - 32px, var(--wrap));
  }

  .section {
    padding-block: 82px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 780px;
  }

  .hero__content {
    align-self: start;
    padding-top: 155px;
    padding-bottom: 230px;
  }

  .hero__title {
    font-size: clamp(4rem, 20vw, 6.2rem);
    line-height: 0.82;
  }

  .hero__lead {
    max-width: 330px;
    margin-top: 26px;
    font-size: 0.96rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof li {
    min-height: 118px;
    padding: 16px 10px;
  }

  .hero__proof strong {
    font-size: 2.25rem;
  }

  .hero__proof span {
    font-size: 0.52rem;
    line-height: 1.3;
  }

  .video-control {
    bottom: 136px;
  }

  .ticker__track {
    min-height: 64px;
  }

  .ticker__group {
    gap: 38px;
    padding-inline: 24px;
  }

  .ticker__logo {
    flex-basis: 112px;
    height: 42px;
  }

  .ticker__logo img {
    max-height: 34px;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

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

  .club__image--wide {
    aspect-ratio: 1.1;
  }

  .club__story {
    min-height: 280px;
  }

  .club__image--portrait {
    min-height: 520px;
    order: 3;
  }

  .club__stats {
    order: 4;
  }

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

  .club__stats div {
    min-height: 130px;
  }

  .club__stats div:last-child {
    grid-column: 1 / -1;
  }

  .path-panel__media {
    min-height: 300px;
  }

  .path-panel__content {
    padding: 36px 24px 44px;
  }

  .path-panel h3 {
    font-size: 2.75rem;
  }

  .course-card {
    min-height: 590px;
    padding: 34px 24px;
  }

  .course-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .pricing__ball {
    top: 80px;
    right: -30px;
    opacity: 0.5;
  }

  .pricing-builder__controls,
  .pricing-builder__result {
    padding: 24px;
  }

  .pricing-builder__result {
    grid-template-columns: 1fr;
    min-height: 390px;
  }

  .price {
    grid-row: 2;
  }

  .price strong {
    font-size: 8.2rem;
  }

  .pricing__notes {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .pricing__notes a {
    grid-column: 1;
  }

  .lesson-prices dl div {
    gap: 12px;
  }

  .lesson-prices dt {
    font-size: 0.64rem;
  }

  .membership__mark {
    width: 140px;
    border-width: 15px;
  }

  .gallery .section-heading--split > .text-link {
    justify-self: start;
  }

  .gallery__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    scroll-snap-type: x mandatory;
  }

  .gallery__item,
  .gallery__item--tall,
  .gallery__item--wide {
    flex: 0 0 82vw;
    height: 480px;
    scroll-snap-align: start;
  }

  .gallery__item:nth-child(4) {
    display: block;
  }

  .map-card {
    min-height: 440px;
  }

  .map-card__pin {
    width: 76px;
    height: 76px;
  }

  .map-card__pin img {
    width: 52px;
    height: 52px;
  }

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

  .site-footer {
    padding-bottom: 96px;
  }

  .site-footer__bottom > div {
    flex-wrap: wrap;
  }

  .mobile-book {
    position: fixed;
    z-index: 900;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 58px;
    padding: 15px 20px;
    background: var(--acid);
    color: var(--ink);
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    transition:
      opacity 220ms ease,
      transform 280ms var(--ease);
  }

  .mobile-book.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker__track {
    animation: none;
    transform: translateX(0);
  }
}
