:root {
  color-scheme: dark;
  --ink: #100c0a;
  --charcoal: #1b1411;
  --espresso: #2b211c;
  --clay: #a84f38;
  --terracotta: #d77451;
  --blush: #f0c0a3;
  --pearl: #f7efe5;
  --warm: #d8be93;
  --sage: #60715f;
  --muted: rgba(247, 239, 229, 0.72);
  --line: rgba(247, 239, 229, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(168, 79, 56, 0.18), transparent 34%),
    linear-gradient(180deg, #0b0807 0%, var(--ink) 54%, #1b110e 100%);
  color: var(--pearl);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 4px;
}

.page-shell {
  width: min(1440px, calc(100% - 24px));
  margin: 12px auto;
  padding: 10px;
  border: 1px solid rgba(247, 239, 229, 0.1);
  border-radius: 16px;
  background: rgba(27, 20, 17, 0.78);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 999px;
  background: rgba(38, 29, 24, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--pearl);
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-size: 1.05rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.mobile-menu,
.hamburger {
  display: none;
}

.main-nav a,
.nav-cta,
.hero-pills span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 0.88rem;
  color: rgba(247, 239, 229, 0.84);
}

.main-nav a {
  transition: background-color 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  background: rgba(247, 239, 229, 0.08);
  color: var(--pearl);
}

.nav-cta {
  background: var(--pearl);
  color: #241915;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 12, 10, 0.9) 0%, rgba(16, 12, 10, 0.62) 38%, rgba(16, 12, 10, 0.14) 100%),
    linear-gradient(0deg, rgba(16, 12, 10, 0.66) 0%, rgba(16, 12, 10, 0.06) 58%);
}

.hero-rings {
  position: absolute;
  right: 5%;
  top: 9%;
  z-index: -1;
  width: 560px;
  height: 270px;
  border: 1px solid rgba(216, 190, 147, 0.42);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.hero-rings::before,
.hero-rings::after {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(215, 116, 81, 0.34);
  border-radius: 50%;
}

.hero-rings::after {
  inset: 78px;
  border-color: rgba(247, 239, 229, 0.24);
}

.hero-copy {
  width: min(760px, 100%);
  padding: 150px 46px 38px;
}

.eyebrow,
.section-kicker,
.feature-card p {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-weight: 500;
  line-height: 0.96;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: 5.9rem;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(247, 239, 229, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.primary-button {
  background: var(--pearl);
  color: #211713;
}

.secondary-button {
  border: 1px solid rgba(247, 239, 229, 0.24);
  background: rgba(27, 20, 17, 0.42);
  color: var(--pearl);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.secondary-button.light {
  width: fit-content;
  background: rgba(247, 239, 229, 0.12);
}

.hero-pills {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 520px;
}

.hero-pills span {
  border: 1px solid rgba(247, 239, 229, 0.12);
  background: rgba(43, 33, 28, 0.72);
  color: rgba(247, 239, 229, 0.82);
  backdrop-filter: blur(14px);
}

.hero-note {
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(247, 239, 229, 0.78);
  font-size: 0.95rem;
}

.hero-note span {
  border-left: 1px solid rgba(247, 239, 229, 0.24);
  padding-left: 12px;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.feature-card {
  position: relative;
  height: 300px;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--espresso);
}

.feature-card-wide {
  height: 300px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 12, 10, 0.82), rgba(16, 12, 10, 0.08) 56%);
}

.feature-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
}

.feature-card h2 {
  max-width: 320px;
  margin: 0;
  font-size: 2rem;
}

.section {
  padding: 88px 36px;
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.visit-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: 4rem;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.intro-stats div {
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(33, 25, 21, 0.74);
}

.intro-stats strong {
  display: block;
  color: var(--pearl);
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.intro-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(247, 239, 229, 0.74);
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 620px;
}

.section-note {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
}

.segment-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 999px;
  background: rgba(43, 33, 28, 0.72);
}

.segment-control button {
  min-height: 40px;
  cursor: pointer;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: rgba(247, 239, 229, 0.76);
}

.segment-control button.is-active {
  background: var(--pearl);
  color: #211713;
  font-weight: 800;
}

.program-panel {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 10px;
}

.program-photo,
.program-card {
  min-height: 260px;
  margin: 0;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(168, 79, 56, 0.28), transparent 54%),
    rgba(33, 25, 21, 0.9);
}

.program-photo {
  position: relative;
  overflow: hidden;
}

.program-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.program-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 12, 10, 0.72), transparent 58%);
}

