/* Site-specific overrides and additions for production */

/* Respect the HTML [hidden] attribute even when CSS sets display */
[hidden] { display: none !important; }

/* ============ 1:1 Online Coaching panel (shown when "coaching" tab active) ============ */
.coaching-panel {
  background: var(--ink-1);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 56px);
  contain: layout paint;
}
.coaching-panel[hidden] { display: none !important; }
.coaching-intro { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.coaching-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.coaching-h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--bone);
}
.coaching-lead {
  color: var(--bone-dim);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 56ch;
}
.coaching-perks {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 520px;
  text-align: left;
  display: grid;
  gap: 10px;
}
.coaching-perks li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--bone-dim);
}
.coaching-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.coaching-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.coaching-tier {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .15s ease;
}
.coaching-tier:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.coaching-tier.featured {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 1px var(--gold-deep);
}
.coaching-tier .ct-flag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--gold);
  color: var(--gold-ink);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  border-radius: 2px;
}
.ct-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 10px;
}
.coaching-tier.featured .ct-eyebrow { color: var(--gold); }
.ct-price {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 4px;
}
.ct-price .cur { font-size: 22px; vertical-align: top; margin-right: 2px; }
.ct-price .amt { font-size: 56px; letter-spacing: -0.02em; }
.ct-per {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--fog);
  margin-bottom: 18px;
}
.ct-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
  flex: 1;
}
.ct-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--bone-dim);
}
.ct-list li b { color: var(--gold); font-weight: 700; }
.ct-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Coaching intake + payment form */
.coaching-form {
  margin-top: 32px;
  background: var(--ink-2);
  border: 1px solid var(--gold-deep);
  padding: 0;
  animation: fadeIn .2s ease;
}
.coaching-form[hidden] { display: none !important; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.coaching-form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.coach-back {
  background: transparent;
  border: 0;
  color: var(--fog);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .15s ease;
}
.coach-back:hover { color: var(--gold); }
.coaching-form-body { padding: clamp(20px, 3vw, 32px); }
.coach-step-h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--bone);
}
.coaching-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.coaching-form .field .lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
}
.coaching-form input[type="text"],
.coaching-form input[type="email"],
.coaching-form input[type="tel"],
.coaching-form input[type="number"],
.coaching-form textarea {
  background: var(--ink-1);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition: border-color .15s ease;
  width: 100%;
  box-sizing: border-box;
}
.coaching-form input:focus,
.coaching-form textarea:focus { border-color: var(--gold); }
.coaching-form textarea { resize: vertical; font-family: var(--f-body); }
.coaching-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.coaching-form .checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 18px;
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.5;
}
.coaching-form .checkbox-field input { margin-top: 2px; accent-color: var(--gold); }
.coaching-form .radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}
.coaching-form .radio-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--ink-1);
  font-size: 12px;
  line-height: 1.3;
  color: var(--bone-dim);
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.coaching-form .radio-grid label span { flex: 1; min-width: 0; }
.coaching-form .radio-grid label:hover { border-color: var(--gold-deep); color: var(--bone); }
.coaching-form .radio-grid input { accent-color: var(--gold); }
.coaching-form .radio-grid input:checked + span { color: var(--gold); font-weight: 700; }
.coach-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.coach-nav .btn { flex: 1; min-width: 140px; }
.coach-order-summary {
  padding: 18px 20px;
  background: var(--ink-1);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.coach-order-summary .title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 6px;
}
.coach-order-summary .detail {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fog);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.coach-order-summary .total {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.coach-order-summary .cos-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.coach-order-summary .cos-row:last-child { border-bottom: 0; }
.coach-order-summary .cos-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fog);
  text-transform: uppercase;
}
.coach-order-summary .cos-val {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--bone);
  font-size: 15px;
  text-align: right;
}
.coach-order-summary .cos-row.cos-total { padding-top: 14px; margin-top: 6px; }
.coach-order-summary .cos-row.cos-total .cos-lbl { color: var(--bone); font-size: 12px; }
.coach-order-summary .cos-row.cos-total .cos-val {
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.01em;
}
@media (max-width: 760px) {
  .coaching-tiers { grid-template-columns: 1fr; gap: 12px; }
  .coaching-form .field-row { grid-template-columns: 1fr; }
  .coach-nav { flex-direction: column-reverse; }
  .coach-nav .btn { width: 100%; }
}

