:root {
  --bg: #1a0a0a;
  --bg-soft: #f0e8d0;
  --panel: #2a1111;
  --panel-soft: #201010;
  --panel-light: #f0e8d0;
  --text: #f0e8d0;
  --text-dark: #1a0a0a;
  --muted: rgba(240, 232, 208, 0.56);
  --muted-dark: rgba(26, 10, 10, 0.7);
  --cream: #f0e8d0;
  --gold: #d4a96a;
  --gold-soft: rgba(212, 169, 106, 0.16);
  --maroon: #5c1a1a;
  --maroon-soft: rgba(92, 26, 26, 0.16);
  --line: rgba(240, 232, 208, 0.12);
  --line-dark: rgba(26, 10, 10, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 22px 60px rgba(30, 20, 21, 0.08);
  --max: 1260px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(200, 168, 75, 0.08), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(106, 32, 43, 0.22), transparent 20%),
    radial-gradient(circle at 50% 74%, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.28) 100%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(245, 226, 198, 0.08) 1px, transparent 0);
  background-size: 16px 16px;
  opacity: 0.45;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
}

h1 { font-size: clamp(3.3rem, 9.5vw, 6.6rem); }
h2 { font-size: clamp(2.7rem, 6vw, 4.8rem); }
h3 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.12);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.nav-logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  object-fit: cover;
  max-width: none;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

@media (max-width: 430px) {
  .nav {
    padding: 12px 14px;
    gap: 10px;
  }

  .nav-logo-text {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .nav-logo-mark {
    width: 16px;
    height: 16px;
  }

  .nav-toggle {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.62rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 242, 233, 0.56);
  transition: color 180ms ease;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta,
.btn-primary,
.btn-ghost,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta,
.btn-primary,
.mobile-cta a:last-child {
  background: var(--gold);
  color: #0a0a0a;
}

.nav-cta:hover,
.btn-primary:hover,
.btn-ghost:hover,
.mobile-cta a:hover { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: rgba(246, 242, 233, 0.7);
  border-bottom: 1px solid rgba(246, 242, 233, 0.18);
  padding-inline: 0;
  border-radius: 0;
  min-height: 46px;
}

.btn-ghost.dark {
  color: rgba(30, 20, 21, 0.72);
  border-bottom-color: rgba(30, 20, 21, 0.18);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 14px;
  right: 14px;
  z-index: 99;
  padding: 12px;
  border-radius: 24px;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(200, 168, 75, 0.12);
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.mobile-menu a:hover { background: rgba(200, 168, 75, 0.1); }

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: end;
  padding: 76px 0 28px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.08) 24%, rgba(10, 10, 10, 0.74) 72%, rgba(10, 10, 10, 0.96) 100%),
    radial-gradient(circle at 72% 30%, rgba(200, 168, 75, 0.12), transparent 16%),
    radial-gradient(circle at 28% 72%, rgba(106, 32, 43, 0.18), transparent 18%),
    linear-gradient(135deg, #191919 0%, #0f0f0f 55%, #080808 100%);
  z-index: 0;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(200, 168, 75, 0.022) 80px, rgba(200, 168, 75, 0.022) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(200, 168, 75, 0.016) 80px, rgba(200, 168, 75, 0.016) 81px);
  opacity: 0.55;
  z-index: 3;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 70% 38%, rgba(200, 168, 75, 0.08), transparent 12%),
    radial-gradient(circle at 20% 64%, rgba(255, 255, 255, 0.03), transparent 14%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025), transparent 34%),
    linear-gradient(180deg, transparent 52%, rgba(10, 10, 10, 0.36) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-label { display: none; }

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.hero-headline {
  max-width: 7.8ch;
  margin-bottom: 18px;
  color: var(--text);
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  max-width: 32rem;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(246, 242, 233, 0.6);
  font-weight: 300;
}

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

.hero-scroll-indicator { display: none; }

@media (max-width: 759px) {
  .hero {
    min-height: 72svh;
    align-items: center;
    padding: 90px 0 24px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.22) 34%, rgba(10, 10, 10, 0.82) 100%),
      radial-gradient(circle at 50% 16%, rgba(200, 168, 75, 0.1), transparent 18%),
      linear-gradient(135deg, #161616 0%, #0e0e0e 100%);
  }

  .hero-media {
    object-position: center top;
    filter: brightness(1.08) contrast(1.03) saturate(0.98);
  }

  .hero-video-placeholder,
  .hero-grid-lines {
    opacity: 0.3;
  }

  .hero-content {
    width: min(100%, calc(100% - 28px));
  }

  .hero-headline {
    max-width: 9ch;
  }

  .hero-sub {
    max-width: 23rem;
  }
}

