@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/neue-montreal-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/neue-montreal-medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/neue-montreal-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("../fonts/aeonik-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --blue: #2a7fff;
  --blue-deep: #1163d8;
  --onyx: #050506;
  --onyx-raised: #0d0d0f;
  --onyx-soft: #151518;
  --white: #ffffff;
  --swiss: #e4e4e0;
  --stealth: #888880;
  --muted: #b6b6af;
  --hairline: rgba(228, 228, 224, 0.18);
  --shell: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-height: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-base: 0;
  --z-sticky: 20;
  --z-menu: 40;
  --z-modal: 80;
  --z-loader: 100;
}

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

html {
  scroll-behavior: smooth;
  background: var(--onyx);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--onyx);
  color: var(--swiss);
  font-family: "Aeonik", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
a {
  font: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Neue Montreal", Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  hyphens: none;
  orphans: 2;
  text-wrap: pretty;
  widows: 2;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-pad {
  padding-block: clamp(96px, 11vw, 176px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: calc(var(--z-loader) + 1);
  padding: 12px 16px;
  background: var(--white);
  color: var(--onyx);
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: grid;
  place-items: center;
  background: var(--blue);
  pointer-events: none;
  animation: loader-exit 1.1s 0.65s var(--ease-out) forwards;
}

.loader-mark {
  width: min(42vw, 210px);
  animation: loader-mark-in 550ms var(--ease-out) both;
}

.loader-mark img {
  width: 100%;
  height: auto;
}

.loader-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--white);
  transform-origin: left;
  animation: loader-line 1.05s var(--ease-out) both;
}

@keyframes loader-mark-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes loader-exit {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  99% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
  }
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-menu);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-inline: var(--gutter);
  border-bottom: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 6, 0.7), rgba(5, 5, 6, 0));
}

.site-header-solid {
  position: fixed;
  background: rgba(5, 5, 6, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: 130px;
  min-height: 48px;
  padding-block: 12px;
}

.brand img {
  width: 100%;
  height: 24px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  min-height: 48px;
}

.desktop-nav a,
.footer-links a,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--swiss);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.desktop-nav a:not(.nav-contact)::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

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

.nav-contact {
  min-width: 152px;
  justify-content: center;
  padding-inline: 20px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  transition:
    color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.nav-contact:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--onyx);
}

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

.menu-button span {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition:
    transform 250ms var(--ease-out),
    top 250ms var(--ease-out);
}

.menu-button span:first-child {
  top: 19px;
}

.menu-button span:last-child {
  top: 28px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 24px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: calc(var(--header-height) + 32px) var(--gutter) 40px;
  background: var(--onyx);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition:
    opacity 260ms var(--ease-out),
    visibility 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.mobile-menu.is-open {
  z-index: -1;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--hairline);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: clamp(30px, 8vw, 48px);
  line-height: 1;
  text-decoration: none;
}

.mobile-menu a:last-child {
  min-height: 58px;
  justify-content: center;
  margin-top: 20px;
  padding-inline: 20px;
  border-bottom: 0;
  background: var(--blue);
  color: var(--white);
  font-size: clamp(20px, 6vw, 26px);
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: var(--onyx);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  animation: hero-image-in 1.5s 1s var(--ease-out) both;
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(to right, rgba(5, 5, 6, 0.88) 0%, rgba(5, 5, 6, 0.56) 46%, rgba(5, 5, 6, 0.12) 74%),
    linear-gradient(to top, rgba(5, 5, 6, 0.84) 0%, rgba(5, 5, 6, 0.1) 62%);
}

.hero-content {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: var(--header-height);
  padding-bottom: clamp(48px, 7vh, 84px);
}

.hero-kicker,
.section-kicker {
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-kicker {
  margin-bottom: 20px;
  color: var(--swiss);
  animation: hero-copy-in 650ms 1.25s var(--ease-out) both;
}

.hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(58px, 8.5vw, 96px);
  line-height: 0.94;
}

.hero-accent {
  position: relative;
  width: fit-content;
  color: var(--white);
}

