:root {
  --ink: #111315;
  --paper: #f3f2ee;
  --muted: #b5b7ba;
  --blue: #2254d8;
  --blue-hover: #3167f2;
  --line-dark: rgba(243, 242, 238, 0.22);
  --line-light: rgba(17, 19, 21, 0.22);
  --header-height: 74px;
  --page-pad: clamp(24px, 4.8vw, 80px);
  --display: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  vertical-align: -0.12em;
}

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

:focus-visible {
  outline: 2px solid #7394ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition:
    height 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-bottom-color: rgba(243, 242, 238, 0.12);
  background: rgba(17, 19, 21, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  transition: height 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

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

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

.site-nav .nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  color: #86a2ff;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 28px;
  height: 2px;
  background: var(--paper);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 27px;
}

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

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

.hero {
  display: grid;
  min-height: max(720px, 92svh);
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: calc(var(--header-height) + clamp(44px, 7vh, 78px)) clamp(30px, 4.9vw, 78px) 38px
    var(--page-pad);
}

.eyebrow,
.section-label,
.contact-topline,
.hero-service-nav,
.carousel-position,
.schedule,
.rate-name > span,
.rate-price > span,
.rate-discount,
.service-rate-name > span,
.service-rate-prices span {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 clamp(24px, 4.5vh, 48px);
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 6.35vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-intro {
  max-width: 420px;
  margin: clamp(28px, 4.7vh, 48px) 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

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

.button-secondary {
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #86a2ff;
}

.hero-service-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #d8d8d6;
  font-size: 0.76rem;
  gap: 0;
}

.hero-service-nav > * {
  min-height: 20px;
  padding: 0 16px;
  border-left: 1px solid var(--line-dark);
}

.hero-service-nav > :first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-service-nav a:hover,
.hero-service-nav a:focus-visible {
  color: #86a2ff;
}

.hero-service-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-service-nav .hero-hours {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  max-width: 290px;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #22272a;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 51% 58%;
  filter: brightness(1.055) contrast(1.025);
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 6px 8px;
  background: rgba(17, 19, 21, 0.8);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.js .reveal-item,
.js .photo-reveal {
  opacity: 0;
}

.js.is-ready .reveal-item {
  animation: reveal-up 540ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.js.is-ready .reveal-item:nth-child(2) {
  animation-delay: 80ms;
}

.js.is-ready .reveal-item:nth-child(3) {
  animation-delay: 150ms;
}

.js.is-ready .reveal-item:nth-child(4) {
  animation-delay: 210ms;
}

.js.is-ready .reveal-item:nth-child(5) {
  animation-delay: 270ms;
}

.js.is-ready .photo-reveal {
  animation: photo-in 680ms ease 80ms forwards;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photo-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ticker {
  position: relative;
  z-index: 2;
  display: flex;
  height: 50px;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
  color: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-move 32s linear infinite;
  will-change: transform;
}

.ticker-sequence {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-sequence span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ticker-dot {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(243, 242, 238, 0.52);
}

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

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  background: var(--paper);
  color: var(--ink);
}

.about-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(70px, 9vw, 138px) clamp(38px, 5.8vw, 92px) clamp(74px, 9vw, 132px)
    var(--page-pad);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(54px, 8vw, 104px);
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.76rem;
}

.about-copy h2,
.membership-section h2,
.contact-section h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(3.7rem, 6vw, 6.6rem);
  line-height: 0.96;
}

.about-lead {
  max-width: 600px;
  margin: clamp(32px, 4vw, 56px) 0 0;
  color: #3f4347;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.72;
}

.carousel {
  align-self: stretch;
  min-width: 0;
  padding: clamp(70px, 9vw, 138px) var(--page-pad) clamp(74px, 9vw, 132px)
    clamp(20px, 2.6vw, 44px);
  background: #d9d9d4;
}

.carousel:focus-visible {
  outline-offset: -8px;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #c4c4bf;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(1.4%);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.carousel-slide picture,
.carousel-slide img {
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  object-fit: cover;
}

.slide-strength img {
  object-position: 61% 61%;
}

.slide-cardio img {
  object-position: 59% 58%;
}

.slide-lockers img {
  object-position: 40% 56%;
}

.slide-machines img {
  object-position: 50% 54%;
}

.slide-barbell img {
  object-position: 50% 53%;
}

.slide-lockers-bright img {
  object-position: 50% 50%;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.carousel-position {
  display: flex;
  margin: 0;
  font-size: 0.8rem;
}

.carousel-title {
  margin-left: 18px;
  color: #555a5e;
}

.carousel-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.carousel-dots span {
  width: 6px;
  height: 6px;
  border: 1px solid #777b7e;
  border-radius: 50%;
  background: transparent;
}

.carousel-dots span.is-active {
  border-color: var(--blue);
  background: var(--blue);
}

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

.carousel-buttons button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(17, 19, 21, 0.48);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.carousel-buttons button:hover,
.carousel-buttons button:focus-visible {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue);
}

.carousel-buttons .ui-arrow {
  width: 16px;
  height: 16px;
  stroke-width: 1.35;
}

.membership-section {
  padding: clamp(70px, 8vw, 118px) var(--page-pad) clamp(74px, 9vw, 132px);
  scroll-margin-top: var(--header-height);
  background: var(--ink);
  color: var(--paper);
}

.membership-label {
  margin-bottom: clamp(52px, 7vw, 92px);
  border-bottom-color: var(--line-dark);
  color: #a8abad;
}

.membership-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(36px, 7vw, 110px);
}

.membership-section h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.8rem);
}

.membership-heading p {
  max-width: 390px;
  margin: 0 0 0.6em;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.62;
}

.rate-group-label {
  margin: clamp(56px, 8vw, 108px) 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  color: #a8abad;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rate-board {
  margin-top: 0;
}

.rate-row {
  display: grid;
  min-height: clamp(160px, 15vw, 220px);
  align-items: center;
  padding: 24px clamp(0px, 2vw, 30px);
  grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1.15fr);
  gap: 34px;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 160ms ease;
}

