@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ─── reset & variables ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blk:  #050505;
  --blk2: #0d0d0d;
  --surf: #1b1b1b;
  --surf2:#202020;
  --w:    #f7f4ef;
  --w2:   #ddd8d0;
  --w3:   rgba(235,228,215,.75);
  --gold: #c9a86c;
  --gold2:#e2c98a;
  --gold3:rgba(201,168,108,.12);
  --serif:'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; background: var(--blk); }
body {
  background: var(--blk);
  color: var(--w);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }

/* ─── layout utilities ──────────────────────────────────── */
.sec  { padding: clamp(80px, 11vw, 144px) clamp(20px, 5.5vw, 68px); }
.wrap { max-width: 1280px; margin: 0 auto; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* ─── animation base ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.fade-in.from-left  { transform: translateX(-36px); }
.fade-in.from-right { transform: translateX(36px); }
.fade-in.visible    { opacity: 1; transform: none; }

.fade-in.d1 { transition-delay: .1s; }
.fade-in.d2 { transition-delay: .2s; }
.fade-in.d3 { transition-delay: .3s; }
.fade-in.d4 { transition-delay: .4s; }

/* ─── typography helpers ────────────────────────────────── */
.tag {
  font-size: 12px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.sh {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, calc(0.617rem + 3.48vw), 3rem);
  line-height: 1.18;
  color: var(--w);
  margin-bottom: 18px;
}
.sh-lg {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, calc(0.626rem + 5.22vw), 4.8rem);
  line-height: 1.12;
  color: var(--w);
  margin-bottom: 18px;
}
.sh-sm {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, calc(0.809rem + 1.74vw), 2.2rem);
  line-height: 1.25;
  color: var(--w);
  margin-bottom: 14px;
}
.ac { color: var(--gold2); }
.rule { width: 44px; height: 1px; background: var(--gold); margin: 26px 0; }
.body-text { font-size: 1rem; color: var(--w3); line-height: 1.95; font-weight: 300; }

/* ─── buttons ───────────────────────────────────────────── */
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blk);
  background: var(--gold);
  padding: 17px 44px;
  border: none;
  transition: background .35s, transform .35s;
}
.btn-g:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-out {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--w2);
  background: transparent;
  padding: 16px 32px;
  border: 1px solid rgba(235,228,215,.52);
  transition: border-color .35s, color .35s;
}
.btn-out:hover { border-color: var(--gold); color: var(--gold); }

/* ─── nav ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 60px);
  transition: background .5s, padding .3s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: rgba(201,168,108,.1);
}
.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--w);
  letter-spacing: .06em;
}
.logo span { color: var(--gold); }
.nav-right { display: flex; gap: 28px; align-items: center; margin-left: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 13.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  transition: color .3s;
}
.nav-link:hover { color: var(--gold); }
.nav-btn {
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blk);
  background: var(--gold);
  padding: 10px 24px;
  border: none;
  transition: background .3s;
}
.nav-btn:hover { background: var(--gold2); }

/* ─── hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: hz 20s ease-in-out infinite alternate;
}
@keyframes hz {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.42) 55%, rgba(5,5,5,.82) 100%);
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--blk), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
}
.hero-tag {
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 26px;
  opacity: 0;
  animation: fup .9s cubic-bezier(.16,1,.3,1) .4s forwards;
}
.hero-h1 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(1.9rem, calc(0.609rem + 5.74vw), 5.2rem);
  color: var(--w);
  opacity: 0;
  animation: fup 1.1s cubic-bezier(.16,1,.3,1) .8s forwards;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1rem, calc(0.8rem + 0.87vw), 1.2rem);
  color: var(--w2);
  line-height: 1.9;
  opacity: 0;
  animation: fup .9s cubic-bezier(.16,1,.3,1) 1.2s forwards;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fup .9s cubic-bezier(.16,1,.3,1) 1.6s forwards;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fup .9s ease 2s forwards;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: sp 2s ease-in-out infinite;
}
.scroll-text {
  font-size: 13px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(201,168,108,.55);
}
@keyframes sp {
  0%, 100% { opacity: .25; transform: scaleY(.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}
@keyframes fup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── numbers bar ───────────────────────────────────────── */
.nums-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blk);
  border-top: 1px solid rgba(201,168,108,.08);
  border-bottom: 1px solid rgba(201,168,108,.08);
}
.num-cell {
  padding: clamp(48px, 7vw, 80px) 28px;
  text-align: center;
  border-right: 1px solid rgba(201,168,108,.07);
  position: relative;
}
.num-cell:last-child { border-right: none; }
.num-big {
  font-family: var(--serif);
  font-size: clamp(2.2rem, calc(0.909rem + 5.74vw), 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
  margin-bottom: 14px;
}
.num-lbl {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(235,228,215,.58);
}

/* ─── problem ───────────────────────────────────────────── */
.prob-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.prob-img {
  width: 100%; height: 100%;
  object-fit: cover;
  
  transition: filter .9s;
}
.prob-img:hover { filter: grayscale(10%) brightness(.68); }
.prob-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.65) 0%, transparent 55%);
}
.prob-img-quote {
  position: absolute;
  bottom: 28px; left: 24px; right: 24px;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--w2);
  line-height: 1.65;
}
.prob-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,168,108,.1);
}
.prob-item:first-of-type { padding-top: 0; }
.prob-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .1em;
  min-width: 26px;
  padding-top: 2px;
}
.prob-head { font-size: 1rem; color: var(--w); font-weight: 400; margin-bottom: 5px; }
.prob-body { font-size: 1rem; color: var(--w3); line-height: 1.8; }

