/* ============================================================
   Luxura Co — 1:1 Replica of luxara-colorado.com
   Matches: Inter body, Playfair-ish serif headings, pink primary,
   white background, large rounded photo cards, soft shadows.
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg-soft:   #faf5f7;
  --bg-pink:   #fdf2f8;
  --ink:       #171717;
  --ink-soft:  #525252;
  --ink-mute:  #a3a3a3;
  --line:      #f1f1f3;
  --pink:      #ec4899;        /* primary CTA pink */
  --pink-deep: #db2777;
  --pink-soft: #fce7f3;
  --rose:      #fb7185;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.04);
  --shadow:    0 8px 28px rgba(0,0,0,.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

p { color: var(--ink-soft); }
a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--pink-deep); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }

.h2 {
  font-size: clamp(36px, 5vw, 60px);
  text-align: center;
  margin-bottom: 16px;
}
.h3 {
  font-size: clamp(26px, 3vw, 36px);
}
.lede {
  text-align: center;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 17px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(236,72,153,.3);
}
.btn--primary:hover {
  background: var(--pink-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(236,72,153,.4);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 18px 40px; font-size: 15px; }
.btn--block { display: block; width: 100%; }

/* ============ Hero ============ */
.hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(236,72,153,.10) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(184,153,104,.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-pink) 0%, #ffffff 100%);
  padding: 64px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__inner { max-width: 820px; margin: 0 auto; }
.hero__copy { text-align: left; }
.hero__copy .hero__tag,
.hero__copy .hero__price,
.hero__copy .hero__nodeposit { display: inline-block; }
.hero__copy .hero__price { display: inline-flex; }
.hero__copy .hero__sub { margin-left: 0; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { text-align: center; }
  .hero__copy .hero__title { text-align: center; }
  .hero__copy .hero__sub { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   Hero shot — single still that pattern-matches the D3 V14 ad
   ============================================================ */
.hero__shot {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  aspect-ratio: 4 / 5;
}
.hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__shot-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0;
}
.hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--pink-deep);
  background: var(--pink-soft);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero__price {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.hero__price-now {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1;
}
.hero__price-now sup { font-size: .35em; font-weight: 600; }
.hero__price-was { text-align: left; }
.hero__price-was span {
  font-size: 13px;
  color: var(--ink-mute);
  display: block;
}
.hero__price-was strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.hero__nodeposit {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 500;
}

/* ============ Results / B/A carousel ============ */
.results { background: var(--bg); }
.ba__scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 28px;
  -webkit-overflow-scrolling: touch;
}
.ba__scroller::-webkit-scrollbar { height: 6px; }
.ba__scroller::-webkit-scrollbar-track { background: var(--line); border-radius: 3px; }
.ba__scroller::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

.ba__card {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 380px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}
.ba__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ba__half {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.ba__half img { width: 100%; height: 100%; object-fit: cover; }
.ba__half span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.carousel__ctrls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
  line-height: 1;
}
.carousel__btn:hover { background: var(--ink); color: #fff; }

/* ============ Feedback (short cards) ============ */
.feedback { background: var(--bg-soft); }
.feedback__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feedback__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.feedback__stars { color: var(--pink); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.feedback__card p { font-style: italic; margin-bottom: 14px; }
.feedback__card footer { font-weight: 600; color: var(--ink); }
@media (max-width: 800px) { .feedback__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .feedback__grid { grid-template-columns: 1fr; } }

/* ============ Booking widget ============ */
.booking {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-pink) 100%);
  text-align: center;
}
.booking__title { margin-bottom: 14px; text-align: center; }
.booking__riskfree {
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 14px;
  margin: 20px 0 36px;
}

.booking__widget {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: left;
}
.booking__widget-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  text-align: center;
}
.booking__widget-head h4 { font-size: 18px; margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.booking__widget-head p { font-size: 14px; color: var(--ink-soft); }
.booking__widget-head strong { color: var(--pink-deep); font-weight: 700; }

.cal__month { margin-bottom: 20px; }
.cal__month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
}
.cal__month-head em {
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .12em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.cal__days {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 8px;
}
.cal__day {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s ease;
  text-align: center;
}
.cal__day span {
  display: block;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: .1em;
  font-weight: 600;
}
.cal__day strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}
.cal__day:hover { background: var(--pink-soft); border-color: var(--pink); }
.cal__loading {
  text-align: center;
  color: var(--ink-mute);
  font-size: 14px;
  font-style: italic;
  padding: 20px 0;
}