.hero-copy {
  max-width: 40ch;
  margin-top: 24px;
  color: var(--swiss);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  animation: hero-copy-in 650ms 1.35s var(--ease-out) both;
}

.hero-copy,
.intro-copy p,
.service-content p,
.field-film-content > p,
.athletes-hero-content > p:last-child {
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  animation: hero-copy-in 650ms 1.45s var(--ease-out) both;
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.07);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 120ms ease-out;
}

.button:active {
  transform: translateY(1px);
}

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

.button-primary:hover {
  background: var(--white);
  color: var(--onyx);
}

.hero .button-primary {
  background: var(--white);
  color: var(--onyx);
}

.hero .button-primary:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

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

.button-light:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.button-outline {
  border-color: var(--swiss);
  background: transparent;
  color: var(--swiss);
}

.button-outline:hover {
  background: var(--swiss);
  color: var(--onyx);
}

.text-link {
  gap: 8px;
}

.text-link span {
  transition: transform 220ms var(--ease-out);
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--blue);
}

[data-motion-line] {
  display: block;
}

.services-heading [data-motion-line],
.contact-layout [data-motion-line] {
  white-space: nowrap;
}

.motion-inner {
  display: inline;
}

.motion-inner-chars {
  white-space: pre-wrap;
}

.motion-ready .motion-word,
.motion-ready .motion-char {
  display: inline-block;
  opacity: 0;
  will-change: opacity, transform;
}

.motion-ready .motion-word {
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
  transition-delay: calc(var(--motion-delay, 0ms) + var(--motion-step, 0ms));
}

.motion-ready .motion-char {
  transform: translate3d(0, 9px, 0);
  transition:
    opacity 460ms var(--ease-out),
    transform 460ms var(--ease-out);
  transition-delay: calc(var(--motion-delay, 0ms) + var(--motion-step, 0ms));
}

.motion-ready.is-motion-visible .motion-word,
.motion-ready.is-motion-visible .motion-char {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-home .hero h1 {
  --motion-delay: 900ms;
}

.page-home .hero .hero-kicker {
  --motion-delay: 1020ms;
}

.athletes-hero h1 {
  --motion-delay: 100ms;
}

.athletes-hero .hero-kicker {
  --motion-delay: 180ms;
}

.intro {
  background: var(--onyx);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(56px, 9vw, 144px);
  align-items: end;
}

.intro h2,
.services-heading h2,
.athletes-heading h2,
.directory-toolbar h2 {
  max-width: 18ch;
  color: var(--white);
  font-size: clamp(42px, 5.6vw, 80px);
}

.intro-copy {
  max-width: 58ch;
  color: var(--muted);
}

.intro-copy p + p {
  margin-top: 24px;
}

.intro-lead {
  color: var(--swiss);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.brand-frame {
  position: relative;
  min-height: clamp(520px, 66vw, 860px);
  overflow: hidden;
  isolation: isolate;
}

.brand-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.86), rgba(5, 5, 6, 0.08) 68%);
}

.brand-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-out);
}

.brand-frame:hover > img {
  transform: scale(1.025);
}

.brand-frame-copy {
  position: absolute;
  right: 0;
  bottom: clamp(34px, 6vw, 80px);
  left: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: clamp(26px, 4.2vw, 64px);
  line-height: 1.05;
}

.brand-frame-copy p {
  color: var(--muted);
}

.brand-frame-copy strong {
  color: var(--white);
  font-weight: 500;
}

.services {
  background: var(--onyx-raised);
}

.services-heading {
  padding-bottom: clamp(64px, 8vw, 112px);
}

.services-heading h2 {
  max-width: 18ch;
}

.services-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.service-panel {
  position: relative;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 3px;
  isolation: isolate;
}

.service-panel-blue {
  background: var(--blue);
  color: var(--white);
}

.service-panel-image {
  background: var(--stealth);
  color: var(--onyx);
}

.service-panel-dark {
  background: var(--swiss);
  color: var(--onyx);
}