/* ─── diff table ────────────────────────────────────────── */
.diff-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
}
.diff-col-head {
  padding: 18px 28px;
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.diff-col-head.bad  { background: rgba(255,255,255,.025); color: rgba(235,228,215,.5); border: 1px solid rgba(255,255,255,.04); }
.diff-col-head.good { background: var(--gold3); color: var(--gold); border: 1px solid rgba(201,168,108,.2); }
.diff-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 28px;
  border-bottom: 1px solid rgba(201,168,108,.06);
  font-size: .9375rem;
  line-height: 1.7;
}
.diff-row.bad  { color: rgba(235,228,215,.55); background: rgba(255,255,255,.015); }
.diff-row.good { color: var(--w2); background: rgba(201,168,108,.04); }
.diff-icon-bad  { color: rgba(255,80,80,.45); flex-shrink: 0; }
.diff-icon-good { color: var(--gold);         flex-shrink: 0; }

/* ─── gym strip ─────────────────────────────────────────── */
.gym-strip { display: grid; grid-template-columns: 1fr 1fr; }
.gym-strip-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.gym-strip-img {
  width: 100%; height: 100%;
  object-fit: cover;
  
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .6s;
}
.gym-strip-panel:hover .gym-strip-img {
  transform: scale(1.04);
  filter: brightness(.68);
}
.gym-strip-label {
  position: absolute;
  bottom: 20px; left: 22px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── steps ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,108,.06);
  margin-top: 52px;
}
.step-card {
  background: var(--surf);
  padding: 44px 32px 48px;
  position: relative;
  overflow: hidden;
  transition: background .35s, transform .35s;
  border: 1px solid rgba(201,168,108,.06);
}
.step-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold3) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
}
.step-card:hover { background: var(--surf2); transform: translateY(-3px); }
.step-card:hover::before { opacity: 1; }
.step-card > * { position: relative; z-index: 1; }
.step-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .15em;
  display: block;
  margin-bottom: 16px;
}
.step-h {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--w);
  margin-bottom: 14px;
  line-height: 1.35;
}
.step-b { font-size: .9375rem; color: var(--w3); line-height: 1.85; margin-bottom: 20px; }
.step-rule { width: 28px; height: 1px; background: var(--gold); margin-bottom: 16px; }
.step-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.step-list li {
  font-size: .9375rem;
  color: rgba(201,168,108,.65);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.step-list li::before { content: '—'; position: absolute; left: 0; color: rgba(201,168,108,.4); }

/* ─── how to start ──────────────────────────────────────── */
.flow-steps { display: flex; flex-direction: column; margin-top: 52px; max-width: 680px; margin-left: auto; margin-right: auto; }
.flow-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 44px;
  position: relative;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-item::before {
  content: '';
  position: absolute;
  left: 19px; top: 42px; bottom: 0;
  width: 1px;
  background: rgba(201,168,108,.15);
}
.flow-item:last-child::before { display: none; }
.flow-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(201,168,108,.08);
}
.flow-circle span { font-family: var(--serif); font-size: 1rem; color: var(--gold); }
.flow-h { font-family: var(--serif); font-size: 1.12rem; color: var(--w); margin-bottom: 7px; line-height: 1.3; }
.flow-p { font-size: .9375rem; color: var(--w3); line-height: 1.85; }

