/* =========================================================================
   स्त्रीCare & Cureवेदा — shared design system
   Static site · Cloudflare Pages · no build step
   Load this ONE stylesheet on every page. Set the vertical theme by adding
   a class to <body>: "theme-stricare", "theme-cureveda", or "theme-gateway".
   ========================================================================= */

/* ----------------------------------------------------------------------
   1. Design tokens (global)
   ---------------------------------------------------------------------- */
:root {
  /* Font stack: system UI first, with Devanagari fallbacks so स्त्री / वेदा
     render cleanly on macOS, iOS, Windows, Android without any web-font load. */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Noto Sans Devanagari", "Nirmala UI",
    "Kohinoor Devanagari", "Devanagari Sangam MN", "Mangal", sans-serif;
  --font-heading: var(--font-sans);

  /* Neutral palette (shared) */
  --ink: #1f2328;
  --ink-soft: #454b52;
  --ink-muted: #6b727a;
  --line: #e6e8eb;
  --surface: #ffffff;
  --surface-2: #f7f8fa;

  /* Fixed action colors (consistent across verticals for recognisability) */
  --call: #157f36;        /* Call = green (primary action) */
  --call-dark: #14702f;
  --whatsapp: #25d366;    /* WhatsApp brand */
  --whatsapp-dark: #1da851;
  --directions: #2563eb;  /* Directions = blue */
  --directions-dark: #1d4ed8;

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  /* Radius / shadow / layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, .06), 0 1px 2px rgba(16, 24, 40, .04);
  --shadow: 0 8px 24px rgba(16, 24, 40, .08);
  --shadow-lg: 0 20px 48px rgba(16, 24, 40, .12);
  --container: 1140px;
  --sticky-h: 64px; /* height reserved for mobile sticky CTA bar */

  /* Brand hooks — overridden per theme below. Safe neutral defaults. */
  --brand: #444c56;
  --brand-dark: #2f353d;
  --brand-tint: #f2f3f5;
  --brand-tint-2: #e9ebef;
  --brand-contrast: #ffffff;
  --brand-accent: #b58a3c;
}

/* स्त्रीCare — premium magenta + soft pink (old-site palette) */
.theme-stricare {
  --brand: #bc1f70;
  --brand-dark: #8c1450;
  --brand-tint: #fff0f7;
  --brand-tint-2: #f7d6e6;
  --brand-contrast: #ffffff;
  --brand-accent: #d4357e;

  /* Shared old-theme premium tokens (Stricare-only). Single source of
     truth for the doctor page + the B1 shared polish. Scoped to
     .theme-stricare so no other vertical can inherit them. */
  --sc-navy:       #0d3040;   /* dark teal/navy band */
  --sc-pink:       #bc1f70;
  --sc-pink-med:   #d4357e;
  --sc-pink-soft:  #fff0f7;
  --sc-teal:       #2d7d7b;
  --sc-teal-soft:  #e8f5f4;
  --sc-green-soft: #effaf2;
  --sc-gold-soft:  #fff9ec;
  --sc-gold-ink:   #92620a;
}

/* Cureवेदा — deep green + off-white */
.theme-cureveda {
  --brand: #1f6b4a;
  --brand-dark: #145036;
  --brand-tint: #f3f7f2;
  --brand-tint-2: #dcece2;
  --brand-contrast: #ffffff;
  --brand-accent: #c2a35a; /* subtle gold accent */
  --surface-2: #f7f7f2;    /* off-white */
}

/* Gateway — neutral, lets both brand cards carry their own colour */
.theme-gateway {
  --brand: #3b4653;
  --brand-dark: #27303a;
  --brand-tint: #f5f6f8;
  --brand-tint-2: #e9ecf1;
  --brand-contrast: #ffffff;
}

/* ----------------------------------------------------------------------
   2. Reset / base
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overflow-wrap: break-word;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--ink); font-weight: 700; margin: 0 0 var(--sp-4); }
h1 { font-size: clamp(1.6rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { margin: 0 0 var(--sp-4); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ----------------------------------------------------------------------
   3. Layout helpers
   ---------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-4); }
.section { padding-block: var(--sp-8); }
.section--tint { background: var(--brand-tint); }
.section--muted { background: var(--surface-2); }
.stack > * + * { margin-top: var(--sp-4); }
.grid { display: grid; gap: var(--sp-5); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.hero__grid > *, .grid > *, .footer-grid > *, .cta-row > * { min-width: 0; }
.text-center { text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 700; color: var(--brand); margin-bottom: var(--sp-2); }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.breadcrumb { font-size: .85rem; color: var(--ink-muted); padding-top: var(--sp-5); }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--brand-dark); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ----------------------------------------------------------------------
   4. Brand wordmark (combined logo text: स्त्रीCare & Cureवेदा)
   ---------------------------------------------------------------------- */
.brand-logo { display: inline-flex; align-items: center; gap: var(--sp-3); font-weight: 800; min-width: 0; max-width: 100%; overflow: hidden; }
.brand-logo img { height: 40px; width: auto; max-width: 200px; object-fit: contain; }

/* Official site header/footer clinic logo: rounded edges to match landing pages */
.site-header .brand-logo img {
  border-radius: 14px;
  border: 1px solid var(--brand-tint-2);
}

