/* =========================================================
   Karuna.fit — warm editorial design system
   Palette: bone & cream surfaces, deep pine ink, terracotta
   accent, soft sage tints. No gradients, no purple, no black.
   ========================================================= */

:root {
  /* color */
  --bone:        #FAF6EF;   /* page background */
  --cream:       #F3ECDF;   /* tinted sections */
  --paper:       #FFFDF8;   /* cards */
  --ink:         #21312A;   /* primary text — deep pine */
  --ink-soft:    #51625A;   /* secondary text */
  --line:        #E2D9C8;   /* hairlines & borders */
  --terra:       #D4572E;   /* terracotta — primary action */
  --terra-deep:  #B8431D;   /* hover */
  --terra-tint:  #FBE9E1;   /* terracotta wash */
  --pine:        #2E4B3C;   /* deep green — secondary brand */
  --sage:        #E4EBE2;   /* sage wash */
  --gold:        #C99B3F;   /* stars / small accents */

  /* type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* rhythm */
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(33, 49, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(33, 49, 42, 0.14);
  --container: 1140px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
input, select { font: inherit; }
a { color: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.35rem; line-height: 1.3; }
h1 em, h2 em { font-style: italic; color: var(--terra); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pine);
  margin-bottom: 18px;
}
.eyebrow-dash { width: 28px; height: 2px; background: var(--terra); display: inline-block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid transparent; border-radius: 999px;
  padding: 13px 28px; font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-1px); }
.btn-primary:disabled { background: var(--line); color: var(--ink-soft); cursor: not-allowed; transform: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-light { background: var(--bone); color: var(--pine); }
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 1.06rem; }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

.text-link {
  background: none; border: none; padding: 0;
  color: var(--terra); font-weight: 600; font-size: 0.98rem;
}
.text-link:hover { color: var(--terra-deep); text-decoration: underline; }

:focus-visible { outline: 3px solid var(--terra); outline-offset: 2px; border-radius: 4px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { height: 56px; width: auto; display: block; }
/* footer sits on a dark background → put the logo on a light chip so it stays legible */
.footer-logo { height: 42px; background: var(--bone); padding: 8px 14px; border-radius: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--pine); color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); white-space: nowrap; }
.brand-dot { color: var(--terra); }
.brand-sub { font-size: 0.95rem; color: var(--ink-soft); font-weight: 600; }
.brand-mark-light { background: var(--bone); color: var(--pine); }
.brand-name-light { color: var(--bone); }

.site-nav { display: flex; gap: 30px; }
.site-nav a {
  text-decoration: none; font-weight: 500; font-size: 0.98rem;
  color: var(--ink-soft); padding: 6px 0;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.site-nav a:hover { color: var(--ink); border-color: var(--terra); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.label-short { display: none; }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.2s; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: 72px 0 88px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
.hero-lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 34em; margin-top: 24px; }
.hero-lede strong { color: var(--ink); }
.hero-cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 0.9rem; color: var(--ink-soft); }

.hero-panel { position: relative; }
.hero-photo { position: relative; }
.hero-photo img,
.hero-photo-placeholder {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 28px 28px 160px 28px;
  border: 1px solid var(--line);
}
.hero-photo-placeholder {
  background: var(--sage);
  display: grid; place-items: center; text-align: center;
  color: var(--pine); position: relative;
}
.photo-initial {
  font-family: var(--font-display); font-size: 9rem; font-weight: 700;
  opacity: 0.18; position: absolute; inset: 0;
  display: grid; place-items: center;
}
.photo-hint { font-size: 0.95rem; font-weight: 600; position: relative; }
.photo-hint small { font-weight: 400; opacity: 0.7; }

