/* ══════════════════════════════════════════════════════════════════
   CLINIC NEXT FACE · LANDING PAGE DESIGN SYSTEM  (shared across LP 1–4)
   Brand: Deep Plum / Royal Amethyst / Silk Beige / Antique Gold
   Type:  Cormorant Garamond (display)  +  Plus Jakarta Sans (body)
   ══════════════════════════════════════════════════════════════════ */

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

:root {
  --plum-deep: #2A1548;
  --plum-darker: #1A0830;
  --plum-ink: #3D2F4F;
  --amethyst: #5E358F;
  --silk: #F2E6D8;
  --silk-light: #FAF5EC;
  --silk-pale: #FDFAF4;
  --gold: #C2A46F;
  --gold-soft: #D9C59A;
  --text: #1A1225;
  --muted: #6B5B7A;
  --line: rgba(61, 47, 79, 0.10);
  --line-soft: rgba(61, 47, 79, 0.06);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--silk-pale);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }

/* fine grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection { background: var(--plum-deep); color: var(--silk); }
img, svg { display: block; max-width: 100%; }

/* ━━━━━━━━━━━━━━━━━━━━ FLOATING NAV ━━━━━━━━━━━━━━━━━━━━ */
.nav-wrap {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  width: max-content;
  max-width: calc(100% - 24px);
}
nav.fluid {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 8px 8px 22px;
  background: rgba(253, 250, 244, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(42, 21, 72, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 30px rgba(42,21,72,0.06);
  transition: all 600ms var(--ease);
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: var(--plum-deep);
  margin-right: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.brand .dot { color: var(--gold); }
nav.fluid ul { display: flex; gap: 2px; list-style: none; }
nav.fluid ul a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--plum-ink);
  text-decoration: none;
  border-radius: 999px;
  transition: all 300ms var(--ease);
  white-space: nowrap;
}
nav.fluid ul a:hover { background: rgba(42, 21, 72, 0.06); color: var(--plum-deep); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 7px 7px 7px 18px;
  background: var(--plum-deep);
  color: var(--silk);
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
  transition: all 400ms var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--amethyst); }
.nav-cta .pip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(242, 230, 216, 0.16);
  margin-left: 12px;
  transition: transform 400ms var(--ease);
  font-size: 11px;
}
.nav-cta:hover .pip { transform: translate(2px, -1px); background: rgba(242, 230, 216, 0.28); }
.nav-links-mobile { display: none; }