/* ============ PRODUCTS (new polished card layout) ============ */
.prod-section { padding: clamp(56px, 8vw, 112px) 0; }
.prod-head { text-align: center; margin: 0 auto 56px; max-width: 720px; padding: 0 16px; }
.prod-eyebrow-top {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.prod-h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--bone);
}
.prod-sublead {
  color: var(--bone-dim);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}

.prod-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}
@media (max-width: 1040px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .prod-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
}

.prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink-1);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.prod-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6), 0 0 0 1px color-mix(in oklch, var(--gold) 40%, transparent);
}
.prod-card.prod-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-deep), 0 10px 30px -10px color-mix(in oklch, var(--gold) 25%, transparent);
}
.prod-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--gold);
  color: var(--gold-ink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 6px 12px;
  text-transform: uppercase;
  border-radius: 2px;
}

.prod-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0e0e10;
}
.prod-media picture,
.prod-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform .5s ease;
}
.prod-card:hover .prod-media img { transform: scale(1.03); }
/* Soft bottom blend — the picture fades gently into the card body colour
   so the "— VITALITY RICH" strip appears to grow out of the photo
   instead of sitting on a hard edge. */
.prod-media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0) 0%,
    rgba(10, 10, 11, 0.35) 55%,
    var(--ink-1) 100%
  );
}
/* Top fade only where badges sit */
.prod-media::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 14%;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0.42) 0%,
    rgba(10, 10, 11, 0) 100%
  );
}
.prod-price-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--gold-ink);
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.prod-body { padding: 24px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.prod-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.prod-eyebrow-dash { display: inline-block; width: 14px; margin-right: 4px; }
.prod-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 8px;
}
.prod-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 18px;
}
.prod-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}
.prod-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prod-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--bone-dim);
}
.prod-checks .check-ico {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.prod-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gold);
  color: var(--gold-ink) !important;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 18px;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color .2s ease, transform .15s ease;
}
.prod-cta:hover { background: var(--gold-hot); transform: translateY(-1px); }
.prod-cta svg { flex-shrink: 0; }

.prod-meta-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  flex-wrap: wrap;
}
.prod-meta-ico { color: var(--fog); flex-shrink: 0; }
.prod-meta-item { color: var(--bone-dim); }
.prod-meta-sep { color: var(--line); padding: 0 4px; }

/* Trust row below cards */
.prod-trust-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.prod-trust {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.prod-trust-ico { color: var(--gold); flex-shrink: 0; }
.prod-trust-h {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 700;
  margin-bottom: 4px;
}
.prod-trust-sub {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .prod-trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 500px) {
  .prod-trust-row { grid-template-columns: 1fr; }
  .prod-head { margin-bottom: 40px; }
}


/* Hide mobile nav by default — only shown when burger toggles it */
.nav-mobile { display: none; }
.nav-mobile:not([hidden]) { display: flex; flex-direction: column; }

/* Make <picture> render as a block that fills its container (so image CSS keeps working) */
.ba-col picture,
.about-stack-imgs .ph picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ============ HERO — balance photos with text block vertically ============ */
.hero-body {
  align-items: center !important;
  grid-template-columns: 1.1fr 1fr !important;
}
.hero-h {
  font-size: clamp(52px, 7.5vw, 116px) !important;
  line-height: 0.88 !important;
}
.ba-wrap { align-self: center; }
@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr !important; align-items: start !important; }
}

/* ============ BEFORE/AFTER — identical aspect, side-by-side ============ */
.ba-split.ba-real.ba-fixed {
  aspect-ratio: 6/4;  /* two 3:4 panels side by side = 6:4 */
  max-height: 640px;
  background: #000;
  border-color: var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  gap: 0;
}
.ba-split.ba-real.ba-fixed .ba-col {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.ba-split.ba-real.ba-fixed .ba-col.before,
.ba-split.ba-real.ba-fixed .ba-col.after {
  left: auto;
}
.ba-split.ba-real.ba-fixed .ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Both images are now pre-cropped to identical 900x1200 (3:4) — cover mode renders them
   identically, no per-image tweaks needed. */
.ba-split.ba-real.ba-fixed .ba-col.before .ba-img,
.ba-split.ba-real.ba-fixed .ba-col.after  .ba-img {
  object-position: center center;
}

/* ============ ABOUT — photos get MORE real estate, sit higher than text ============ */
.about-grid {
  grid-template-columns: 1.25fr 1fr !important;
  gap: clamp(32px, 5vw, 80px) !important;
  align-items: start !important;
}
.about-grid > div:first-child {
  position: sticky;
  top: 90px;
  align-self: start;
}
.about-grid > div:last-child {
  max-width: 56ch;
  padding-top: 0 !important;
}
.about-grid > div:last-child .eyebrow { margin-top: 0 !important; }
.about-grid > div:last-child p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}
/* Force BOTH photos visible, side-by-side, full-size at every width */
.about-stack-imgs .ph,
.about-stack-imgs .ph.small {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3/4 !important;
  top: auto !important;
  bottom: auto !important;
  right: auto !important;
  left: auto !important;
  box-shadow: none !important;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr !important; align-items: start !important; }
  .about-grid > div:first-child { position: static; top: auto; }
}
.about-stack-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: auto;
}
.about-stack-imgs .ph {
  position: relative !important;
  aspect-ratio: 3/4;
  width: 100% !important;
  height: auto !important;
  bottom: auto !important;
  right: auto !important;
  box-shadow: none !important;
  border: 1px solid var(--line) !important;
  overflow: hidden;
}
.about-stack-imgs .ph.small { border-color: var(--gold-deep) !important; }
.about-stack-imgs .ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* About photos — identical dimensions, both centered */
.about-stack-imgs .ph .ph-img { object-position: center center; }