.barbell-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 22px;
}

.bb-plate {
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.bb-bar {
  flex: 1;
  max-width: 620px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 168, 75, 0.18), var(--gold));
}

.bb-center {
  width: 10px;
  height: 26px;
  margin: 0 -1px;
  border-radius: 2px;
  background: var(--gold);
}

.section-dark {
  background: #111111;
}

.section-light {
  background: var(--bg-soft);
  color: var(--text-dark);
}

.manifesto,
.methodology,
.trainers,
.instalaciones,
.luxiaojun,
.services,
.results,
.gallery,
.opinions,
.tariffs,
.faq,
.reserve {
  padding: 72px 0;
}

.manifesto-grid {
  display: grid;
  gap: 28px;
}

.manifesto-copy,
.trainers-header,
.services-header,
.gallery-header,
.faq-header {
  max-width: 780px;
}

.manifesto-headline,
.meth-headline,
.trainers-headline,
.split-headline,
.results-headline,
.gallery-headline,
.faq-headline,
.tariffs-headline,
.reserve-headline {
  margin-top: 14px;
  margin-bottom: 24px;
}

.gallery-sub {
  max-width: 36rem;
  line-height: 1.82;
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(30, 20, 21, 0.68);
}

.manifesto-headline,
.meth-headline,
.trainers-headline,
.split-headline,
.results-headline,
.gallery-headline,
.faq-headline,
.tariffs-headline,
.reserve-headline,
.split-copy,
.manifesto-body,
.trainers-sub,
.results-copy,
.reserve-copy {
  color: inherit;
}

.manifesto-body,
.trainers-sub,
.results-copy,
.reserve-copy,
.split-copy {
  max-width: 36rem;
  line-height: 1.85;
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(246, 242, 233, 0.58);
}

.section-light .split-copy,
.section-light .results-copy,
.section-light .reserve-copy,
.section-light .manifesto-body,
.section-light .trainers-sub {
  color: rgba(30, 20, 21, 0.68);
}

.manifesto-cards {
  display: grid;
  gap: 2px;
}

.manifesto-card {
  padding: 24px 20px;
  background: #191919;
  border-top: 2px solid transparent;
  transition: border-color 180ms ease, transform 180ms ease;
}

.manifesto-card:hover { border-top-color: var(--gold); transform: translateY(-2px); }

.manifesto-card-num,
.stat-num,
.meth-step-tag {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.manifesto-card-num {
  margin-bottom: 6px;
  font-size: 3.4rem;
  line-height: 0.8;
  color: rgba(200, 168, 75, 0.18);
}

.manifesto-card-title {
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.manifesto-card-text {
  line-height: 1.75;
  font-size: 0.92rem;
  color: rgba(246, 242, 233, 0.5);
}

.stats {
  display: grid;
  gap: 3px;
  background: #0f0f0f;
}

.stat-block {
  min-height: 126px;
  padding: 20px 18px;
  background: #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.stat-num {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text);
}

.stat-num em {
  font-style: normal;
  color: var(--gold);
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 242, 233, 0.4);
}

.methodology {
  background: #111111;
}

.meth-header {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.meth-intro {
  max-width: 28rem;
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(246, 242, 233, 0.5);
}

.meth-steps {
  display: grid;
  gap: 3px;
}

.meth-step {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease;
}

.meth-step:hover {
  transform: translateY(-2px);
  border-top-color: var(--gold);
}

.meth-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.meth-step:hover::after { transform: scaleX(1); }

.meth-step-tag {
  position: absolute;
  top: 6px;
  right: 14px;
  font-size: 4.4rem;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
}

.meth-step-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 168, 75, 0.28);
  color: var(--gold);
  font-size: 1rem;
}