.program-photo figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: rgba(247, 239, 229, 0.84);
  font-weight: 700;
}

.program-card {
  display: grid;
  grid-template-rows: 1fr auto;
}

.program-copy {
  padding: 34px;
}

.program-copy h3 {
  margin-bottom: 18px;
  font-size: 3rem;
}

.program-copy p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.program-list {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  list-style: none;
  margin: 0;
  border-top: 1px solid rgba(247, 239, 229, 0.12);
}

.program-list li {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid rgba(247, 239, 229, 0.12);
  color: rgba(247, 239, 229, 0.84);
  font-weight: 700;
}

.program-list li:last-child {
  border-bottom: 0;
}

.memberships-section {
  position: relative;
}

.membership-hero {
  margin-bottom: 34px;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 8px;
  padding: 42px 46px;
  background:
    linear-gradient(135deg, rgba(247, 239, 229, 0.08), transparent 52%),
    rgba(33, 25, 21, 0.72);
}

.membership-hero h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 4rem;
}

.membership-hero p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.membership-extra-title {
  margin-top: 44px;
}

.membership-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(247, 239, 229, 0.14);
  border-radius: 8px;
  padding: 36px 24px 28px;
  background:
    linear-gradient(145deg, rgba(247, 239, 229, 0.08), transparent 60%),
    rgba(33, 25, 21, 0.92);
  text-align: center;
}

.membership-card.is-popular {
  border-color: rgba(215, 116, 81, 0.68);
}

.premium-card {
  border-color: rgba(215, 116, 81, 0.72);
  background:
    linear-gradient(180deg, #dc7650, #a84322);
  color: #fff6ee;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(215, 116, 81, 0.16);
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.membership-card h3 {
  margin: 30px 0 24px;
  font-size: 2rem;
}

.membership-card p {
  min-height: 108px;
  margin-bottom: 18px;
  color: rgba(247, 239, 229, 0.74);
}

.premium-card p {
  color: rgba(255, 246, 238, 0.86);
}

.membership-tags {
  display: flex;
  min-height: 82px;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.membership-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(247, 239, 229, 0.2);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(247, 239, 229, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.premium-card .membership-tags span {
  border-color: rgba(255, 246, 238, 0.42);
  color: rgba(255, 246, 238, 0.9);
}

.membership-price {
  margin-top: auto;
  color: var(--pearl);
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.premium-card .membership-price {
  color: #fff6ee;
}

.membership-card small {
  margin: 12px 0 16px;
  color: rgba(247, 239, 229, 0.68);
  font-weight: 800;
}

.tariff-button {
  min-width: 150px;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}

.space-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--espresso);
}

.space-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.space-card:hover img {
  transform: scale(1.045);
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 12, 10, 0.88), transparent 62%);
}

.space-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.space-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--warm);
  font-weight: 800;
}

.space-card h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.space-card p {
  margin-bottom: 0;
  color: rgba(247, 239, 229, 0.78);
}

.horizontal-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 190, 147, 0.5) transparent;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(216, 190, 147, 0.42);
}

.reviews-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 31%);
  gap: 10px;
  padding-bottom: 10px;
}

.review-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(216, 190, 147, 0.12), transparent 56%),
    rgba(33, 25, 21, 0.86);
  scroll-snap-align: start;
}

.review-card p {
  color: rgba(247, 239, 229, 0.82);
  font-size: 1.05rem;
}

.review-card span {
  color: var(--warm);
  font-weight: 800;
}

.visit-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 46px;
  align-items: start;
}

.visit-copy p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 0.76fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact-copy p:last-child {
  max-width: 480px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-list a,
.contact-list span {
  min-height: 46px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(33, 25, 21, 0.72);
  color: rgba(247, 239, 229, 0.82);
  font-weight: 700;
}

.map-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 34%, rgba(216, 190, 147, 0.34), transparent 16%),
    linear-gradient(135deg, transparent 0 22%, rgba(247, 239, 229, 0.08) 22% 23%, transparent 23% 46%, rgba(247, 239, 229, 0.08) 46% 47%, transparent 47%),
    linear-gradient(42deg, transparent 0 36%, rgba(215, 116, 81, 0.28) 36% 37%, transparent 37%),
    rgba(33, 25, 21, 0.86);
}