/* About stats — 3 columns now (L3 removed) */
.about-pulls { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 600px) { .about-pulls { grid-template-columns: 1fr !important; } }

/* ============ Stripe embedded checkout modal ============ */
#stripe-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 250;
  overflow-y: auto;
  padding: 40px 20px;
  display: none;
  animation: fade .2s ease;
}
#stripe-modal:not([hidden]) { display: block; }
.stripe-modal-inner {
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink-1);
  border: 1px solid var(--gold-deep);
  position: relative;
  animation: pop .25s cubic-bezier(.2,.9,.3,1.1);
}
.stripe-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--ink-2);
  color: var(--bone);
  border: 1px solid var(--line);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: border-color .15s ease, color .15s ease;
}
.stripe-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.stripe-modal-head {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line);
  padding-right: 60px;
}
.stripe-modal-foot {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  text-align: center;
}
#stripe-embed { min-height: 640px; background: white; }

/* Payment form inside modal */
.stripe-pay-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stripe-pay-form #payment-element {
  padding: 4px;
}
.stripe-pay-form .form-message.error {
  margin-top: 0;
}

@media (max-width: 600px) {
  #stripe-modal { padding: 0; }
  .stripe-modal-inner { border: 0; min-height: 100vh; }
  .stripe-pay-form { padding: 20px 16px; }
}

/* Labels below each about photo */
.about-stack-imgs .ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(10,10,10,0.78);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 3;
}
.about-stack-imgs .ph.small::after { color: var(--gold); border-color: var(--gold-deep); }

@media (max-width: 760px) {
  .about-stack-imgs { grid-template-columns: 1fr 1fr; gap: 6px; }
}

/* ============ Mobile polish ============ */
@media (max-width: 900px) {
  /* Hero: prevent giant headline overflow */
  .hero-h { font-size: clamp(44px, 12vw, 88px) !important; line-height: 0.9; }
  .hero { padding-top: 96px; padding-bottom: 40px; }
  .hero-meta { font-size: 9px; gap: 8px; padding-bottom: 20px; margin-bottom: 24px; }
  .hero-meta > div:nth-child(3) { display: none; } /* currency label takes space, hide on mobile */
  .hero-lead { font-size: 15px; margin: 20px 0 24px; }
  .hero-actions .btn-lg { padding: 16px 20px; font-size: 13px; }
  .hero-trust { font-size: 11px; gap: 10px; padding-top: 16px; margin-top: 20px; }
  .hero-trust .mono { display: none; }
  .hero-stats { margin-top: 40px; }
  .hero-stat { padding: 18px 14px; }
  .hero-stat-num { font-size: 38px; }
  .hero-stat-num .unit { font-size: 20px; }

  /* Before/after: ensure reasonable height */
  .ba-split.ba-real.ba-fixed { max-height: 480px; }
  .ba-split.ba-real.ba-fixed .ba-col::after { font-size: 9px; padding: 4px 7px; top: 10px; }

  /* Section head: smaller on mobile */
  .section-head h2 { font-size: clamp(32px, 8vw, 56px); }
  .section-head { margin-bottom: 32px; }

  /* About: single column with photos still side-by-side but smaller */
  .about-h { font-size: clamp(36px, 10vw, 64px) !important; }

  /* Footer: tighter */
  .footer { padding: 48px 0 24px; margin-top: 48px; }
  .footer-hero { padding-bottom: 32px; gap: 24px; }
  .footer-hero-h { font-size: clamp(32px, 9vw, 56px) !important; }
  .footer-grid { padding: 32px 0; gap: 28px; }
  .footer-legal { font-size: 9px; letter-spacing: 0.08em; }

  /* Marquee: smaller */
  .marquee-inner { font-size: 16px; gap: 24px; padding: 12px 0; }

  /* Booking: tabs always stack */
  .booking-tabs { grid-template-columns: 1fr !important; }
  .booking-tab { padding: 16px 18px; }

  /* Stripe modal fit */
  #stripe-embed { min-height: 560px; }

  /* Faq: tighter */
  .faq-q { padding: 20px 0; gap: 12px; }
  .faq-q .num { min-width: 28px; }
  .faq-item.open .faq-a { padding: 0 0 20px 40px; }

  /* Lead form: smaller heading */
  .lead-h { font-size: clamp(40px, 12vw, 72px) !important; }

  /* Testimonials: single column */
  .testis { grid-template-columns: 1fr !important; }

  /* Programs: tighter */
  .prog-card { padding: 20px; min-height: auto; }
  .prog-name { font-size: 22px; }
  .prog-price .amt { font-size: 40px; }
}

