:root {
  --cream: #faf9f3;
  --ink: #070707;
  --plum: #56234c;
  --red: #f90000;
  --muted: rgba(7, 7, 7, 0.62);
  --white: #fff;
  --pad: clamp(24px, 8vw, 117px);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--red);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  color: var(--ink);
  transition: color 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.on-dark,
.site-header.menu-active {
  color: var(--white);
}

.site-header.scrolled:not(.menu-active) {
  background: rgba(250, 249, 243, 0.82);
  backdrop-filter: blur(18px);
}

.site-header.scrolled.on-dark:not(.menu-active) {
  background: rgba(7, 7, 7, 0.2);
  backdrop-filter: blur(20px);
}

.brand-mark {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  font-size: 18px;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-button.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.block {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.05) 1px, transparent 1px) 0 0 / calc(100vw / 12) 100%,
    var(--cream);
}

.block.is-dark {
  color: var(--white);
  background: var(--ink);
}

.block-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(92px, 10vw, 122px) var(--pad) clamp(64px, 8vw, 92px);
}

h1,
h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

p {
  margin: 0;
  line-height: 1.55;
}

.hero-image,
.hero-overlay,
.hero-video-stage,
.hero-video,
.hero-cinema {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-stage {
  z-index: 0;
  overflow: hidden;
  background: #020202;
  transform:
    translate3d(0, calc(var(--parallax, 0) * 12px), 0)
    scale(calc(1.01 + (var(--hero-scroll, 0) * 0.24)));
  transform-origin: 55% 51%;
  will-change: transform;
}

.hero-video,
.hero-video-stage .hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-video {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
  will-change: opacity, filter;
}

.hero-video-intro {
  opacity: 1;
  filter: brightness(0.9) contrast(1.04) saturate(0.92);
}

.hero-video-loop {
  filter: brightness(0.95) contrast(1.04) saturate(0.94);
}

.hero-video-scroll {
  opacity: var(--hero-scroll-video, 0);
  filter: brightness(0.9) contrast(1.06) saturate(0.92);
}

.hero-video-stage .hero-image {
  opacity: 0.14;
  filter: brightness(0.28) contrast(1.12) saturate(0.75);
}

.hero-block.hero-looping .hero-video-intro,
.hero-block.hero-scrolling .hero-video-intro {
  opacity: 0;
}

.hero-block.hero-looping .hero-video-loop {
  opacity: calc(1 - (var(--hero-scroll, 0) * 1.35));
}

.hero-block.hero-scrolling .hero-video-loop {
  opacity: calc(0.72 - (var(--hero-scroll, 0) * 0.72));
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.18) contrast(1.18) saturate(0.78);
  transform:
    translate3d(0, calc(var(--parallax, 0) * 18px), 0)
    scale(calc(1.045 + (var(--hero-scroll, 0) * 0.23)));
  transform-origin: 55% 51%;
  animation: heroImageReveal 5.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both, heroBreath 12s ease-in-out 5.6s infinite;
  will-change: transform, filter;
}

.hero-video-stage .hero-image {
  z-index: -1;
  opacity: 0.14;
  filter: brightness(0.28) contrast(1.12) saturate(0.75);
  animation: none;
  transform: none;
}

.hero-cinema {
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transform:
    translate3d(0, calc(var(--parallax, 0) * 10px), 0)
    scale(calc(1 + (var(--hero-scroll, 0) * 0.28)));
  transform-origin: 55% 51%;
  animation: heroCinemaIn 5.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-cinema::before,
.hero-cinema::after,
.hero-light-map,
.light-points,
.energy-line,
.venue-glow {
  position: absolute;
  pointer-events: none;
}

.hero-cinema::before {
  inset: -10%;
  content: "";
  background:
    radial-gradient(circle at 55% 51%, rgba(255, 243, 206, 0.35), rgba(255, 214, 136, 0.08) 17%, transparent 34%),
    radial-gradient(circle at 69% 56%, rgba(249, 0, 0, 0.14), transparent 21%),
    radial-gradient(circle at 45% 58%, rgba(255, 255, 255, 0.1), transparent 26%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(0.82);
  animation: centralIgnition 4.8s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards, glowPulse 8s ease-in-out 5.4s infinite;
}

.hero-cinema::after {
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 56% 52%, transparent 0 18%, rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0.42) 74%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.38));
  opacity: calc(0.88 - (var(--hero-scroll, 0) * 0.18));
}

.hero-light-map {
  inset: 0;
  background:
    linear-gradient(116deg, transparent 8%, rgba(255, 232, 170, 0.11) 34%, transparent 44%) 0 38% / 100% 4px no-repeat,
    linear-gradient(31deg, transparent 10%, rgba(255, 255, 255, 0.1) 50%, transparent 60%) 0 62% / 100% 3px no-repeat,
    linear-gradient(157deg, transparent 20%, rgba(255, 210, 132, 0.1) 52%, transparent 63%) 0 48% / 100% 3px no-repeat,
    radial-gradient(circle at 75% 62%, rgba(255, 224, 156, 0.16), transparent 10%),
    radial-gradient(circle at 68% 69%, rgba(255, 230, 174, 0.12), transparent 8%);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: cityEdgesOn 5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards, edgeBreath 7s ease-in-out 5.8s infinite;
}

.energy-line {
  width: min(44vw, 660px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 238, 195, 0.72), rgba(255, 255, 255, 0.24), transparent);
  box-shadow: 0 0 18px rgba(255, 213, 137, 0.22);
  filter: blur(0.15px);
  opacity: 0;
  transform-origin: right center;
  animation: lightTrace 3.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.line-a {
  left: -5%;
  top: 42%;
  transform: rotate(22deg) translateX(-22%);
  animation-delay: 0.5s;
}

.line-b {
  right: -6%;
  top: 34%;
  transform: rotate(154deg) translateX(-18%);
  animation-delay: 0.95s;
}

.line-c {
  left: 8%;
  bottom: 22%;
  transform: rotate(-18deg) translateX(-20%);
  animation-delay: 1.15s;
}

.line-d {
  right: 3%;
  bottom: 31%;
  transform: rotate(202deg) translateX(-20%);
  animation-delay: 1.45s;
}

.line-e {
  left: 22%;
  top: 18%;
  width: min(30vw, 420px);
  transform: rotate(68deg) translateX(-18%);
  animation-delay: 1.8s;
}

.venue-glow {
  width: clamp(120px, 18vw, 300px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 245, 210, 0.42), rgba(255, 204, 116, 0.12) 32%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(10px);
  animation: venueOn 4.4s cubic-bezier(0.16, 1, 0.3, 1) forwards, glowPulse 7s ease-in-out 5.8s infinite;
}

.glow-center {
  left: 45%;
  top: 35%;
  animation-delay: 1.75s;
}