.float-card {
  position: absolute; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 14px 20px;
  display: flex; flex-direction: column;
}
.float-card-1 { top: 8%; left: -13%; }
.float-card-2 { bottom: 10%; right: -7%; }
.float-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--terra); line-height: 1.1; }
.float-label { font-size: 0.82rem; color: var(--ink-soft); max-width: 150px; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip { background: var(--pine); color: var(--cream); padding: 16px 0; }
.trust-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 22px; flex-wrap: wrap;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
}
.trust-sep { font-size: 0.5rem; opacity: 0.5; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 96px 0; }
.section-tint { background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head-left { text-align: left; margin: 0 0 40px; }
.section-lede { color: var(--ink-soft); font-size: 1.1rem; margin-top: 18px; }

/* ---------- pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pillar-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-injury .pillar-icon { background: var(--sage); color: var(--pine); }
.pillar-fatloss .pillar-icon { background: var(--terra-tint); color: var(--terra); }
.pillar-card > p { color: var(--ink-soft); margin: 12px 0 20px; }
.pillar-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.pillar-list li { padding-left: 28px; position: relative; font-size: 0.98rem; }
.pillar-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--terra); font-weight: 700;
}

/* ---------- steps ---------- */
.steps-grid {
  list-style: none; padding: 0; counter-reset: step;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 12px;
}
.step-num {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--terra); letter-spacing: 0.1em;
}
.step-card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-photo-placeholder, .about-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 160px 28px 28px 28px;
  border: 1px solid var(--line);
  background: var(--terra-tint);
  display: grid; place-items: center; text-align: center; color: var(--terra-deep);
}
.about-badge {
  position: absolute; bottom: 24px; right: -16px;
  background: var(--pine); color: var(--cream);
  border-radius: var(--radius-sm); padding: 16px 22px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.about-badge-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; line-height: 1.1; }
.about-badge-label { font-size: 0.8rem; opacity: 0.85; max-width: 160px; }
.about-copy p { color: var(--ink-soft); margin-top: 18px; max-width: 36em; }
.about-copy p em { color: var(--ink); }
.cred-list { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 12px; }
.cred-list li { padding-left: 30px; position: relative; }
.cred-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--terra-tint); border: 4px solid var(--terra);
}

/* ---------- testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.testimonial-card blockquote { font-size: 1.02rem; line-height: 1.6; flex: 1; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; line-height: 1.35; }
.testimonial-card figcaption small { color: var(--ink-soft); }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--sage); color: var(--pine);
  display: grid; place-items: center; font-weight: 700; font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0 26px;
}
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; font-weight: 600; font-size: 1.05rem; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 12px; height: 12px; flex-shrink: 0;
  border-right: 2.5px solid var(--terra); border-bottom: 2.5px solid var(--terra);
  transform: rotate(45deg); transition: transform 0.2s; margin-top: -4px;
}
.faq-item[open] .faq-chevron { transform: rotate(225deg); margin-top: 4px; }
.faq-item p { padding: 0 0 24px; color: var(--ink-soft); max-width: 60ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--pine); color: var(--cream); padding: 84px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; }
.cta-inner p { margin-top: 14px; opacity: 0.85; font-size: 1.08rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand p { margin-top: 16px; opacity: 0.75; font-size: 0.95rem; max-width: 26em; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em;
  opacity: 0.6; margin-bottom: 6px;
}
.footer-col a { text-decoration: none; opacity: 0.85; font-size: 0.96rem; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-base {
  border-top: 1px solid rgba(243, 236, 223, 0.15);
  padding-block: 20px; display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 0.82rem; opacity: 0.6;
}

/* =========================================================
   BOOKING MODAL
   ========================================================= */
.booking-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(33, 49, 42, 0.55);
  display: grid; place-items: center; padding: 20px;
  overflow-y: auto;
}
.booking-overlay[hidden] { display: none; }

.booking-modal {
  background: var(--bone); border-radius: 24px;
  width: 100%; max-width: 760px;
  padding: 36px 40px; position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
  margin-block: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.booking-close {
  position: absolute; top: 18px; right: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper);
  font-size: 1.4rem; line-height: 1; color: var(--ink-soft);
  display: grid; place-items: center;
}
.booking-close:hover { background: var(--terra-tint); color: var(--terra-deep); border-color: var(--terra); }

.booking-head h2 { font-size: 1.6rem; margin-bottom: 22px; padding-right: 40px; }