/* ─── before / after ────────────────────────────────────── */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; }
.ba-panel { position: relative; overflow: hidden; cursor: pointer; }
.ba-panel img {
  width: 100%; height: 640px;
  object-fit: cover;
  filter: brightness(.85);
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .6s;
  display: block;
}
.ba-panel:hover img { transform: scale(1.04); filter: brightness(.78); }
.ba-badge {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  background: rgba(5,5,5,.78); color: var(--gold);
  padding: 7px 14px;
  border: 1px solid rgba(201,168,108,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ba-info { position: absolute; bottom: 32px; left: 24px; z-index: 2; }
.ba-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
}
.ba-unit { font-size: 1rem; letter-spacing: .1em; margin-top: 4px; }
.ba-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.75) 0%, transparent 55%);
  pointer-events: none;
}

/* ─── testimonials ──────────────────────────────────────── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,108,.06);
  margin-top: 52px;
}
.test-card {
  background: var(--surf);
  padding: 44px 34px;
  position: relative;
  border: 1px solid rgba(201,168,108,.06);
}
.test-card::before {
  content: '"';
  font-family: var(--serif);
  font-size: 5.5rem;
  color: rgba(201,168,108,.07);
  position: absolute;
  top: 12px; right: 24px;
  line-height: 1;
}
.test-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.test-star { color: var(--gold); font-size: 13px; }
.test-result {
  display: inline-block;
  font-size: 13px; letter-spacing: .15em;
  color: var(--gold);
  background: var(--gold3);
  border: 1px solid rgba(201,168,108,.18);
  padding: 5px 12px;
  margin-bottom: 18px;
}
.test-q {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--w2);
  margin-bottom: 26px;
  font-weight: 300;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(25%);
  flex-shrink: 0;
}
.test-name { font-size: 1rem; color: var(--w); font-weight: 400; }
.test-role { font-size: 13px; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }

/* ─── trainer ───────────────────────────────────────────── */
.trainer-img-wrap { position: relative; overflow: hidden; }
.trainer-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(.78);
  display: block;
}
.trainer-img-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(5,5,5,.85), transparent);
}
.trainer-glass {
  position: absolute; bottom: 28px; left: 24px; right: 24px;
  background: rgba(5,5,5,.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,108,.18);
  padding: 22px 24px;
}
.trainer-glass-tag { font-size: 12px; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.trainer-glass-name { font-family: var(--serif); font-size: 1.3rem; color: var(--w); margin-bottom: 6px; }
.trainer-glass-sub { font-size: .8rem; color: var(--w3); }
.trainer-detail { border-bottom: 1px solid rgba(201,168,108,.08); padding: 16px 0; }
.trainer-detail-label { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.trainer-detail-val { font-size: 1rem; color: var(--w2); line-height: 1.85; white-space: pre-line; font-weight: 300; }

/* ─── price ─────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,108,.06);
  margin-top: 52px;
  align-items: start;
}
.price-card {
  background: var(--surf);
  padding: 44px 32px 40px;
  position: relative;
  border: 1px solid rgba(201,168,108,.06);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--surf2);
  border-color: rgba(201,168,108,.35);
  transform: scaleY(1.025);
  transform-origin: top;
  box-shadow: 0 0 0 1px rgba(201,168,108,.2), 0 32px 80px rgba(0,0,0,.6);
  z-index: 1;
}
.price-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
  background: var(--gold); color: var(--blk);
  padding: 5px 18px;
  white-space: nowrap;
}
.price-plan { font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.price-name { font-family: var(--serif); font-size: 1.5rem; color: var(--w); margin-bottom: 20px; line-height: 1.2; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-val { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: var(--w); line-height: 1; letter-spacing: -.02em; }
.price-per { font-size: .9375rem; color: var(--w3); }
.price-val-open { font-family: var(--serif); font-size: 1.8rem; color: var(--w); font-weight: 300; }
.price-tax { font-size: .8rem; color: var(--w3); margin-bottom: 28px; }
.price-div { width: 100%; height: 1px; background: rgba(201,168,108,.12); margin-bottom: 24px; }
.price-feats { display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 32px; }
.pf { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; line-height: 1.55; }
.pf-y { color: var(--gold); flex-shrink: 0; }
.pf-n { color: rgba(235,228,215,.18); flex-shrink: 0; }
.pf-text-off { color: rgba(235,228,215,.52); }
.price-cta {
  width: 100%;
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blk); background: var(--gold);
  padding: 14px 20px; border: none;
  transition: background .3s;
}
.price-cta:hover { background: var(--gold2); }
.price-cta.outline { background: transparent; color: var(--gold); border: 1px solid rgba(201,168,108,.4); }
.price-cta.outline:hover { background: var(--gold3); }
.price-note { font-size: .8rem; color: var(--w3); margin-top: 10px; text-align: center; }
.price-small { margin-top: 20px; padding: 18px 22px; border: 1px solid rgba(201,168,108,.08); background: var(--surf); }
.price-small p { font-size: .8rem; color: rgba(235,228,215,.52); line-height: 1.9; }

/* ─── faq ───────────────────────────────────────────────── */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid rgba(201,168,108,.1); }
.faq-btn {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  background: none; border: none; text-align: left; gap: 16px;
}
.faq-q { font-size: 1rem; color: var(--w); font-family: var(--sans); font-weight: 300; line-height: 1.6; }
.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform .35s;
  line-height: 1;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.16,1,.3,1), padding .45s;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }
.faq-a { font-size: .9375rem; color: rgba(235,228,215,.58); line-height: 1.9; font-weight: 300; }

/* ─── access ────────────────────────────────────────────── */
.access-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; margin-top: 52px; align-items: start; }
.access-map {
  
  
  display: flex; align-items: center; justify-content: center;
}
.access-map-inner { text-align: center; }
.access-map-pin { font-size: 2.5rem; color: var(--gold); margin-bottom: 10px; }
.access-map-name { font-size: .9375rem; color: var(--gold); letter-spacing: .18em; margin-bottom: 6px; }
.access-map-area { font-size: .8rem; color: var(--w3); letter-spacing: .1em; }
.access-map-note { margin-top: 14px; font-size: .8rem; color: rgba(235,228,215,.5); }
.access-item { padding: 20px 0; border-bottom: 1px solid rgba(201,168,108,.08); }
.access-label { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.access-val { font-size: .9375rem; color: var(--w2); line-height: 1.9; white-space: pre-line; font-weight: 300; }

/* ─── final cta ─────────────────────────────────────────── */
.cta-sec {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),  url("img/gym.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: clamp(120px, 18vw, 220px) clamp(20px, 5.5vw, 68px);
  position: relative;
  overflow: hidden;
}
.cta-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(10rem, 24vw, 26rem);
  font-weight: 700;
  color: rgba(201,168,108,.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.05em;
}
.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, calc(0.626rem + 5.22vw), 6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--w);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.cta-sub {
  font-size: 1rem; color: var(--w3); line-height: 1.95;
  max-width: 460px; margin: 0 auto 44px;
  position: relative; z-index: 1;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 20px; }
.cta-note { font-size: 13px; color: rgba(235,228,215,.8); letter-spacing: .16em; position: relative; z-index: 1; }

/* ─── footer ────────────────────────────────────────────── */
.footer {
  background: var(--blk);
  border-top: 1px solid rgba(201,168,108,.08);
  padding: 44px clamp(20px, 5.5vw, 68px);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-copy { font-size: 12px; color: rgba(235,228,215,.5); letter-spacing: .1em; }
.footer-links { display: flex; gap: 22px; }
.footer-link { font-size: 13px; color: rgba(235,228,215,.5); letter-spacing: .08em; transition: color .3s; }
.footer-link:hover { color: var(--gold); }

/* ─── floating cta ──────────────────────────────────────── */
.float-btn {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 200;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blk); background: var(--gold);
  padding: 13px 22px; border: none;
  box-shadow: 0 8px 40px rgba(201,168,108,.4);
  transition: background .35s, transform .35s, box-shadow .35s;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s, background .35s, transform .35s, box-shadow .35s;
}
.float-btn.visible { opacity: 1; pointer-events: auto; }
.float-btn:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 60px rgba(201,168,108,.5); }