.site-footer .brand-logo img {
  border-radius: 14px;
}
.brand-logo__text { font-size: 1.15rem; letter-spacing: .2px; }
.brand-logo__text .sc { color: #c9457e; }
.brand-logo__text .cv { color: #1f6b4a; }

/* ----------------------------------------------------------------------
   5. Header / navigation (duplicated HTML per page, styled here)
   ---------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96); backdrop-filter: saturate(160%) blur(6px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); min-height: 64px; }
.site-nav { display: flex; align-items: center; gap: var(--sp-5); }
.site-nav a { color: var(--ink-soft); font-weight: 600; font-size: .98rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--brand-dark); text-decoration: none; }
.nav-cross { border: 1px solid #1f6b4a; color: #145036; padding: 6px 12px; border-radius: 999px; font-size: .9rem; }
.nav-cross:hover { background: #f3f7f2; text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; padding: var(--sp-2); cursor: pointer; }

/* ----------------------------------------------------------------------
   6. Buttons / CTAs
   ---------------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-weight: 700; font-size: 1rem; line-height: 1; padding: 14px 22px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: transform .05s ease, box-shadow .15s ease, background-color .15s ease; }
.btn:hover { text-decoration: none; box-shadow: var(--shadow); }
.btn:active { transform: translateY(1px); }
.btn--call { background: var(--brand); color: #fff; }
.btn--call:hover { background: var(--brand-dark); }
.btn--whatsapp { background: var(--whatsapp); color: #06301a; }
.btn--whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }
.btn--directions { background: var(--directions); color: #fff; }
.btn--directions:hover { background: var(--directions-dark); }
.btn--brand { background: var(--brand); color: var(--brand-contrast); }
.btn--brand:hover { background: var(--brand-dark); }
.btn--ghost { background: transparent; border-color: var(--brand); color: var(--brand-dark); }
.btn--ghost:hover { background: var(--brand-tint); }
.btn--lg { padding: 16px 28px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ----------------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------------- */
.hero { background: linear-gradient(180deg, var(--brand-tint), var(--surface)); padding-block: var(--sp-8); }
.hero__grid { display: grid; gap: var(--sp-6); align-items: center; }
.hero__media { aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--brand-tint); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ----------------------------------------------------------------------
   8. Cards / brand gateway cards / trust badges
   ---------------------------------------------------------------------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: var(--sp-5); }
.card--benefit h3 { color: var(--brand-dark); }
.brand-card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; }
.brand-card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--brand-tint); }
.brand-card__media img { width: 100%; height: 100%; object-fit: cover; }
.brand-card__body { padding: var(--sp-5); }
.brand-card--stricare { border-top: 5px solid #c9457e; }
.brand-card--cureveda { border-top: 5px solid #1f6b4a; }

.badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.badge { display: inline-flex; align-items: center; gap: 6px; background: var(--brand-tint); color: var(--brand-dark); border: 1px solid var(--brand-tint-2); border-radius: 999px; padding: 6px 12px; font-size: .85rem; font-weight: 600; }
.rating { display: inline-flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); font-weight: 700; }
.rating .stars { color: #f5a623; letter-spacing: 1px; }

/* Service cards (image-led category tiles) */
.service-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .15s ease, transform .05s ease; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--brand-tint); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { display: flex; flex-direction: column; gap: var(--sp-2); padding: var(--sp-4); flex: 1; }
.service-card__cat { text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 700; color: var(--brand); }
.service-card h3 { margin: 0; font-size: 1.1rem; }
.service-card p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.service-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.service-card__list li { position: relative; padding-left: 18px; font-size: .9rem; color: var(--ink-soft); }
.service-card__list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.service-card__cta { margin-top: auto; padding-top: var(--sp-2); font-weight: 700; color: var(--brand-dark);
  display: inline-flex; align-items: center; gap: 8px; }
.service-card__cta::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor;
  border-top: 2px solid currentColor; transform: rotate(45deg); display: inline-block; }

/* ----------------------------------------------------------------------
   9. Testimonials
   ---------------------------------------------------------------------- */
.testimonial { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: var(--radius); padding: var(--sp-5); box-shadow: var(--shadow-sm); }
.testimonial__name { font-weight: 700; color: var(--brand-dark); margin-top: var(--sp-3); }

/* ----------------------------------------------------------------------
   10. FAQ (details/summary — no JS required)
   ---------------------------------------------------------------------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; padding: var(--sp-4) var(--sp-5); font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: var(--sp-4); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 var(--sp-5) var(--sp-4); color: var(--ink-soft); }

/* ----------------------------------------------------------------------
   11. Info bar (address / timing) & medical disclaimer
   ---------------------------------------------------------------------- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: var(--sp-3); padding: var(--sp-2) 0; color: var(--ink-soft); }
.disclaimer { font-size: .85rem; color: var(--ink-muted); background: var(--surface-2); border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: var(--sp-3) var(--sp-4); }

/* ----------------------------------------------------------------------
   12. Footer
   ---------------------------------------------------------------------- */