.glow-field {
  right: 25%;
  bottom: 25%;
  width: clamp(92px, 13vw, 220px);
  background: radial-gradient(circle, rgba(255, 236, 184, 0.25), rgba(177, 255, 185, 0.09) 35%, transparent 70%);
  animation-delay: 2.65s;
}

.glow-court {
  right: 13%;
  bottom: 31%;
  width: clamp(74px, 9vw, 160px);
  background: radial-gradient(circle, rgba(255, 216, 124, 0.28), rgba(255, 190, 70, 0.08) 38%, transparent 70%);
  animation-delay: 2.9s;
}

.light-points {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 244, 209, 0.6) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 201, 119, 0.34) 0 1px, transparent 1.8px);
  background-position: 8% 18%, 0 0;
  background-size: 83px 71px, 139px 111px;
  mix-blend-mode: screen;
  opacity: 0;
  mask-image: radial-gradient(circle at 55% 52%, black 0 38%, transparent 72%);
  animation: pointsDrift 5.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards, particlesMove 10s linear 5.2s infinite;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 55% 52%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.5));
  opacity: calc(1 - (var(--hero-scroll, 0) * 0.2));
}

.hero-inner {
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  width: min(860px, 100%);
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.72);
  transform: translate3d(0, calc(var(--hero-scroll, 0) * -34px), 0);
  transition: transform 0.12s linear;
}

.hero-copy h1 {
  font-size: clamp(88px, 8.9vw, 128px);
  line-height: 1.04;
}

.hero-copy p {
  max-width: 640px;
  margin-top: 18px;
  font-size: clamp(20px, 2vw, 24px);
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.86);
}

.build-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 64px;
  align-items: center;
}

.copy-stack {
  align-self: start;
  padding-top: 96px;
}

.section-label {
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 18px;
}

.copy-stack h2,
.brand-heading h2,
.athlete-copy h2,
.spaces-title h2,
.management-inner h2,
.footer-inner h2 {
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1.08;
}

.copy-stack > p:last-child {
  max-width: 600px;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 300;
}

.build-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tile {
  width: 100%;
  height: 242px;
  object-fit: cover;
  border-radius: 18px;
  transform: translate3d(0, calc(var(--parallax, 0) * -10px), 0);
  will-change: transform;
}

.tile-wide {
  grid-column: 1 / -1;
  height: 135px;
}

.word-strip {
  position: absolute;
  right: 0;
  bottom: 62px;
  left: 0;
  display: flex;
  width: max-content;
  color: rgba(7, 7, 7, 0.85);
  font-size: clamp(42px, 5vw, 72px);
  white-space: nowrap;
  animation: stripMove 24s linear infinite;
}

.word-strip-group {
  display: flex;
  gap: 110px;
  padding-right: 110px;
}

.brand-block {
  min-height: 100svh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px) 0 0 / calc(100vw / 12) 100%,
    var(--red);
}

.brand-block .block-inner {
  min-height: 100svh;
  padding-top: clamp(86px, 7vw, 104px);
  padding-bottom: clamp(44px, 5vw, 62px);
}

.brand-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.brand-heading p {
  font-size: clamp(32px, 4vw, 44px);
}

.brand-intro {
  max-width: 1234px;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 300;
}

.brand-carousel {
  width: 100vw;
  margin: 52px 0 0 calc(50% - 50vw);
  overflow: hidden;
}

.brand-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 3vw, 44px);
  animation: brandLoop 30s linear infinite;
  will-change: transform;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

.brand-track figure {
  flex: 0 0 clamp(300px, 28vw, 460px);
  height: clamp(300px, 28vw, 460px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.brand-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, calc(var(--parallax, 0) * -8px), 0);
  will-change: transform;
}

.brand-captions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(52px, 8vw, 126px);
  margin-top: clamp(44px, 6vh, 72px);
  padding: 0 24px;
}

.brand-captions article {
  max-width: 330px;
}

.mini-grid span {
  display: block;
  margin-bottom: 14px;
  color: rgba(7, 7, 7, 0.42);
  font-size: 12px;
  font-weight: 900;
}

.brand-captions h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 300;
}

.brand-captions p {
  font-size: 16px;
  font-weight: 300;
}

.athlete-block,
.athlete-block.is-dark {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.05) 1px, transparent 1px) 0 0 / calc(100vw / 12) 100%,
    var(--cream);
}

.athlete-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.athlete-collage {
  position: relative;
  min-height: 470px;
}

.athlete-main {
  position: absolute;
  left: 0;
  top: 45px;
  width: 229px;
  height: 365px;
  object-fit: cover;
  transform: translate3d(0, calc(var(--parallax, 0) * -12px), 0);
  will-change: transform;
}

.athlete-small {
  position: absolute;
  left: 241px;
  object-fit: cover;
  transform: translate3d(0, calc(var(--parallax, 0) * 10px), 0);
  will-change: transform;
}

.athlete-small.top {
  top: 18px;
  width: 184px;
  height: 167px;
}

.athlete-small.bottom {
  top: 200px;
  width: 252px;
  height: 274px;
}

.athlete-copy h2 {
  margin-bottom: 28px;
}

.athlete-copy > p {
  max-width: 720px;
  font-size: 16px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 237px));
  gap: 84px;
  margin-top: 76px;
}

.mini-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 24px;
}

.mini-grid span {
  color: rgba(255, 255, 255, 0.54);
}

.mini-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.mini-grid p {
  font-size: 16px;
}

.spaces-grid {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(34px, 5vh, 62px);
  align-content: center;
}

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

.spaces-media {
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) minmax(240px, 0.9fr) minmax(220px, 0.72fr);
  grid-template-rows: minmax(220px, 1fr) minmax(210px, 0.86fr);
  gap: 10px;
  align-items: stretch;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.spaces-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transform: translate3d(0, calc(var(--parallax, 0) * -10px), 0);
  will-change: transform;
}

.spaces-main {
  grid-row: 1 / 3;
}

.spaces-media img:not(.spaces-main) {
  min-height: 0;
}

.spaces-copy {
  display: flex;
  grid-column: 2 / 4;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: clamp(34px, 4vw, 54px) clamp(40px, 5vw, 72px);
  color: var(--white);
  background: #111;
  border-radius: 8px;
  text-align: center;
}

.spaces-copy h3 {
  margin: 0 0 28px;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
}

.spaces-copy p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
}

.management-block {
  background: var(--ink);
}

.management-inner {
  display: grid;
  align-content: center;
}

.management-inner h2 {
  text-align: center;
}

.people-list {
  width: min(886px, 100%);
  margin: 56px auto 0;
}