.service-index {
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.service-content {
  margin-top: clamp(54px, 7vw, 92px);
  transform: translateY(-16px);
}

.service-content h3 {
  max-width: 12ch;
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.02;
}

.service-content p {
  max-width: 36ch;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.5;
}

.service-panel-blue .service-content p {
  color: rgba(255, 255, 255, 0.84);
}

.service-panel-image .service-content p,
.service-panel-dark .service-content p {
  color: rgba(5, 5, 6, 0.72);
}

.service-focus {
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.field-film {
  position: relative;
  min-height: 82dvh;
  overflow: hidden;
  isolation: isolate;
  background: var(--onyx);
}

.field-film-media,
.field-film-scrim {
  position: absolute;
  inset: 0;
}

.field-film-media {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-film-scrim {
  z-index: -1;
  background:
    linear-gradient(to right, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.28) 68%),
    linear-gradient(to top, rgba(5, 5, 6, 0.72), transparent 55%);
}

.field-film-content {
  display: flex;
  min-height: 82dvh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: clamp(48px, 8vw, 112px);
}

.field-film h2 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(48px, 7vw, 96px);
}

.field-film p {
  margin-top: 24px;
  color: var(--swiss);
  font-size: clamp(18px, 1.7vw, 24px);
}

.athletes-preview {
  background: var(--onyx);
}

.athletes-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.athletes-heading h2 {
  max-width: 12ch;
}

.athletes-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    opacity 180ms var(--ease-out);
}

.carousel-controls button:hover:not(:disabled) {
  border-color: var(--white);
  background: var(--white);
  color: var(--onyx);
}

.carousel-controls button:disabled {
  opacity: 0.28;
  cursor: default;
}

.athlete-carousel {
  display: grid;
  grid-auto-columns: clamp(260px, 27vw, 390px);
  grid-auto-flow: column;
  gap: clamp(16px, 2vw, 26px);
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.athlete-carousel::-webkit-scrollbar {
  display: none;
}

.athlete-slide {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: var(--swiss);
  scroll-snap-align: start;
  text-decoration: none;
}

.athlete-slide figure {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--onyx-soft);
}

.athlete-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition:
    transform 700ms var(--ease-out),
    filter 700ms var(--ease-out);
}

.athlete-slide:hover img {
  transform: scale(1.035);
  filter: saturate(0.78) contrast(1.05);
}

.athlete-slide-copy {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  padding-top: 15px;
}

.athlete-slide h3 {
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.06;
}

.athlete-slide p,
.athlete-slide span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.athlete-slide span {
  margin-top: auto;
  padding-top: 12px;
}

.contact-section {
  background: var(--blue);
  color: var(--white);
  padding-block: clamp(96px, 12vw, 176px);
}

.contact-section .section-kicker {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(56px, 10vw, 160px);
  align-items: end;
}