/* ━━━━━━━━━━━━━━━━━━━━ HERO ━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  padding: 168px 40px 110px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -260px; right: -240px;
  width: 760px; height: 760px;
  background: radial-gradient(circle at center, rgba(194,164,111,0.16), transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -340px; left: -220px;
  width: 820px; height: 820px;
  background: radial-gradient(circle at center, rgba(94,53,143,0.10), transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  grid-template-areas:
    "intro photo"
    "form  photo";
  column-gap: 56px;
  row-gap: 30px;
  align-items: start;
}
.hero-intro { grid-area: intro; }
.hero-photo-col { grid-area: photo; align-self: stretch; position: relative; min-height: 520px; }
.hero-photo-col .photo-gap { position: absolute; inset: 0; height: auto; min-height: 0; }
.hero-photo-col .photo-gap img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
.hero-form-col { grid-area: form; align-self: start; }
.hero-form-aux { margin-top: 18px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.wa-link { display: inline-flex; align-items: center; gap: 8px; color: #128C4A; font-size: 14px; font-weight: 600; text-decoration: none; transition: color 300ms var(--ease); padding: 8px 4px; }
.wa-link:hover { text-decoration: underline; }
.wa-link svg { width: 15px; height: 15px; }
.hero-form-aux .micro-trust { justify-content: center; margin-top: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: rgba(42, 21, 72, 0.04);
  border: 1px solid rgba(42, 21, 72, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-ink);
  margin-bottom: 30px;
}
.eyebrow .dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--plum-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px; font-weight: 800; letter-spacing: 0;
}
h1.hero-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--plum-deep);
  margin-bottom: 28px;
}
h1.hero-h em { font-style: italic; color: var(--amethyst); font-weight: 400; }
.hero-sub {
  font-size: 19px;
  color: var(--plum-ink);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 34px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero-sub strong { color: var(--plum-deep); font-weight: 600; }
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.micro-trust {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 4px;
}
.micro-trust span { display: flex; align-items: center; gap: 8px; }
.micro-trust .pip { width: 4px; height: 4px; background: var(--gold); border-radius: 999px; display: inline-block; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 8px 8px 8px 28px;
  background: var(--plum-deep);
  color: var(--silk);
  text-decoration: none;
  border: none;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 500ms var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 6px 18px rgba(42,21,72,0.18);
}
.btn-primary:hover { background: var(--plum-darker); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.985); }
.btn-primary .pip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-left: 16px;
  border-radius: 999px; background: var(--gold); color: var(--plum-deep);
  transition: transform 500ms var(--ease); font-weight: 700;
}
.btn-primary:hover .pip { transform: translate(3px, -1px) rotate(-8deg); }
.btn-primary.full { width: 100%; justify-content: space-between; padding-left: 32px; }

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  padding: 8px 8px 8px 24px;
  background: rgba(255,255,255,0.7);
  color: var(--plum-deep);
  text-decoration: none;
  border: 1px solid rgba(42,21,72,0.14);
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 500ms var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 6px 18px rgba(42,21,72,0.06);
}
.btn-secondary-light:hover { background: white; transform: translateY(-1px); border-color: rgba(42,21,72,0.22); }
.btn-secondary-light:active { transform: scale(0.985); }
.btn-secondary-light .pip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-left: 14px;
  border-radius: 999px; background: var(--plum-deep); color: var(--silk);
  transition: transform 500ms var(--ease); font-size: 13px;
}
.btn-secondary-light:hover .pip { transform: translate(3px, -1px); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px;
  background: rgba(37, 211, 102, 0.10);
  color: #128C4A;
  border: 1px solid rgba(18, 140, 74, 0.22);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: all 400ms var(--ease);
}
.btn-wa:hover { background: rgba(37, 211, 102, 0.16); transform: translateY(-1px); }
.btn-wa svg { width: 16px; height: 16px; }

/* ── Hero lead form ── */
.lead-form {
  position: relative;
  background: var(--silk-pale);
  border: 1px solid rgba(42,21,72,0.08);
  border-radius: 24px;
  padding: 34px 32px 30px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 30px 70px -28px rgba(42,21,72,0.24), 0 8px 22px -10px rgba(42,21,72,0.08);
}
.lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 0 0 3px 3px;
}
.lead-form .form-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amethyst);
  font-weight: 700;
  margin-bottom: 8px;
}
.lead-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 600;
  color: var(--plum-deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.lead-form h3 em { font-style: italic; color: var(--amethyst); font-weight: 500; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--silk-light);
  border: 1px solid rgba(42,21,72,0.10);
  border-radius: 12px;
  transition: all 300ms var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235E358F' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--amethyst);
  background: white;
  box-shadow: 0 0 0 3px rgba(94,53,143,0.10);
}
.field input::placeholder { color: var(--muted); opacity: 0.6; }
.lead-form .form-foot {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.lead-form.is-sent .form-body { display: none; }
.lead-form.is-sent .form-success { display: block; }
.form-success .tick {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--plum-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: var(--plum-deep); font-weight: 600;
  margin-bottom: 8px; text-transform: none; letter-spacing: -0.01em;
}
.form-success p { font-size: 15px; color: var(--plum-ink); }

/* ━━━━━━━━━━━━━━━━━━━━ TRUST STRIP (4 stats) ━━━━━━━━━━━━━━━━━━━━ */
.trust-strip {
  background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum-darker) 100%);
  color: var(--silk);
  border-top: 1px solid rgba(194,164,111,0.18);
  border-bottom: 1px solid rgba(194,164,111,0.18);
}
.trust-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.trust-stat {
  padding: 30px 28px;
  text-align: center;
  border-right: 1px solid rgba(194,164,111,0.16);
}
.trust-stat:last-child { border-right: none; }
.trust-stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.trust-stat .l {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,230,216,0.78);
  font-weight: 600;
  line-height: 1.4;
}

/* ━━━━━━━━━━━━━━━━━━━━ SECTION FRAME ━━━━━━━━━━━━━━━━━━━━ */
section.bay { padding: 120px 40px; position: relative; }
section.bay.tight { padding: 96px 40px; }
.container { max-width: 1240px; margin: 0 auto; }
.container-narrow { max-width: 920px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amethyst);
  font-weight: 600;
  margin-bottom: 22px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-head.center .section-eyebrow { justify-content: center; }
h2.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--plum-deep);
  margin-bottom: 22px;
}
h2.section-h em { font-style: italic; color: var(--amethyst); font-weight: 400; }
.section-sub {
  font-size: 17px;
  color: var(--plum-ink);
  line-height: 1.6;
  max-width: 680px;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-sub em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--amethyst); }