.booking-steps {
  list-style: none; padding: 0; display: flex; gap: 8px;
  margin-bottom: 28px;
}
.bstep {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  background: var(--cream); border: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
  transition: 0.2s;
}
.bstep-num {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 0.78rem;
  background: var(--line); color: var(--ink-soft);
}
.bstep.is-active { background: var(--paper); border-color: var(--terra); color: var(--ink); }
.bstep.is-active .bstep-num { background: var(--terra); color: #fff; }
.bstep.is-done .bstep-num { background: var(--pine); color: #fff; }

.booking-pane { display: none; }
.booking-pane.is-active { display: block; animation: paneIn 0.2s ease; }
@keyframes paneIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }

/* --- step 1: schedule --- */
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.calendar {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px;
}
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-month { font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }
.cal-nav {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bone);
  font-size: 1.2rem; color: var(--ink); display: grid; place-items: center;
}
.cal-nav:hover:not(:disabled) { background: var(--terra-tint); border-color: var(--terra); color: var(--terra-deep); }
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }

.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays span {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft); padding-bottom: 8px;
}
.cal-day {
  aspect-ratio: 1; border-radius: 10px; border: 1px solid transparent;
  background: none; font-size: 0.9rem; font-weight: 500; color: var(--ink);
  display: grid; place-items: center;
}
.cal-day:hover:not(:disabled) { background: var(--terra-tint); }
.cal-day:disabled { color: var(--line); cursor: not-allowed; }
.cal-day.is-today { border-color: var(--pine); }
.cal-day.is-selected { background: var(--terra); color: #fff; font-weight: 700; }
.cal-day.is-empty { visibility: hidden; }

.slots-title { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; }
.slots-tz { font-size: 0.8rem; color: var(--ink-soft); margin: 4px 0 14px; }
.slot-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-height: 280px; overflow-y: auto; padding-right: 4px; }
.slots-empty { grid-column: 1 / -1; color: var(--ink-soft); font-size: 0.92rem; background: var(--cream); border-radius: var(--radius-sm); padding: 18px; }
.slot-btn {
  padding: 11px 8px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--paper);
  font-weight: 600; font-size: 0.92rem; color: var(--ink);
  transition: 0.15s;
}
.slot-btn:hover:not(:disabled) { border-color: var(--terra); color: var(--terra-deep); }
.slot-btn.is-selected { background: var(--terra); border-color: var(--terra); color: #fff; }
.slot-btn:disabled { background: var(--cream); color: var(--line); cursor: not-allowed; text-decoration: line-through; }
/* buffer slots aren't booked, just kept free around a session — show as held, not struck out */
.slot-btn.is-buffer { border-style: dashed; text-decoration: none; }
.slots-loading { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); padding: 18px; font-size: 0.92rem; }

/* --- booking footer --- */
.booking-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; margin-top: 28px; flex-wrap: wrap;
}
.booking-foot-note { font-size: 0.85rem; color: var(--ink-soft); }
.booking-foot-center { justify-content: center; }

/* --- step 2: details --- */
.selected-summary {
  background: var(--sage); border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 0.95rem; margin-bottom: 24px;
  color: var(--pine); font-weight: 600;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 7px; }
.field label small { font-weight: 400; color: var(--ink-soft); }
.field input, .field select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink);
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--terra);
  box-shadow: 0 0 0 3px var(--terra-tint);
}
.field input.is-invalid { border-color: #C03A2B; background: #FDF2F0; }
.field-error { display: block; color: #C03A2B; font-size: 0.84rem; margin-top: 5px; min-height: 1.2em; }

.phone-wrap { display: flex; }
.phone-prefix {
  display: grid; place-items: center; padding: 0 14px;
  background: var(--cream); border: 1.5px solid var(--line); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-weight: 600; color: var(--ink-soft);
}
.phone-wrap input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* --- step 3: confirm --- */
.confirm-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; display: grid; gap: 14px;
}
.confirm-row { display: flex; justify-content: space-between; gap: 20px; font-size: 0.98rem; flex-wrap: wrap; }
.confirm-row dt { color: var(--ink-soft); font-weight: 500; }
.confirm-row dd { font-weight: 600; text-align: right; }
.confirm-divider { border: none; border-top: 1px dashed var(--line); margin: 4px 0; }
.confirm-highlight {
  background: var(--terra-tint); color: var(--terra-deep);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-weight: 700; text-align: center; font-size: 1.05rem;
}
.confirm-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 16px; }