/* ─── responsive ────────────────────────────────────────── */
@media (max-width: 860px) {
  .grid2, .access-grid, .diff-vs { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid, .test-grid, .price-grid { grid-template-columns: 1fr; }
  .nums-bar { grid-template-columns: repeat(2, 1fr); }
  .num-cell:nth-child(2) { border-right: none; }
  .nav-links { display: none; }
  .ba-wrap { grid-template-columns: 1fr; }
  .ba-panel img { height: 300px; }
  .gym-strip { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nums-bar { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: clamp(1.9rem, calc(0.609rem + 5.74vw), 5.2rem); }
}

  
/* ─── spacing rhythm ────────────────────────────────────── */
.sec-wide { padding-top: clamp(100px, 15vw, 180px); padding-bottom: clamp(100px, 15vw, 180px); }
.sec-tight { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }

/* ─── section divider line ──────────────────────────────── */
.sec-border-top { border-top: 1px solid rgba(201,168,108,.07); }

/* ─── diff section full-bleed ───────────────────────────── */
.diff-sec-wrap {
  padding: clamp(80px,11vw,144px) 0;
  background: var(--blk);
}
.diff-sec-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5.5vw, 68px);
}
.diff-vs-fullbleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 52px;
}
.diff-col-fullbleed { }
.diff-col-head-full {
  padding: 20px clamp(28px, 4vw, 52px);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.diff-col-head-full.bad  { background: rgba(255,255,255,.025); color: rgba(235,228,215,.5); border: 1px solid rgba(255,255,255,.04); }
.diff-col-head-full.good { background: var(--gold3); color: var(--gold); border: 1px solid rgba(201,168,108,.2); }
.diff-row-full {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 19px clamp(28px, 4vw, 52px);
  border-bottom: 1px solid rgba(201,168,108,.06);
  font-size: 1rem;
  line-height: 1.7;
}
.diff-row-full.bad  { color: rgba(235,228,215,.5); background: rgba(255,255,255,.015); }
.diff-row-full.good { color: var(--w2); background: rgba(201,168,108,.04); }

/* ─── problem section mobile order fix ─────────────────── */
@media (max-width: 860px) {
  .prob-img-wrap { order: 2; }
  .prob-text-col  { order: 1; }
}

/* ─── hero sub wider ────────────────────────────────────── */
.hero-h1 { letter-spacing: -.01em; }

/* ─── program section ───────────────────────────────────── */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,108,.06);
  margin-top: 52px;
}
.program-col {
  background: var(--surf);
  padding: 52px 44px 56px;
  border: 1px solid rgba(201,168,108,.06);
}
.program-col-icon {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: block;
  opacity: .7;
}
.program-col-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--w);
  margin-bottom: 10px;
  line-height: 1.2;
}
.program-col-sub {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.program-col-desc {
  font-size: 1rem;
  color: var(--w3);
  line-height: 1.95;
  margin-bottom: 36px;
  font-weight: 300;
}
.program-rule { width: 36px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.program-items { display: flex; flex-direction: column; gap: 0; }
.program-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,108,.08);
  align-items: flex-start;
}
.program-item:first-child { padding-top: 0; }
.program-item:last-child { border-bottom: none; padding-bottom: 0; }
.program-item-num {
  font-family: var(--serif);
  font-size: 11px;
  color: rgba(201,168,108,.45);
  letter-spacing: .12em;
  min-width: 22px;
  padding-top: 3px;
  flex-shrink: 0;
}
.program-item-body {}
.program-item-head {
  font-size: 1rem;
  color: var(--w);
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 1.4;
}
.program-item-text {
  font-size: .9rem;
  color: var(--w3);
  line-height: 1.8;
  font-weight: 300;
}
.program-week {
  margin-top: 2px;
  background: rgba(201,168,108,.04);
  border: 1px solid rgba(201,168,108,.08);
  padding: 32px 44px;
}
.program-week-title {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.program-week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.pw-day {
  text-align: center;
  padding: 14px 4px;
  border: 1px solid rgba(201,168,108,.06);
}
.pw-day.active { background: var(--gold3); border-color: rgba(201,168,108,.2); }
.pw-day-name {
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(235,228,215,.5);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}
.pw-day.active .pw-day-name { color: var(--gold); }
.pw-day-label {
  font-size: 11px;
  color: rgba(235,228,215,.5);
  line-height: 1.4;
}
.pw-day.active .pw-day-label { color: var(--w2); }

@media (max-width: 860px) {
  .program-grid { grid-template-columns: 1fr; }
  .program-col { padding: 40px 28px; }
  .program-week { padding: 28px 20px; }
  .program-week-grid { grid-template-columns: repeat(7, 1fr); gap: 2px; }
  .pw-day { padding: 10px 2px; }
}