.site-footer { background: var(--brand-dark); color: #e8eaed; padding-block: var(--sp-8); margin-top: var(--sp-8); }
.site-footer a { color: #fff; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--sp-3); }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: var(--sp-2); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .15); margin-top: var(--sp-6); padding-top: var(--sp-4); font-size: .85rem; color: #c7ccd2; }

/* ----------------------------------------------------------------------
   13. Mobile sticky CTA bar (Call | WhatsApp | Directions)
   ---------------------------------------------------------------------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  grid-template-columns: repeat(3, 1fr); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(16, 24, 40, .12); padding-bottom: env(safe-area-inset-bottom); }
.sticky-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: var(--sticky-h); font-size: .8rem; font-weight: 700; color: #fff; }
.sticky-cta a:hover { text-decoration: none; }
.sticky-cta .sc-call { background: var(--call); }
.sticky-cta .sc-wa { background: var(--whatsapp); color: #06301a; }
.sticky-cta .sc-dir { background: var(--directions); }

/* ----------------------------------------------------------------------
   13b. Global "back to top" button (desktop + mobile; injected by main.js)
   ---------------------------------------------------------------------- */
.back-to-top { display: flex; align-items: center; justify-content: center;
  position: fixed; right: var(--sp-4); bottom: var(--sp-5); /* desktop resting position */
  z-index: 55; width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff; border: none;
  box-shadow: 0 6px 18px rgba(13, 48, 64, .22);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease; cursor: pointer; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 720px) {
  .back-to-top { bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom) + var(--sp-3)); } /* above sticky CTA */
}

/* ----------------------------------------------------------------------
   14. Inline SVG icons (referenced from a per-page <symbol> sprite)
   ---------------------------------------------------------------------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.18em; }
.icon--fill { fill: currentColor; stroke: none; }
.info-list .icon { color: var(--brand); margin-top: 4px; }
.badge .icon { width: 1em; height: 1em; color: var(--brand); }
.sticky-cta .icon { width: 22px; height: 22px; vertical-align: 0; }
.nav-toggle .icon { width: 26px; height: 26px; vertical-align: middle; }

/* ----------------------------------------------------------------------
   15. Responsive
   ---------------------------------------------------------------------- */
@media (min-width: 721px) {
  .hero__grid { grid-template-columns: 1.1fr .9fr; }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  /* Reserve space so sticky bar never covers footer content */
  body.has-sticky-cta { padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom)); }
  .sticky-cta { display: grid; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: var(--sp-2) var(--sp-4);
    box-shadow: var(--shadow); display: none; }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a:not(.nav-cross) { padding: var(--sp-3) 0; border-bottom: 1px solid var(--line); }
  .nav-cross { text-align: center; margin: var(--sp-3) 0; }
  .cta-row .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   14. Doctor profile page — scoped premium theme that mirrors
   the old gynaecology/about design. All colours are scoped to
   .page-doctor so no other page is affected.
   ========================================================= */
.page-doctor {
  /* Alias to the shared .theme-stricare tokens — values resolve to the same hex,
     so the doctor layout is visually unchanged. */
  --dr-navy:       var(--sc-navy);
  --dr-pink:       var(--sc-pink);
  --dr-pink-med:   var(--sc-pink-med);
  --dr-pink-soft:  var(--sc-pink-soft);
  --dr-teal:       var(--sc-teal);
  --dr-teal-soft:  var(--sc-teal-soft);
  --dr-green-soft: var(--sc-green-soft);
  --dr-gold-soft:  var(--sc-gold-soft);
  --dr-gold-ink:   var(--sc-gold-ink);
}

/* Hero — full light-pink band */
.page-doctor .dr-hero { background: linear-gradient(180deg, var(--sc-pink-soft) 0%, var(--surface) 100%); border-bottom: 1px solid var(--brand-tint-2); padding-block: var(--sp-8); }
.page-doctor .dr-hero__grid { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 721px) { .page-doctor .dr-hero__grid { grid-template-columns: 5fr 7fr; } }
.page-doctor .dr-hero h1 { font-size: clamp(28px, 4vw, 44px); color: var(--dr-navy); line-height: 1.1; }
.page-doctor .dr-hero__role { color: var(--dr-pink); font-weight: 600; }

/* Hero image card with overlays */
.page-doctor .dr-figure { position: relative; padding: var(--sp-3) var(--sp-3) var(--sp-5); }
.page-doctor .dr-figure__img { width: 100%; display: block; aspect-ratio: 3 / 4; object-fit: cover; background: #fff; border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(188, 31, 112, .20); }
.page-doctor .dr-figure__cred { position: absolute; left: var(--sp-4); bottom: var(--sp-3); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: var(--sp-3) var(--sp-4); max-width: 70%; }
.page-doctor .dr-figure__cred strong { display: block; color: var(--dr-pink); font-size: .95rem; }
.page-doctor .dr-figure__cred span { font-size: .78rem; color: var(--ink-muted); }
.page-doctor .dr-figure__exp { position: absolute; right: var(--sp-4); top: var(--sp-4); width: 84px; height: 84px; border-radius: 999px; background: var(--dr-pink); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(188, 31, 112, .35); text-align: center; }
.page-doctor .dr-figure__exp b { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.page-doctor .dr-figure__exp span { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; }

/* Hero chips */
.page-doctor .dr-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.page-doctor .dr-chip { background: var(--dr-pink-soft); color: var(--dr-pink); border: 1px solid rgba(188, 31, 112, .25); border-radius: 999px; padding: 5px 14px; font-size: .8rem; font-weight: 600; white-space: nowrap; }
.page-doctor .dr-chip--teal { background: var(--dr-teal-soft); color: var(--dr-teal); border-color: rgba(45, 125, 123, .25); }
.page-doctor .dr-chip--gold { background: var(--dr-gold-soft); color: var(--dr-gold-ink); border-color: rgba(197, 145, 58, .3); }
/* Keep the 4 hero pills on one row on desktop; mobile still wraps */
@media (min-width: 721px) {
  .page-doctor .dr-chips { gap: 6px; }
  .page-doctor .dr-chip { padding: 5px 10px; font-size: .74rem; }
}

/* Centre the CTA buttons inside the Book Your Consultation card only
   (the only .card.text-center on the doctor page — hero & location CTAs unaffected) */
.page-doctor .card.text-center .cta-row { justify-content: center; }

/* Stats band — dark teal/navy, single row on desktop */
.page-doctor .dr-stats { background: var(--dr-navy); padding-block: var(--sp-6); }
.page-doctor .dr-stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); text-align: center; }
@media (min-width: 721px) { .page-doctor .dr-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.page-doctor .dr-stat b { display: block; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--dr-pink-med); line-height: 1.1; }
.page-doctor .dr-stat span { font-size: .8rem; color: rgba(255, 255, 255, .7); }