.meth-step-media {
  margin: -22px -22px 18px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1b1b1b, #0a0a0a);
}

.meth-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(0.95) contrast(1.02);
}

.meth-step-title {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3.4vw, 2.2rem);
  color: var(--text);
}

.meth-step-text {
  max-width: 28rem;
  line-height: 1.72;
  font-size: 0.9rem;
  color: rgba(246, 242, 233, 0.52);
  font-weight: 300;
}

.trainers {
  color: var(--text-dark);
}

.trainers-header {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 36px;
}

.trainers-header .section-label {
  justify-content: center;
  color: var(--gold);
}

.trainers-headline {
  color: #0f0f0f;
}

.trainers-sub {
  margin-inline: auto;
}

.trainers-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 20px;
}

.trainer-card {
  background: var(--panel-light);
  border: 1px solid rgba(30, 20, 21, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trainer-img {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(30, 20, 21, 0.04), rgba(30, 20, 21, 0.14)),
    linear-gradient(135deg, #2a2a2a 0%, #111 60%, #050505 100%);
  position: relative;
  overflow: hidden;
}

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

.trainer-info {
  padding: 18px;
}

.trainer-name {
  margin-bottom: 8px;
  font-size: 1.7rem;
  color: #0f0f0f;
}

.trainer-role,
.role {
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30, 20, 21, 0.58);
}

.trainer-bio,
.bio {
  line-height: 1.8;
  color: rgba(30, 20, 21, 0.7);
  font-weight: 300;
}

.section-split {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 22px;
}

.reverse { direction: ltr; }

.split-headline {
  color: inherit;
}

.facility-panel {
  display: grid;
  gap: 8px;
}

.facility-photo {
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(200, 168, 75, 0.12), transparent 55%),
    linear-gradient(135deg, #262626 0%, #111 58%, #060606 100%);
  box-shadow: var(--shadow);
  min-height: 160px;
}

.facility-photo-main {
  min-height: 280px;
}

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

.facility-photo-small.alt {
  background:
    linear-gradient(160deg, rgba(106, 32, 43, 0.18), transparent 52%),
    linear-gradient(135deg, #222 0%, #101010 72%, #050505 100%);
}

.luxiaojun {
  color: var(--text-dark);
}

.lux-copy .section-label,
.results .section-label,
.faq .section-label {
  color: var(--gold);
}

.lux-copy .split-copy {
  color: rgba(30, 20, 21, 0.68);
}

.lux-panel {
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(243, 235, 223, 0.96));
  border: 1px solid rgba(30, 20, 21, 0.08);
  box-shadow: var(--shadow-soft);
}

.lux-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(106, 32, 43, 0.1);
  color: var(--maroon);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lux-stack {
  display: grid;
  gap: 12px;
}

.lux-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(30, 20, 21, 0.08);
  font-weight: 500;
  color: rgba(30, 20, 21, 0.78);
}

.lux-item.accent {
  background: rgba(200, 168, 75, 0.14);
  color: #281416;
  border-color: rgba(200, 168, 75, 0.24);
}

.results {
  color: var(--text);
}

.results-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.results-copy {
  max-width: 34rem;
}

.result-card {
  padding: 24px;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid var(--gold);
}

.result-card span {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.result-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 0.92;
}