.rate-row:hover {
  background: rgba(34, 84, 216, 0.1);
}

.rate-name {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 3vw, 46px);
}

.rate-name > span,
.rate-price > span,
.rate-discount,
.service-rate-name > span,
.service-rate-prices span {
  color: #9a9da0;
  font-size: 0.76rem;
}

.rate-name h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.2vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.rate-name h4,
.service-rate-name h4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rate-name small,
.service-rate-name small {
  color: #9a9da0;
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.rate-prices {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(30px, 5vw, 82px);
}

.rate-price {
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 1vw, 16px);
  white-space: nowrap;
}

.rate-price strong {
  font-family: var(--display);
  font-size: clamp(5.5rem, 8.7vw, 9.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.76;
}

.rate-discount {
  display: flex;
  min-width: 170px;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.rate-discount strong {
  color: #d8d9d7;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rate-discount span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.membership-terms {
  margin-top: clamp(34px, 5vw, 66px);
  border-top: 1px solid var(--line-dark);
}

.membership-terms h3 {
  margin: 0;
}

.membership-terms-toggle {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: #a8abad;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.membership-terms-toggle:hover,
.membership-terms-toggle:focus-visible {
  color: var(--paper);
}

.membership-terms-toggle:focus-visible {
  outline: 1px solid #7f9cf8;
  outline-offset: 4px;
}

.membership-terms-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 280ms ease;
}

.membership-terms.is-open .membership-terms-icon {
  transform: rotate(180deg);
}

.membership-terms-content {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    visibility 0s linear 320ms;
}

.membership-terms.is-open .membership-terms-content {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.membership-terms-content-inner {
  min-height: 0;
  overflow: hidden;
}

.membership-terms ul {
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 74px);
  border-bottom: 1px solid var(--line-dark);
  counter-reset: membership-term;
  list-style: none;
}

.membership-terms li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line-dark);
  color: #c6c8c9;
  counter-increment: membership-term;
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  line-height: 1.48;
}

.membership-terms li::before {
  position: absolute;
  top: 15px;
  left: 0;
  content: counter(membership-term, decimal-leading-zero);
  color: #7f9cf8;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-group-label {
  margin-top: clamp(54px, 7vw, 94px);
}

.service-rates {
  margin-top: 0;
}

.service-rate-row {
  display: grid;
  min-height: 92px;
  align-items: center;
  padding: 18px clamp(0px, 2vw, 30px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 160ms ease;
}

.service-rate-row:hover {
  background: rgba(34, 84, 216, 0.08);
}

.service-rate-name {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: clamp(16px, 2.5vw, 38px);
}

.service-rate-name h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.06;
  text-transform: uppercase;
}

.service-rate-prices {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: clamp(26px, 4vw, 64px);
  white-space: nowrap;
}