/* --- success --- */
.booking-success { text-align: center; padding: 24px 0 8px; }
.success-icon {
  width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--sage); color: var(--pine);
  display: grid; place-items: center;
}
.success-icon svg { width: 36px; height: 36px; }
.booking-success h3 { font-size: 1.7rem; margin-bottom: 10px; }
.booking-success p { color: var(--ink-soft); max-width: 38em; margin-inline: auto; }
.success-ref {
  font-weight: 700; color: var(--pine) !important; margin-top: 10px;
  font-size: 1.05rem; letter-spacing: 0.04em;
}
.success-hint { font-size: 0.88rem; margin-top: 14px; }

/* error toast inside modal */
.booking-error {
  background: #FDF2F0; border: 1px solid #E8B4AC; color: #C03A2B;
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 0.92rem; margin-top: 16px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { max-width: 440px; margin-inline: auto; width: 100%; }
  .float-card-1 { left: -4px; }
  .float-card-2 { right: -4px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 420px; margin-inline: auto; width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }

  .schedule-grid { grid-template-columns: 1fr; }
  .slot-list { max-height: none; }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--bone); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 12px 24px 20px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header-actions { gap: 6px; }
  .header-actions .btn-sm { padding: 9px 14px; font-size: 0.84rem; }
  .header-actions .label-full { display: none; }
  .header-actions .label-short { display: inline; }
  .brand-sub { display: none; }

  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .booking-modal { padding: 28px 20px; }
  .bstep-label { display: none; }
  .bstep { justify-content: center; }
  .booking-steps { gap: 6px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 6px; }
}

/* =========================================================
   PRICE TOKENS (₹1,500 struck → FREE)
   ========================================================= */
.price-old {
  text-decoration: line-through;
  text-decoration-color: var(--terra);
  color: var(--ink-soft);
  font-weight: 600;
}
.price-old-light { color: rgba(243, 236, 223, 0.7); text-decoration-color: var(--bone); }
.price-now {
  color: var(--terra); font-weight: 800; letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* hero offer chip */
.hero-offer {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; padding: 12px 18px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--shadow);
}
.offer-tag {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--pine);
  background: var(--sage); padding: 5px 12px; border-radius: 999px;
}
.hero-offer .price-old { font-size: 1.05rem; }
.hero-offer .price-now { font-size: 1.25rem; }
.offer-limited { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--pine); color: var(--cream);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 26px;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.marquee-track span { flex-shrink: 0; }
.m-dot { color: var(--terra); font-size: 0.8rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* =========================================================
   TRANSFORMATIONS (before / after)
   ========================================================= */
.transform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.transform-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.ba-slider {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  user-select: none; touch-action: pan-y;
}
.ba-img {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
}
.ba-after { background: var(--sage); color: var(--pine); }
.ba-before { background: var(--terra-tint); color: var(--terra-deep); }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute; top: 12px; padding: 4px 12px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  background: rgba(33, 49, 42, 0.82); color: var(--bone);
}
.ba-tag-before { left: 12px; }
.ba-tag-after { right: 12px; }
.ba-ph { font-size: 0.9rem; font-weight: 600; padding: 10px; }
.ba-ph small { font-weight: 400; opacity: 0.7; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--bone); transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(33,49,42,0.15); pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bone); border: 2px solid var(--terra);
  display: grid; place-items: center;
}
.ba-handle span::before {
  content: "⟷"; color: var(--terra-deep); font-size: 1rem; font-weight: 700;
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
  touch-action: pan-y;   /* let vertical swipes scroll the page; slider only takes horizontal drags */
}
.transform-meta { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.transform-stats { display: flex; gap: 12px; }
.t-stat {
  flex: 1; background: var(--cream); border-radius: var(--radius-sm);
  padding: 10px 12px; display: flex; flex-direction: column;
  font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em;
}
.t-stat strong {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--terra);
  letter-spacing: 0; text-transform: none; line-height: 1.1;
}
.transform-name { font-size: 0.96rem; color: var(--ink-soft); }
.transform-name strong { color: var(--ink); }
.transform-name em { color: var(--pine); font-style: italic; font-weight: 600; }
.transform-cta { text-align: center; margin-top: 44px; }
.transform-cta p { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 18px; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 24px; display: flex; flex-direction: column; gap: 13px; position: relative;
}
.price-card-best { border-color: var(--terra); box-shadow: 0 16px 36px -20px rgba(212, 87, 46, 0.55); }
.price-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--terra); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.price-card-name {
  font-size: 1.18rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.price-card-mode {
  font-family: var(--font-body); font-size: 0.64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--sage); color: var(--pine); padding: 3px 8px; border-radius: 999px;
}
.price-card-amount {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-display); line-height: 1;
}
.price-card-amount strong { font-size: 2rem; font-weight: 600; color: var(--ink); }
.price-card-best .price-card-amount strong { color: var(--terra); }
.price-card-was { font-size: 1rem; color: var(--ink-soft); text-decoration: line-through; }
.price-card-unit { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-soft); }
.price-card-tag { font-size: 0.9rem; color: var(--ink-soft); }
.price-card-save {
  display: inline-block; background: var(--terra-tint); color: var(--terra-deep);
  font-weight: 700; font-size: 0.8rem; padding: 2px 9px; border-radius: 999px;
}
.price-card-list { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 9px; }
.price-card-list li { position: relative; padding-left: 24px; font-size: 0.92rem; color: var(--ink-soft); }
.price-card-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--terra); font-weight: 800; font-size: 0.85rem;
}
.price-card .btn { margin-top: auto; width: 100%; }
.price-card-actions { margin-top: auto; display: grid; gap: 8px; }
.price-card-actions .btn { width: 100%; margin-top: 0; font-size: 0.9rem; padding: 11px 12px; }
.pricing-note { text-align: center; margin-top: 28px; color: var(--ink-soft); font-size: 0.95rem; }
.pricing-note a { color: var(--terra); font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }
.reviews-empty { text-align: center; color: var(--ink-soft); max-width: 42em; margin: 8px auto 0; }
.reviews-empty a { color: var(--terra); font-weight: 600; }
.reviews-empty a:hover { text-decoration: underline; }