.result-card p {
  color: rgba(246, 242, 233, 0.5);
  line-height: 1.78;
  font-weight: 300;
}

.gallery {
  color: var(--text-dark);
}

.gallery-header {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  margin-bottom: 28px;
}

.gallery-headline {
  color: #0f0f0f;
}

.services {
  color: var(--text-dark);
}

.services-header {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  margin-bottom: 30px;
}

.services-headline {
  color: #0f0f0f;
}

.services-sub {
  max-width: 36rem;
  line-height: 1.82;
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(30, 20, 21, 0.68);
}

.services-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.service-card {
  display: grid;
  gap: 14px;
  padding: 22px 20px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(243, 236, 223, 0.96));
  border: 1px solid rgba(30, 20, 21, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 169, 106, 0.3);
  box-shadow: 0 26px 60px rgba(30, 20, 21, 0.1);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(212, 169, 106, 0.12);
  border: 1px solid rgba(212, 169, 106, 0.2);
  color: var(--gold);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: #0f0f0f;
}

.service-card p {
  line-height: 1.82;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(30, 20, 21, 0.72);
}

.service-cta {
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
}

.services-note {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  text-align: center;
  color: rgba(30, 20, 21, 0.56);
  line-height: 1.7;
  font-size: 0.82rem;
}

.gallery-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 180px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(26, 10, 10, 0.12) 0%, rgba(26, 10, 10, 0.08) 100%),
    linear-gradient(135deg, #262626 0%, #111 58%, #060606 100%);
  box-shadow: var(--shadow-soft);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(212, 169, 106, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.44));
  z-index: 1;
  pointer-events: none;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.gallery-tile.big {
  grid-column: 1 / -1;
  min-height: 320px;
}

.gallery-tile.wide {
  grid-column: 1 / -1;
  min-height: 220px;
}

.gallery-tile:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 240px;
}

.opinion-list {
  display: grid;
  gap: 3px;
}

.opinion-card {
  padding: 26px 24px;
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.opinion-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(246, 242, 233, 0.82);
}

.opinion-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.faq-header,
.reserve-card {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.faq-headline {
  color: #0f0f0f;
}

.faq-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--panel-light);
  border: 1px solid rgba(30, 20, 21, 0.08);
  border-radius: 20px;
  padding: 8px 20px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f0f0f;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 0 18px;
  color: rgba(30, 20, 21, 0.72);
  line-height: 1.8;
}

.tariffs {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(12, 12, 12, 0.98)),
    radial-gradient(circle at 10% 16%, rgba(92, 26, 26, 0.22), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(212, 169, 106, 0.08), transparent 18%);
}

.tariffs-grid {
  display: grid;
  gap: 20px;
}

.tariffs-copy {
  max-width: 30rem;
}

.tariffs-headline {
  margin-top: 14px;
  margin-bottom: 18px;
  max-width: 8ch;
}

.tariffs-sub {
  max-width: 34rem;
  line-height: 1.82;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(246, 242, 233, 0.58);
}

.tariffs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tariffs-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 169, 106, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 242, 233, 0.82);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tariffs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tariffs-badges--after {
  margin-top: 12px;
}

.tariffs-content {
  display: grid;
  gap: 12px;
}

.tariff-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 12, 12, 0.98), rgba(14, 9, 9, 0.98));
  border: 1px solid rgba(212, 169, 106, 0.12);
  box-shadow: none;
}

.tariff-card--hero {
  padding: 24px 20px 22px;
  background:
    linear-gradient(180deg, rgba(33, 16, 16, 0.99), rgba(18, 10, 10, 0.98)),
    radial-gradient(circle at 78% 18%, rgba(212, 169, 106, 0.08), transparent 24%);
  border-color: rgba(212, 169, 106, 0.18);
}

.tariff-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.tariff-card-kicker {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tariff-card-pivot {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 169, 106, 0.16);
  color: rgba(246, 242, 233, 0.74);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tariff-copy--muted {
  color: rgba(246, 242, 233, 0.5);
}

.tariff-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--cream);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.tariff-price span {
  font-size: clamp(3.5rem, 6vw, 5.4rem);
  line-height: 0.8;
}