.service-rate-prices > strong {
  min-width: 105px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: right;
}

.service-rate-prices span {
  min-width: 138px;
  text-align: right;
}

.service-rate-discount {
  display: flex;
  min-width: 190px;
  align-items: flex-end;
  flex-direction: column;
  gap: 5px;
}

.service-rate-discount b {
  color: #d8d9d7;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  letter-spacing: -0.01em;
}

.service-rate-discount small {
  color: #9a9da0;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.first-visit-section,
.coaching-section,
.age-section,
.rules-section {
  scroll-margin-top: var(--header-height);
}

.editorial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.editorial-meta-dark {
  border-bottom-color: var(--line-dark);
  color: #a8abad;
}

.editorial-meta-blue {
  border-bottom-color: rgba(243, 242, 238, 0.42);
}

.first-visit-section {
  padding: clamp(70px, 8vw, 118px) var(--page-pad) clamp(76px, 9vw, 134px);
  background: var(--paper);
  color: var(--ink);
}

.first-visit-heading {
  display: grid;
  align-items: end;
  margin-top: clamp(54px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: clamp(36px, 7vw, 110px);
}

.first-visit-heading h2,
.coaching-heading h2,
.age-section h2,
.rules-layout h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.first-visit-heading h2 {
  font-size: clamp(4rem, 8vw, 8.8rem);
}

.first-visit-heading > p {
  max-width: 360px;
  margin: 0 0 0.55em;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.essentials-list {
  margin: clamp(58px, 8vw, 108px) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line-light);
  list-style: none;
}

.essentials-list li {
  display: grid;
  align-items: center;
  min-height: 152px;
  padding: 22px 0;
  grid-template-columns: clamp(96px, 11vw, 178px) minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(24px, 4vw, 66px);
  border-top: 1px solid var(--line-light);
}

.essential-number {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(4.5rem, 7.5vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.76;
}

.essentials-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.essentials-list p {
  max-width: 560px;
  margin: 0;
  color: #414549;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.first-visit-note {
  max-width: 590px;
  margin: clamp(30px, 4vw, 54px) 0 0 auto;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.coaching-section {
  padding: clamp(70px, 8vw, 118px) var(--page-pad) clamp(82px, 10vw, 152px);
  background: var(--ink);
  color: var(--paper);
}

.coaching-heading {
  display: grid;
  align-items: end;
  margin-top: clamp(54px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 110px);
}

.coaching-heading h2 {
  font-size: clamp(5rem, 11vw, 12rem);
}

.coaching-heading > p {
  max-width: 620px;
  margin: 0 0 0.6em;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.coach-profiles {
  margin-top: clamp(72px, 10vw, 150px);
  border-top: 1px solid var(--line-dark);
}

.coach-profile {
  display: grid;
  padding: clamp(54px, 7vw, 104px) 0;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(44px, 7vw, 112px);
  border-bottom: 1px solid var(--line-dark);
}

.coach-profile-reverse {
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
}

.coach-profile-reverse .coach-media {
  order: 2;
}

.coach-profile-reverse .coach-content {
  order: 1;
}

.coach-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1a1d21;
  border: 1px solid var(--line-dark);
}

.coach-media picture,
.coach-photo {
  display: block;
  width: 100%;
  height: 100%;
}

.coach-photo {
  object-fit: cover;
}

.coach-photo-svitlana {
  object-position: 50% 50%;
}

.coach-photo-bohdan {
  object-position: 50% 46%;
}

.coach-media-caption {
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 18px;
  width: fit-content;
  padding: 7px 9px;
  background: rgba(7, 9, 11, 0.78);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coach-content {
  min-width: 0;
  align-self: center;
}

.coach-index {
  margin: 0 0 clamp(28px, 4vw, 54px);
  color: #8f9396;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coach-content > h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.78;
  text-transform: uppercase;
}

.coach-summary {
  max-width: 560px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: #d2d3d1;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
}

.coach-facts {
  display: grid;
  margin: clamp(40px, 5vw, 70px) 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.coach-facts li {
  min-width: 0;
  padding: 15px 18px 15px 0;
  border-top: 1px solid var(--line-dark);
  color: #d2d3d1;
  font-size: 0.9rem;
  line-height: 1.45;
}

.coach-facts li:nth-child(even) {
  padding-right: 0;
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.coach-contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: clamp(38px, 5vw, 64px);
}

.coach-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.coach-contacts a:hover,
.coach-contacts a:focus-visible {
  color: #86a2ff;
}

.age-section {
  padding: clamp(70px, 8vw, 118px) var(--page-pad) clamp(76px, 9vw, 134px);
  background: var(--blue);
  color: var(--paper);
}

.age-section h2 {
  margin-top: clamp(54px, 7vw, 96px);
  font-size: clamp(5rem, 11vw, 12rem);
}

.age-board {
  display: grid;
  margin-top: clamp(58px, 8vw, 108px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(243, 242, 238, 0.44);
  border-bottom: 1px solid rgba(243, 242, 238, 0.44);
}

.age-rule {
  min-width: 0;
  padding: clamp(28px, 4vw, 54px) clamp(24px, 3.5vw, 56px);
  border-left: 1px solid rgba(243, 242, 238, 0.3);
}

.age-rule:first-child {
  padding-left: 0;
  border-left: 0;
}

.age-rule:last-child {
  padding-right: 0;
}

.age-rule strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.age-rule p {
  max-width: 360px;
  margin: clamp(26px, 3vw, 42px) 0 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
}

.age-note {
  max-width: 830px;
  margin: clamp(34px, 5vw, 66px) 0 0 auto;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 600;
  line-height: 1.6;
}

.rules-section {
  padding: clamp(70px, 8vw, 118px) var(--page-pad) clamp(76px, 9vw, 134px);
  background: var(--paper);
  color: var(--ink);
}

.rules-layout {
  display: grid;
  align-items: start;
  margin-top: clamp(54px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(48px, 9vw, 150px);
}

.rules-layout h2 {
  font-size: clamp(3.8rem, 7.2vw, 8rem);
}

.rules-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line-light);
  list-style: none;
}

.rules-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-section {
  padding: 40px var(--page-pad) 34px;
  background: var(--blue);
  color: var(--paper);
}

.contact-topline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.76rem;
}

.contact-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(243, 242, 238, 0.42);
}

.contact-grid {
  display: grid;
  min-width: 0;
  align-items: end;
  padding: clamp(70px, 10vw, 142px) 0 clamp(54px, 7vw, 90px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
}

.contact-grid > * {
  min-width: 0;
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(3.7rem, 7.2vw, 8rem);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 26px;
}

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

.button-light:hover,
.button-light:focus-visible {
  background: #fff;
}

.contact-instagram,
.contact-telegram,
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 242, 238, 0.42);
  font-size: 0.76rem;
}

.schedule > span {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  border-left: 1px solid rgba(243, 242, 238, 0.28);
}

.schedule > span:first-child {
  padding-left: 0;
  border-left: 0;
}

.schedule b,
.schedule strong {
  font-weight: 700;
}

.entrance-figure {
  width: min(100%, 1169px);
  margin: clamp(42px, 6vw, 78px) 0 0;
  padding-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid rgba(243, 242, 238, 0.42);
}

.entrance-figure picture,
.entrance-figure img {
  display: block;
  width: 100%;
}

.entrance-figure img {
  height: auto;
}

.entrance-figure figcaption {
  padding-top: 12px;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: clamp(64px, 8vw, 112px) var(--page-pad) clamp(96px, 7vw, 118px);
  border-top: 5px solid var(--blue);
  background: var(--ink);
  color: var(--paper);
}

.footer-wordmark {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.18em;
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.72;
  text-transform: uppercase;
}

.footer-wordmark span {
  color: var(--blue);
}

.footer-grid {
  display: grid;
  margin-top: clamp(72px, 10vw, 148px);
  padding-top: 22px;
  grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 0.95fr) minmax(220px, 0.7fr);
  gap: clamp(38px, 7vw, 110px);
  border-top: 1px solid var(--line-dark);
}

.footer-contact,
.footer-hours,
.footer-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-contact {
  gap: 10px;
}

.footer-contact p,
.footer-hours p {
  margin: 0;
}

.footer-contact a,
.footer-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  border-bottom-color: currentColor;
  color: #86a2ff;
}

.footer-hours {
  gap: 0;
  border-bottom: 1px solid var(--line-dark);
}

.footer-hours p {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
  border-top: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-nav {
  gap: 10px;
}

.footer-copyright {
  margin: clamp(58px, 8vw, 104px) 0 0;
  color: #8f9396;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rules-modal[hidden] {
  display: none;
}

.rules-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  padding: clamp(18px, 4vw, 56px);
  place-items: center;
}

.rules-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(7, 9, 11, 0.82);
  cursor: pointer;
}