/* ============ Mobile: keep before/after side-by-side, just smaller ============ */
@media (max-width: 760px) {
  /* Hero before/after stay side by side; 3:4 per col, 6:4 total */
  .ba-split.ba-real.ba-fixed {
    max-height: 420px;
  }
  .ba-split.ba-real.ba-fixed .ba-col::after {
    top: 8px;
    font-size: 8px;
    padding: 3px 6px;
    letter-spacing: 0.15em;
  }
  .ba-split.ba-real.ba-fixed .ba-col.before::after { left: 8px; }
  .ba-split.ba-real.ba-fixed .ba-col.after::after { right: 8px; }

  /* About before/after: stay side by side, smaller */
  .about-stack-imgs {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .about-stack-imgs .ph {
    aspect-ratio: 3/4 !important;
    width: 100% !important;
  }
  .about-stack-imgs .ph::after {
    top: auto;
    bottom: 8px;
    font-size: 8px;
    padding: 3px 6px;
    letter-spacing: 0.15em;
  }

  /* About section: tighter text */
  .about-h { font-size: clamp(32px, 8vw, 48px) !important; margin: 8px 0 20px !important; }
  .about p { font-size: 15px; line-height: 1.55; }
  .about .sig { font-size: 22px; margin-top: 20px; }
  .about-pull { padding: 14px 12px; }
  .about-pull .pull-num { font-size: 28px; }
  .about-pull .pull-lbl { font-size: 9px; letter-spacing: 0.1em; }

  /* Container padding on mobile */
  .wrap, .wrap-tight { padding: 0 16px; }

  /* Booking embed: reasonable height, not massive */
  .booking-embed { min-height: 600px; }
  .booking-embed iframe { min-height: 600px; }
}

@media (max-width: 500px) {
  /* Hero stats: smaller */
  .hero-stat-num { font-size: 30px; }
  .hero-stat-num .unit { font-size: 18px; }
  .hero-stat { padding: 14px 10px; }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.12em; }

  /* Modal full bleed */
  .stripe-modal-head, .stripe-modal-foot { padding-left: 16px; padding-right: 16px; }
  .stripe-modal-head h3 { font-size: 14px; }

  /* Hero title: scale smaller on very small phones */
  .hero-h { font-size: clamp(38px, 13vw, 72px) !important; }

  /* Section heading */
  .section-head h2 { font-size: clamp(28px, 10vw, 48px); }

  /* About photos labels slightly smaller */
  .about-stack-imgs .ph::after { font-size: 9px; padding: 4px 8px; }

  /* FAQ padding */
  .faq-q { font-size: 16px; }

  /* Currency switch on mobile: tighter */
  .currency-switch-mobile { padding: 6px 28px 6px 10px; font-size: 10px; }

  /* Nav on very small screens: hide the brand sub-label, tighter logo */
  .nav-brand-sub { font-size: 8px; }
  .nav-inner { gap: 12px; height: 60px; }
  .hero { padding-top: 80px; }
}
.ba-split.ba-real.ba-fixed .ba-col::after {
  content: attr(data-label);
  position: absolute;
  top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--bone);
  z-index: 4;
  pointer-events: none;
}
.ba-split.ba-real.ba-fixed .ba-col.before::after { left: 14px; color: var(--fog); }
.ba-split.ba-real.ba-fixed .ba-col.after::after  { right: 14px; color: var(--gold); border-color: var(--gold-deep); }
.ba-split.ba-real.ba-fixed .ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--gold);
  z-index: 2;
  box-shadow: 0 0 18px rgba(61, 220, 132, 0.35);
  pointer-events: none;
}