.people-list article {
  display: grid;
  grid-template-columns: 220px 260px 1fr;
  gap: 32px;
  align-items: center;
  min-height: 86px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.people-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.people-list strong {
  font-size: 23px;
  font-weight: 900;
}

.people-list span,
.people-list p {
  font-size: 16px;
}

.footer-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.back-arrow {
  position: absolute;
  top: clamp(96px, 12vh, 132px);
  right: var(--pad);
  width: 74px;
  height: 74px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.back-arrow::before,
.back-arrow::after {
  position: absolute;
  content: "";
}

.back-arrow::before {
  top: 29px;
  left: 22px;
  width: 28px;
  height: 28px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.back-arrow::after {
  top: 24px;
  left: 36px;
  width: 2px;
  height: 32px;
  background: currentColor;
}

.back-arrow:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-6px);
}

.footer-inner h2 {
  max-width: 860px;
}

.footer-inner p {
  margin-top: 42px;
  font-size: 16px;
}

.footer-inner small {
  margin-top: 190px;
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

@keyframes brandLoop {
  to {
    transform: translateX(calc(-50% - clamp(14px, 1.5vw, 22px)));
  }
}

@keyframes heroImageReveal {
  0% {
    filter: brightness(0.04) contrast(1.28) saturate(0.52);
  }

  38% {
    filter: brightness(0.09) contrast(1.22) saturate(0.58);
  }

  68% {
    filter: brightness(0.34) contrast(1.15) saturate(0.76);
  }

  100% {
    filter: brightness(0.68) contrast(1.08) saturate(0.88);
  }
}

@keyframes heroCinemaIn {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0.28;
  }

  100% {
    opacity: 1;
  }
}

@keyframes lightTrace {
  0% {
    opacity: 0;
    background-position: -100% 0;
    clip-path: inset(0 100% 0 0);
  }

  34% {
    opacity: 0.76;
  }

  78% {
    opacity: 0.56;
    clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 0.12;
    clip-path: inset(0 0 0 82%);
  }
}

@keyframes centralIgnition {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  48% {
    opacity: 0.78;
  }

  100% {
    opacity: 0.64;
    transform: scale(1);
  }
}

@keyframes cityEdgesOn {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  60% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.34;
    transform: scale(1);
  }
}

@keyframes venueOn {
  0% {
    opacity: 0;
    transform: scale(0.62);
  }

  68% {
    opacity: 0.72;
  }

  100% {
    opacity: 0.42;
    transform: scale(1);
  }
}

@keyframes pointsDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.96);
  }

  100% {
    opacity: 0.32;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroBreath {
  0%,
  100% {
    filter: brightness(0.68) contrast(1.08) saturate(0.88);
  }

  50% {
    filter: brightness(0.74) contrast(1.1) saturate(0.92);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.62;
  }
}

@keyframes edgeBreath {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.46;
  }
}

@keyframes particlesMove {
  to {
    background-position: 16% 22%, 6% 4%;
  }
}

@media (min-width: 921px) {
  .brand-heading {
    padding-top: 34px;
  }
}

@media (min-width: 1680px) {
  :root {
    --max: 2560px;
    --pad: clamp(220px, 13.75vw, 352px);
  }

  .site-header {
    min-height: 89px;
    padding: 0 var(--pad);
  }

  .brand-mark {
    font-size: 20px;
  }

  .site-nav {
    gap: 34px;
    font-size: 18px;
  }

  .block-inner {
    width: 100%;
    padding: clamp(154px, 10.1vw, 258px) var(--pad) clamp(96px, 7.4vw, 190px);
  }

  .hero-copy h1 {
    font-size: clamp(156px, 6.9vw, 177px);
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 1200px;
    font-size: 32px;
  }

  .hero-inner {
    padding-left: clamp(220px, 20.1vw, 515px);
    padding-bottom: clamp(120px, 9.6vw, 138px);
  }

  .copy-stack h2,
  .brand-heading h2,
  .athlete-copy h2,
  .spaces-title h2,
  .management-inner h2,
  .footer-inner h2 {
    font-size: 96px;
  }

  .build-grid {
    grid-template-columns: minmax(0, 894px) minmax(0, 827px);
    gap: clamp(88px, 5.3vw, 136px);
    align-items: start;
    padding-top: clamp(250px, 14.4vw, 368px);
  }

  .copy-stack {
    padding-top: clamp(76px, 4.7vw, 121px);
  }

  .copy-stack > p:last-child {
    max-width: 894px;
    margin-top: 42px;
    font-size: 24px;
    line-height: 1.5;
  }

  .build-media {
    gap: 22px;
  }

  .tile {
    height: clamp(240px, 14.27vw, 365px);
    border-radius: 10px;
  }

  .tile-wide {
    height: clamp(205px, 12.23vw, 313px);
  }

  .word-strip {
    bottom: clamp(72px, 6.2vw, 89px);
    font-size: 96px;
  }

  .word-strip-group {
    gap: clamp(96px, 6.2vw, 158px);
    padding-right: clamp(96px, 6.2vw, 158px);
  }

  .brand-block .block-inner {
    padding: clamp(190px, 10.6vw, 271px) clamp(220px, 12.2vw, 312px) clamp(96px, 7vw, 180px);
  }

  .brand-heading {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(80px, 19vw, 489px);
    align-items: start;
  }

  .brand-heading p {
    margin-top: clamp(24px, 2.4vw, 62px);
    font-size: 44px;
    line-height: 1.56;
  }

  .brand-intro {
    max-width: 1968px;
    margin-top: 28px;
    font-size: 24px;
    line-height: 1.5;
  }

  .brand-carousel {
    margin-top: 47px;
  }

  .brand-track {
    gap: 37px;
    padding-left: clamp(220px, 12.2vw, 312px);
  }

  .brand-track figure {
    flex-basis: clamp(360px, 18.3vw, 469px);
    height: clamp(360px, 18.3vw, 469px);
    border-radius: 10px;
  }

  .brand-captions {
    grid-template-columns: 394px 399px 471px;
    gap: clamp(178px, 13vw, 409px);
    margin-top: 82px;
    padding: 0 16px;
  }

  .brand-captions h3 {
    margin-bottom: 16px;
    font-size: 38px;
    line-height: 1.15;
  }

  .brand-captions p {
    font-size: 24px;
    line-height: 1.5;
  }

  .athlete-grid {
    grid-template-columns: minmax(0, 981px) minmax(0, 737px);
    gap: clamp(72px, 4.3vw, 111px);
    align-items: start;
    padding: clamp(220px, 12.7vw, 325px) clamp(240px, 14.25vw, 365px) 0;
  }

  .athlete-collage {
    min-height: 842px;
  }

  .athlete-main {
    top: 25px;
    width: clamp(326px, 19.4vw, 496px);
    height: clamp(520px, 30.9vw, 791px);
  }

  .athlete-small {
    left: 516px;
  }

  .athlete-small.top {
    top: 0;
    width: clamp(223px, 13.24vw, 339px);
    height: clamp(202px, 12vw, 308px);
  }

  .athlete-small.bottom {
    top: clamp(220px, 13.12vw, 336px);
    width: clamp(305px, 18.16vw, 465px);
    height: clamp(331px, 19.73vw, 505px);
  }

  .athlete-copy {
    padding-top: clamp(54px, 4vw, 102px);
  }

  .athlete-copy h2 {
    margin-bottom: 92px;
  }

  .athlete-copy > p {
    max-width: 737px;
    font-size: 16px;
  }

  .mini-grid {
    grid-template-columns: repeat(2, 237px);
    gap: 85px;
    margin-top: 90px;
  }

  .spaces-grid {
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    gap: clamp(74px, 4.4vw, 112px);
    padding: clamp(170px, 10.1vw, 258px) clamp(186px, 11.1vw, 284px) clamp(96px, 7.4vw, 190px);
  }

  .spaces-title h2 {
    font-size: 96px;
    line-height: 1.2;
  }

  .spaces-media {
    grid-template-columns: minmax(0, 830fr) minmax(0, 633fr) minmax(0, 496fr);
    grid-template-rows: clamp(265px, 15.78vw, 404px) clamp(224px, 13.36vw, 342px);
    gap: 18px 16px;
    width: min(77.85vw, 1993px);
  }

  .spaces-copy {
    min-height: auto;
    padding: 64px 86px;
  }

  .spaces-copy h3 {
    margin-bottom: 49px;
    font-size: 32px;
  }

  .spaces-copy p {
    max-width: 975px;
    font-size: 16px;
  }

  .management-inner {
    align-content: start;
    padding: clamp(200px, 11.5vw, 294px) clamp(300px, 21.5vw, 551px) 0;
  }

  .management-inner h2 {
    text-align: center;
  }

  .people-list {
    width: min(100%, 1394px);
    margin-top: 118px;
  }

  .people-list article {
    grid-template-columns: 222px 438px 1fr;
    gap: 32px;
    min-height: 142px;
    padding: 28px 0;
  }

  .people-list strong {
    font-size: 32px;
  }

  .footer-inner {
    justify-content: center;
    padding-left: clamp(340px, 20.6vw, 527px);
  }

  .footer-inner h2 {
    max-width: 976px;
  }

  .footer-inner p {
    margin-top: 42px;
    font-size: 16px;
  }

  .footer-inner small {
    margin-top: 260px;
  }

  .back-arrow {
    right: clamp(180px, 9.7vw, 249px);
    bottom: clamp(92px, 8.8vw, 130px);
  }
}