/* ============ Experts ============ */
.experts { background: #fff; }
.experts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.expert {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.expert__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.expert__quote {
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.55;
}
.expert footer strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}
.expert footer span {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--pink-deep);
  font-weight: 600;
}
@media (max-width: 900px) { .experts__grid { grid-template-columns: 1fr; } }

/* ============ Clinical data ============ */
.clinical { background: var(--bg-pink); }
.clinical__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.clinical__stat {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.clinical__pct {
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 0.95;
  display: block;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(160deg, var(--pink-deep) 0%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clinical__sign {
  font-size: 0.42em;
  font-weight: 500;
  vertical-align: super;
  margin-left: 4px;
  letter-spacing: 0;
  -webkit-text-fill-color: var(--pink-deep);
}
.clinical__caption {
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.clinical__stat h3 {
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--ink);
}
@media (max-width: 800px) { .clinical__grid { grid-template-columns: 1fr 1fr; } }

/* ============ Process steps ============ */
.process { background: #fff; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process__step {
  text-align: center;
}
.process__step img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
}
.process__num {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--pink-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.process__step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.process__step p {
  font-size: 14px;
}
@media (max-width: 900px) { .process__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process__grid { grid-template-columns: 1fr; } }

/* ============ LED Tech (dark full-bleed) ============ */
.tech {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(236,72,153,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(184,153,104,.10) 0%, transparent 50%),
    #0f0a14;
  color: #f5d4e3;
  position: relative;
  overflow: hidden;
}
.tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.tech__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.tech__copy h2 {
  text-align: left;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
  color: #fff;
}
.tech__copy > p { margin-bottom: 16px; color: rgba(245,212,227,.78); }
.tech__features {
  list-style: none;
  margin: 32px 0;
}
.tech__features li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tech__features li:last-child { border-bottom: none; }
.tech__features h3 { font-size: 18px; margin-bottom: 4px; color: #fff; }
.tech__features p { font-size: 14px; margin: 0; color: rgba(245,212,227,.7); }
.tech__riskfree {
  color: #ffb4d8;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 20px;
}
/* Adjust the device shadow for dark bg */
.tech__visual img {
  filter: drop-shadow(0 30px 50px rgba(236,72,153,.3));
}
.tech__visual::after {
  background: radial-gradient(ellipse, rgba(236,72,153,.55) 0%, transparent 70%);
}
.tech__visual {
  text-align: center;
  position: relative;
  perspective: 800px;
}
.tech__visual img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  margin: 0 auto;
  animation: deviceFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.18));
  will-change: transform;
}
.tech__visual::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 60%;
  height: 18px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(236,72,153,.25) 0%, transparent 70%);
  filter: blur(8px);
  animation: deviceShadow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes deviceShadow {
  0%, 100% { opacity: .9; transform: translateX(-50%) scaleX(1); }
  50%      { opacity: .55; transform: translateX(-50%) scaleX(.82); }
}
@media (max-width: 900px) {
  .tech__inner { grid-template-columns: 1fr; }
  .tech__copy h2 { text-align: center; }
}