.rules-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: calc(100svh - clamp(36px, 8vw, 112px));
  overflow-y: auto;
  padding: clamp(28px, 5vw, 70px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.4);
}

.rules-dialog-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rules-dialog-topline button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.rules-dialog h2 {
  max-width: 750px;
  margin: clamp(38px, 6vw, 72px) 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.rules-dialog ol {
  margin: clamp(40px, 6vw, 72px) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line-light);
  list-style: none;
}

.rules-dialog li {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.rules-dialog li span {
  color: var(--blue);
  font-size: 0.7em;
  letter-spacing: 0.08em;
}

.instagram-widget {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.instagram-fab {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.22);
  transition: background-color 160ms ease;
}

.instagram-fab:hover,
.instagram-fab:focus-visible {
  background: var(--blue-hover);
}

.instagram-fab svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.instagram-fab .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-prompt {
  min-height: 52px;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  font-size: 0.86rem;
  white-space: nowrap;
}

.instagram-prompt.is-visible {
  display: flex;
  animation: prompt-in 220ms ease both;
}

.instagram-prompt button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 1.3rem;
  cursor: pointer;
}

@keyframes prompt-in {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1180px) {
  :root {
    --page-pad: clamp(24px, 4vw, 48px);
  }

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

  .site-nav .nav-instagram {
    margin-left: 0;
  }

  .hero-copy {
    padding-right: 34px;
  }

  .hero-title {
    font-size: clamp(4.15rem, 6vw, 5.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-bottom: clamp(40px, 5vw, 64px);
  }

  .carousel {
    padding: 0 var(--page-pad) 90px;
    background: var(--paper);
  }

  .carousel-viewport {
    aspect-ratio: 16 / 10;
  }

  .contact-grid {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .brand-logo {
    height: 52px;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100svh - var(--header-height));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 24px var(--page-pad) 36px;
    border-top: 1px solid var(--line-dark);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.menu-visible .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.2rem;
  }

  .site-nav .nav-instagram {
    color: #86a2ff;
  }

  .hero {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    min-height: 650px;
    padding: calc(var(--header-height) + 52px) var(--page-pad) 28px;
  }

  .hero-title {
    font-size: clamp(4.2rem, 12vw, 6.5rem);
  }

  .hero-intro {
    margin-top: 30px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: row;
    gap: 22px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-media img {
    object-position: 52% 58%;
  }

  .membership-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .first-visit-heading,
  .coaching-heading,
  .rules-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .first-visit-heading > p,
  .coaching-heading > p {
    max-width: 620px;
    margin-bottom: 0;
  }

  .coach-profile,
  .coach-profile-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .coach-profile-reverse .coach-media,
  .coach-profile-reverse .coach-content {
    order: initial;
  }

  .coach-media {
    width: min(100%, 620px);
  }

  .age-board {
    grid-template-columns: minmax(0, 1fr);
  }

  .age-rule,
  .age-rule:first-child,
  .age-rule:last-child {
    display: grid;
    align-items: center;
    padding: 34px 0;
    grid-template-columns: minmax(190px, 0.38fr) minmax(0, 0.62fr);
    gap: 40px;
    border-top: 1px solid rgba(243, 242, 238, 0.3);
    border-left: 0;
  }

  .age-rule:first-child {
    border-top: 0;
  }

  .age-rule p {
    margin-top: 0;
  }

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

  .footer-nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 20px;
    --mobile-header-expanded: 92px;
    --mobile-header-compact: 76px;
    --fab-safe-inline-end: 58px;
  }

  .site-header {
    height: var(--mobile-header-expanded);
    background: rgba(17, 19, 21, 0.94);
  }

  .site-header.is-scrolled,
  .site-header.menu-visible {
    height: var(--mobile-header-compact);
  }

  .site-header.is-scrolled .brand-logo,
  .site-header.menu-visible .brand-logo {
    height: 42px;
  }

  .menu-toggle {
    align-self: center;
    margin-block: 0;
  }

  .site-header.is-scrolled .site-nav,
  .site-header.menu-visible .site-nav {
    top: var(--mobile-header-compact);
    max-height: calc(100svh - var(--mobile-header-compact));
  }

  .brand-logo {
    height: 50px;
  }

  .hero-copy {
    min-height: 570px;
    padding-top: calc(var(--header-height) + 42px);
  }

  .eyebrow {
    margin-bottom: 32px;
  }

  .hero-title {
    font-size: clamp(3.25rem, 16vw, 4.5rem);
    line-height: 0.88;
  }

  .hero-intro {
    max-width: 360px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .button-primary {
    align-self: flex-start;
  }

  .button-secondary {
    align-self: flex-start;
  }

  .hero-service-nav {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 9px;
  }

  .hero-service-nav > * {
    padding: 0 10px;
  }

  .hero-service-nav > :first-child {
    padding-left: 0;
  }

  .hero-media {
    aspect-ratio: 5 / 4;
  }

  .hero-media figcaption {
    right: 12px;
    bottom: 12px;
  }

  .ticker {
    height: 48px;
  }

  .ticker-sequence span {
    gap: 24px;
    padding-right: 24px;
    font-size: 0.86rem;
  }

  .about-copy {
    padding: 72px var(--page-pad) 48px;
  }

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

  .about-copy h2 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .about-lead {
    margin-top: 30px;
  }

  .carousel {
    padding: 0 0 72px;
  }

  .carousel-viewport {
    aspect-ratio: 4 / 5;
  }

  .slide-strength img {
    object-position: 55% 66%;
  }

  .slide-cardio img {
    object-position: 57% 63%;
  }

  .slide-lockers img {
    object-position: 40% 59%;
  }

  .slide-machines img {
    object-position: 50% 55%;
  }

  .slide-barbell img {
    object-position: 50% 57%;
  }

  .slide-lockers-bright img {
    object-position: 52% 54%;
  }

  .carousel-controls {
    min-height: 42px;
    justify-content: center;
    margin: 0 var(--page-pad);
    padding-top: 16px;
  }

  .carousel-title {
    display: none;
  }

  .carousel-position,
  .carousel-buttons {
    display: none;
  }

  .carousel-dots {
    display: flex;
  }

  .membership-section {
    padding: 66px var(--page-pad) 72px;
  }

  .membership-label {
    margin-bottom: 48px;
  }

  .membership-section h2 {
    font-size: clamp(3.45rem, 16vw, 5.2rem);
  }

  .membership-heading {
    gap: 28px;
  }

  .rate-board {
    margin-top: 0;
  }

  .rate-group-label {
    margin-top: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .service-group-label {
    margin-top: 50px;
  }

  .membership-terms {
    margin-top: 34px;
  }

  .membership-terms-toggle {
    min-height: 56px;
    padding: 16px 0;
  }

  .membership-terms ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .membership-terms li {
    padding-right: var(--fab-safe-inline-end);
  }

  .rate-row {
    min-height: 0;
    padding: 30px 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .rate-name {
    gap: 12px;
  }

  .rate-name > span {
    display: none;
  }

  .rate-name h4 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .rate-prices {
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
    padding-right: 0;
  }

  .rate-price {
    justify-content: flex-end;
  }

  .rate-price strong {
    font-size: clamp(4.4rem, 20vw, 5.8rem);
  }

  .rate-discount {
    min-width: 0;
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
    text-align: right;
  }

  .rate-discount strong {
    font-size: 1.15rem;
  }

  .rate-discount span {
    max-width: 140px;
    font-size: 0.62rem;
  }

  .service-rate-row {
    padding: 20px 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .service-rate-name {
    gap: 12px;
  }

  .service-rate-name > span {
    min-width: 18px;
  }

  .service-rate-name h4 {
    font-size: 1.2rem;
  }

  .service-rate-prices {
    width: 100%;
    justify-content: space-between;
    gap: 18px;
    padding-right: 0;
  }

  .service-rate-prices > strong {
    min-width: 0;
    font-size: 1.7rem;
    text-align: left;
  }

  .service-rate-prices span {
    min-width: 0;
    font-size: 0.7rem;
  }

  .service-rate-discount {
    max-width: 158px;
    gap: 4px;
  }

  .service-rate-discount b {
    font-size: 1.05rem;
  }

  .service-rate-discount small {
    font-size: 0.58rem;
  }

  .contact-section {
    padding: 26px var(--page-pad) 24px;
  }

  .contact-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-grid {
    padding: 48px 0 36px;
    gap: 26px;
  }

  .contact-section h2 {
    font-size: clamp(2.3rem, 9.5vw, 3.35rem);
  }

  .contact-actions {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-right: var(--fab-safe-inline-end);
  }

  .contact-phone,
  .contact-instagram,
  .contact-telegram,
  .coach-contacts a,
  .footer-contact a,
  .footer-nav a {
    min-height: 44px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .schedule {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-right: var(--fab-safe-inline-end);
  }

  .schedule > span,
  .schedule > span:first-child {
    padding: 12px 0;
    border-top: 1px solid rgba(243, 242, 238, 0.28);
    border-left: 0;
  }

  .schedule > span:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .entrance-figure {
    margin-top: 32px;
    padding-top: 24px;
  }

  .entrance-figure figcaption {
    padding-right: var(--fab-safe-inline-end);
  }

  .editorial-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 0.7rem;
  }

  .first-visit-section,
  .coaching-section,
  .age-section,
  .rules-section {
    padding: 64px var(--page-pad) 72px;
  }

  .first-visit-heading,
  .coaching-heading,
  .rules-layout {
    margin-top: 46px;
    gap: 26px;
  }

  .first-visit-heading h2 {
    font-size: clamp(3.2rem, 15vw, 4.65rem);
  }

  .first-visit-heading > p {
    font-size: 1.25rem;
  }

  .essentials-list {
    margin-top: 50px;
  }

  .essentials-list li {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px 18px;
  }

  .essential-number {
    align-self: start;
    grid-row: 1 / span 2;
    font-size: 4.2rem;
  }

  .essentials-list h3 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .essentials-list p {
    grid-column: 2;
    font-size: 0.96rem;
  }

  .first-visit-note {
    margin-top: 28px;
    font-size: 0.86rem;
  }

  .coaching-heading h2 {
    font-size: clamp(4rem, 19vw, 5.8rem);
  }

  .coaching-heading > p {
    font-size: 0.96rem;
  }

  .coach-profiles {
    margin-top: 54px;
  }

  .coach-profile {
    padding: 46px 0 54px;
    gap: 42px;
  }

  .coach-media {
    aspect-ratio: 4 / 5;
  }

  .coach-content > h3 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .coach-index {
    margin-bottom: 28px;
  }

  .coach-summary {
    margin-top: 24px;
  }

  .coach-facts {
    margin-top: 36px;
    grid-template-columns: minmax(0, 1fr);
  }

  .coach-facts li,
  .coach-facts li:nth-child(even) {
    padding: 13px 0;
    border-left: 0;
  }

  .coach-contacts {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 36px;
    padding-right: var(--fab-safe-inline-end);
  }

  .age-section h2 {
    margin-top: 46px;
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .age-board {
    margin-top: 50px;
  }

  .age-rule,
  .age-rule:first-child,
  .age-rule:last-child {
    display: block;
    padding: 30px 0;
  }

  .age-rule strong {
    font-size: clamp(4.8rem, 24vw, 7rem);
  }

  .age-rule p {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .age-note {
    margin-top: 32px;
    font-size: 0.94rem;
  }

  .rules-layout h2 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .rules-list li {
    padding: 16px 0;
    font-size: 1.14rem;
  }

  .rules-content {
    padding-right: var(--fab-safe-inline-end);
  }

  .site-footer {
    padding: 62px var(--page-pad) 104px;
  }

  .footer-wordmark {
    display: block;
    font-size: clamp(4.1rem, 19vw, 5.8rem);
    line-height: 0.8;
  }

  .footer-wordmark span {
    display: block;
  }

  .footer-grid {
    margin-top: 62px;
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .footer-nav {
    grid-column: auto;
  }

  .footer-contact,
  .footer-hours,
  .footer-nav {
    padding-right: var(--fab-safe-inline-end);
  }

  .footer-copyright {
    margin-top: 56px;
  }

  .rules-modal {
    padding: 12px;
  }

  .rules-dialog {
    max-height: calc(100svh - 24px);
    padding: 24px 20px 30px;
  }

  .rules-dialog h2 {
    margin-top: 34px;
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .rules-dialog ol {
    margin-top: 36px;
  }

  .rules-dialog li {
    padding: 15px 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    font-size: 1.05rem;
  }

  .instagram-widget {
    right: 14px;
    bottom: 14px;
  }

  .instagram-prompt {
    max-width: calc(100vw - 90px);
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    height: 48px;
  }

  .hero-title {
    font-size: 3.15rem;
  }

  .hero-service-nav > * {
    font-size: 0.7rem;
  }
}

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

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

  .ticker-track {
    transform: none;
  }
}