/* ============ Nav anchor links styled as buttons ============ */
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--bone-dim);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-mobile a {
  text-align: left;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--bone);
}
.nav-mobile a:last-child { border: 0; margin-top: 8px; justify-content: center; text-align: center; }

/* Mobile currency switcher — visible only when burger menu is shown */
.currency-switch-mobile { display: none; margin-left: auto; margin-right: 8px; }
@media (max-width: 980px) {
  .currency-switch-mobile { display: block; }
}

/* ============ Currency switcher ============ */
.currency-switch {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 8px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 28px;
  background-image: linear-gradient(45deg, transparent 50%, var(--fog) 50%), linear-gradient(135deg, var(--fog) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.currency-switch:hover { border-color: var(--gold-deep); }
.currency-switch:focus { outline: none; border-color: var(--gold); }

/* ============ Booking tabs + Cal embed ============ */
.booking-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.booking-tab {
  background: var(--ink-1);
  padding: 24px 20px;
  text-align: left;
  transition: background .15s ease;
  border: none;
  cursor: pointer;
  color: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-tab:hover { background: var(--ink-2); }
.booking-tab.active {
  background: color-mix(in oklch, var(--gold) 10%, var(--ink-2));
  border-bottom: 2px solid var(--gold);
}
.booking-tab .bt-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.booking-tab .bt-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.booking-tab .bt-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fog);
  text-transform: uppercase;
}
.booking-embed {
  background: var(--ink-1);
  border: 1px solid var(--line);
  min-height: 720px;
  overflow: hidden;
  padding: 8px;
}
.booking-embed iframe { width: 100%; min-height: 720px; border: 0; display: block; }
.booking-embed #vr-cal-embed { width: 100%; }
/* Cal.com injects its own iframe; allow it to drive its own height once loaded */
.booking-embed #vr-cal-embed iframe { width: 100% !important; min-height: 720px; border: 0 !important; }

/* Tablet — Cal auto-stacks calendar above times around 1040px */
@media (max-width: 1040px) {
  .booking-embed { min-height: 1040px; padding: 6px; }
  .booking-embed iframe,
  .booking-embed #vr-cal-embed iframe { min-height: 1040px; }
}

/* Mobile — full-column stack, extra room for event details + calendar + times */
@media (max-width: 760px) {
  .booking-tabs { grid-template-columns: 1fr; gap: 8px; }
  .booking-embed { min-height: 1320px; padding: 4px; }
  .booking-embed iframe,
  .booking-embed #vr-cal-embed iframe { min-height: 1320px; }
}

/* ============ Form message (success/error) ============ */
.form-message {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.form-message.success {
  border-color: var(--gold-deep);
  color: var(--gold);
  background: color-mix(in oklch, var(--gold) 6%, var(--ink-2));
}
.form-message.error {
  border-color: var(--blood);
  color: var(--blood);
}
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ============ Radio-tile active state for vanilla JS ============ */
.radio-tile[data-selected="true"] {
  border-color: var(--gold);
  background: color-mix(in oklch, var(--gold) 8%, var(--ink-2));
}
.radio-tile[data-select-all="true"] .rt-title { color: var(--gold); }
.hint-multi {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fog);
  margin-left: 4px;
}

/* ============ PROOF — DM screenshot grid ============ */
.proof-dm-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  background: transparent !important;
  border: 0 !important;
}
.proof-dm {
  margin: 0;
  background: var(--ink-1);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.proof-dm:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -12px rgba(0,0,0,0.6);
}
.proof-dm picture,
.proof-dm img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9/11;
  object-fit: cover;
  object-position: center;
  background: #15151a;
}
.proof-dm-cap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px 20px;
  border-top: 1px solid var(--line);
}
.proof-dm-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 6px;
}
.proof-dm-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.proof-dm-role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fog);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .proof-dm-grid { grid-template-columns: 1fr !important; }
}

/* ============ TRAINING — 4-tile grid (adds 1:1 coaching) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .services-grid { grid-template-columns: 1fr; } }
.services-grid .service-card { gap: 0; }
.service-card.service-featured {
  background: color-mix(in oklch, var(--gold) 4%, var(--ink-1));
  position: relative;
}
.service-card.service-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-deep);
  pointer-events: none;
  z-index: 1;
}
.service-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--gold-ink);
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