@media (max-width: 1180px) {
  :root {
    --pad: clamp(28px, 5.4vw, 64px);
  }

  .site-nav {
    gap: clamp(18px, 2.5vw, 30px);
    font-size: 16px;
  }

  .block-inner {
    padding-top: clamp(86px, 9vw, 112px);
    padding-bottom: clamp(56px, 7vw, 78px);
  }

  .hero-copy h1 {
    font-size: clamp(82px, 10vw, 118px);
  }

  .build-grid,
  .athlete-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 52px);
  }

  .copy-stack {
    padding-top: 44px;
  }

  .copy-stack h2,
  .brand-heading h2,
  .athlete-copy h2,
  .spaces-title h2,
  .management-inner h2,
  .footer-inner h2 {
    font-size: clamp(62px, 8vw, 86px);
  }

  .brand-heading {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .brand-heading p {
    font-size: clamp(28px, 4vw, 38px);
  }

  .brand-track figure {
    flex-basis: clamp(280px, 34vw, 380px);
    height: clamp(280px, 34vw, 380px);
  }

  .brand-captions {
    gap: clamp(24px, 4vw, 48px);
    padding: 0;
  }

  .spaces-media {
    grid-template-columns: minmax(300px, 1.06fr) minmax(210px, 0.9fr) minmax(190px, 0.8fr);
    width: 100%;
  }

  .spaces-copy {
    padding: 30px 34px;
  }

  .people-list article {
    grid-template-columns: 180px 220px 1fr;
    gap: 24px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    padding: 24px 20px;
  }

  .site-header.scrolled:not(.menu-active) {
    color: var(--ink);
  }

  .site-header.scrolled.on-dark:not(.menu-active) {
    color: var(--white);
    background: rgba(7, 7, 7, 0.2);
  }

  .menu-button {
    position: relative;
    z-index: 101;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    color: var(--white);
    background: rgba(0, 0, 0, 0.96);
    font-size: 34px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .block-inner {
    min-height: auto;
    padding: 98px 20px 72px;
  }

  .block {
    min-height: 100svh;
  }

  .hero-block {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-cinema {
    transform-origin: 57% 52%;
  }

  .energy-line {
    width: 72vw;
  }

  .line-e {
    display: none;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 58% 52%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.82) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32) 52%, rgba(0, 0, 0, 0.48));
  }

  .hero-inner {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-copy h1 {
    font-size: clamp(68px, 20vw, 88px);
  }

  .hero-copy p {
    font-size: 20px;
  }

  .build-grid,
  .brand-heading,
  .athlete-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .copy-stack {
    padding-top: 0;
  }

  .section-label {
    margin-bottom: 36px;
  }

  .copy-stack h2,
  .brand-heading h2,
  .athlete-copy h2,
  .spaces-title h2,
  .management-inner h2,
  .footer-inner h2 {
    font-size: clamp(56px, 16vw, 76px);
  }

  .build-media {
    grid-template-columns: 1fr 1fr;
  }

  .tile {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .tile-wide {
    aspect-ratio: 2.5 / 1;
  }

  .word-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 52px;
    padding-bottom: 6px;
    font-size: 42px;
  }

  .word-strip-group {
    gap: 56px;
    padding-right: 56px;
  }

  .brand-block,
  .brand-block .block-inner {
    min-height: auto;
  }

  .brand-intro {
    margin-top: 18px;
  }

  .brand-carousel {
    margin-top: 34px;
  }

  .brand-track {
    gap: 16px;
    animation-duration: 24s;
  }

  .brand-track figure,
  .brand-track figure {
    flex-basis: 78vw;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .brand-captions {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
    padding: 0;
  }

  .brand-captions article {
    max-width: none;
  }

  .athlete-collage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .athlete-main,
  .athlete-small {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .athlete-main {
    grid-row: span 2;
    aspect-ratio: 1 / 2.06;
  }

  .mini-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px;
  }

  .spaces-grid {
    display: block;
  }

  .spaces-media {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    margin-top: 34px;
  }

  .spaces-main {
    grid-row: auto;
  }

  .spaces-main,
  .spaces-media img:not(.spaces-main) {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .spaces-copy {
    grid-column: auto;
    width: auto;
    padding: 28px 24px;
    text-align: left;
  }

  .spaces-copy h3 {
    font-size: 26px;
  }

  .people-list article {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 150px;
    padding: 22px 0;
  }

  .back-arrow {
    top: 96px;
    right: 20px;
    width: 58px;
    height: 58px;
  }

  .back-arrow::before {
    top: 23px;
    left: 18px;
    width: 20px;
    height: 20px;
  }

  .back-arrow::after {
    top: 19px;
    left: 28px;
    height: 25px;
  }

  .footer-inner small {
    margin-top: 120px;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .brand-mark {
    max-width: none;
    font-size: 24px;
    white-space: nowrap;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .menu-button span {
    width: 15px;
    height: 2px;
    margin: 4px auto;
  }

  .hero-copy h1 {
    font-size: clamp(64px, 17.2vw, 68px);
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 311px;
    margin-top: 24px;
    font-size: 18px;
  }

  .copy-stack h2,
  .brand-heading h2,
  .athlete-copy h2,
  .spaces-title h2,
  .management-inner h2,
  .footer-inner h2 {
    font-size: clamp(52px, 14vw, 70px);
  }

  .copy-stack > p:last-child,
  .brand-intro,
  .athlete-copy > p,
  .spaces-copy p,
  .people-list span,
  .people-list p,
  .footer-inner p,
  .footer-inner small {
    font-size: 15px;
  }

  .build-media {
    grid-template-columns: 1fr;
  }

  .tile-wide {
    aspect-ratio: 1 / 1;
  }

  .brand-heading p {
    font-size: clamp(25px, 7vw, 30px);
  }

  .brand-captions h3 {
    font-size: 24px;
  }

  .athlete-main {
    aspect-ratio: 1 / 1.68;
  }

  .spaces-title {
    text-align: left;
  }

  .spaces-copy {
    margin-top: 0;
  }

  .people-list {
    margin-top: 38px;
  }

  .people-list strong {
    font-size: 21px;
  }

  .footer-inner h2 {
    max-width: calc(100% - 74px);
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 22px 18px;
  }

  .block-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .block {
    min-height: 852px;
  }

  .block-inner {
    min-height: 852px;
  }

  .hero-inner {
    display: block;
    padding: 480px 28px 72px;
  }

  .hero-image {
    object-position: 52% center;
  }

  .hero-cinema {
    opacity: 0.86;
    transform-origin: 64% 52%;
  }

  .hero-cinema::before {
    background:
      radial-gradient(circle at 65% 52%, rgba(255, 243, 206, 0.31), rgba(255, 214, 136, 0.08) 19%, transparent 40%),
      radial-gradient(circle at 75% 59%, rgba(249, 0, 0, 0.12), transparent 24%);
  }

  .glow-center {
    left: 54%;
  }

  .hero-copy h1 {
    max-width: 320px;
    font-size: 56px;
    line-height: 0.94;
  }

  .hero-copy p {
    max-width: 311px;
  }

  .build-grid {
    display: block;
    padding: 87px 18px 60px;
  }

  .copy-stack {
    display: flex;
    flex-direction: column;
  }

  .copy-stack h2 {
    order: 1;
    width: 364px;
    max-width: 100%;
    font-size: 52px;
    line-height: 0.95;
  }

  .section-label {
    order: 2;
    width: max-content;
    margin: 47px 0 14px 2px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(7, 7, 7, 0.06);
    font-size: 14px;
  }

  .copy-stack > p:last-child {
    order: 3;
    max-width: 356px;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .build-media {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 31px;
  }

  .tile {
    border-radius: 8px;
  }

  .tile-a,
  .tile-b {
    aspect-ratio: 174 / 158;
  }

  .tile-wide {
    aspect-ratio: 358 / 88;
  }

  .word-strip {
    bottom: 66px;
    font-size: 49px;
  }

  .word-strip-group {
    gap: 58px;
    padding-right: 58px;
  }

  .brand-block .block-inner {
    min-height: 852px;
    padding: 87px 18px 40px;
  }

  .brand-heading {
    gap: 0;
  }

  .brand-heading h2 {
    width: 355px;
    max-width: 100%;
    font-size: 46px;
    line-height: 1;
  }

  .brand-heading p {
    margin-top: 5px;
    font-size: 22px;
    line-height: 1;
  }

  .brand-intro {
    max-width: 353px;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.32;
  }

  .brand-carousel {
    margin-top: 30px;
  }

  .brand-track {
    gap: 20px;
  }

  .brand-track figure {
    flex-basis: 243px;
    width: 243px;
    height: 244px;
  }

  .brand-captions {
    gap: 8px;
    margin-top: 16px;
  }

  .brand-captions article {
    padding: 0 5px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .brand-captions h3 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
  }

  .brand-captions p {
    max-width: 343px;
    font-size: 13px;
    line-height: 1.24;
  }

  .athlete-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 95px 25px 25px;
  }

  .athlete-copy {
    display: contents;
  }

  .athlete-copy h2 {
    order: 1;
    margin-bottom: 18px;
    font-size: 64px;
    line-height: 0.95;
  }

  .athlete-copy > p {
    order: 2;
    max-width: 342px;
    font-size: 15px;
    line-height: 1.4;
  }

  .athlete-collage {
    order: 3;
    grid-template-columns: 187px 144px;
    gap: 10px 11px;
    margin-top: 20px;
  }

  .athlete-main {
    aspect-ratio: 187 / 299;
  }

  .athlete-small.top {
    height: auto;
    aspect-ratio: 144 / 131;
  }

  .athlete-small.bottom {
    height: auto;
    aspect-ratio: 144 / 158;
  }

  .mini-grid {
    order: 4;
    gap: 0;
    margin-top: 8px;
  }

  .mini-grid article {
    padding: 8px 0 12px;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .mini-grid span {
    display: none;
  }

  .mini-grid h3 {
    display: inline;
    margin-right: 8px;
    font-size: 15px;
  }

  .mini-grid p {
    display: inline;
    font-size: 15px;
    line-height: 1.32;
  }

  .spaces-grid {
    padding: 79px 21px 33px;
  }

  .spaces-title {
    text-align: left;
  }

  .spaces-title h2 {
    width: 351px;
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
  }

  .spaces-media {
    display: grid;
    grid-template-columns: 194px 152px;
    gap: 7px 5px;
    margin-top: 14px;
  }

  .spaces-main {
    grid-column: 1 / -1;
    aspect-ratio: 351 / 324;
  }

  .spaces-media img:not(.spaces-main) {
    aspect-ratio: auto;
    height: 125px;
  }

  .spaces-copy {
    grid-column: 1 / -1;
    min-height: 145px;
    padding: 13px 12px 14px;
    text-align: center;
  }

  .spaces-copy h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.15;
  }

  .spaces-copy p {
    max-width: 308px;
    font-size: 12px;
    line-height: 1.3;
  }

  .management-inner {
    display: block;
    padding: 131px 33px 40px;
  }

  .management-inner h2 {
    text-align: left;
    font-size: 52px;
    line-height: 0.95;
  }

  .people-list {
    margin-top: 23px;
  }

  .people-list article {
    min-height: 0;
    padding: 11px 0 10px;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .people-list strong {
    font-size: 21px;
  }

  .people-list span,
  .people-list p {
    font-size: 14px;
    line-height: 1.35;
  }

  .footer-inner {
    justify-content: flex-start;
    padding: 292px 31px 48px;
  }

  .footer-inner h2 {
    max-width: 260px;
    font-size: 64px;
    line-height: 0.94;
  }

  .footer-inner p {
    max-width: 331px;
    margin-top: 20px;
  }

  .footer-inner small {
    margin-top: 170px;
  }

  .back-arrow {
    top: auto;
    right: -17px;
    bottom: -1px;
  }

  .mini-grid p {
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    max-width: 190px;
    font-size: 21px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }
}

/* Figma node 57:6 update */
.site-nav a[href="#spaces"]::before {
  content: "";
}

.hero-block {
  min-height: 168svh;
  margin-bottom: -76svh;
}

.hero-video-stage,
.hero-overlay {
  position: fixed;
  opacity: calc(1 - var(--hero-exit, 0));
}

.hero-inner {
  position: sticky;
  top: 0;
  min-height: 100svh;
}

.build-block {
  z-index: 4;
  background: transparent;
}

.build-block::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.05) 1px, transparent 1px) 0 0 / calc(100vw / 12) 100%,
    var(--cream);
  opacity: var(--build-bg, 0);
  transition: opacity 0.18s linear;
  pointer-events: none;
}

.build-grid-v2 {
  display: block;
  padding-top: clamp(118px, 13vh, 154px);
}

.build-title {
  padding-top: 0;
  text-align: center;
}

.build-title h2 {
  font-size: clamp(76px, 7vw, 96px);
}

.build-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 51px);
  margin-top: 22px;
}