/* Scoped section backgrounds */
.page-doctor .dr-bg-white { background: #fff; }
.page-doctor .dr-bg-green { background: var(--dr-green-soft); }

/* Centered section heading with decorative underline */
.page-doctor .dr-head { text-align: center; max-width: 720px; margin-inline: auto; }
.page-doctor .dr-head h2 { color: var(--dr-navy); }
.page-doctor .dr-head h2::after { content: ""; display: block; width: 56px; height: 3px; background: var(--dr-pink); border-radius: 2px; margin: var(--sp-3) auto 0; }
.page-doctor .dr-head p { color: var(--ink-soft); margin-top: var(--sp-3); }

/* Value cards (why choose) — pastel backgrounds, 4-up on desktop */
.page-doctor .dr-values { display: grid; gap: var(--sp-4); }
@media (min-width: 721px) { .page-doctor .dr-values { grid-template-columns: repeat(4, 1fr); } }
.page-doctor .dr-value { border-radius: 14px; padding: var(--sp-5); text-align: center; border: 1px solid transparent; }
.page-doctor .dr-values .dr-value:nth-child(1) { background: var(--dr-pink-soft); border-color: rgba(188, 31, 112, .12); }
.page-doctor .dr-values .dr-value:nth-child(2) { background: var(--dr-teal-soft); border-color: rgba(45, 125, 123, .15); }
.page-doctor .dr-values .dr-value:nth-child(3) { background: var(--dr-green-soft); border-color: rgba(45, 125, 123, .15); }
.page-doctor .dr-values .dr-value:nth-child(4) { background: var(--dr-pink-soft); border-color: rgba(188, 31, 112, .12); }
.page-doctor .dr-value__icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(188, 31, 112, .12); color: var(--dr-pink); display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--sp-3); }
.page-doctor .dr-value__icon .icon { width: 26px; height: 26px; color: var(--brand); }
.page-doctor .dr-value h3 { color: var(--dr-navy); font-size: 1.05rem; margin-bottom: var(--sp-2); }
.page-doctor .dr-value p { color: var(--ink-soft); font-size: .92rem; }

/* Credential cards */
.page-doctor .dr-creds { display: grid; gap: var(--sp-4); }
@media (min-width: 721px) { .page-doctor .dr-creds { grid-template-columns: repeat(2, 1fr); } }
.page-doctor .dr-cred { background: #fff; border: 1px solid var(--dr-teal-soft); border-radius: 12px; padding: var(--sp-5); display: flex; gap: var(--sp-4); align-items: flex-start; }
.page-doctor .dr-cred__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--dr-pink-soft); color: var(--dr-pink); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.page-doctor .dr-cred__icon .icon { width: 26px; height: 26px; color: var(--brand); }
.page-doctor .dr-cred strong { display: block; color: var(--dr-navy); margin-bottom: 2px; }
.page-doctor .dr-cred span { font-size: .9rem; color: var(--ink-soft); }

/* Expertise chips grid */
.page-doctor .dr-expertise { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); gap: var(--sp-2); }
.page-doctor .dr-exp-item { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid rgba(188, 31, 112, .12); border-radius: 8px; padding: 10px 14px; font-size: .85rem; color: var(--dr-navy); }
.page-doctor .dr-exp-item .icon { width: 1em; height: 1em; color: var(--brand); flex-shrink: 0; }

/* Consultation approach — 3 premium white cards */
.page-doctor .dr-approach { display: grid; gap: var(--sp-4); }
@media (min-width: 721px) { .page-doctor .dr-approach { grid-template-columns: repeat(3, 1fr); } }
.page-doctor .dr-approach .dr-value { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-align: center; }

/* Mobile-safe hero overlays */
@media (max-width: 720px) {
  .page-doctor .dr-figure__cred { left: var(--sp-3); right: var(--sp-3); bottom: var(--sp-2); max-width: none; }
  .page-doctor .dr-figure__exp { width: 66px; height: 66px; }
  .page-doctor .dr-figure__exp b { font-size: 1.2rem; }
}

