@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/barlow-condensed-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #080808;
  --black-soft: #11110f;
  --paper: #f0eee7;
  --paper-dark: #dad7ce;
  --red: #ec2d20;
  --red-dark: #c82419;
  --white: #fffdf7;
  --muted: #a4a39d;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(8, 8, 8, 0.18);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Helvetica, Arial, sans-serif;
  --gutter: clamp(1.25rem, 3.5vw, 4.5rem);
  --section-space: clamp(5rem, 10vw, 10rem);
}

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

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

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: height 250ms ease, background 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(8, 8, 8, 0.87);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  width: 98px;
  height: auto;
  overflow: visible;
  transition: width 250ms ease;
}

.site-header.is-scrolled .brand {
  width: 82px;
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: invert(1) contrast(1.35);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.8rem);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 1.35rem;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
}

.language-switch button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
}

.header-cta {
  padding: 0.75rem 1.05rem;
  color: var(--white);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--black);
  background: var(--white);
}

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

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--gutter) 3rem;
  background: var(--black);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 0.15em 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: clamp(3rem, 15vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.mobile-menu p {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.section-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.section-light {
  color: var(--black);
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-red {
  color: var(--white);
  background: var(--red);
}

.section-label,
.eyebrow {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label::before {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  margin-right: 0.65rem;
  vertical-align: 0.25em;
  background: currentColor;
  content: "";
}

.js .reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #070707;
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 62% 38%;
  filter: saturate(0.76) contrast(1.08);
  transform: scale(1.04);
  will-change: transform;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.96) 0%, rgba(2, 2, 2, 0.72) 39%, rgba(2, 2, 2, 0.08) 74%),
    linear-gradient(0deg, rgba(2, 2, 2, 0.62) 0%, transparent 35%);
}

.grain {
  z-index: -1;
  opacity: 0.13;
  background-image: repeating-radial-gradient(circle at 17% 32%, rgba(255, 255, 255, 0.45) 0 0.4px, transparent 0.8px 3px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 8.5rem var(--gutter) 9rem;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  animation: hero-enter 800ms 150ms both;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.2rem, 12.7vw, 13.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  animation: hero-enter 900ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.86);
  animation-delay: 90ms;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(15rem, 28rem) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 5rem);
  width: min(100%, 56rem);
  margin-top: 3.2rem;
  animation: hero-enter 900ms 260ms both;
}

.hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-width: 13.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, border 200ms ease;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--black);
  background: var(--white);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}

.hero-footer {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  left: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(42rem, calc(100% - 2 * var(--gutter)));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-footer > div {
  display: flex;
  gap: 0.65rem;
  padding: 1rem 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.meta-number {
  color: var(--red);
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.52);
}

.scroll-cue span {
  position: relative;
  width: 3.4rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-cue span::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

.scroll-cue small {
  font-size: 0.55rem;
  letter-spacing: 0.16em;
}

.intro {
  padding: var(--section-space) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.35fr) 1.65fr;
  gap: 3rem;
}

.intro-statement {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.7vw, 8.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}

.intro-statement span,
.intro-statement strong {
  display: block;
}

.intro-statement strong {
  color: var(--red);
  font-weight: 900;
}

.intro-detail {
  display: grid;
  grid-template-columns: minmax(16rem, 33rem) auto;
  gap: 4rem;
  align-items: end;
  max-width: 58rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.intro-detail p {
  margin: 0;
  color: rgba(8, 8, 8, 0.68);
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  padding: 1.1rem 0;
  color: var(--white);
  background: var(--red);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.ticker > div {
  display: flex;
  gap: 1.3rem;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker i {
  color: var(--black);
  font-style: normal;
}

.programs {
  padding: var(--section-space) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.1fr 0.75fr;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-heading h2,
.schedule-intro h2,
.pricing h2,
.history h2,
.gallery-heading h2,
.contact h2,
.experience-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.programs-title {
  white-space: pre-line;
}

.program-list {
  border-top: 1px solid var(--line-dark);
}

.program-row {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.7fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 11rem;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  isolation: isolate;
}

.program-row::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.84) 49%, rgba(8, 8, 8, 0.18) 100%);
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.program-image {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 auto;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.7) contrast(1.1);
  transition: opacity 350ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.program-row:hover::after,
.program-row:focus-within::after,
.program-row:hover .program-image,
.program-row:focus-within .program-image {
  opacity: 1;
}

.program-row:hover .program-image,
.program-row:focus-within .program-image {
  transform: scale(1);
}

.program-number {
  align-self: start;
  padding-top: 3.05rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 600;
}

.program-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-transform: uppercase;
}

.program-title span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.row-arrow {
  font-size: 1.8rem;
  transition: transform 220ms ease;
}

.program-row:hover .row-arrow {
  transform: translate(0.25rem, -0.25rem);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100svh;
}

.experience-media {
  position: relative;
  min-height: 54rem;
  overflow: hidden;
  background: var(--black);
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08);
}

.experience-media span {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.72;
  text-align: right;
}

.experience-copy {
  align-self: center;
  padding: var(--section-space) var(--gutter);
}

.experience-copy h2 {
  max-width: 9ch;
  margin: 2rem 0 clamp(3rem, 5vw, 5rem);
}

.steps {
  margin: 0 0 3rem;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-light);
}