.tariff-price em {
  font-style: normal;
  color: rgba(246, 242, 233, 0.62);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tariff-copy {
  color: rgba(246, 242, 233, 0.72);
  line-height: 1.7;
  font-size: 0.9rem;
}

.tariff-card--matrix {
  background:
    linear-gradient(180deg, rgba(18, 12, 12, 0.96), rgba(12, 8, 8, 0.98)),
    radial-gradient(circle at 92% 12%, rgba(92, 26, 26, 0.24), transparent 22%);
}

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

.tariff-variant {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 169, 106, 0.1);
}

.tariff-variant--featured {
  border-color: rgba(212, 169, 106, 0.44);
  background: rgba(212, 169, 106, 0.08);
  padding-top: 40px;
}

.tariff-variant-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(212, 169, 106, 0.16);
  color: var(--gold);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tariff-variant span {
  color: rgba(246, 242, 233, 0.64);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tariff-variant strong {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.84;
}

.tariff-variant p {
  color: rgba(246, 242, 233, 0.52);
  line-height: 1.5;
  font-size: 0.74rem;
}

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

.tariff-mini {
  display: grid;
  gap: 4px;
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 169, 106, 0.1);
}

.tariff-mini span {
  color: rgba(246, 242, 233, 0.64);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tariff-mini strong {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.88;
}

.tariff-mini p {
  color: rgba(246, 242, 233, 0.52);
  line-height: 1.5;
  font-size: 0.74rem;
}

.tariff-cta {
  width: fit-content;
  min-height: 40px;
  margin-top: 8px;
  padding: 0 14px;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
}

.tariffs-note {
  color: rgba(246, 242, 233, 0.52);
  line-height: 1.7;
  font-size: 0.82rem;
}

.reserve-card {
  padding: 34px 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98)),
    radial-gradient(circle at 80% 20%, rgba(200, 168, 75, 0.08), transparent 28%);
  border: 1px solid rgba(200, 168, 75, 0.12);
  box-shadow: var(--shadow);
}

.reserve-copy {
  max-width: 34rem;
  margin-top: 6px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.app {
  padding: 52px 0 32px;
}

.app-box {
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(25, 10, 10, 0.98), rgba(17, 9, 9, 0.98)),
    radial-gradient(circle at 80% 20%, rgba(212, 169, 106, 0.08), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.app-grid {
  display: grid;
  gap: 12px;
}

.store-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-link img {
  width: 166px;
  max-width: 100%;
  height: auto;
  display: block;
}

.app-note {
  margin-top: 7px;
  color: rgba(246, 242, 233, 0.58);
  line-height: 1.5;
  font-size: 0.74rem;
}

.footer {
  padding: 22px 0 96px;
  color: rgba(246, 242, 233, 0.44);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-cta a {
  background: rgba(10, 10, 10, 0.92);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .nav {
    padding: 14px 40px;
  }

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

  .nav-links {
    display: none;
  }

  .nav-logo-mark {
    display: block;
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 92px;
    padding-bottom: 38px;
  }

  .hero-video-label {
    position: absolute;
    top: 108px;
    right: 60px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(200, 168, 75, 0.72);
    font-size: 0.65rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
  }

  .hero-video-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(200, 168, 75, 0.72);
  }

  .hero-scroll-indicator {
    position: absolute;
    right: 60px;
    bottom: 40px;
    z-index: 2;
    display: block;
    writing-mode: vertical-rl;
    color: rgba(246, 242, 233, 0.22);
    font-size: 0.58rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
  }

  .hero-scroll-indicator::after {
    content: "";
    display: block;
    width: 1px;
    height: 48px;
    margin-top: 12px;
    background: rgba(246, 242, 233, 0.14);
  }

  .hero-content {
    width: min(var(--max), calc(100% - 96px));
  }

  .manifesto-grid,
  .meth-header,
  .tariffs-grid,
  .section-split,
  .results-grid {
    width: min(var(--max), calc(100% - 96px));
  }

  .manifesto-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }

  .manifesto-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

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

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

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

  .tariffs-grid {
    gap: 18px;
  }

  .tariffs-content {
    gap: 14px;
  }

  .section-split {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .reverse {
    direction: rtl;
  }

  .reverse > * {
    direction: ltr;
  }

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

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

  .gallery-tile.big {
    grid-column: span 2;
    min-height: 340px;
  }

  .gallery-tile.wide {
    grid-column: span 2;
  }

  .gallery-tile:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .opinion-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1080px) {
  body {
    padding-bottom: 0;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 120px));
  }

  .hero-headline {
    max-width: 7.5ch;
  }

  .manifesto,
  .methodology,
  .trainers,
  .instalaciones,
  .luxiaojun,
  .results,
  .gallery,
  .opinions,
  .tariffs,
  .faq,
  .reserve {
    padding: 96px 0;
  }

  .manifesto-copy {
    padding-right: 32px;
  }

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

  .gallery-tile.big {
    grid-column: span 4;
    min-height: 360px;
  }

  .gallery-tile {
    min-height: 220px;
  }

  .gallery-tile.wide {
    grid-column: span 2;
    min-height: 260px;
  }

  .gallery-tile:nth-child(3) {
    grid-column: span 3;
    min-height: 300px;
  }
}