/* ━━━━━━━━━━━━━━━━━━━━ EMPATHY ("does this sound familiar") ━━━━━━━━━━━━━━━━━━━━ */
.empathy { background: var(--silk-light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.familiar-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 0;
  list-style: none;
}
.familiar-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--silk-pale);
  border: 1px solid rgba(42,21,72,0.06);
  border-radius: 14px;
  font-size: 16px;
  color: var(--plum-ink);
  line-height: 1.5;
}
.familiar-list li .mk {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: rgba(94,53,143,0.08);
  color: var(--amethyst);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; margin-top: 1px;
}
.empathy-close {
  margin-top: 40px;
  padding: 30px 36px;
  background: var(--plum-deep);
  color: var(--silk);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}
.empathy-close strong { color: var(--gold-soft); font-weight: 600; }
.empathy-close em { color: var(--gold-soft); font-style: italic; }

/* ━━━━━━━━━━━━━━━━━━━━ DATA TABLE (why it happens / typing) ━━━━━━━━━━━━━━━━━━━━ */
.data-table-wrap {
  border: 1px solid rgba(42,21,72,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px -34px rgba(42,21,72,0.3);
}
/* contrast "scroll for more" cue — table (mobile) + review carousel (always) */
.scroll-hint {
  display: none;
  width: max-content; max-width: 92%; margin: 16px auto 0;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--silk); background: var(--amethyst);
  padding: 8px 17px; border-radius: 999px;
  box-shadow: 0 12px 26px -12px rgba(94,53,143,0.75);
}
.scroll-hint.is-static { display: block; }
.scroll-hint .ar { display: inline-block; animation: hintNudge 1.3s ease-in-out infinite; }
@keyframes hintNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
table.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--silk-pale);
  font-size: 15px;
}
table.data-table th {
  text-align: left;
  padding: 16px 22px;
  background: var(--plum-ink);
  color: var(--silk);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
table.data-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
  color: var(--plum-ink);
}
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:nth-child(even) td { background: var(--silk-light); }
table.data-table td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--plum-deep);
  white-space: nowrap;
}
.table-close {
  margin-top: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--plum-ink);
  line-height: 1.5;
}
.table-close strong { color: var(--plum-deep); font-style: normal; font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━ TREATMENT CARDS ━━━━━━━━━━━━━━━━━━━━ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tx-card {
  background: var(--silk-pale);
  border: 1px solid rgba(42,21,72,0.07);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 600ms var(--ease);
}
.tx-card:hover { transform: translateY(-4px); box-shadow: 0 30px 56px -30px rgba(42,21,72,0.24); }
.tx-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--silk-light); }
.tx-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease); }
.tx-card:hover .tx-photo img { transform: scale(1.04); }
.tx-card .tx-body { padding: 30px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.tx-card .tx-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amethyst);
  font-weight: 700;
  margin-bottom: 12px;
}
.tx-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--plum-deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.tx-card .tx-for {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--amethyst);
  margin-bottom: 14px;
}
.tx-card p { font-size: 14.5px; color: var(--plum-ink); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.tx-card .tx-price {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tx-card .tx-price b { color: var(--plum-deep); font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━ TESTIMONIAL BENTO ━━━━━━━━━━━━━━━━━━━━ */
.sample-warn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto 40px;
  padding: 18px 24px;
  background: rgba(194,164,111,0.10);
  border: 1px dashed var(--gold);
  border-radius: 12px;
  font-size: 13px;
  color: var(--plum-ink);
  line-height: 1.55;
}
.sample-warn .ic { flex-shrink: 0; color: var(--gold); font-size: 18px; line-height: 1.2; }
.sample-warn strong { color: var(--plum-deep); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card {
  position: relative;
  padding: 12px;
  background: rgba(242,230,216,0.4);
  border: 1px solid rgba(42,21,72,0.06);
  border-radius: 24px;
  transition: all 600ms var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px -24px rgba(42,21,72,0.20); }
.t-card-inner {
  position: relative;
  background: var(--silk-pale);
  border: 1px solid rgba(42,21,72,0.04);
  border-radius: 16px;
  padding: 34px 32px 28px;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
}
.t-sample-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: rgba(194,164,111,0.12);
  border: 1px solid rgba(194,164,111,0.3);
  padding: 4px 8px;
  border-radius: 999px;
}
.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--plum-deep);
  margin: 14px 0 22px;
  flex: 1;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.t-quote em { color: var(--amethyst); font-style: italic; font-weight: 500; }
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.t-init {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amethyst), var(--plum-deep));
  color: var(--silk);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 15px;
  flex-shrink: 0;
}
.t-name { font-size: 13px; font-weight: 600; color: var(--plum-deep); line-height: 1.2; }
.t-meta { font-size: 12px; color: var(--muted); line-height: 1.3; }