.build-cards figure {
  margin: 0;
}

.build-cards .tile {
  width: 100%;
  height: clamp(260px, 24.3vw, 349px);
  border-radius: 8px;
}

.build-cards figcaption {
  margin-top: 18px;
  text-align: center;
  font-size: 18px;
}

.brand-heading {
  display: block;
  max-width: 1058px;
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.brand-heading h2 {
  font-size: clamp(54px, 5.7vw, 72px);
  line-height: 1.05;
}

.brand-block .brand-carousel {
  margin-top: clamp(34px, 4.2vw, 52px);
}

.athlete-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
  padding-top: clamp(96px, 10vw, 132px);
}

.athlete-grid-v2 .athlete-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(420px, 1fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: start;
}

.athlete-grid-v2 .athlete-copy h2 {
  margin: 0;
  font-size: clamp(62px, 5.6vw, 72px);
  line-height: 1.05;
}

.athlete-grid-v2 .athlete-copy > p {
  max-width: 883px;
  padding-top: 9px;
}

.athlete-roster {
  display: grid;
  grid-template-columns: 220px 220px repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.8vw, 55px);
  margin-top: clamp(46px, 6vh, 60px);
}

.athlete-roster figure {
  margin: 0;
  background: transparent;
}

.athlete-roster img,
.athlete-roster video {
  width: 100%;
  height: clamp(330px, 28vw, 403px);
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.04);
}