.steps li > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 600;
}

.steps h3 {
  margin: 0 0 0.2rem;
  font-family: var(--display);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.steps p {
  margin: 0;
  color: rgba(8, 8, 8, 0.62);
  font-size: 0.86rem;
}

.schedule {
  padding: var(--section-space) 0;
}

.schedule-intro {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

.schedule-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.day-tabs button {
  padding: 1rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

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

.day-tabs button[aria-selected="true"] {
  color: var(--black);
  background: var(--white);
}

.schedule-panels {
  min-height: 22rem;
}

.schedule-day {
  display: grid;
  grid-template-columns: 0.7fr repeat(3, 1fr);
  gap: 0;
  animation: panel-in 350ms ease both;
}

.day-name,
.session {
  min-height: 18rem;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.day-name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.day-name span {
  font-size: 0.72rem;
  font-weight: 600;
}

.day-name h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
}

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

.session time {
  font-size: 0.75rem;
  font-weight: 600;
}

.session strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.session span {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
}

.pricing {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 2rem;
  align-items: end;
  margin-top: clamp(5rem, 10vw, 10rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.pricing h2 {
  max-width: 9ch;
  margin-top: 1.5rem;
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.price-line {
  display: flex;
  flex-direction: column;
  min-height: 13rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.price-line > span {
  font-size: 0.78rem;
}

.price-line strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.8;
}

.price-line small {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.pricing details {
  grid-column: 2 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.pricing summary {
  padding: 1rem 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
}

.price-table > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.price-note {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.team {
  padding: var(--section-space) 0;
  overflow: hidden;
}

.team-heading {
  display: grid;
  grid-template-columns: 0.35fr 1.1fr 0.55fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.team-heading h2,
.club-service h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

.team-heading h2 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 7.5vw, 8rem);
}

.team-heading > p:last-child {
  margin: 0;
  color: rgba(8, 8, 8, 0.66);
  font-size: 0.9rem;
}

.team-roster {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.coach {
  min-width: 0;
  padding: 1rem 1rem 2rem;
  border-right: 1px solid var(--line-light);
}

.coach:first-child {
  padding-left: 0;
}

.coach:last-child {
  padding-right: 0;
  border-right: 0;
}

.coach figure {
  position: relative;
  margin: 0 0 1.4rem;
  overflow: hidden;
  background: var(--black);
}

.coach figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(8, 8, 8, 0.08);
  content: "";
  pointer-events: none;
}

.coach img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.07);
  transition: filter 350ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.coach:hover img,
.coach:focus-within img {
  filter: grayscale(0) contrast(1.04);
  transform: scale(1.025);
}

.coach figure span {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 2.7rem;
  padding: 0.55rem 0.65rem;
  color: var(--white);
  background: var(--red);
  font-size: 0.66rem;
  font-weight: 600;
  text-align: center;
}

.coach-role {
  margin: 0 0 0.55rem;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coach h3 {
  min-height: 2.05em;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.25vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.coach ul {
  margin: 1rem 0 0;
  padding: 0;
  color: rgba(8, 8, 8, 0.58);
  font-size: 0.67rem;
  line-height: 1.55;
  list-style: none;
}

.coach li + li {
  margin-top: 0.35rem;
}

.team-board {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 3rem;
  align-items: end;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.team-board > div > p:last-child {
  max-width: 18rem;
  margin: 1.2rem 0 0;
  color: rgba(8, 8, 8, 0.58);
  font-size: 0.82rem;
}

.team-board dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.team-board dl > div {
  min-height: 8rem;
  padding: 1.25rem 1.25rem 1.25rem 0;
  border-right: 1px solid var(--line-light);
}

.team-board dl > div + div {
  padding-left: 1.25rem;
}

.team-board dl > div:last-child {
  border-right: 0;
}

.team-board dt {
  color: rgba(8, 8, 8, 0.52);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-board dd {
  margin: 2.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.history {
  position: relative;
  min-height: 100svh;
  padding: var(--section-space) 0;
  overflow: hidden;
}

.history-year {
  position: absolute;
  right: -0.04em;
  bottom: -0.23em;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--display);
  font-size: min(42vw, 46rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
  pointer-events: none;
}

.history-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 3rem;
}

.history h2 {
  max-width: 10ch;
  color: var(--white);
}

.history-lead {
  max-width: 37rem;
  margin: 3rem 0 5rem;
  color: var(--muted);
}

.timeline {
  width: min(100%, 54rem);
  border-top: 1px solid var(--line-dark);
}

.timeline-item {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.timeline-item time {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
}

.timeline-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.gallery {
  padding: 2rem 0 var(--section-space);
  overflow: hidden;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 var(--gutter);
}

.gallery-track figure {
  width: clamp(17rem, 29vw, 32rem);
  margin: 0;
}

.gallery-track figure:nth-child(even) {
  padding-top: 4.5rem;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.04);
  transition: filter 300ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gallery-track figure:hover img {
  filter: grayscale(0) contrast(1.04);
  transform: scale(0.985);
}

.gallery-track figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.contact {
  padding: var(--section-space) 0 0;
}

.contact-top {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 3rem;
}

.contact h2 {
  font-size: clamp(4.5rem, 10vw, 11rem);
}

.contact h2 span,
.contact h2 strong {
  display: block;
}

.contact h2 strong {
  color: var(--red);
  font-weight: 900;
}

.contact-mail {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  transition: color 200ms ease, padding 200ms ease;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  padding-right: 1rem;
  padding-left: 1rem;
  color: var(--white);
  background: var(--red);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 2rem;
  margin-top: var(--section-space);
  padding-top: 2rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--line-light);
}

.contact-details > div {
  min-height: 9rem;
  padding-right: 2rem;
  border-right: 1px solid var(--line-light);
}

.contact-details > div:last-child {
  border-right: 0;
}

.contact-details span {
  color: rgba(8, 8, 8, 0.55);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details p {
  margin: 1.2rem 0 0;
  font-size: 0.85rem;
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.club-service {
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--line-light);
}

.club-service-intro {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 3rem;
}

.club-service-intro > div {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 3rem;
  align-items: end;
}

.club-service h3 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.club-service-intro > div > p {
  margin: 0;
  color: rgba(8, 8, 8, 0.62);
  font-size: 0.85rem;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.service-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 7.5rem;
  padding: 1.25rem;
  border-right: 1px solid var(--black);
  transition: color 200ms ease, background 200ms ease;
}

.service-links a:first-child {
  padding-left: 0;
}

.service-links a:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-links a:hover,
.service-links a:focus-visible {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  color: var(--white);
  background: var(--red);
}

.service-links span,
.service-links small {
  font-size: 0.63rem;
  font-weight: 600;
}

.service-links span {
  color: var(--red);
}

.service-links a:hover span,
.service-links a:focus-visible span {
  color: var(--white);
}

.service-links strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem var(--gutter);
  border-top: 1px solid var(--line-dark);
  color: var(--white);
  background: var(--black);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 78px;
}

.footer-brand p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 2rem;
  align-content: start;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.65rem;
  text-align: right;
}

.footer-meta p {
  margin: 0 0 0.4rem;
}

.photo-credit {
  opacity: 0.65;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(2.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
  0% { transform: translateX(-110%); }
  45%, 55% { transform: translateX(0); }
  100% { transform: translateX(110%); }
}

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

@keyframes panel-in {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .section-heading,
  .schedule-intro {
    grid-template-columns: 0.4fr 1.2fr;
  }

  .section-heading > p:last-child,
  .schedule-intro > p:last-child {
    grid-column: 2;
  }

  .program-row {
    grid-template-columns: 0.18fr 1fr 0.75fr auto;
  }

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

  .team-heading {
    grid-template-columns: 0.4fr 1.2fr;
  }

  .team-heading > p:last-child {
    grid-column: 2;
  }

  .team-roster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coach:nth-child(3) {
    border-right: 0;
  }

  .coach:nth-child(n + 4) {
    padding-top: 2rem;
    border-top: 1px solid var(--line-light);
  }

  .coach:nth-child(4) {
    padding-left: 0;
  }

  .coach:last-child {
    border-right: 1px solid var(--line-light);
  }

  .day-name,
  .session {
    padding: 1.5rem;
  }
}

@media (max-width: 780px) {
  :root {
    --gutter: 1.25rem;
    --section-space: 5.5rem;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .brand {
    width: 74px;
  }

  .site-header.is-scrolled .brand {
    width: 66px;
  }

  .header-actions {
    gap: 0.9rem;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 7rem;
    padding-bottom: 12rem;
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2, 2, 2, 0.97) 0%, rgba(2, 2, 2, 0.25) 70%, rgba(2, 2, 2, 0.4) 100%),
      linear-gradient(90deg, rgba(2, 2, 2, 0.3), transparent);
  }

  .hero h1 {
    font-size: clamp(4.8rem, 24vw, 8.6rem);
    line-height: 0.74;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .hero-copy p {
    max-width: 24rem;
  }

  .button {
    width: min(100%, 20rem);
  }

  .hero-footer {
    grid-template-columns: repeat(3, 1fr);
    bottom: 1.25rem;
    width: calc(100% - 2 * var(--gutter));
  }

  .hero-footer > div {
    display: block;
    padding-right: 0.5rem;
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .meta-number {
    display: block;
    margin-bottom: 0.2rem;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .history-grid,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .history-grid {
    gap: 2.5rem;
  }

  .intro-statement {
    font-size: clamp(3.8rem, 17vw, 6.5rem);
  }

  .intro-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .intro-detail .text-link {
    justify-self: start;
  }

  .ticker {
    font-size: 2.6rem;
  }

  .section-heading,
  .schedule-intro,
  .gallery-heading,
  .team-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading > p:last-child,
  .schedule-intro > p:last-child,
  .team-heading > p:last-child {
    grid-column: 1;
  }

  .team-heading h2 {
    font-size: clamp(3.8rem, 16vw, 6rem);
  }

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

  .coach,
  .coach:first-child,
  .coach:nth-child(4),
  .coach:last-child {
    padding: 1rem 0.8rem 2rem;
    border-top: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
  }

  .coach:nth-child(odd) {
    padding-left: 0;
  }

  .coach:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .coach:nth-child(-n + 2) {
    border-top: 0;
  }

  .coach:last-child {
    border-right: 1px solid var(--line-light);
  }

  .coach h3 {
    min-height: 0;
    font-size: clamp(1.7rem, 8vw, 2.7rem);
  }

  .team-board {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-board dl {
    grid-template-columns: 1fr;
  }

  .team-board dl > div,
  .team-board dl > div + div {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    min-height: 0;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .team-board dd {
    margin: 0;
  }

  .program-row {
    grid-template-columns: 2.4rem 1fr auto;
    gap: 1rem;
    min-height: 12.5rem;
  }

  .program-image {
    width: 100%;
    opacity: 0.2;
  }

  .program-row::after {
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.5));
    opacity: 1;
  }

  .program-number {
    padding-top: 0;
  }

  .program-row p {
    grid-column: 2 / -1;
    max-width: 24rem;
  }

  .program-title h3 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

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

  .experience-media {
    min-height: 70svh;
  }

  .experience-copy h2 {
    font-size: clamp(3.7rem, 16vw, 6rem);
  }

  .schedule-intro h2,
  .pricing h2,
  .history h2,
  .gallery-heading h2 {
    font-size: clamp(3.8rem, 16vw, 6rem);
  }

  .day-tabs button {
    padding: 0.85rem 0.5rem;
  }

  .schedule-panels {
    min-height: 0;
  }

  .schedule-day {
    grid-template-columns: 1fr;
  }

  .day-name,
  .session {
    min-height: auto;
    border-right: 0;
  }

  .day-name {
    flex-direction: row;
    align-items: end;
    padding: 2.5rem 0 1rem;
  }

  .session {
    display: grid;
    grid-template-columns: 7rem 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 0;
  }

  .session strong {
    margin-top: 0;
    font-size: 1.65rem;
  }

  .session span {
    margin-top: 0;
    text-align: right;
  }

  .pricing {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1rem;
  }

  .pricing-heading {
    grid-column: 1 / -1;
  }

  .price-line {
    min-height: 10rem;
    padding-left: 0;
    border-left: 0;
  }

  .price-line + .price-line {
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
  }

  .pricing details {
    grid-column: 1 / -1;
  }

  .history-lead {
    margin: 2rem 0 4rem;
  }

  .timeline-item {
    grid-template-columns: 5rem 1fr;
  }

  .gallery-heading {
    margin-bottom: 2rem;
  }

  .gallery-track {
    overflow-x: auto;
    width: 100%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-track::-webkit-scrollbar {
    display: none;
  }

  .gallery-track figure {
    width: 78vw;
    scroll-snap-align: start;
  }

  .gallery-track figure:nth-child(even) {
    padding-top: 2rem;
  }

  .contact h2 {
    font-size: clamp(4.2rem, 19vw, 7rem);
  }

  .contact-mail {
    grid-column: 1;
    margin-top: 2.5rem;
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-details > div {
    min-height: 0;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .club-service-intro,
  .club-service-intro > div {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .club-service h3 {
    font-size: clamp(3.6rem, 15vw, 6rem);
  }

  .service-links {
    grid-template-columns: 1fr;
  }

  .service-links a,
  .service-links a:first-child,
  .service-links a:last-child {
    min-height: 5.5rem;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .service-links a:last-child {
    border-bottom: 0;
  }

  .service-links a:hover,
  .service-links a:focus-visible {
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .language-switch span {
    display: none;
  }

  .language-switch {
    gap: 0.55rem;
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
  }

  .hero-footer > div:nth-child(2) {
    display: none;
  }

  .hero-footer {
    grid-template-columns: 1fr 1fr;
  }

  .session {
    grid-template-columns: 6.2rem 1fr;
  }

  .session span {
    grid-column: 2;
    text-align: left;
  }

  .price-line strong {
    font-size: 3.2rem;
  }

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

  .footer-links,
  .footer-meta {
    grid-column: 1;
  }
}

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

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

  .hero-media img {
    transform: none !important;
  }
}