@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .brand-name { font-size: 1.08rem; }
}

/* =========================================================
   TRAINER VIDEO
   ========================================================= */
.video-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center; }
.video-copy p { color: var(--ink-soft); margin-top: 16px; max-width: 34em; }
.video-points { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; }
.video-points li { padding-left: 30px; position: relative; }
.video-points li::before {
  content: "▶"; position: absolute; left: 0; top: 2px; font-size: 0.72rem;
  color: var(--terra);
}
.video-frame { position: relative; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.video-frame .btn { width: 100%; }
/* CTA placement: under the copy on desktop, under the video on mobile */
.video-cta-desk { margin-top: 4px; }
.video-cta-mob { display: none; }
.video-thumb {
  position: relative; display: block; width: 100%; aspect-ratio: 9 / 16;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; padding: 0; background: var(--pine); cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-poster-ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: var(--sage); color: var(--pine);
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--terra); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg); transition: transform 0.18s ease, background 0.18s ease;
}
.video-play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-thumb:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--terra-deep); }
.video-duration {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(33, 49, 42, 0.82); color: var(--bone);
  padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
}

/* video lightbox */
.video-lightbox {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(33, 49, 42, 0.88);
  display: grid; place-items: center; padding: 24px;
}
.video-lightbox[hidden] { display: none; }
.video-lightbox-inner {
  width: 100%; max-width: 900px; aspect-ratio: 16 / 9;
  background: #000; border-radius: var(--radius); overflow: hidden;
}
.video-lightbox-inner iframe,
.video-lightbox-inner video { width: 100%; height: 100%; border: 0; display: block; }
.video-placeholder-msg {
  width: 100%; height: 100%; display: grid; place-items: center; text-align: center;
  gap: 6px; padding: 24px; color: var(--cream);
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1.4;
}
.video-placeholder-msg small { font-family: var(--font-body); font-size: 0.9rem; opacity: 0.8; font-weight: 400; }
.video-placeholder-msg code { background: rgba(243,236,223,0.15); padding: 1px 6px; border-radius: 5px; }

/* portrait (9:16) lightbox for video testimonials */
.video-lightbox.is-portrait .video-lightbox-inner {
  aspect-ratio: 9 / 16; width: auto; height: min(82vh, 720px); max-width: 94vw;
}

/* =========================================================
   PORTRAIT VIDEO TESTIMONIALS (shared: index + membership)
   ========================================================= */