.athlete-roster video {
  display: block;
  width: 220px;
  max-width: 100%;
  height: 420px;
  background: transparent;
  object-fit: contain;
  filter: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.athlete-roster video.is-playing,
.athlete-roster video.is-ended {
  opacity: 1;
  transform: translateY(0);
}

.athlete-roster .is-placeholder img {
  height: clamp(280px, 22vw, 350px);
  object-fit: contain;
  filter: none;
}

.athlete-roster figcaption {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.athlete-roster figcaption span {
  display: block;
  margin-top: 3px;
  font-weight: 400;
}

.athlete-grid-v2 .mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 7vw, 96px);
  margin-top: 36px;
  padding: 24px clamp(32px, 4vw, 64px);
  background: rgba(7, 7, 7, 0.05);
  border-radius: 8px;
}

.athlete-grid-v2 .mini-grid article {
  border-top: 0;
  padding-top: 0;
}

.athlete-grid-v2 .mini-grid h3 {
  margin-bottom: 8px;
}

.people-list article:first-child p:empty {
  display: none;
}

.people-list article:first-child {
  grid-template-columns: 220px 260px 1fr;
}

@media (min-width: 1680px) {
  .hero-block {
    min-height: 168svh;
    margin-bottom: -74svh;
  }

  .build-grid-v2 {
    padding: clamp(236px, 10.7vw, 275px) clamp(147px, 8.6vw, 221px) 0;
  }

  .build-title h2 {
    font-size: 96px;
  }

  .build-cards {
    gap: clamp(82px, 7.5vw, 192px);
    margin-top: 44px;
  }

  .build-cards .tile {
    height: clamp(349px, 19.4vw, 497px);
  }

  .build-cards figcaption {
    margin-top: 30px;
    font-size: 32px;
  }

  .brand-block .block-inner {
    padding-top: clamp(154px, 8.75vw, 224px);
  }

  .brand-heading {
    max-width: 1710px;
  }

  .brand-heading h2 {
    font-size: 96px;
  }

  .athlete-grid-v2 {
    padding: clamp(154px, 8.75vw, 224px) clamp(180px, 8.1vw, 207px) clamp(68px, 4vw, 102px);
  }

  .athlete-grid-v2 .athlete-copy {
    grid-template-columns: 545px 1fr;
    gap: 120px;
  }

  .athlete-grid-v2 .athlete-copy h2 {
    font-size: 96px;
  }

  .athlete-grid-v2 .athlete-copy > p {
    max-width: 1410px;
    font-size: 24px;
    line-height: 1.5;
  }

  .athlete-roster {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 80px;
    margin-top: 92px;
  }

  .athlete-roster img {
    height: clamp(520px, 28vw, 716px);
  }

  .athlete-roster video {
    width: 100%;
    height: clamp(520px, 28vw, 716px);
  }

  .athlete-roster figcaption {
    margin-top: 24px;
    font-size: 18px;
  }

  .athlete-grid-v2 .mini-grid {
    margin-top: 56px;
    padding: 36px 84px;
  }

  .people-list article:first-child {
    grid-template-columns: 222px 438px 1fr;
  }
}