/* ━━━━━━━━━━━━━━━━━━━━ PHOTO GAP (drop-zone placeholders) ━━━━━━━━━━━━━━━━━━━━ */
.photo-gap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 26px;
  background:
    repeating-linear-gradient(45deg, rgba(194,164,111,0.05) 0 12px, transparent 12px 24px),
    var(--silk-light);
  border: 1.5px dashed var(--gold);
  border-radius: 14px;
  color: var(--muted);
}
.photo-gap.r-43 { aspect-ratio: 4 / 3; }
.photo-gap.r-45 { aspect-ratio: 4 / 5; }
.photo-gap.r-11 { aspect-ratio: 1 / 1; }
.photo-gap.r-169 { aspect-ratio: 16 / 9; }
.photo-gap.r-34 { aspect-ratio: 3 / 4; }
.photo-gap .cam {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(194,164,111,0.16);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.photo-gap .cam svg { width: 22px; height: 22px; }
.photo-gap .pg-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.photo-gap .pg-spec {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 320px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.photo-gap.hero-photo { min-height: 460px; }

/* before/after plate (two-up drop zone) */
.ba-plate {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(194,164,111,0.05) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, rgba(194,164,111,0.08) 0%, rgba(94,53,143,0.05) 100%),
    var(--silk-light);
  border: 1.5px dashed var(--gold);
}
.ba-plate::before {
  content: '';
  position: absolute;
  top: 16px; bottom: 16px; left: 50%;
  width: 1px;
  background: rgba(42,21,72,0.12);
}
.ba-half { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 16px 18px; }
.ba-corner { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.ba-label { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--plum-deep); line-height: 1; }
.ba-half:nth-child(2) .ba-label { color: var(--amethyst); }
.ba-caption {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba-disclaimer {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ━━━━━━━━ BEFORE / AFTER DRAG SLIDER ━━━━━━━━ */
.ba-slider {
  position: relative; width: 100%;
  border-radius: 14px; overflow: hidden;
  background: var(--silk-light);
  border: 1px solid rgba(42,21,72,0.10);
  cursor: ew-resize; user-select: none; -webkit-user-select: none; touch-action: pan-y;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55), 0 18px 44px -22px rgba(42,21,72,0.30);
}
.ba-slider-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-slider-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); z-index: 2; }
.ba-slider-after { z-index: 1; }
.ba-slider-line {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: var(--silk);
  box-shadow: 0 0 0 1px rgba(42,21,72,0.35), 0 0 24px rgba(0,0,0,0.25);
  transform: translateX(-1px); pointer-events: none; z-index: 3;
}
.ba-slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 999px;
  background: var(--silk); border: 2px solid var(--plum-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(42,21,72,0.32), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 300ms var(--ease);
}
.ba-slider:hover .ba-slider-handle, .ba-slider:focus-within .ba-slider-handle { transform: translate(-50%,-50%) scale(1.06); }
.ba-slider-handle::before, .ba-slider-handle::after { content: ''; display: block; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.ba-slider-handle::before { border-right: 6px solid var(--plum-deep); margin-right: 3px; }
.ba-slider-handle::after { border-left: 6px solid var(--plum-deep); margin-left: 3px; }
.ba-slider-label {
  position: absolute; top: 14px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  pointer-events: none; z-index: 4;
}
.ba-slider-label-before { left: 14px; background: rgba(42,21,72,0.72); color: var(--silk); }
.ba-slider-label-after { right: 14px; background: rgba(242,230,216,0.9); color: var(--plum-deep); }
.ba-slider-input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; margin: 0; cursor: ew-resize; touch-action: pan-y;
  -webkit-appearance: none; appearance: none; background: transparent; z-index: 5;
}
.ba-slider-input::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 46px; height: 100%; cursor: ew-resize; }
.ba-slider-input::-moz-range-thumb { width: 46px; height: 100%; border: none; background: transparent; cursor: ew-resize; }

/* gallery of wide before/after sliders */
.ba-slider-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; max-width: 1160px; margin: 0 auto; }
.ba-figure { flex: 0 1 calc(50% - 13px); margin: 0; min-width: 0; }
.ba-slider-grid .ba-slider { aspect-ratio: 3 / 1; }
.ba-figure figcaption { margin-top: 14px; text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; color: var(--muted); }