/* =========================================================
   15. स्त्रीCare shared premium polish (B1.2) — old-site feel
   applied to the 6 non-doctor official pages (index, about,
   treatments, testimonials, faq, contact) via classes they
   already have. Every rule is scoped .theme-stricare:not(.page-doctor)
   so the doctor page, Cureवेदा, gateway and LPs are all unaffected.
   Deliberately restrained: soft-pink tint + soft-green muted band,
   ONE subtle teal card accent, premium border/shadow — not colour
   on every section or every card.
   ========================================================= */

/* -- Heading underline: short pink rule under each section H2 -- */
.theme-stricare:not(.page-doctor) .section h2 { position: relative; }
.theme-stricare:not(.page-doctor) .section h2::after {
  content: ""; display: block;
  width: 56px; height: 3px;
  background: var(--sc-pink); border-radius: 2px;
  margin-top: var(--sp-3);
}
/* centre the rule when the heading itself is centred */
.theme-stricare:not(.page-doctor) .text-center h2::after { margin-inline: auto; }

/* -- Hero polish: soft-pink band + premium tinted media shadow -- */
.theme-stricare:not(.page-doctor) .hero {
  background: linear-gradient(180deg, var(--sc-pink-soft) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--brand-tint-2);
}
.theme-stricare:not(.page-doctor) .hero__media {
  box-shadow: 0 16px 48px rgba(188, 31, 112, .18);
}

/* -- Card polish: refined border + soft pink-tinted shadow.
      Only .card--benefit gets the subtle teal accent (not every card),
      to stay premium and uncluttered. -- */
.theme-stricare:not(.page-doctor) .card {
  border-color: var(--brand-tint-2);
  box-shadow: 0 6px 20px rgba(188, 31, 112, .06);
}
.theme-stricare:not(.page-doctor) .card--benefit {
  border-top: 3px solid var(--sc-teal);
}
.theme-stricare:not(.page-doctor) .service-card:hover {
  box-shadow: 0 12px 28px rgba(188, 31, 112, .12);
}

/* -- Two-tone section rhythm (old Stricare feel):
      pink tint on .section--tint, soft green on .section--muted.
      Only these two utility classes are tinted — plain .section stays
      white — so no page turns fully coloured. -- */