.luxiaojun-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 28px;
}

.lux-copy {
  position: relative;
  max-width: 44rem;
}

.lx-headline {
  margin-top: 14px;
  margin-bottom: 24px;
  color: #f5f2e9;
}

.lx-body {
  max-width: 36rem;
  margin-bottom: 30px;
  color: rgba(246, 242, 233, 0.58);
  line-height: 1.85;
  font-size: 1.02rem;
  font-weight: 300;
}

.lx-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200, 168, 75, 0.28);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lux-brand-watermark {
  position: absolute;
  right: 0;
  bottom: -12px;
  width: min(280px, 50vw);
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: screen;
}

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

.lx-media-block {
  min-height: 180px;
  padding: 24px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(246, 242, 233, 0.22);
}

.lx-media-block i {
  font-style: normal;
  color: rgba(200, 168, 75, 0.38);
  font-size: 1.8rem;
}

.lx-media-block.tall {
  grid-row: span 2;
  min-height: 364px;
}

.test-header {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  margin-bottom: 32px;
}

.test-headline {
  margin-top: 14px;
  color: #0f0f0f;
}

.test-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 3px;
}

.test-card {
  padding: 26px 22px;
  background: #111111;
  border-top: 2px solid transparent;
}

.test-card:hover { border-top-color: var(--gold); }

.test-quote-mark {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.7;
  color: rgba(200, 168, 75, 0.28);
}