@media (max-width: 920px) {
  .hero-block {
    min-height: 156svh;
    margin-bottom: -58svh;
  }

  .build-grid-v2 {
    padding-top: 112px;
  }

  .build-title {
    text-align: left;
  }

  .build-title h2 {
    font-size: clamp(54px, 14vw, 76px);
  }

  .build-cards {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }

  .build-cards .tile {
    height: auto;
    aspect-ratio: 358 / 220;
  }

  .build-cards figcaption {
    margin-top: 10px;
    text-align: left;
  }

  .brand-heading {
    text-align: left;
  }

  .brand-heading h2 {
    font-size: clamp(38px, 11vw, 60px);
  }

  .athlete-grid-v2 {
    padding-top: 96px;
  }

  .athlete-grid-v2 .athlete-copy {
    display: block;
  }

  .athlete-grid-v2 .athlete-copy h2 {
    font-size: clamp(50px, 14vw, 72px);
  }

  .athlete-grid-v2 .athlete-copy > p {
    margin-top: 18px;
  }

  .athlete-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    margin-top: 32px;
  }

  .athlete-roster img,
  .athlete-roster video {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 182 / 403;
  }

  .athlete-roster figure:last-child {
    display: none;
  }

  .athlete-grid-v2 .mini-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
    padding: 22px;
  }

  .people-list article:first-child {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-block {
    min-height: 150svh;
    margin-bottom: -52svh;
  }

  .build-grid-v2 {
    padding: 87px 18px 86px;
  }

  .build-title h2 {
    width: 364px;
    max-width: 100%;
    font-size: 52px;
    line-height: 0.95;
  }

  .build-cards {
    gap: 16px;
    margin-top: 28px;
  }

  .build-cards .tile {
    aspect-ratio: 358 / 210;
    border-radius: 8px;
  }

  .build-cards figcaption {
    font-size: 15px;
  }

  .brand-heading h2 {
    width: 355px;
    max-width: 100%;
    font-size: 38px;
    line-height: 1.06;
  }

  .athlete-grid-v2 {
    padding: 95px 25px 25px;
  }

  .athlete-grid-v2 .athlete-copy h2 {
    font-size: 54px;
    line-height: 0.95;
  }

  .athlete-grid-v2 .athlete-copy > p {
    max-width: 342px;
    font-size: 14px;
    line-height: 1.4;
  }

  .athlete-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .athlete-roster img,
  .athlete-roster video {
    aspect-ratio: 160 / 252;
  }

  .athlete-roster figcaption {
    font-size: 12px;
  }

  .athlete-grid-v2 .mini-grid {
    padding: 15px;
  }

  .spaces-title h2 {
    width: 351px;
    max-width: 100%;
    font-size: 36px;
    line-height: 1.08;
  }

  .word-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 56px;
  }
}

@media (max-width: 920px) {
  .athlete-side-media {
    display: none;
  }
}

@media (min-width: 1680px) {
  .athlete-grid-v2 {
    display: block;
    min-height: 100svh;
    padding: clamp(132px, 8.2vh, 170px) 0 5vh;
  }

  .athlete-grid-v2 .athlete-copy {
    display: grid;
    grid-template-columns: clamp(360px, 18vw, 460px) minmax(720px, 1fr);
    gap: clamp(52px, 4vw, 92px);
    align-items: start;
    margin-right: clamp(150px, 8vw, 230px);
    margin-left: clamp(150px, 10.4vw, 266px);
  }

  .athlete-grid-v2 .athlete-copy h2 {
    width: clamp(320px, 18vw, 460px);
    font-size: clamp(72px, 4.15vw, 106px);
    line-height: 0.95;
  }

  .athlete-grid-v2 .athlete-copy > p {
    max-width: 1120px;
    padding-top: clamp(8px, 1.1vh, 16px);
  }

  .athlete-roster {
    position: absolute;
    top: clamp(266px, 29.6vh, 338px);
    left: clamp(176px, 12.2vw, 312px);
    display: grid;
    grid-template-columns: clamp(183px, 10vw, 248px) clamp(200px, 11vw, 270px) clamp(182px, 10vw, 248px);
    gap: clamp(56px, 4.4vw, 112px);
    margin: 0;
  }

  .athlete-roster img,
  .athlete-roster video {
    width: 100%;
    max-width: none;
    height: clamp(403px, 38vh, 520px);
  }

  .athlete-roster .is-placeholder img {
    height: clamp(320px, 32vh, 430px);
  }

  .athlete-roster figcaption {
    margin-top: 1.6vh;
    font-size: 16px;
  }

  .athlete-side-media {
    position: absolute;
    top: clamp(284px, 31.6vh, 365px);
    right: clamp(160px, 10.5vw, 270px);
    left: auto;
    display: grid;
    grid-template-columns: clamp(148px, 8.1vw, 208px) clamp(147px, 8.1vw, 206px);
    gap: clamp(12px, 1.6vh, 20px) clamp(6px, 0.35vw, 10px);
    width: clamp(300px, 16.6vw, 424px);
  }

  .athlete-side-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
  }

  .athlete-side-media .side-large {
    grid-column: 1 / -1;
    height: clamp(260px, 28vh, 360px);
  }

  .athlete-side-media .side-small {
    height: clamp(118px, 12.5vh, 160px);
  }

  .athlete-grid-v2 .mini-grid {
    position: absolute;
    top: clamp(720px, 82vh, 850px);
    left: clamp(113px, 7.85vw, 201px);
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(520px, 1.25fr);
    gap: clamp(28px, 2vw, 52px);
    width: min(85.5vw, 2190px);
    min-height: clamp(87px, 9vh, 112px);
    margin: 0;
    padding: clamp(18px, 2vh, 28px) clamp(47px, 3.3vw, 84px) clamp(16px, 1.8vh, 24px);
  }
}