.contact-layout h2 {
  max-width: 19ch;
  color: var(--white);
  font-size: clamp(48px, 7vw, 96px);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.contact-email {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  text-underline-offset: 5px;
}

.site-footer {
  padding-block: 64px 28px;
  background: var(--onyx);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 64px;
}

.footer-brand {
  width: min(42vw, 240px);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom > p:nth-child(2) {
  text-align: center;
}

.footer-credit {
  justify-self: end;
  color: var(--swiss);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

.footer-credit:hover {
  color: var(--blue);
}

.footer-credit sup {
  margin-left: 2px;
  font-size: 8px;
  vertical-align: super;
}

.reveal.is-visible {
  animation: reveal-in 720ms var(--ease-out) both;
}

@keyframes reveal-in {
  from {
    opacity: 0.01;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Athletes page */

.page-athletes {
  padding-top: var(--header-height);
}

.athletes-hero {
  position: relative;
  display: flex;
  min-height: calc(78dvh - var(--header-height));
  align-items: flex-end;
  overflow: hidden;
  background: var(--blue);
  isolation: isolate;
}

.athletes-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.32), transparent 62%);
}

.athletes-hero-mark {
  position: absolute;
  top: 9%;
  right: -7vw;
  z-index: -1;
  width: min(66vw, 960px);
  opacity: 0.08;
  filter: invert(1);
  transform: rotate(-7deg);
  animation: athlete-mark-in 1.1s 120ms var(--ease-out) both;
}

.athletes-hero-content {
  padding-top: 96px;
  padding-bottom: clamp(56px, 8vw, 112px);
}

.athletes-hero h1 {
  color: var(--white);
  font-size: clamp(76px, 13vw, 180px);
  line-height: 0.85;
}

.athletes-hero p:last-child {
  max-width: 38ch;
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(17px, 1.6vw, 22px);
}

@keyframes athlete-mark-in {
  from {
    opacity: 0;
    transform: translateX(60px) rotate(-7deg);
  }
  to {
    opacity: 0.08;
    transform: translateX(0) rotate(-7deg);
  }
}

.athlete-directory {
  background: var(--onyx);
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: end;
}

.directory-toolbar h2 {
  max-width: 12ch;
}

.athlete-search label {
  display: block;
  margin-bottom: 12px;
  color: var(--swiss);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 14px;
}

.search-field {
  position: relative;
}

.search-field input {
  width: 100%;
  min-height: 54px;
  padding: 12px 52px 12px 16px;
  border: 1px solid rgba(228, 228, 224, 0.42);
  border-radius: 2px;
  background: var(--onyx-soft);
  color: var(--white);
  font-size: 16px;
  outline: 0;
  transition:
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.search-field input::placeholder {
  color: #a3a39d;
}

.search-field input:focus {
  border-color: var(--blue);
  background: var(--onyx-raised);
}

.search-field button {
  position: absolute;
  top: 3px;
  right: 3px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--swiss);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.directory-status {
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.athlete-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 72px) clamp(16px, 2.5vw, 36px);
  margin-top: 28px;
}

.athlete-card-wrap {
  min-width: 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.athlete-card {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.athlete-card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--onyx-soft);
}

.athlete-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 220ms var(--ease-out);
}

.athlete-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition:
    transform 700ms var(--ease-out),
    filter 700ms var(--ease-out);
}

.athlete-card:hover figure::after,
.athlete-card:focus-visible figure::after {
  border-color: var(--blue);
}

.athlete-card:hover img,
.athlete-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(0.78) contrast(1.05);
}

.athlete-card-copy {
  display: flex;
  min-height: 194px;
  flex: 1;
  flex-direction: column;
  padding-top: 18px;
}

.athlete-card-club,
.athlete-card-role,
.athlete-card-detail,
.athlete-card-action {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.athlete-card-club {
  min-height: 38px;
}

.athlete-card-copy strong {
  min-height: 72px;
  margin-top: 6px;
  color: var(--white);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1.05;
}

.athlete-card-detail {
  margin-top: 2px;
}

.athlete-card-action {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--swiss);
  white-space: nowrap;
}

.athlete-card-wrap[hidden] {
  display: none;
}

.empty-state {
  padding-block: 80px;
  text-align: center;
}

.empty-state h3 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
}

.empty-state p {
  margin-top: 14px;
  color: var(--muted);
}

.empty-state .button {
  margin-top: 26px;
}

.profile-dialog {
  width: min(calc(100% - 32px), 1120px);
  max-width: none;
  max-height: min(90dvh, 900px);
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--onyx-raised);
  color: var(--swiss);
  overflow: hidden;
}

.profile-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(6px);
}

.profile-dialog[open] {
  animation: dialog-in 320ms var(--ease-out) both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.profile-modal {
  position: relative;
  display: grid;
  min-height: min(84dvh, 820px);
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
}

.profile-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2px;
  background: rgba(5, 5, 6, 0.82);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.profile-close:hover {
  background: var(--white);
  color: var(--onyx);
}

.profile-media {
  min-height: 0;
  background: var(--onyx-soft);
}

.profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.profile-content {
  align-self: center;
  max-height: 84dvh;
  overflow-y: auto;
  padding: clamp(42px, 6vw, 80px);
}

.profile-club {
  color: var(--blue);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 15px;
}

.profile-content h2 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 80px);
}

.profile-facts-section {
  margin-top: 36px;
}