/* ============ Who we are ============ */
.who { background: #fff; text-align: center; }
.who__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.who__kicker {
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--pink-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.who__body {
  max-width: 720px;
  margin: 20px auto 48px;
  font-size: 17px;
}
.who__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.who__stats > div { text-align: center; }
.who__stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--pink-deep);
  line-height: 1;
}
.who__stats span {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 8px;
  display: block;
}
.who__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============ Location ============ */
.location { background: var(--bg-pink); text-align: center; }
.location__inner h2 { text-align: center; }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 600px;
  margin: 40px auto;
}
.location__col h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.location__col p { font-size: 16px; color: var(--ink); }
.location__logos {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 30px 0;
}
.location__logos img { height: 32px; opacity: .7; }
.location__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
@media (max-width: 600px) { .location__grid { grid-template-columns: 1fr; gap: 20px; } }

/* ============ Client stories ============ */
.stories { background: #fff; }
.stories__rating { text-align: center; margin-bottom: 40px; color: var(--ink-soft); }
.stories__rating strong { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--pink-deep); margin-right: 6px; }
.stories__scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 28px;
}
.stories__scroller::-webkit-scrollbar { height: 6px; }
.stories__scroller::-webkit-scrollbar-track { background: var(--line); border-radius: 3px; }
.stories__scroller::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }
.story {
  flex: 0 0 auto;
  width: clamp(280px, 30vw, 360px);
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  scroll-snap-align: start;
}
.story header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.story header strong { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--ink); }
.story header span { font-size: 10px; letter-spacing: .15em; color: var(--ink-mute); font-weight: 600; }
.story__stars { color: var(--pink); margin-bottom: 12px; letter-spacing: 2px; }
.story p { font-style: italic; font-size: 14px; line-height: 1.55; }