.theme-stricare:not(.page-doctor) .section--tint {
  background: linear-gradient(180deg, var(--sc-pink-soft), #fff7fb);
}
.theme-stricare:not(.page-doctor) .section--muted {
  background: var(--sc-green-soft);
}

/* -- Eyebrow / rating: old magenta accents. Eyebrow reaffirmed to the
      shared pink token; rating text magenta-dark while stars stay gold. -- */
.theme-stricare:not(.page-doctor) .eyebrow { color: var(--sc-pink); }
.theme-stricare:not(.page-doctor) .rating { color: var(--brand-dark); }
/* stars keep their gold via the existing `.rating .stars` rule (unchanged) */

/* =========================================================
   16. स्त्रीCare Book-Consultation CTA centering (B1.3).
   Centre the CTA row inside the Book Your Consultation card on the
   6 non-doctor pages. Two safe hooks, both = Book card only (verified):
     • .card.text-center  → Book card on treatments/testimonials/faq/contact
     • .card:has(.disclaimer) → Book card on index/about (and the others);
       contact's 3 info cards have no .disclaimer, so they stay left-aligned.
   Doctor keeps its own equivalent rule; hero & Location CTAs untouched.
   ========================================================= */
.theme-stricare:not(.page-doctor) .card.text-center .cta-row,
.theme-stricare:not(.page-doctor) .card:has(.disclaimer) .cta-row {
  justify-content: center;
}

/* =========================================================
   17. स्त्रीCare uniform colour rhythm fix (CSS-only).
   Same rhythm on all 6 non-doctor pages: soft-pink intro band →
   white content → soft-green Book card. Keeps section--tint pink and
   section--muted green where they already exist; doesn't touch info
   cards, hero/Location CTAs, or the doctor page.
   ========================================================= */

/* A. Uniform soft-pink intro band.
   .hero already gets this (index). Pages that instead open with a plain
   first <section> get the identical band. index's first child is .hero
   (not .section) so it is not double-matched; doctor opens with .dr-hero
   and is excluded anyway. */
.theme-stricare:not(.page-doctor) main > .section:first-child {
  background: linear-gradient(180deg, var(--sc-pink-soft) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--brand-tint-2);
}

/* B. Uniform soft-green Book card on every page.
   .card:has(.disclaimer) = Book card only (1 disclaimer/page, verified;
   contact's 3 info cards have none). Teal top accent keeps the card
   distinct even on about, where it sits inside a section--muted band. */
.theme-stricare:not(.page-doctor) .card:has(.disclaimer) {
  background: var(--sc-green-soft);
  border-top: 3px solid var(--sc-teal);
}
/* Doctor page: same soft-green consultation card treatment as the other pages */
.page-doctor .card:has(.disclaimer) { background: var(--sc-green-soft); border-top: 3px solid var(--sc-teal); }

/* =========================================================
   18. Treatments page — accordion / tabbed single-treatment display
   Scoped to .page-treatments. ONE DOM (.tx-accordion > .tx-item,
   each = one .tx-tab + its .tx-panel) drives two layouts:
     • Desktop (>=721px, .tx-js): premium 8-tab strap in grid row 1,
       active panel shown full-width below in grid row 2.
     • Mobile (<=720px, .tx-js): vertical accordion; the active
       .tx-item floats to top (order:-1), its panel opens beneath.
   Progressive enhancement: without .tx-js every tab+panel stays
   visible & crawlable (base flex-column stack, all widths).
   The public hash id lives on the .tx-tab, so native fragment
   jumps land in the strap (scroll-margin-top clears the sticky
   header) — no scroll hacks needed.
   Media is a CSS-only decorative placeholder (no <img> yet).
   Palette uses only shared --sc-* / --brand tokens.
   ========================================================= */

/* Section wrapper */
.page-treatments .tx-tabbed { padding-block: var(--sp-8); }

/* Accordion container — mobile-first vertical stack */
.page-treatments .tx-accordion { display: flex; flex-direction: column; gap: var(--sp-2); }
.page-treatments .tx-item { display: flex; flex-direction: column; }

/* Tabs — full-width CTA-style buttons (mobile) / strap segments (desktop).
   Public-hash anchor lives here; clear the sticky header on native jump. */
.page-treatments .tx-tab { scroll-margin-top: calc(var(--sticky-h) + var(--sp-4)); display: flex; align-items: center; justify-content: center; text-align: center; white-space: normal; width: 100%; background: #fff; color: var(--sc-navy); border: 1px solid var(--brand-tint-2); border-radius: 12px; padding: 11px 14px; font-size: .9rem; font-weight: 600; line-height: 1.18; transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease; }
.page-treatments .tx-tab:hover { background: var(--sc-pink-soft); border-color: var(--brand); color: var(--sc-navy); text-decoration: none; }
.page-treatments .tx-item.is-active .tx-tab { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 6px 16px rgba(188, 31, 112, .22); }

/* Panel base — premium detail card */
.page-treatments .tx-panel { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--sp-6); }
.page-treatments .tx-panel__content { display: flex; flex-direction: column; min-width: 0; }

/* Visibility — progressive enhancement (no .tx-js = all visible) */
.page-treatments.tx-js .tx-panel { display: none; }
.page-treatments.tx-js .tx-item.is-active .tx-panel { display: block; margin-top: var(--sp-2); }
.page-treatments.tx-js .tx-item.is-active { order: -1; } /* active floats to top (mobile stack) */

/* Desktop (>=721px, JS on): 8-tab strap in one row + active panel below */
@media (min-width: 721px) {
  .page-treatments.tx-js .tx-accordion { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); column-gap: 4px; row-gap: var(--sp-6); align-items: stretch; padding: 5px; }
  .page-treatments.tx-js .tx-accordion::before { content: ""; grid-row: 1; grid-column: 1 / -1; margin: -5px; z-index: 0; background: var(--sc-pink-soft); border: 1px solid var(--brand-tint-2); border-radius: 14px; box-shadow: var(--shadow-sm); }
  .page-treatments.tx-js .tx-item { display: contents; }
  .page-treatments.tx-js .tx-tab { grid-row: 1; position: relative; z-index: 1; width: 100%; min-width: 0; background: transparent; border-color: transparent; border-radius: 10px; padding: 9px 10px; font-size: .78rem; box-shadow: none; }
  .page-treatments.tx-js .tx-tab:hover { background: #fff; color: var(--brand); border-color: var(--brand-tint-2); }
  .page-treatments.tx-js .tx-item.is-active .tx-tab { background: var(--brand); color: #fff; border-color: var(--brand); }
  .page-treatments.tx-js .tx-panel { grid-row: 2; grid-column: 1 / -1; min-width: 0; margin-inline: -5px; }
  .page-treatments.tx-js .tx-item.is-active .tx-panel { grid-column: 1 / -1; grid-row: 2; min-width: 0; display: grid; grid-template-columns: 5fr 7fr; gap: var(--sp-6); align-items: stretch; margin-top: 0; }
  /* Pin each tab to its own row-1 column so the strap-bed ::before (which occupies
     row 1) cannot push tabs into implicit columns and collapse the panel width. */
  .page-treatments.tx-js .tx-item:nth-child(1) .tx-tab { grid-column: 1; }
  .page-treatments.tx-js .tx-item:nth-child(2) .tx-tab { grid-column: 2; }
  .page-treatments.tx-js .tx-item:nth-child(3) .tx-tab { grid-column: 3; }
  .page-treatments.tx-js .tx-item:nth-child(4) .tx-tab { grid-column: 4; }
  .page-treatments.tx-js .tx-item:nth-child(5) .tx-tab { grid-column: 5; }
  .page-treatments.tx-js .tx-item:nth-child(6) .tx-tab { grid-column: 6; }
  .page-treatments.tx-js .tx-item:nth-child(7) .tx-tab { grid-column: 7; }
  .page-treatments.tx-js .tx-item:nth-child(8) .tx-tab { grid-column: 8; }
}

/* CSS-only decorative media placeholder (future-ready for a real <img>) */
.page-treatments .tx-panel__media { position: relative; overflow: hidden; min-height: 240px; border-radius: var(--radius); border: 1px solid var(--brand-tint-2); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--sc-pink-soft) 0%, #ffffff 48%, var(--sc-green-soft) 100%); }
.page-treatments .tx-panel__media::before { content: ""; position: absolute; top: -46px; right: -34px; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(188, 31, 112, .16), transparent 70%); }
.page-treatments .tx-panel__media::after { content: ""; position: absolute; bottom: -34px; left: -22px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(13, 48, 64, .12), transparent 70%); }
.page-treatments .tx-panel__mark { position: relative; z-index: 1; font-weight: 800; font-size: 1.5rem; letter-spacing: .3px; color: rgba(140, 20, 80, .30); }