.map-lines {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.map-lines::before,
.map-lines::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(215, 116, 81, 0.22);
  border-radius: 50%;
}

.map-lines::after {
  inset: 84px;
  border-color: rgba(247, 239, 229, 0.1);
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 48%;
  display: grid;
  gap: 2px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(247, 239, 229, 0.18);
  border-radius: 8px;
  padding: 14px 18px;
  background: rgba(16, 12, 10, 0.82);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
}

.map-marker strong {
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-size: 1.5rem;
}

.map-marker span {
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(247, 239, 229, 0.12);
  border-radius: 8px;
  background: rgba(33, 25, 21, 0.86);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form span {
  color: rgba(247, 239, 229, 0.8);
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(247, 239, 229, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(16, 12, 10, 0.58);
  color: var(--pearl);
}

.contact-form input::placeholder {
  color: rgba(247, 239, 229, 0.46);
}

.form-button {
  width: 100%;
  cursor: pointer;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--blush);
}

.form-message.is-ok {
  color: #dfe9c7;
}

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

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

@media (max-width: 1050px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    padding-top: 128px;
  }

  h1 {
    font-size: 4.6rem;
  }

  .intro-grid,
  .program-panel,
  .visit-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .reviews-slider {
    grid-auto-columns: minmax(330px, 54%);
  }

  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card-wide {
    grid-column: 1 / -1;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .map-card {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .page-shell {
    width: calc(100% - 12px);
    margin: 6px auto;
    padding: 6px;
    border-radius: 12px;
  }

  .topbar {
    top: 8px;
    gap: 8px;
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand hamburger";
    justify-content: space-between;
    border-radius: 14px;
  }

  .brand {
    grid-area: brand;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    grid-area: hamburger;
    justify-self: end;
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: 1px solid rgba(247, 239, 229, 0.18);
    border-radius: 999px;
    background: rgba(247, 239, 229, 0.08);
  }

  .hamburger span {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--pearl);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .hamburger span + span {
    margin-top: 0;
  }

  .hamburger.is-open span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: relative;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    gap: 6px;
    border: 1px solid rgba(247, 239, 229, 0.14);
    border-radius: 8px;
    padding: 8px;
    background: rgba(27, 20, 17, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    min-height: 38px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 10px;
    color: rgba(247, 239, 229, 0.86);
    font-size: 0.86rem;
  }

  .mobile-menu .telegram-link {
    background: rgba(215, 116, 81, 0.16);
    color: var(--blush);
    font-weight: 900;
  }

  .hero {
    min-height: 680px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(16, 12, 10, 0.9) 0%, rgba(16, 12, 10, 0.46) 100%),
      linear-gradient(90deg, rgba(16, 12, 10, 0.8), rgba(16, 12, 10, 0.18));
  }

  .hero-rings {
    width: 360px;
    height: 180px;
    right: -36px;
  }

  .hero-copy {
    padding: 128px 18px 28px;
  }

  h1 {
    font-size: 2.9rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-pills {
    top: auto;
    right: 18px;
    left: 18px;
    bottom: 102px;
    justify-content: flex-start;
  }

  .hero-pills span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 22px;
    gap: 7px;
    font-size: 0.86rem;
  }

  .hero-note span {
    padding-left: 8px;
  }

  .feature-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 8px;
  }

  .feature-card {
    scroll-snap-align: start;
  }

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

  .feature-card,
  .feature-card-wide {
    height: 260px;
    min-height: 0;
  }

  .section {
    padding: 64px 18px;
  }

  .intro-grid h2,
  .section-heading h2,
  .membership-hero h2,
  .visit-copy h2,
  .contact-copy h2 {
    font-size: 2.75rem;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .segment-control {
    border-radius: 14px;
  }

  .segment-control button {
    flex: 1 1 44%;
  }

  .program-copy,
  .program-list,
  .membership-hero {
    padding: 24px;
  }

  .program-copy h3 {
    font-size: 2.2rem;
  }

  .program-photo img {
    min-height: 260px;
  }

  .membership-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 10px;
  }

  .membership-card {
    scroll-snap-align: start;
  }

  .membership-card {
    min-height: 380px;
  }

  .reviews-slider {
    grid-auto-columns: 86%;
  }

  .space-grid {
    grid-auto-rows: 320px;
  }

  .space-card-large {
    grid-column: auto;
    grid-row: span 1;
  }

  .contact-form {
    padding: 16px;
  }
}

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