/* hero before/after fills the photo column (desktop); flows on mobile */
.hero-photo-col .ba-slider { position: absolute; inset: 0; }
.hero-photo-col .ba-slider .ba-slider-img { border-radius: 0; }
/* single transparent hero portrait (no slider) — pigmentation, dark circles, melasma.
   The photo column spans both grid rows (intro + the long form), so it stretches very
   tall; anchoring the portrait to the TOP with a capped height keeps the woman beside
   the headline instead of sinking to the bottom with empty space above her. Desktop only
   — the mobile rule in the max-width:1080 query overrides this. */
.hero-photo-col .hero-photo-solo { position: absolute; top: 0; left: 0; right: 0; bottom: auto; width: 100%; height: min(620px, 100%); object-fit: contain; object-position: center top; display: block; }
/* daily ₹10,000-voucher scarcity widget — sits inside the lead form, above the fields.
   Dormant unless a page includes the [data-scarcity] markup (pigmentation only for now). */
.scarcity { margin: 2px 0 18px; padding: 12px 14px 13px; border-radius: 12px; background: rgba(42, 21, 72, 0.045); border: 1px solid rgba(194, 164, 111, 0.5); }
.scarcity-row { display: flex; align-items: center; gap: 9px; }
.scarcity-dot { width: 9px; height: 9px; border-radius: 999px; background: #d4483b; flex: none; animation: scarcityPulse 1.8s infinite; }
@keyframes scarcityPulse { 0% { box-shadow: 0 0 0 0 rgba(212,72,59,0.5); } 70% { box-shadow: 0 0 0 7px rgba(212,72,59,0); } 100% { box-shadow: 0 0 0 0 rgba(212,72,59,0); } }
.scarcity-text { font-size: 13.5px; color: var(--plum-ink); font-weight: 500; letter-spacing: -0.01em; }
.scarcity-text strong { color: var(--plum-deep); font-weight: 700; }
.scarcity-pips { display: flex; gap: 6px; margin: 10px 0 9px; }
.scarcity-pips i { flex: 1; height: 6px; border-radius: 999px; background: rgba(42,21,72,0.14); transition: background 320ms ease; }
.scarcity-pips i.is-claimed { background: var(--plum-deep); }
.scarcity-pips i.is-left { background: var(--gold); }
.scarcity-reset { font-size: 12px; color: var(--muted); font-style: italic; }
.scarcity-reset strong { color: var(--plum-deep); font-style: normal; font-weight: 700; font-variant-numeric: tabular-nums; }
.scarcity.is-flash { animation: scarcityFlash 900ms ease; }
@keyframes scarcityFlash { 0% { background: rgba(194,164,111,0.3); } 100% { background: rgba(42,21,72,0.045); } }

/* team photo (Meet Your Doctors) */
.doc-team { width: 100%; }
.team-photo { width: 100%; border-radius: 18px; border: 1px solid rgba(194,164,111,0.4); box-shadow: 0 28px 64px -30px rgba(0,0,0,0.5); display: block; }

/* price-free statement (replaces price tables) */
.price-statement {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--silk-pale); border: 1px solid rgba(194,164,111,0.4);
  border-radius: 16px; padding: 38px 44px;
  box-shadow: 0 20px 50px -34px rgba(42,21,72,0.3);
}
.price-statement p { font-size: 17px; line-height: 1.7; color: var(--plum-ink); margin: 0; }
.price-statement strong { color: var(--plum-deep); font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━ MEET DOCTORS ━━━━━━━━━━━━━━━━━━━━ */
.doctors { background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum-darker) 100%); color: var(--silk); position: relative; overflow: hidden; }
.doctors::after {
  content: '';
  position: absolute;
  top: -200px; right: -160px;
  width: 640px; height: 640px;
  background: radial-gradient(circle at center, rgba(194,164,111,0.14), transparent 62%);
  pointer-events: none;
}
.doctors .container { position: relative; z-index: 1; }
.doctors .section-eyebrow { color: var(--amethyst); }
.doctors .section-eyebrow::before { background: var(--gold); }
.doctors h2.section-h { color: var(--silk); }
.doctors h2.section-h em { color: var(--gold-soft); }
.doctors-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.doctors-body p { font-size: 17px; color: rgba(242,230,216,0.78); line-height: 1.7; margin-bottom: 18px; }
.doctors-body p strong { color: var(--silk); font-weight: 600; }
.doctors-body p em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-soft); font-size: 19px; }
.doc-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.doc-photos .photo-gap {
  background:
    repeating-linear-gradient(45deg, rgba(194,164,111,0.07) 0 12px, transparent 12px 24px),
    rgba(255,255,255,0.03);
  border-color: rgba(194,164,111,0.45);
}
.doc-photos .photo-gap .pg-spec { color: rgba(242,230,216,0.6); }
.doc-photos .photo-gap .pg-label { color: var(--gold-soft); }