/* Content */
.page-treatments .tx-panel__eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 800; color: var(--brand); }
.page-treatments .tx-panel__title { color: var(--sc-navy); margin: var(--sp-2) 0 var(--sp-3); font-size: clamp(1.3rem, 2.6vw, 1.6rem); }
.page-treatments .tx-panel__intro { color: var(--ink-soft); margin: 0; }

/* We Help With / Our Approach sub-labels */
.page-treatments .tx-subhead { display: inline-block; text-transform: uppercase; letter-spacing: .06em; font-size: .74rem; font-weight: 800; color: var(--brand); margin: var(--sp-5) 0 var(--sp-3); }
.page-treatments .tx-subhead::after { content: ""; display: block; width: 34px; height: 2px; background: var(--brand); border-radius: 2px; margin-top: 6px; }

/* We Help With — 2-col teal-dot list */
.page-treatments .tx-help__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px var(--sp-4); }
.page-treatments .tx-help__list li { position: relative; padding-left: 20px; font-size: .9rem; color: var(--ink); }
.page-treatments .tx-help__list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

/* Our Approach */
.page-treatments .tx-approach p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* Footer prompt (soft-green) + CTAs pinned to content bottom */
.page-treatments .tx-panel__foot { margin-top: auto; padding-top: var(--sp-5); }
.page-treatments .tx-panel__prompt { background: var(--sc-green-soft); border: 1px solid rgba(45, 125, 123, .15); border-radius: var(--radius); padding: var(--sp-3) var(--sp-4); color: var(--sc-navy); font-weight: 600; font-size: .92rem; margin: 0 0 var(--sp-4); }
.page-treatments .tx-panel__ctas { gap: var(--sp-3); }

/* Mobile tweaks */
@media (max-width: 720px) {
  .page-treatments .tx-panel__media { min-height: 200px; margin-bottom: var(--sp-4); }
}
@media (max-width: 420px) {
  .page-treatments .tx-help__list { grid-template-columns: 1fr; }
  .page-treatments .tx-panel__ctas .btn { flex: 1 1 auto; justify-content: center; }
}

/* ----------------------------------------------------------------------
   19. Premium entrance/scroll animations (स्त्रीCare pages only)
   AOS-like fade-up reveal (600ms ease-in-out, once) driven by an
   IntersectionObserver in main.js (adds .reveal to off-screen blocks,
   then .is-revealed). Hero supporting elements get a soft staggered
   fade-right on load. LCP-safe: <h1> and hero media are never hidden
   or animated. CLS-safe: opacity + transform only. Disabled under
   prefers-reduced-motion (JS guard + the global reduce rule above).
   No-JS: nothing is hidden — JS is the only thing that adds .reveal.
   ---------------------------------------------------------------------- */
.theme-stricare .reveal { opacity: 0; transform: translateY(18px); }
.theme-stricare .reveal.is-revealed { opacity: 1; transform: none;
  transition: opacity .6s ease-in-out, transform .6s ease-in-out; }

@keyframes sc-hero-in { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: none; } }
.theme-stricare main > :first-child .eyebrow,
.theme-stricare main > :first-child .dr-hero__role,
.theme-stricare main > :first-child .lead,
.theme-stricare main > :first-child .dr-chips,
.theme-stricare main > :first-child .rating,
.theme-stricare main > :first-child .cta-row { animation: sc-hero-in .6s ease-in-out both; }
.theme-stricare main > :first-child .eyebrow,
.theme-stricare main > :first-child .dr-hero__role { animation-delay: .06s; }
.theme-stricare main > :first-child .lead { animation-delay: .18s; }
.theme-stricare main > :first-child .dr-chips,
.theme-stricare main > :first-child .rating { animation-delay: .30s; }
.theme-stricare main > :first-child .cta-row { animation-delay: .42s; }

/* Subtle card hover lift (स्त्रीCare) — transform only, no shadow jump */
.theme-stricare .card { transition: transform .3s ease; }
.theme-stricare .card:hover { transform: translateY(-2px); }
/* Homepage treatment tiles (.sc-help__card) — same subtle lift as .card. */
.theme-stricare .sc-help__card { transition: transform .3s ease; }
.theme-stricare .sc-help__card:hover { transform: translateY(-2px); }

/* Cureवेदा + gateway reuse the SAME restrained system, but only once main.js
   has confirmed the page is motion-eligible (adds .site-motion-enabled to <body>).
   Requiring that class keeps the fade off Cureवेदा Ads landing pages entirely.
   Identical 18px upward fade / 600ms ease-in-out / once — no separate style; the
   Cureवेदा green/off-white palette, spacing and type are untouched. */
.site-motion-enabled.theme-cureveda .reveal,
.site-motion-enabled.theme-gateway .reveal { opacity: 0; transform: translateY(18px); }
.site-motion-enabled.theme-cureveda .reveal.is-revealed,
.site-motion-enabled.theme-gateway .reveal.is-revealed { opacity: 1; transform: none;
  transition: opacity .6s ease-in-out, transform .6s ease-in-out; }

