:root {
  --ivory: #f4f1ea;
  --orange: #d94a2b;
  --orange-dark: #ad321d;
  --black: #151515;
  --white: #fffdf7;
  --muted: #6d6a63;
  --line: rgba(21, 21, 21, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 80px rgba(21, 21, 21, 0.13);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #ffbd2e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 100px;
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 72px);
  color: var(--ivory);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-button {
  display: flex;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: rgba(244, 241, 234, 0.6);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.lang-active {
  color: var(--ivory);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 100px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: #e95b3c;
  box-shadow: 0 10px 30px rgba(217, 74, 43, 0.32);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.button-disabled,
.button:disabled {
  border-color: rgba(244, 241, 234, 0.2);
  background: rgba(244, 241, 234, 0.1);
  box-shadow: none;
  color: rgba(244, 241, 234, 0.56);
  cursor: not-allowed;
  transform: none;
}

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

.button-dark:hover {
  background: #252525;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  grid-template-rows: 1fr auto;
  padding: 150px clamp(22px, 8vw, 120px) 56px;
  background: var(--black);
  color: var(--ivory);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  right: -12%;
  bottom: -24%;
  width: min(900px, 82vw);
  height: min(900px, 82vw);
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: 2%;
  bottom: -27%;
  width: min(610px, 56vw);
  height: min(610px, 56vw);
  border: clamp(32px, 5vw, 74px) solid var(--black);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(244, 241, 234, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.24) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(244, 241, 234, 0.24);
  border-radius: 50%;
}

.orbit-one {
  right: -40px;
  bottom: -110px;
  width: 550px;
  height: 550px;
}

.orbit-two {
  right: 100px;
  bottom: 40px;
  width: 250px;
  height: 250px;
}

.hero-content {
  align-self: center;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 32px;
  font-family: var(--display);
  font-size: clamp(55px, 8vw, 124px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

h1 > span,
h1 > em {
  display: inline-block;
  white-space: nowrap;
}

h1 em {
  color: var(--orange);
  font-style: normal;
  -webkit-text-stroke: 2px var(--black);
  paint-order: stroke fill;
  text-shadow: 3px 4px 0 var(--black);
}

.hero-intro {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(244, 241, 234, 0.77);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  color: var(--ivory);
  font-weight: 700;
  text-underline-offset: 6px;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--orange);
  font-size: 19px;
}

.hero-stat {
  align-self: center;
  justify-self: end;
  display: flex;
  max-width: 180px;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-number {
  font-family: var(--display);
  font-size: clamp(70px, 9vw, 132px);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.hero-stat-label {
  color: rgba(244, 241, 234, 0.68);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.location-chip {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 13px 18px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 100px;
  background: rgba(21, 21, 21, 0.46);
  backdrop-filter: blur(15px);
}

.location-chip span:not(.location-dot) {
  display: block;
  color: rgba(244, 241, 234, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-chip strong {
  font-size: 14px;
}

.location-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(217, 74, 43, 0.18);
}

.section {
  padding: 120px clamp(22px, 7vw, 108px);
}

.section-heading {
  display: grid;
  max-width: 1120px;
  margin: 0 auto 70px;
  grid-template-columns: 1.1fr 0.6fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

.facility-grid {
  display: grid;
  max-width: 1250px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.facility-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.facility-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 36px solid rgba(21, 21, 21, 0.05);
  border-radius: 50%;
  content: "";
}

.facility-card-dark {
  background: var(--black);
  color: var(--ivory);
}

.facility-card-dark::after {
  border-color: rgba(244, 241, 234, 0.07);
}

.facility-card-orange {
  background: var(--orange);
  color: var(--white);
}

.facility-card-orange::after {
  border-color: rgba(244, 241, 234, 0.12);
}

.floor-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.facility-icon {
  display: grid;
  width: 120px;
  height: 120px;
  margin: 60px 0 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
}

.facility-icon svg {
  width: 66px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.facility-card h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 33px;
  font-weight: 400;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.facility-card p {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin-bottom: 0;
  opacity: 0.72;
}

.experience-strip {
  display: flex;
  max-width: 1250px;
  margin: 55px auto 0;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.experience-strip span[aria-hidden] {
  color: var(--orange);
  font-size: 8px;
}

.memberships {
  background: var(--black);
  color: var(--ivory);
}

.membership-heading {
  align-items: end;
}

.membership-heading > p {
  color: rgba(244, 241, 234, 0.62);
}

.comparison-shell {
  max-width: 1250px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 36px);
  border: 1px solid rgba(244, 241, 234, 0.13);
  border-radius: var(--radius-lg);
  background: #1c1c1c;
  box-shadow: var(--shadow);
}

.plan-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.plan-option {
  position: relative;
  display: flex;
  min-height: 106px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(244, 241, 234, 0.15);
  border-radius: 18px;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  text-align: left;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.plan-option:hover {
  border-color: rgba(244, 241, 234, 0.36);
  transform: translateY(-2px);
}

.plan-option[aria-pressed="true"] {
  border-color: var(--orange);
  background: var(--orange);
}

.plan-option:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.plan-option-label {
  font-weight: 800;
}

.plan-option-price {
  font-size: 13px;
  opacity: 0.68;
}

.plan-option-check {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(244, 241, 234, 0.3);
  border-radius: 50%;
  font-size: 13px;
}

.plan-option[aria-pressed="true"] .plan-option-check {
  border-color: var(--white);
  background: var(--white);
  color: var(--orange);
}

.comparison-toolbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(244, 241, 234, 0.12);
}

.comparison-toolbar p {
  margin: 0;
  color: rgba(244, 241, 234, 0.62);
  font-size: 13px;
}

.reset-button {
  border: 0;
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 570px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 12px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
  text-align: right;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 28%;
  padding-left: 0;
  color: rgba(244, 241, 234, 0.58);
  text-align: left;
}

.comparison-table th {
  color: var(--ivory);
  font-size: 13px;
}

.comparison-table td {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
}

.savings {
  color: #ff8b6f;
}

.value-visual {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-item {
  min-width: 0;
}

.value-label {
  display: flex;
  margin-bottom: 7px;
  justify-content: space-between;
  gap: 10px;
  color: rgba(244, 241, 234, 0.65);
  font-size: 12px;
}

.value-track {
  height: 9px;
  overflow: hidden;
  border-radius: 100px;
  background: rgba(244, 241, 234, 0.09);
}

.value-bar {
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transform-origin: left;
  animation: growBar 500ms ease both;
}

@keyframes growBar {
  from { transform: scaleX(0); }
}

.membership-footer {
  display: grid;
  max-width: 1250px;
  margin: 22px auto 0;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 18px;
}

.day-pass,
.interest-card,
.location-card {
  border-radius: var(--radius-md);
}

.day-pass {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--ivory);
  color: var(--black);
}

.day-pass > span:first-child {
  margin-bottom: auto;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.day-pass strong {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.day-pass > span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.interest-card {
  display: flex;
  min-height: 220px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 32px;
  background: var(--orange);
}

.interest-card .eyebrow {
  color: var(--white);
  opacity: 0.76;
}

.interest-card h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(27px, 3.5vw, 45px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.interest-card p:last-child {
  max-width: 550px;
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.76);
}

.interest-card .button {
  flex: 0 0 auto;
}

.location-card {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 27px 32px;
  border: 1px solid rgba(244, 241, 234, 0.13);
}

.location-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.location-card strong {
  line-height: 1.35;
}

.map-link {
  flex: 0 0 auto;
  color: var(--ivory);
  font-weight: 800;
  text-underline-offset: 5px;
}

.floating-register {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  background: var(--orange);
  box-shadow: 0 16px 42px rgba(21, 21, 21, 0.3);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-register:hover {
  box-shadow: 0 20px 50px rgba(217, 74, 43, 0.38);
  transform: translateY(-3px);
}

.floating-register > span:first-child {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.registration-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(21, 21, 21, 0.82);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.registration-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--ivory);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
  color: var(--black);
}

.modal-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.modal-open {
  overflow: hidden;
}

.registration-heading {
  max-width: 720px;
  padding-right: 48px;
}

.registration-heading h2 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.registration-heading > p:last-child {
  color: var(--muted);
}

.registration-plans {
  display: grid;
  margin: 30px 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.registration-plan {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  text-align: left;
  transition: border-color 170ms ease, background 170ms ease, color 170ms ease, transform 170ms ease;
}

.registration-plan:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.registration-plan[aria-pressed="true"] {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.registration-plan strong {
  font-size: 13px;
}

.registration-plan span {
  font-size: 12px;
  opacity: 0.7;
}

.payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  overflow: hidden;
  border-radius: 26px;
  background: var(--black);
  color: var(--ivory);
}

.payment-summary {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
}

.payment-summary > span,
.transfer-note span {
  margin-bottom: 4px;
  color: rgba(244, 241, 234, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.payment-summary > strong {
  margin-bottom: 22px;
  font-size: 20px;
}

.payment-summary .payment-amount {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.transfer-note {
  display: flex;
  margin: 0 0 22px;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(244, 241, 234, 0.15);
  border-radius: 14px;
  background: rgba(244, 241, 234, 0.06);
}

.transfer-note strong {
  color: var(--white);
  font-size: 15px;
}

.bank-details {
  margin: 0;
}

.bank-details > div {
  display: grid;
  padding: 7px 0;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.bank-details dt {
  color: rgba(244, 241, 234, 0.55);
  font-size: 12px;
}

.bank-details dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.copy-payment {
  min-height: 46px;
  margin-top: 22px;
  border: 1px solid rgba(244, 241, 234, 0.22);
  border-radius: 100px;
  background: var(--ivory);
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
}

.copy-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: #ff9b83;
  font-size: 12px;
  text-align: center;
}

.qr-card {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 28px);
  background: var(--white);
  color: var(--black);
}

.qr-card img {
  display: block;
  width: min(100%, 480px);
  height: auto;
  border-radius: 18px;
}

.qr-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.registration-help {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-footer {
  display: grid;
  padding: 38px clamp(22px, 7vw, 108px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(244, 241, 234, 0.11);
  background: var(--black);
  color: var(--ivory);
}

.site-footer p {
  margin: 0;
  color: rgba(244, 241, 234, 0.54);
  font-size: 13px;
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

.brand-footer .brand-mark {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero {
    min-height: 820px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
  }

  .hero-stat {
    position: absolute;
    right: 6vw;
    bottom: 130px;
  }

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

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

  .facility-card {
    display: grid;
    min-height: 250px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 26px;
  }

  .facility-icon {
    grid-row: 1 / -1;
    margin: 0;
    align-self: center;
  }

  .floor-label {
    align-self: end;
  }

  .facility-card h3 {
    align-self: end;
    margin-top: 25px;
  }

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

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

  .location-card {
    grid-column: auto;
  }
}

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

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

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 780px;
    padding: 125px 20px 30px;
  }

  .hero::before {
    right: -46%;
    bottom: -8%;
    width: 570px;
    height: 570px;
  }

  .hero::after {
    right: -20%;
    bottom: -9%;
    width: 370px;
    height: 370px;
    border-width: 46px;
  }

  h1 {
    font-size: clamp(51px, 16vw, 76px);
  }

  h1 > span,
  h1 > em {
    display: inline;
    white-space: normal;
  }

  .hero-intro {
    max-width: 92%;
    font-size: 16px;
  }

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

  .hero-stat {
    right: 24px;
    bottom: 105px;
    max-width: 100px;
  }

  .hero-stat-number {
    font-size: 68px;
  }

  .hero-stat-label {
    font-size: 10px;
  }

  .location-chip {
    max-width: 100%;
    padding: 11px 14px;
  }

  .location-chip strong {
    font-size: 12px;
  }

  .section {
    padding: 84px 18px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 11.8vw, 54px);
  }

  .facility-card {
    display: block;
    min-height: 355px;
    padding: 26px;
  }

  .facility-icon {
    width: 96px;
    height: 96px;
    margin: 42px 0 25px;
  }

  .experience-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }

  .experience-strip span[aria-hidden] {
    display: none;
  }

  .comparison-shell {
    padding: 13px;
    border-radius: 25px;
  }

  .plan-option {
    min-height: 92px;
    padding: 14px;
  }

  .comparison-toolbar {
    padding: 0 4px;
  }

  .value-visual {
    grid-template-columns: 1fr;
  }

  .membership-footer {
    gap: 12px;
  }

  .floating-register {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 18px;
  }

  .registration-modal {
    padding: 0;
    place-items: end center;
  }

  .registration-dialog {
    width: 100%;
    max-height: 94svh;
    padding: 24px 17px 30px;
    border-radius: 28px 28px 0 0;
  }

  .registration-plans {
    overflow-x: auto;
    grid-template-columns: repeat(5, 138px);
    scrollbar-width: thin;
  }

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

  .qr-card {
    grid-row: 1;
  }

  .qr-card img {
    width: min(100%, 400px);
  }

  .interest-card,
  .location-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .interest-card {
    padding: 26px;
  }

  .interest-card .button {
    width: 100%;
  }

  .location-card {
    padding: 25px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
  }

  .site-footer p,
  .site-footer p:last-child {
    text-align: left;
  }
}

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