/* ━━━━━━━━━━━━━━━━━━━━ PROCESS (numbered steps) ━━━━━━━━━━━━━━━━━━━━ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  padding: 30px 26px;
  background: var(--silk-pale);
  border: 1px solid rgba(42,21,72,0.07);
  border-radius: 18px;
  position: relative;
}
.step .step-n {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 46px;
  font-weight: 500;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  display: block;
}
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--plum-deep);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: -0.005em;
}
.step p { font-size: 14px; color: var(--plum-ink); line-height: 1.55; }

/* ━━━━━━━━━━━━━━━━━━━━ PRICING TABLE ━━━━━━━━━━━━━━━━━━━━ */
.pricing-wrap { max-width: 920px; margin: 0 auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--silk-pale);
  border: 1px solid rgba(42,21,72,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.price-table th {
  text-align: left;
  padding: 16px 24px;
  background: var(--plum-ink);
  color: var(--silk);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--plum-ink);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:first-child { font-weight: 500; color: var(--plum-deep); }
.price-table td:last-child { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--plum-deep); }
.price-foot {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--plum-ink);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.55;
}
.price-foot strong { color: var(--plum-deep); font-style: normal; font-weight: 600; }

/* price placeholder token */
.ph {
  color: var(--amethyst);
  background: rgba(94,53,143,0.07);
  border-bottom: 1px dashed var(--amethyst);
  padding: 1px 5px;
  border-radius: 4px;
  font-style: normal;
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━ HONESTY BOX (melasma) & GENERIC CALLOUT ━━━━━━━━━━━━━━━━━━━━ */
.honesty-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 24px 56px -36px rgba(42,21,72,0.34);
}
.honesty-box > div { padding: 34px 36px; }
.honesty-box .wont { background: var(--plum-deep); color: var(--silk); }
.honesty-box .will { background: linear-gradient(160deg, var(--amethyst), var(--plum-deep)); color: var(--silk); }
.honesty-box .hb-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-soft); margin-bottom: 12px;
}
.honesty-box p { font-family: 'Cormorant Garamond', serif; font-size: 21px; line-height: 1.4; color: var(--silk); font-weight: 500; }
.honesty-box p strong { color: var(--gold-soft); font-weight: 600; }

.callout {
  background: var(--silk-light);
  border-left: 4px solid var(--amethyst);
  padding: 26px 32px;
  margin: 36px 0 0;
  border-radius: 6px;
}
.callout h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--plum-deep); font-weight: 600; margin-bottom: 8px; text-transform: none; letter-spacing: -0.005em; }
.callout p { font-size: 15px; color: var(--plum-ink); line-height: 1.6; }

/* objection list (lip fillers desire block) */
.objections { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; list-style: none; }
.objection {
  padding: 26px 28px;
  background: var(--silk-pale);
  border: 1px solid rgba(42,21,72,0.07);
  border-radius: 16px;
}
.objection .q {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--amethyst);
  margin-bottom: 10px;
  line-height: 1.3;
}
.objection p { font-size: 14.5px; color: var(--plum-ink); line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━ TIMELINE STRIP (lip fillers "what to expect") ━━━━━━━━━━━━━━━━━━━━ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.tl-step { padding: 30px 24px; border-right: 1px solid var(--line); position: relative; }
.tl-step:last-child { border-right: none; }
.tl-step .tl-when {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
.tl-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--plum-deep); margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.tl-step p { font-size: 13.5px; color: var(--plum-ink); line-height: 1.55; }

/* ━━━━━━━━━━━━━━━━━━━━ FAQ ━━━━━━━━━━━━━━━━━━━━ */
.faq-wrap { max-width: 920px; margin: 0 auto; }
details.faq { border-bottom: 1px solid var(--line); }
details.faq:first-of-type { border-top: 1px solid var(--line); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--plum-deep);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0;
  flex: 1;
  transition: color 300ms var(--ease);
}
details.faq summary:hover h3 { color: var(--amethyst); }
.q-pip {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(42,21,72,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: all 400ms var(--ease);
  position: relative;
}
.q-pip::before, .q-pip::after { content: ''; position: absolute; background: var(--plum-deep); transition: all 500ms var(--ease); }
.q-pip::before { width: 12px; height: 1.5px; }
.q-pip::after { width: 1.5px; height: 12px; }
details.faq[open] .q-pip { background: var(--plum-deep); transform: rotate(180deg); }
details.faq[open] .q-pip::before, details.faq[open] .q-pip::after { background: var(--gold); }
details.faq[open] .q-pip::after { transform: scaleY(0); }
.faq-body { padding: 0 0 32px 0; max-width: 740px; }
.faq-body p { font-size: 16px; line-height: 1.7; color: var(--plum-ink); margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body p strong { color: var(--plum-deep); font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━ FINAL CTA ━━━━━━━━━━━━━━━━━━━━ */
.final-cta {
  padding: 140px 40px 120px;
  background: linear-gradient(180deg, var(--silk-light) 0%, var(--silk) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -360px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle at center, rgba(194,164,111,0.18), transparent 60%);
  pointer-events: none;
}
.final-grid {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--plum-deep);
  font-weight: 500;
  letter-spacing: -0.024em;
  margin-bottom: 24px;
}
.final-cta h2 em { font-style: italic; color: var(--amethyst); font-weight: 400; }
.final-body { font-size: 17px; color: var(--plum-ink); line-height: 1.65; margin-bottom: 28px; max-width: 520px; }
.final-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* location cards (final CTA / footer) */
.loc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; position: relative; z-index: 1; max-width: 1100px; margin-left: auto; margin-right: auto; }
.loc-card {
  padding: 24px 26px;
  background: var(--silk-pale);
  border: 1px solid rgba(42,21,72,0.08);
  border-radius: 16px;
}
.loc-card .loc-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--plum-deep); margin-bottom: 6px; }
.loc-card .loc-addr { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.loc-card a { font-size: 12px; color: var(--amethyst); text-decoration: none; font-weight: 600; letter-spacing: 0.04em; border-bottom: 1px solid var(--gold-soft); padding-bottom: 1px; }
.brand-close {
  text-align: center;
  margin: 64px auto 0;
  max-width: 720px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--plum-deep);
  line-height: 1.45;
}