.profile-facts-section > h3,
.profile-history h3 {
  color: var(--white);
  font-size: 22px;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 14px;
  padding-block: 28px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.profile-fact {
  min-width: 0;
}

.profile-fact span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.profile-fact strong {
  display: block;
  margin-top: 4px;
  color: var(--swiss);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.profile-history {
  margin-top: 30px;
}

.profile-history p {
  max-width: 65ch;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.profile-content .button {
  gap: 8px;
  margin-top: 32px;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

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

  .intro-layout,
  .contact-layout,
  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 68ch;
  }

  .services-stack {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: flex-start;
  }

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

  .profile-modal {
    grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  }
}

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

  body {
    font-size: 16px;
  }

  .section-pad {
    padding-block: 88px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand {
    width: 116px;
  }

  .hero-media {
    object-position: 50% center;
  }

  .hero-scrim {
    background:
      linear-gradient(to right, rgba(5, 5, 6, 0.86), rgba(5, 5, 6, 0.18)),
      linear-gradient(to top, rgba(5, 5, 6, 0.92) 0%, rgba(5, 5, 6, 0.1) 74%);
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-copy {
    max-width: 34ch;
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 26px;
  }

  .hero-actions .button {
    min-width: 176px;
  }

  .intro-layout {
    gap: 48px;
  }

  .intro h2,
  .services-heading h2,
  .athletes-heading h2,
  .directory-toolbar h2 {
    font-size: clamp(40px, 12vw, 60px);
  }

  .brand-frame {
    min-height: 72dvh;
  }

  .brand-frame > img {
    object-position: 62% center;
  }

  .brand-frame-copy {
    display: block;
    bottom: 36px;
    font-size: 36px;
  }

  .brand-frame-copy strong {
    display: block;
    margin-top: 6px;
  }

  .services-heading {
    padding-bottom: 56px;
  }

  .services-stack {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-panel {
    min-height: 360px;
    padding: 28px 24px;
  }

  .service-index {
    font-size: 38px;
  }

  .service-content {
    margin-top: 52px;
    transform: translateY(-12px);
  }

  .service-content h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .service-content p {
    margin-top: 18px;
    font-size: 17px;
  }

  .field-film,
  .field-film-content {
    min-height: 78dvh;
  }

  .field-film-media {
    object-position: 62% center;
  }

  .field-film h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .athletes-heading {
    display: block;
    margin-bottom: 48px;
  }

  .athletes-heading .text-link {
    margin-top: 22px;
  }

  .athletes-toolbar {
    align-items: flex-start;
    margin-top: 24px;
  }

  .athlete-carousel {
    grid-auto-columns: min(82vw, 330px);
  }

  .contact-layout {
    gap: 48px;
  }

  .contact-layout h2 {
    font-size: 42px;
  }

  .footer-top,
  .footer-bottom {
    display: block;
  }

  .footer-links {
    margin-top: 40px;
  }

  .footer-bottom p + p {
    margin-top: 8px;
  }

  .footer-credit {
    display: inline-block;
    margin-top: 18px;
  }

  .athletes-hero {
    min-height: calc(68dvh - var(--header-height));
  }

  .athletes-hero-mark {
    top: 18%;
    right: -18vw;
    width: 100vw;
  }

  .athletes-hero h1 {
    font-size: clamp(70px, 23vw, 104px);
  }

  .directory-toolbar {
    gap: 48px;
  }

  .athlete-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 24px;
  }

  .athlete-card-copy {
    min-height: 178px;
  }

  .athlete-card-copy strong {
    font-size: 32px;
  }

  .profile-dialog {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
  }

  .profile-modal {
    display: block;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
  }

  .profile-media {
    height: 48dvh;
  }

  .profile-content {
    max-height: none;
    overflow: visible;
    padding: 36px 20px 52px;
  }

  .profile-content h2 {
    padding-right: 52px;
    font-size: 48px;
  }

  .profile-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-copy {
    max-width: 31ch;
  }

  .contact-layout h2 {
    font-size: 38px;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .athlete-card-action {
    margin-top: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .site-loader {
    opacity: 0;
    visibility: hidden;
  }

  .hero-media,
  .athletes-hero-mark,
  .reveal.is-visible {
    transform: none;
  }
}