.vtesti-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vtesti-card {
  position: relative; display: block; width: 100%; padding: 0;
  aspect-ratio: 9 / 16; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; background: var(--pine); color: var(--cream);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vtesti-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vtesti-card img { width: 100%; height: 100%; object-fit: cover; }
.vtesti-poster {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: var(--sage); color: var(--pine);
}
.vtesti-card .video-play-btn { width: 64px; height: 64px; }
.vtesti-card .video-play-btn svg { width: 26px; height: 26px; }
.vtesti-card:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--terra-deep); }
.vtesti-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 16px 18px; text-align: left;
  background: rgba(33, 49, 42, 0.86);
}
.vtesti-caption strong { display: block; font-size: 1.02rem; }
.vtesti-caption span { font-size: 0.84rem; opacity: 0.85; }
.vtesti-sub {
  text-align: center; font-weight: 600; color: var(--ink-soft);
  margin: 8px 0 28px; font-size: 1.02rem;
}
.m-proof-vsub { margin-top: 56px; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
@media (max-width: 760px) {
  .vtesti-grid { grid-template-columns: 1fr; }
}
.video-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bone); color: var(--ink); border: none;
  font-size: 1.6rem; line-height: 1; display: grid; place-items: center;
}
.video-lightbox-close:hover { background: var(--terra); color: #fff; }

/* =========================================================
   REVIEWS rating line
   ========================================================= */
.reviews-rating {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 0.98rem; color: var(--ink-soft);
}
.reviews-rating .stars { color: var(--gold); letter-spacing: 2px; }
.reviews-rating strong { color: var(--ink); }
/* the 50+ stat wraps awkwardly on small screens — hide it there */
@media (max-width: 760px) { .reviews-rating { display: none; } }

/* =========================================================
   WHATSAPP COMMUNITY
   ========================================================= */
.wa-band {
  background: var(--pine); color: var(--cream);
  border-radius: var(--radius); padding: 40px 44px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.wa-icon {
  width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0;
  background: rgba(243, 236, 223, 0.12); color: #5BD06B;
  display: grid; place-items: center;
}
.wa-icon svg { width: 34px; height: 34px; }
.wa-copy { flex: 1; min-width: 240px; }
.wa-copy h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.wa-copy p { margin-top: 10px; opacity: 0.88; max-width: 46em; }
.wa-copy strong { color: #fff; }
.btn-wa { background: #25D366; color: #06351a; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-wa svg { flex-shrink: 0; }

/* cta band price inline */
.cta-price { display: inline-flex; align-items: baseline; gap: 8px; }
.cta-price strong { color: #fff; }

/* footer membership upsell link */
.footer-membership {
  margin-top: 14px; font-size: 0.9rem; color: var(--cream) !important;
  opacity: 0.7 !important; text-decoration: underline; text-underline-offset: 3px;
}
.footer-membership:hover { opacity: 1 !important; }

/* =========================================================
   BOOKING modal additions
   ========================================================= */
.booking-subprice { font-size: 0.92rem; color: var(--ink-soft); margin: -8px 0 22px; }
.booking-subprice .price-old { font-size: 0.92rem; }
.booking-subprice strong { color: var(--terra); }
.booking-intro { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 20px; }
.booking-foot-end { justify-content: flex-end; }
.confirm-row dd .price-old { font-size: 0.92rem; margin-right: 4px; }
.success-upsell {
  margin-top: 22px; padding: 18px; background: var(--cream);
  border-radius: var(--radius-sm);
}
.success-upsell p { margin-bottom: 4px !important; font-weight: 600; color: var(--ink) !important; }

/* =========================================================
   RESPONSIVE — new sections
   ========================================================= */
@media (max-width: 960px) {
  .transform-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .video-grid { grid-template-columns: 1fr; gap: 36px; }
  .video-cta-desk { display: none; }
  .video-cta-mob { display: inline-flex; }
  .wa-band { flex-direction: column; text-align: center; padding: 32px 24px; }
  .wa-copy p { margin-inline: auto; }
}
@media (max-width: 760px) {
  .marquee-track { font-size: 1rem; gap: 18px; }
  /* on mobile the offer wraps to two lines — use a card radius, not a stretched pill */
  .hero-offer { width: 100%; justify-content: center; border-radius: var(--radius); padding: 14px 18px; }
  .hero-offer .offer-limited { flex-basis: 100%; text-align: center; margin-top: 2px; }
  .video-play-btn { width: 62px; height: 62px; }
  .video-play-btn svg { width: 24px; height: 24px; }
}