/* ━━━━━━━━━━━━━━━━━━━━ FOOTER ━━━━━━━━━━━━━━━━━━━━ */
footer.bottom { background: var(--plum-deep); color: rgba(242,230,216,0.6); padding: 64px 40px 120px; position: relative; overflow: hidden; }
footer.bottom::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, rgba(194,164,111,0.10), transparent 60%);
  pointer-events: none;
}
.foot-grid { position: relative; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--silk); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 14px; }
.foot-brand .dot { color: var(--gold); }
.foot-col p, .foot-col li { font-size: 13px; color: rgba(242,230,216,0.6); line-height: 1.6; }
.foot-col h5, .foot-col h4 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { color: rgba(242,230,216,0.6); text-decoration: none; transition: color 300ms; }
.foot-col a:hover { color: var(--silk); }
.foot-tagline { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 16px; color: rgba(242,230,216,0.7); margin-top: 4px; }
.foot-line {
  position: relative;
  max-width: 1240px;
  margin: 44px auto 0;
  border-top: 1px solid rgba(242,230,216,0.12);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(242,230,216,0.45);
  line-height: 1.6;
}
.foot-line .disclaimer { max-width: 880px; }

/* ━━━━━━━━━━━━━━━━━━━━ GOOGLE REVIEWS ━━━━━━━━━━━━━━━━━━━━ */
.reviews-verified {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amethyst);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.reviews-verified::before, .reviews-verified::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.reviews-rating {
  max-width: 660px;
  margin: 0 auto 50px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(42,21,72,0.14);
  box-shadow: 0 28px 64px -36px rgba(42,21,72,0.4);
}
.reviews-rating img { width: 100%; height: auto; display: block; }
.review-grid {
  display: flex; align-items: flex-start; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  max-width: 1140px; margin: 0 auto; padding: 4px 2px 22px;
  scrollbar-color: var(--amethyst) rgba(42,21,72,0.12);
}
.review-grid::-webkit-scrollbar { height: 9px; }
.review-grid::-webkit-scrollbar-track { background: rgba(42,21,72,0.10); border-radius: 999px; }
.review-grid::-webkit-scrollbar-thumb { background: var(--amethyst); border-radius: 999px; }
.review-shot {
  flex: 0 0 300px; scroll-snap-align: start;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(42,21,72,0.08);
  background: #fff;
  box-shadow: 0 18px 44px -32px rgba(42,21,72,0.3);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}
.review-shot:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -28px rgba(42,21,72,0.26); }
.review-shot img { width: 100%; height: auto; display: block; }
.reviews-foot { text-align: center; margin-top: 40px; }
.reviews-foot a {
  font-size: 14px; font-weight: 600; color: var(--amethyst); text-decoration: none;
  border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; transition: color 300ms var(--ease);
}
.reviews-foot a:hover { color: var(--plum-deep); }