@media (min-width: 921px) and (max-width: 1679px) {
  .athlete-grid-v2 {
    display: block;
    min-height: 900px;
    padding: 135px 0 42px;
  }

  .athlete-grid-v2 .athlete-copy {
    display: grid;
    grid-template-columns: 252px 883px;
    gap: 50px;
    align-items: start;
    margin-left: 150px;
  }

  .athlete-grid-v2 .athlete-copy h2 {
    width: 401px;
    font-size: 72px;
    line-height: 0.95;
  }

  .athlete-grid-v2 .athlete-copy > p {
    max-width: 883px;
    padding-top: 11px;
  }

  .athlete-roster {
    position: absolute;
    top: 266px;
    left: 176px;
    display: grid;
    grid-template-columns: 183px 200px 182px;
    gap: 69px;
    margin: 0;
  }

  .athlete-roster figure {
    width: 100%;
  }

  .athlete-roster img,
  .athlete-roster video {
    width: 100%;
    max-width: none;
    height: 403px;
  }

  .athlete-roster .is-placeholder img {
    height: 350px;
  }

  .athlete-roster video {
    object-fit: contain;
  }

  .athlete-roster figcaption {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.28;
  }

  .athlete-side-media {
    position: absolute;
    top: 284px;
    left: 973px;
    display: grid;
    grid-template-columns: 148px 147px;
    gap: 16px 6px;
    width: 300px;
  }

  .athlete-side-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
  }

  .athlete-side-media .side-large {
    grid-column: 1 / -1;
    height: 303px;
  }

  .athlete-side-media .side-small {
    height: 133px;
  }

  .athlete-grid-v2 .mini-grid {
    position: absolute;
    top: 771px;
    left: 113px;
    display: grid;
    grid-template-columns: 529px 663px;
    gap: 29px;
    width: 1231px;
    min-height: 87px;
    margin: 0;
    padding: 18px 47px 16px;
    background: rgba(7, 7, 7, 0.05);
    border-radius: 8px;
  }

  .athlete-grid-v2 .mini-grid h3 {
    display: inline;
    margin-right: 8px;
    font-size: 14px;
  }

  .athlete-grid-v2 .mini-grid p {
    display: inline;
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (min-width: 921px) {
  .athlete-block .block-inner.athlete-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(300px, 22vw, 420px);
    grid-template-areas:
      "copy copy"
      "roster side"
      "info info";
    column-gap: clamp(64px, 7vw, 118px);
    row-gap: clamp(34px, 5vh, 58px);
    align-content: center;
    width: min(86vw, 1540px);
    min-height: 100svh;
    margin: 0 auto;
    padding: clamp(118px, 12vh, 168px) 0 clamp(64px, 8vh, 98px);
  }

  .athlete-grid-v2 .athlete-copy {
    display: grid;
    grid-area: copy;
    grid-template-columns: clamp(300px, 24vw, 420px) minmax(560px, 1fr);
    gap: clamp(44px, 4vw, 76px);
    align-items: center;
    margin: 0;
  }

  .athlete-grid-v2 .athlete-copy h2 {
    width: auto;
    max-width: none;
    font-size: clamp(64px, 4.2vw, 82px);
    line-height: 0.98;
    white-space: nowrap;
  }

  .athlete-grid-v2 .athlete-copy > p {
    max-width: 1040px;
    padding-top: 0;
    font-size: clamp(16px, 1.08vw, 20px);
    line-height: 1.48;
  }

  .athlete-roster {
    position: static;
    display: grid;
    grid-area: roster;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(46px, 5vw, 84px);
    align-items: end;
    margin: 0;
  }

  .athlete-roster figure {
    width: 100%;
  }

  .athlete-roster img,
  .athlete-roster video {
    width: 100%;
    max-width: none;
    height: clamp(356px, 31vw, 520px);
    object-fit: contain;
  }

  .athlete-roster .is-placeholder img {
    height: clamp(305px, 26vw, 430px);
    opacity: 0.48;
  }

  .athlete-roster figcaption {
    margin-top: clamp(14px, 1.5vh, 22px);
    font-size: clamp(13px, 0.9vw, 16px);
    line-height: 1.34;
  }

  .athlete-side-media {
    position: static;
    display: grid;
    grid-area: side;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 1.5vw, 20px);
    align-self: center;
    width: 100%;
  }

  .athlete-side-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
  }

  .athlete-side-media .side-large {
    grid-column: 1 / -1;
    height: clamp(250px, 21vw, 374px);
  }

  .athlete-side-media .side-small {
    height: clamp(120px, 9.5vw, 164px);
  }

  .athlete-grid-v2 .mini-grid {
    position: static;
    display: grid;
    grid-area: info;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(64px, 10vw, 180px);
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: clamp(24px, 2.4vw, 34px) clamp(40px, 4vw, 64px);
    color: var(--white);
    background: var(--plum);
    border-radius: 8px;
  }

  .athlete-grid-v2 .mini-grid h3 {
    display: block;
    margin: 0 0 8px;
    font-size: clamp(15px, 1vw, 18px);
  }

  .athlete-grid-v2 .mini-grid p {
    display: block;
    font-size: clamp(14px, 0.95vw, 17px);
    line-height: 1.42;
  }
}

@media (min-width: 921px) and (max-width: 1500px) {
  .athlete-block .block-inner.athlete-grid-v2 {
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 58px;
    width: min(86vw, 1232px);
  }

  .athlete-grid-v2 .athlete-copy {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 52px;
  }

  .athlete-grid-v2 .athlete-copy h2 {
    font-size: 64px;
  }

  .athlete-roster {
    gap: 58px;
  }

  .athlete-roster img,
  .athlete-roster video {
    height: 403px;
  }

  .athlete-roster .is-placeholder img {
    height: 350px;
  }
}

@media (min-width: 921px) {
  .athlete-block .block-inner.athlete-grid-v2 {
    --athlete-visual-height: clamp(403px, 30vw, 560px);
    display: grid;
    grid-template-columns: minmax(720px, 1fr) clamp(300px, 21vw, 430px);
    grid-template-areas:
      "copy copy"
      "roster side"
      "info info";
    align-content: start;
    column-gap: clamp(64px, 6.5vw, 120px);
    row-gap: clamp(42px, 5vh, 66px);
    width: min(84vw, 1720px);
    min-height: 100svh;
    padding: clamp(126px, 11vh, 184px) 0 clamp(68px, 8vh, 108px);
  }

  .athlete-grid-v2 .athlete-copy {
    display: grid;
    grid-area: copy;
    grid-template-columns: clamp(330px, 23vw, 470px) minmax(0, 1fr);
    gap: clamp(48px, 4vw, 82px);
    align-items: center;
    margin: 0;
  }

  .athlete-grid-v2 .athlete-copy h2 {
    font-size: clamp(64px, 4.4vw, 92px);
    line-height: 0.98;
    white-space: nowrap;
  }

  .athlete-grid-v2 .athlete-copy > p {
    max-width: 1080px;
    padding-top: 0;
    font-size: clamp(16px, 1vw, 20px);
  }

  .athlete-roster {
    position: static;
    display: grid;
    grid-area: roster;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(48px, 5vw, 92px);
    align-items: start;
    margin: 0;
  }

  .athlete-roster figure {
    display: grid;
    grid-template-rows: var(--athlete-visual-height) auto;
    width: 100%;
    margin: 0;
  }

  .athlete-roster img,
  .athlete-roster video {
    align-self: end;
    width: 100%;
    max-width: none;
    height: var(--athlete-visual-height);
    object-fit: contain;
  }

  .athlete-roster .is-placeholder img {
    height: calc(var(--athlete-visual-height) * 0.82);
    opacity: 0.46;
  }

  .athlete-roster figcaption {
    align-self: start;
    margin-top: clamp(16px, 1.5vh, 22px);
    font-size: clamp(13px, 0.86vw, 16px);
    line-height: 1.34;
  }

  .athlete-side-media {
    position: static;
    display: grid;
    grid-area: side;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 1.4vw, 22px);
    align-self: center;
    width: 100%;
  }

  .athlete-side-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .athlete-side-media .side-large {
    grid-column: 1 / -1;
    height: clamp(250px, 20vw, 380px);
  }

  .athlete-side-media .side-small {
    height: clamp(120px, 9vw, 168px);
  }

  .athlete-grid-v2 .mini-grid {
    position: static;
    grid-area: info;
    width: 100%;
    margin: 0;
    color: var(--white);
    background: var(--plum);
  }
}

@media (min-width: 921px) and (max-width: 1500px) {
  .athlete-block .block-inner.athlete-grid-v2 {
    --athlete-visual-height: 403px;
    grid-template-columns: minmax(760px, 1fr) 300px;
    column-gap: 58px;
    width: min(86vw, 1232px);
  }

  .athlete-grid-v2 .athlete-copy {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 52px;
  }

  .athlete-grid-v2 .athlete-copy h2 {
    font-size: 64px;
  }

  .athlete-roster {
    gap: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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