/* Cureवेदा hero supporting text — same soft staggered fade-in as स्त्रीCare.
   H1, doctor image and hero media are never animated (LCP-safe). */
.site-motion-enabled.theme-cureveda main > :first-child .eyebrow,
.site-motion-enabled.theme-cureveda main > :first-child .cvd-hero__role,
.site-motion-enabled.theme-cureveda main > :first-child .lead,
.site-motion-enabled.theme-cureveda main > :first-child .cvd-chips,
.site-motion-enabled.theme-cureveda main > :first-child .rating,
.site-motion-enabled.theme-cureveda main > :first-child .cta-row { animation: sc-hero-in .6s ease-in-out both; }
.site-motion-enabled.theme-cureveda main > :first-child .eyebrow,
.site-motion-enabled.theme-cureveda main > :first-child .cvd-hero__role { animation-delay: .06s; }
.site-motion-enabled.theme-cureveda main > :first-child .lead { animation-delay: .18s; }
.site-motion-enabled.theme-cureveda main > :first-child .cvd-chips,
.site-motion-enabled.theme-cureveda main > :first-child .rating { animation-delay: .30s; }
.site-motion-enabled.theme-cureveda main > :first-child .cta-row { animation-delay: .42s; }

/* Gateway hero supporting text — eyebrow / lead / CTA only. The clinic logo,
   H1 and the brand-selection cards stay static (LCP + immediate choice). */
.site-motion-enabled.theme-gateway main > :first-child .eyebrow,
.site-motion-enabled.theme-gateway main > :first-child .lead,
.site-motion-enabled.theme-gateway main > :first-child .cta-row { animation: sc-hero-in .6s ease-in-out both; }
.site-motion-enabled.theme-gateway main > :first-child .eyebrow { animation-delay: .06s; }
.site-motion-enabled.theme-gateway main > :first-child .lead { animation-delay: .18s; }
.site-motion-enabled.theme-gateway main > :first-child .cta-row { animation-delay: .30s; }

/* Subtle card hover lift for Cureवेदा + gateway — transform only, matches स्त्रीCare. */
.site-motion-enabled.theme-cureveda .card,
.site-motion-enabled.theme-gateway .card { transition: transform .3s ease; }
.site-motion-enabled.theme-cureveda .card:hover,
.site-motion-enabled.theme-gateway .card:hover { transform: translateY(-2px); }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #111111;
  border: 2px solid currentColor;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.15s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

/* Landing-page trust strip: collapse the 2-column grid to a single column on very
   narrow phones so the icon + long trust titles never cause horizontal overflow.
   `body` raises specificity above the per-LP inline `.lp-trust__grid` rule (P1-04). */
@media (max-width: 400px) {
  body .lp-trust__grid {
    grid-template-columns: 1fr;
  }
}

/* Landing-page sticky header: keep the combined logo + Call button on one row on
   narrow phones (≤420px) so the phone number never wraps and nothing overlaps. The
   logo shrinks responsively (still uncropped); the Call button stays fixed-size.
   `body` raises specificity above the per-LP inline `.lp-header*` rules. */
@media (max-width: 420px) {
  body .lp-header__inner {
    gap: 8px;
    padding-inline: 10px;
  }

  body .lp-header .brand-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  body .lp-header .brand-logo img {
    display: block;
    width: 100%;
    max-width: 152px;
    height: auto;
  }

  body .lp-header__call {
    flex: 0 0 auto;
    gap: 6px;
    padding: 8px 10px;
  }

  body .lp-header__call .icon {
    width: 16px;
    height: 16px;
  }

  body .lp-header__calltxt b {
    white-space: nowrap;
    font-size: 0.84rem;
  }
}

/* Landing-page hero “same-day appointment” callout (reusable; used on स्त्रीCare LPs) */
.lp-availability { display: flex; align-items: center; gap: var(--sp-3); margin: var(--sp-4) 0; padding: var(--sp-3) var(--sp-4); background: var(--brand-tint); border: 1px solid var(--brand-tint-2); border-radius: var(--radius); }
.lp-availability__icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--brand-tint-2); display: grid; place-items: center; color: var(--brand); }
.lp-availability__icon svg { width: 22px; height: 22px; display: block; }
.lp-availability__content { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lp-availability__title { color: var(--brand-dark); font-weight: 700; font-size: .98rem; line-height: 1.25; }
.lp-availability__text { color: var(--ink-soft); font-size: .85rem; line-height: 1.4; }

/* Landing-page compact hero local-intent card (reusable) */
.lp-nearby { display: flex; align-items: center; gap: var(--sp-3); margin: var(--sp-4) 0; padding: var(--sp-3) var(--sp-4); background: var(--brand-tint); border: 1px solid var(--brand-tint-2); border-radius: var(--radius); }
.lp-nearby__icon { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--brand-tint-2); color: var(--brand); }
.lp-nearby__icon svg { width: 19px; height: 19px; }
.lp-nearby__content { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.lp-nearby__title { color: var(--brand-dark); font-weight: 600; font-size: .95rem; line-height: 1.35; }
.lp-nearby__text { color: var(--ink-soft); font-size: .82rem; line-height: 1.4; }