/* ━━━━━━━━━━━━━━━━━━━━ FORM OFFER PILL ━━━━━━━━━━━━━━━━━━━━ */
.form-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--plum-deep);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px -12px rgba(194,164,111,0.8);
}
.form-offer .spark { font-size: 12px; line-height: 1; }
.form-offer-note { font-size: 12px; line-height: 1.45; color: var(--muted); margin: -4px 0 16px; }
.form-offer-note strong { color: var(--plum-deep); font-weight: 600; }
.offer-note {
  font-size: 12px; line-height: 1.55; color: var(--plum-ink);
  background: rgba(194,164,111,0.09);
  border: 1px solid rgba(194,164,111,0.30);
  border-radius: 10px; padding: 11px 14px; margin: 14px 0 0;
}
.offer-note strong { color: var(--plum-deep); font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━ STICKY MOBILE BAR ━━━━━━━━━━━━━━━━━━━━ */
.mobile-bar { display: none; }

/* ━━━━━━━━━━━━━━━━━━━━ RESPONSIVE ━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "intro" "photo" "form"; row-gap: 26px; }
  .hero-photo-col { align-self: auto; position: static; min-height: 0; }
  .hero-photo-col .photo-gap { position: static; height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  /* keep the slider positioned so its absolute before/after images stay inside the box
     (static lets them escape to the viewport and cover the headline) */
  .hero-photo-col .ba-slider { position: relative; inset: auto; aspect-ratio: 4 / 5; max-width: 460px; margin: 0 auto; }
  .hero-photo-col .hero-photo-solo { position: relative; inset: auto; width: auto; height: auto; max-width: 340px; max-height: 460px; margin: 0 auto; }
  .hero-form-col { width: 100%; }
  .lead-form { max-width: 560px; margin: 0 auto; }
  .doctors-body { grid-template-columns: 1fr; gap: 40px; }
  .final-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 880px) {
  section.bay { padding: 88px 26px; }
  .hero { padding: 132px 26px 80px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-stat:nth-child(2) { border-right: none; }
  .trust-stat:nth-child(1), .trust-stat:nth-child(2) { border-bottom: 1px solid rgba(194,164,111,0.16); }
  .cards-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .familiar-list { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  /* before/after gallery: one patient per row, full-width and large (was a cramped 2-up) */
  .ba-slider-grid { gap: 20px; max-width: 560px; }
  .ba-figure { flex: 0 0 100%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .objections { grid-template-columns: 1fr; }
  .honesty-box { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .tl-step:nth-child(2) { border-right: none; }
  .loc-cards { grid-template-columns: 1fr; }
  .doc-photos { grid-template-columns: 1fr 1fr; }
  .review-grid { max-width: 820px; }
}

@media (max-width: 560px) {
  .nav-wrap { top: 14px; }
  nav.fluid { padding: 7px 7px 7px 16px; }
  nav.fluid ul { display: none; }
  .brand { font-size: 15px; margin-right: 8px; }
  .hero { padding: 116px 20px 72px; }
  section.bay { padding: 72px 20px; }
  h1.hero-h { font-size: clamp(32px, 9vw, 42px); }
  .lead-form { padding: 28px 22px 26px; }
  .data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-color: var(--amethyst) rgba(42,21,72,0.12); }
  .data-table-wrap::-webkit-scrollbar { height: 9px; }
  .data-table-wrap::-webkit-scrollbar-track { background: rgba(42,21,72,0.10); }
  .data-table-wrap::-webkit-scrollbar-thumb { background: var(--amethyst); border-radius: 999px; }
  table.data-table { min-width: 540px; }
  .review-grid { max-width: none; }
  .review-shot { flex-basis: 80%; }
  .scroll-hint { display: block; }
  .reviews-rating { margin-bottom: 34px; }
  .ba-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .tl-step { border-right: none; border-bottom: 1px solid var(--line); }
  .empathy-close { font-size: 19px; padding: 24px 24px; }
  .final-buttons { width: 100%; }
  .final-buttons .btn-primary, .final-buttons .btn-secondary-light { width: 100%; justify-content: space-between; }
  /* room for sticky bar */
  body { padding-bottom: 72px; }
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(253,250,244,0.92);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-top: 1px solid rgba(42,21,72,0.10);
    box-shadow: 0 -6px 24px rgba(42,21,72,0.10);
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
  }
  .mobile-bar a svg { width: 17px; height: 17px; }
  .mobile-bar .mb-call { color: var(--plum-deep); border-right: 1px solid rgba(42,21,72,0.10); }
  .mobile-bar .mb-wa { color: #128C4A; }
}

@media print {
  body::before, .nav-wrap, .mobile-bar { display: none; }
  body { background: white; }
  .photo-gap, .ba-plate { border-style: solid; }
}