.test-quote {
  margin-bottom: 20px;
  color: rgba(246, 242, 233, 0.62);
  line-height: 1.72;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 300;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #232323;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  overflow: hidden;
  flex-shrink: 0;
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.test-name {
  margin-bottom: 3px;
  color: #f5f2e9;
  font-size: 0.82rem;
  font-weight: 600;
}

.test-tag {
  color: rgba(246, 242, 233, 0.32);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-list {
  width: min(860px, calc(100% - 32px));
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(246, 242, 233, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  padding: 20px 0;
  color: #f5f2e9;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  color: var(--gold);
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 18px;
  color: rgba(246, 242, 233, 0.56);
  line-height: 1.72;
  font-size: 0.9rem;
  font-weight: 300;
}

.contact {
  background: #201010;
  padding: 44px 0 34px;
}

.contact-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.contact-copy {
  max-width: 23rem;
}

.contact-headline {
  margin-top: 6px;
  margin-bottom: 12px;
  max-width: none;
  white-space: nowrap;
  line-height: 0.95;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.contact-sub {
  max-width: 20rem;
  line-height: 1.5;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(240, 232, 208, 0.58);
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  max-width: 23rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 169, 106, 0.12);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 169, 106, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.contact-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--gold);
  background: rgba(212, 169, 106, 0.1);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 240, 223, 0.98));
  border: 1px solid rgba(212, 169, 106, 0.12);
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: block;
  margin-bottom: 3px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: rgba(26, 10, 10, 0.7);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 8px;
  padding: 9px 12px;
  border-radius: 11px;
  border: 1px solid rgba(26, 10, 10, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #0f0f0f;
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(26, 10, 10, 0.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 169, 106, 0.6);
  box-shadow: 0 0 0 4px rgba(212, 169, 106, 0.12);
  background: #fff;
}

.contact-form textarea {
  min-height: 72px;
  resize: vertical;
}

.contact-submit {
  width: fit-content;
  margin-top: 4px;
  min-height: 38px;
  padding-inline: 12px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

@media (max-width: 759px) {
  .tariffs {
    padding: 56px 0 40px;
  }

  .tariffs-grid {
    gap: 16px;
  }

  .tariffs-copy {
    max-width: none;
  }

  .tariffs-headline {
    margin-bottom: 14px;
    max-width: 9ch;
  }

  .tariffs-sub {
    max-width: none;
    font-size: 0.86rem;
  }

  .tariffs-badges {
    gap: 8px;
    margin-top: 18px;
  }

  .tariffs-badges span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.56rem;
  }

  .tariffs-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .tariffs-badges--after {
    margin-top: 10px;
  }

  .tariff-card {
    padding: 16px;
    border-radius: 20px;
  }

  .tariff-card--hero {
    padding: 18px 16px 16px;
  }

  .tariff-card-head {
    margin-bottom: 12px;
  }

  .tariff-card-kicker {
    font-size: 0.58rem;
  }

  .tariff-card-pivot {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.53rem;
  }

  .tariff-price {
    gap: 8px;
    margin-bottom: 10px;
  }

  .tariff-price em {
    font-size: 0.68rem;
  }

  .tariff-copy {
    font-size: 0.82rem;
  }

  .tariff-variants,
  .tariff-strip {
    gap: 8px;
  }

  .tariff-variant {
    padding: 12px 11px 10px;
    border-radius: 16px;
  }

  .tariff-variant--featured {
    padding-top: 34px;
  }

  .tariff-variant-badge {
    top: 10px;
    right: 10px;
    min-height: 20px;
    padding: 0 8px;
    font-size: 0.5rem;
  }

  .tariff-variant span,
  .tariff-mini span {
    font-size: 0.52rem;
  }

  .tariff-variant p,
  .tariff-mini p {
    font-size: 0.68rem;
  }

  .tariff-mini {
    padding: 12px 11px;
    border-radius: 16px;
  }

  .tariff-cta {
    min-height: 36px;
    margin-top: 6px;
    padding: 0 12px;
    font-size: 0.5rem;
  }

  .tariffs-note {
    font-size: 0.75rem;
  }

  .contact {
    padding: 38px 0 28px;
  }

  .contact-grid {
    gap: 14px;
  }

  .contact-copy {
    max-width: none;
  }

  .contact-headline {
    margin-bottom: 10px;
    white-space: normal;
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }

  .contact-sub {
    max-width: none;
    font-size: 0.82rem;
  }

  .contact-list {
    margin-top: 14px;
    gap: 7px;
  }

  .contact-item {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 14px;
  }

  .contact-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .contact-form {
    padding: 14px;
    border-radius: 20px;
  }

  .contact-form label {
    margin-bottom: 3px;
    font-size: 0.56rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .contact-form textarea {
    min-height: 84px;
  }

  .contact-submit {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.56rem;
  }

  .reserve {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .reserve-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .reserve-headline {
    margin-bottom: 14px;
  }

  .cta-row {
    margin-top: 20px;
    gap: 10px;
  }

  .cta-row .btn-primary,
  .cta-row .btn-ghost {
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.63rem;
  }

  .app {
    padding-top: 44px;
    padding-bottom: 24px;
  }

  .app-box {
    padding: 18px;
    border-radius: 24px;
  }

  .app-grid {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: 12px;
  }

  .store-links {
    justify-self: end;
    padding-right: 72px;
  }

  .store-link {
    justify-content: flex-start;
  }

  .app-note {
    margin-top: 7px;
    font-size: 0.74rem;
  }
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #f5f2e9;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

footer {
  padding: 56px 0 36px;
  background: #0a0a0a;
  border-top: 1px solid #181818;
}

.footer-top {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  gap: 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  max-width: 124px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-tagline {
  max-width: 22rem;
  margin-bottom: 24px;
  color: rgba(246, 242, 233, 0.4);
  line-height: 1.8;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-luxbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(200, 168, 75, 0.18);
  color: rgba(200, 168, 75, 0.76);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-luxbadge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(200, 168, 75, 0.76);
}

.footer-col-title {
  margin-bottom: 18px;
  color: rgba(246, 242, 233, 0.26);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
  color: rgba(246, 242, 233, 0.48);
  font-size: 0.84rem;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid #181818;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(246, 242, 233, 0.22);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-cta:hover,
.btn-primary:hover {
  opacity: 0.88;
}

@media (min-width: 760px) {
  .hero-content {
    width: min(var(--max), calc(100% - 96px));
  }

  .manifesto-grid,
  .meth-header,
  .services-header,
  .services-grid,
  .services-note,
  .trainers-header,
  .test-header,
  .faq-list {
    width: min(var(--max), calc(100% - 96px));
  }

  .manifesto-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .manifesto-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
  }

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

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

  .trainers-grid {
    width: min(var(--max), calc(100% - 96px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .services-grid {
    gap: 16px;
  }

  .luxiaojun-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

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

  .faq-list {
    max-width: 860px;
  }

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

  .app {
    padding-top: 44px;
    padding-bottom: 24px;
  }

  .app-box {
    padding: 28px;
    border-radius: 32px;
  }

  .app-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 24px;
  }

  .store-links {
    gap: 10px;
    justify-items: end;
  }

  .store-link {
    max-width: 293px;
  }

  .app-note {
    margin-top: 18px;
  }
}

@media (min-width: 1180px) {
  .nav-links {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1080px) {
  .hero-content {
    width: min(var(--max), calc(100% - 120px));
  }

  .hero {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-headline {
    max-width: 7.4ch;
  }

  .manifesto,
  .methodology,
  .trainers,
  .luxiaojun,
  .services,
  .testimonials,
  .faq {
    padding: 84px 0;
  }

  .meth-header,
  .meth-steps {
    width: min(1080px, calc(100% - 240px));
    margin-inline: auto;
  }

  .stats {
    width: min(var(--max), calc(100% - 96px));
    margin-inline: auto;
  }

  .tariffs-grid {
    width: min(var(--max), calc(100% - 96px));
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 24px;
  }

  .tariffs-copy {
    max-width: 28rem;
  }

  .tariffs-headline {
    max-width: 8ch;
  }

  .tariffs-sub {
    max-width: 26rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .contact-grid {
    width: min(var(--max), calc(100% - 96px));
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 16px;
  }

  .contact-copy {
    align-self: center;
  }

  .contact-form {
    padding: 12px;
  }

  .contact-headline {
    font-size: clamp(2.6rem, 4vw, 3.2rem);
  }

  .contact-sub {
    font-size: 0.76rem;
  }

  .contact-item span:last-child {
    white-space: nowrap;
  }

  .stat-block {
    min-height: 110px;
    padding: 18px 18px;
  }
}