/* ============ Ready to book ============ */
.ready { background: var(--bg-pink); text-align: center; }
.ready__inner h2 { text-align: center; }
.ready__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}
.ready__step { padding: 0 12px; }
.ready__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.ready__step h3 { font-size: 22px; margin-bottom: 10px; }
.ready__step p { font-size: 14px; }
.ready__offer {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.ready__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.ready__price-was {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.ready__price-now {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--pink-deep);
}
.ready__scarcity {
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}
.ready__riskfree {
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
}
@media (max-width: 800px) { .ready__steps { grid-template-columns: 1fr; gap: 32px; } }

/* ============ FAQ ============ */
.faq { background: #fff; }
.faq__inner { max-width: 760px; }
.faq__inner h2 { text-align: center; }
.faq__kicker {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--pink-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.faq__list { margin-top: 16px; }
.faq__item {
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: background .2s ease;
}
.faq__item[open] { background: var(--bg-pink); }
.faq__item summary {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  list-style: none;
  position: relative;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--pink-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ Footer ============ */
.foot {
  background: var(--ink);
  color: #a3a3a3;
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
}
.foot a { color: var(--pink-soft); }
.foot a:hover { color: #fff; }

/* ============================================================
   Sticky top nav (transparent → solid on scroll)
   ============================================================ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 14px 24px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .25s ease, box-shadow .3s ease;
}
.topnav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line);
  padding: 10px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
.topnav__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topnav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .28em;
  transition: color .25s ease;
}
.topnav:not(.is-scrolled) .topnav__logo { color: var(--ink); }
.topnav__logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold, #b89968) 100%);
  box-shadow: 0 4px 12px rgba(236,72,153,.35);
  position: relative;
}
.topnav__logo-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}
.topnav.is-scrolled .topnav__logo-mark::after { background: #fff; }
.topnav__cta {
  display: inline-block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(236,72,153,.3);
  transition: background .2s ease, transform .15s ease;
}
.topnav__cta:hover {
  background: var(--pink-deep);
  color: #fff;
  transform: translateY(-1px);
}

/* Add a bit of top padding to body so hero isn't covered by nav */
body { padding-top: 64px; }
@media (max-width: 900px) {
  body { padding-top: 60px; }
  .topnav__logo-text { display: none; }
}

/* ============================================================
   Local proximity strip (under hero)
   ============================================================ */
.local-strip {
  background: var(--ink);
  color: #f5d4e3;
  padding: 14px 0;
  font-size: 13px;
  letter-spacing: .02em;
}
.local-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.local-strip__inner strong { color: #fff; font-weight: 600; }
.local-strip__pin { font-size: 16px; }
.local-strip__sep { width: 4px; height: 4px; border-radius: 50%; background: #f5d4e3; opacity: .5; }
@media (max-width: 560px) {
  .local-strip__sep { display: none; }
  .local-strip__inner { gap: 8px; font-size: 12px; }
}

/* ============================================================
   Clinical stats — source caveat
   ============================================================ */
.clinical__source {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 28px;
}

/* ============================================================
   Lead form (replaces fake calendar)
   ============================================================ */
.lead-form {
  display: block;
}
.lead-form__field {
  display: block;
  margin-bottom: 16px;
}
.lead-form__field > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.lead-form__field input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.lead-form__field input:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(236,72,153,.12);
}
.lead-form__submit { margin-top: 10px; }
.lead-form__fineprint {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}
.lead-form__error {
  margin-top: 14px;
  padding: 10px 14px;
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}

/* ============================================================
   B/A filter buttons
   ============================================================ */
.ba__filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.ba__filter-btn {
  padding: 8px 18px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
}
.ba__filter-btn:hover { border-color: var(--pink); color: var(--pink-deep); }
.ba__filter-btn.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(236,72,153,.25);
}

/* Fade out cards filtered away */
.ba__card { transition: opacity .3s ease, transform .3s ease; }
.ba__card.is-hidden { display: none; }

.ba__card figcaption {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

/* ============================================================
   Experts grid — now 2-up (after removing Smoot)
   ============================================================ */
@media (min-width: 901px) {
  .experts__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 920px;
    margin: 0 auto;
  }
}

/* ============================================================
   Sticky mobile CTA bar (visible only on mobile)
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(0,0,0,.06);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.sticky-cta__book {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  text-align: center;
}
.sticky-cta__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
  flex-shrink: 0;
}
.sticky-cta__call:hover { background: var(--pink-deep); color: #fff; transform: scale(1.05); }

@media (max-width: 900px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 96px; }
}

/* ============================================================
   Scroll-reveal animations (matches Framer Motion patterns
   on the original: fade + slide-up, 0.7s cubic-bezier)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger: each direct child reveals slightly later than the previous */
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal--stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle scale-in for hero offer/buttons */
.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.5s cubic-bezier(0, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.reveal--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ============ Micro-interactions: hover lifts ============ */
.ba__card,
.feedback__card,
.expert,
.clinical__stat,
.process__step,
.story,
.faq__item {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ba__card:hover,
.feedback__card:hover,
.expert:hover,
.clinical__stat:hover,
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
}

.process__step img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.process__step:hover img {
  transform: scale(1.03);
}

.clinical__pct {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clinical__stat:hover .clinical__pct {
  transform: scale(1.08);
}

/* Hero CTA pulse */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(236,72,153,.3); }
  50%      { box-shadow: 0 8px 20px rgba(236,72,153,.3), 0 0 0 12px rgba(236,72,153,0); }
}
.hero .btn--primary {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

/* Number count-up visual cue (the % gets a slight glow when revealed) */
@keyframes pctGlow {
  0%   { text-shadow: 0 0 0 rgba(236,72,153,0); }
  50%  { text-shadow: 0 0 24px rgba(236,72,153,.5); }
  100% { text-shadow: 0 0 0 rgba(236,72,153,0); }
}
.clinical__stat.is-visible .clinical__pct {
  animation: pctGlow 1.6s ease-out 0.3s;
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .ba__scroller, .stories__scroller { scroll-behavior: auto; }
  .reveal, .reveal--stagger > *, .reveal--scale {
    opacity: 1 !important;
    transform: none !important;
  }
}
