/* ================= Blossom design tokens ================= */
:root{
  --blossom-rose:#C2185B;
  --blossom-rose-2:#D3135A;
  --deep-plum:#7A1340;
  --saffron-warm:#F4A261;
  --sage-green:#3F8D6E;
  --charcoal-ink:#172235;
  --slate-mist:#667085;
  --cream-bone:#FAF7F2;
  --soft-rose:#FFF3F7;
  --pure-white:#FFFFFF;
  --border-default:#E9DDE3;
  --border-light:#F1E3E8;
  --rose-10:rgba(194,24,91,.10);
  --rose-20:rgba(194,24,91,.20);
  --shadow-sm:0 2px 8px rgba(23,34,53,.05);
  --shadow-md:0 10px 30px rgba(23,34,53,.08);
  --shadow-lg:0 18px 48px rgba(23,34,53,.10);
  --radius-md:10px;
  --radius-lg:18px;
  --radius-xl:28px;
  --radius-pill:999px;
  --font-display:'Fraunces',Georgia,serif;
  --font-body:'Inter',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-hindi:'Noto Sans Devanagari',sans-serif;
  --max:1200px;
  --t-base:200ms ease-in-out;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--charcoal-ink);
  background:var(--pure-white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 24px}

/* ================= Buttons ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:0 22px;
  border-radius:10px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:all var(--t-base);
  white-space:nowrap;
}
.btn i,.btn svg{width:18px;height:18px}
.btn-lg{min-height:50px;padding:0 24px;font-size:15px}
.btn-primary{background:var(--blossom-rose);color:#fff;box-shadow:0 8px 22px rgba(194,24,91,.20)}
.btn-primary:hover{background:var(--deep-plum);transform:translateY(-1px)}
.btn-secondary{background:#fff;color:var(--blossom-rose);border-color:var(--blossom-rose)}
.btn-secondary:hover{background:var(--soft-rose)}
.btn-white{background:#fff;color:var(--blossom-rose);border-color:#fff}
.btn-white:hover{background:#FFF7FA;transform:translateY(-1px)}
.btn-ghost,.btn-ghostw{background:transparent;border:1px solid currentColor}

/* ================= Navigation ================= */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: nowrap;
}

/* Logo + clinic name */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  flex: 0 0 auto;
  min-width: 360px;
}

.brand-logo {
  display: block;
  width: 66px;
  height: 66px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--blossom-rose);
  letter-spacing: -0.01em;
}

.brand-subtitle {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-mist);
}

/* Main navigation */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 0 0 auto;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-links a,
.nav-dropdown-toggle {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-mist);
  transition: color var(--t-base);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-toggle:hover {
  color: var(--charcoal-ink);
}

.nav-links a.active {
  border-bottom: 2px solid var(--blossom-rose);
  padding-bottom: 4px;
}

/* Right side CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal-ink);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-phone i,
.nav-phone svg {
  width: 18px;
  height: 18px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--charcoal-ink);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.nav-dropdown > a:hover,
.nav-dropdown-toggle:hover {
  color: var(--charcoal-ink);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(780px, 90vw);
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-base);
}

/* Keeps dropdown open on hover and keyboard focus */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu h4 {
  font-size: 13px;
  color: var(--blossom-rose);
  margin-bottom: 10px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 7px 0;
  color: var(--slate-mist);
  font-size: 14px;
  font-weight: 600;
}

.nav-dropdown-menu a:hover {
  color: var(--blossom-rose);
}

/* Header responsive fixes */
@media (max-width: 1200px) {
  .brand {
    min-width: 300px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 25px;
  }

  .brand-subtitle {
    font-size: 10.5px;
    letter-spacing: 0.12em;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav-inner {
    height: 76px;
  }

  .brand {
    min-width: auto;
    gap: 9px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-subtitle {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    height: 70px;
    gap: 12px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-subtitle {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
}
/* ================= Hero ================= */
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(194,24,91,.08), transparent 32%),
    linear-gradient(105deg,#fff 0%,#fff8fb 58%,#faeaf0 100%);
  padding:72px 0 100px;
}
.hero-grid{display:grid;grid-template-columns:1.04fr .96fr;gap:58px;align-items:center}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--rose-10);
  color:var(--blossom-rose);
  font-size:13px;
  font-weight:800;
  padding:6px 14px;
  border-radius:var(--radius-pill);
  margin-bottom:18px;
}
.eyebrow i,.eyebrow svg{width:15px;height:15px}
.hero h1{
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(42px,5vw,66px);
  line-height:1.06;
  letter-spacing:-.02em;
  color:var(--charcoal-ink);
  margin-bottom:22px;
  max-width:760px;
}
.hero h1 .accent{color:var(--blossom-rose)}
.hero .hero-tagline-hindi{
  font-family:var(--font-hindi);
  font-size:clamp(20px,2.6vw,28px);
  color:var(--deep-plum);
  font-weight:600;
  line-height:1.3;
  margin-top:6px;
  margin-bottom:24px;
}
.hero p.lede{
  font-size:18px;
  color:#405066;
  max-width:620px;
  margin-bottom:16px;
}
.doctor-line{
  font-size:16px;
  color:#405066;
  max-width:620px;
  margin-bottom:26px;
}
.doctor-line strong{color:var(--blossom-rose)}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.hero-visual{position:relative}
.hero-photo{
  position:relative;
  width:min(520px,100%);
  margin-left:auto;
  aspect-ratio:1.05/1;
  border-radius:46% 46% 8% 46%;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-lg);
}
.hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.55);
  pointer-events:none;
}
.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 5%;
  filter:saturate(1.03) contrast(1.02);
}

/* ================= Compact trust strip ================= */
.trust-strip-section{
  position:relative;
  z-index:10;
  margin-top:-44px;
}
.trust-strip{
  width:100%;
  min-height:88px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  background:#fff;
  border:1px solid var(--border-default);
  border-radius:14px;
  box-shadow:0 8px 24px rgba(28,22,34,.06),0 2px 6px rgba(28,22,34,.03);
  padding:14px 0;
}
.trust-item{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  padding:4px 28px;
}
.trust-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:10px;
  right:0;
  bottom:10px;
  width:1px;
  background:var(--border-default);
}
.trust-icon{
  width:43px;
  height:43px;
  flex:0 0 43px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--soft-rose);
  color:var(--blossom-rose);
}
.trust-icon i,.trust-icon svg{width:22px;height:22px;stroke-width:1.8}
.trust-content{display:flex;flex-direction:column;justify-content:center;min-width:0;line-height:1.25}
.trust-content strong{font-size:15px;font-weight:800;color:var(--charcoal-ink)}
.trust-content span{font-size:12px;font-weight:600;color:var(--slate-mist);margin-top:2px}

/* ================= Sections ================= */
.section{padding:82px 0}
.section-white{background:var(--pure-white)}
.section-cream{background:var(--cream-bone)}
.sec-head{margin-bottom:38px}
.sec-head.center{text-align:center;margin-left:auto;margin-right:auto}
.sec-head h2,
.concern-box h2,
.process-box h2,
.loc-info h2,
.doctor-copy h2,
.cta-banner h2{
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(30px,3.6vw,48px);
  line-height:1.12;
  letter-spacing:-.015em;
  color:var(--charcoal-ink);
  margin-bottom:14px;
}
.sec-head p,
.concern-box p,
.process-box p,
.loc-info p,
.doctor-copy p{
  font-size:17px;
  color:var(--slate-mist);
}

/* ================= Patient journey cards ================= */
/* Make Life-stage heading full width */
.life-stage-section .sec-head {
  max-width: 100%;
}

.life-stage-section .sec-head h2,
.life-stage-section .sec-head p {
  max-width: 100%;
}
.stage-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.stage-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border-default);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform var(--t-base),box-shadow var(--t-base),border-color var(--t-base);
}
.stage-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--rose-20)}
.stage-photo{position:relative;line-height:0}
.stage-photo img{width:100%;aspect-ratio:3/2;object-fit:cover;filter:saturate(1.03)}
.stage-ic{
  position:absolute;
  left:16px;
  bottom:-21px;
  width:48px;
  height:48px;
  border-radius:13px;
  background:var(--blossom-rose);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-md);
}
.stage-ic i,.stage-ic svg{width:22px;height:22px}
.stage-body{padding:34px 22px 24px;display:flex;flex-direction:column;flex:1}
.stage-body h3{font-size:21px;font-weight:800;color:var(--charcoal-ink);margin-bottom:9px}
.stage-body p{font-size:14.5px;color:var(--slate-mist);line-height:1.55;flex:1;margin-bottom:16px}
.stage-link,.svc-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--blossom-rose);
  font-size:14px;
  font-weight:800;
  transition:gap var(--t-base);
}
.stage-link i,.stage-link svg,.svc-link i,.svc-link svg{width:16px;height:16px}
.stage-card:hover .stage-link,.svc-card:hover .svc-link{gap:10px}

/* ================= Compact services directory ================= */
.services-layout{display:grid;grid-template-columns:.78fr 1.55fr;gap:48px;align-items:start}
.services-head{position:sticky;top:104px;margin-bottom:0}
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.svc-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border-default);
  border-radius:16px;
  box-shadow:var(--shadow-sm);
  transition:transform var(--t-base),box-shadow var(--t-base),border-color var(--t-base);
}
.svc-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--rose-20)}
.compact-card{min-height:206px;padding:20px}
.svc-ic{
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--soft-rose);
  color:var(--blossom-rose);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}
.svc-ic i,.svc-ic svg{width:24px;height:24px}
.svc-body{display:flex;flex-direction:column;flex:1}
.svc-card h3{font-size:16px;font-weight:800;color:var(--charcoal-ink);margin-bottom:8px}
.svc-card p{font-size:13px;color:var(--slate-mist);line-height:1.45;flex:1;margin-bottom:12px}

/* ================= Doctor section ================= */
.doctor-band{
  background:linear-gradient(100deg,#fff 0%,#fff 54%,#fff4f7 100%);
  border-top:1px solid var(--border-light);
  border-bottom:1px solid var(--border-light);
}
.doctor-grid{
  display:grid;
  grid-template-columns:.78fr 1.25fr .58fr;
  gap:40px;
  align-items:center;
  padding:68px 24px;
}
.doctor-photo{
  align-self:stretch;
  min-height:420px;
  border-radius:0 90px 0 0;
  overflow:hidden;
  background:linear-gradient(145deg,#ffe5ef,#fff);
}
.doctor-photo img{width:100%;height:100%;object-fit:cover;object-position:center 22%}
.doctor-copy h3{
  font-family:var(--font-display);
  color:var(--blossom-rose);
  font-size:26px;
  line-height:1.2;
  margin:26px 0 6px;
}
.doctor-qualification{font-weight:700;color:var(--charcoal-ink)!important}
.doctor-roles{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:24px}
.doctor-roles span{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:12.5px;
  color:var(--slate-mist);
  font-weight:700;
}
.doctor-roles i,.doctor-roles svg{width:20px;height:20px;color:var(--blossom-rose)}
.doctor-card{
  background:var(--soft-rose);
  border:1px solid var(--border-default);
  border-radius:20px;
  padding:24px;
}
.doctor-card div{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  color:var(--charcoal-ink);
  font-size:14px;
  font-weight:700;
}
.doctor-card i,.doctor-card svg{width:18px;height:18px;color:var(--blossom-rose)}
.doctor-card .btn{width:100%;margin-top:16px}

/* ================= Benefits ================= */
.small-section-label{font-size:14px;color:var(--slate-mist);margin-bottom:22px}
.benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-top:1px solid var(--border-default);border-bottom:1px solid var(--border-default)}
.benefit-card{padding:26px 24px;border-right:1px solid var(--border-default)}
.benefit-card:last-child{border-right:0}
.benefit-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--soft-rose);
  color:var(--blossom-rose);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}
.benefit-icon i,.benefit-icon svg{width:21px;height:21px}
.benefit-card h3{font-size:17px;font-weight:800;margin-bottom:8px}
.benefit-card p{font-size:13.5px;color:var(--slate-mist);line-height:1.55}

/* ================= Concerns + process ================= */
.concern-section{padding-bottom:58px}
.process-section{padding-top:58px}
.concern-box,
.process-box{max-width:980px;margin:0 auto}
.concern-box h2,
.process-box h2{max-width:720px}
.concern-box>p{max-width:720px;font-size:16px;color:var(--slate-mist);line-height:1.65;margin-top:12px}
.concern-list{display:grid;grid-template-columns:repeat(3,1fr);gap:12px 22px;margin:28px 0 30px}
.concern-section .concern-box h2 {
  max-width: 100%;
  font-size: clamp(38px, 4.4vw, 64px);
}

@media (min-width: 1000px) {
  .concern-section .concern-box h2 {
    white-space: nowrap;
  }
}
.concern-list span{display:flex;align-items:flex-start;gap:8px;font-size:14px;color:var(--slate-mist);font-weight:600}
.concern-list i,.concern-list svg{width:16px;height:16px;color:var(--blossom-rose);margin-top:3px;flex:0 0 auto}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:30px}
.process-step{
  position:relative;
  background:#fff;
  border:1px solid var(--border-default);
  border-radius:18px;
  padding:20px 18px;
  min-height:220px;
}
.step-number{
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--blossom-rose);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:13px;
  margin-bottom:18px;
}
.process-step h3{font-size:15px;font-weight:800;line-height:1.25;margin-bottom:9px}
.process-step p{font-size:12.5px;color:var(--slate-mist);line-height:1.5}
.process-section .process-box h2 {
  max-width: 100%;
}

@media (min-width: 1000px) {
  .process-section .process-box h2 {
    white-space: nowrap;
  }
}
/* ================= Patient stories ================= */
/* Make Patient Experiences heading full width */
.patient-stories .sec-head {
  max-width: 100%;
}

.patient-stories .sec-head h2,
.patient-stories .sec-head p {
  max-width: 100%;
}
.story-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.story{
  background:#fff;
  border:1px solid var(--border-default);
  border-radius:18px;
  padding:28px 26px;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
}
.story .quote{font-family:var(--font-display);font-size:52px;line-height:.5;color:var(--rose-20);height:26px}
.story p{font-size:15px;color:var(--charcoal-ink);line-height:1.6;flex:1;margin-bottom:22px}
.story .who{display:flex;align-items:center;gap:12px}
.story .av{width:44px;height:44px;border-radius:50%;background:var(--blossom-rose);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:16px;flex-shrink:0}
.story .who b{display:block;font-size:14px;color:var(--charcoal-ink);font-weight:800}
.story .who span{font-size:12.5px;color:var(--slate-mist)}

/* ================= FAQ ================= */
.faq-wrap{max-width:860px;margin:0 auto}
.faq{background:#fff;border:1px solid var(--border-default);border-radius:12px;margin-bottom:14px;overflow:hidden}
.faq summary{list-style:none;cursor:pointer;padding:22px 24px;font-weight:800;font-size:17px;color:var(--charcoal-ink);display:flex;justify-content:space-between;align-items:center;gap:16px}
.faq summary::-webkit-details-marker{display:none}
.faq summary .chev{color:var(--blossom-rose);flex-shrink:0;transition:transform var(--t-base);width:20px;height:20px}
.faq[open] summary .chev{transform:rotate(180deg)}
.faq .ans{padding:0 24px 22px;font-size:15px;color:var(--slate-mist);line-height:1.65;width:100%;max-width:none}

/* ================= Location ================= */
.loc-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:48px;align-items:center}
.loc-info h2{margin-bottom:16px}
.loc-info > p{margin-bottom:28px}
.loc-row{display:flex;gap:14px;margin-bottom:20px}
.loc-row .ic{width:42px;height:42px;flex-shrink:0;border-radius:12px;background:var(--soft-rose);color:var(--blossom-rose);display:flex;align-items:center;justify-content:center}
.loc-row .ic i,.loc-row .ic svg{width:21px;height:21px}
.loc-row b{display:block;font-size:15.5px;color:var(--charcoal-ink);margin-bottom:3px}
.loc-row span{font-size:14px;color:var(--slate-mist);line-height:1.5}
.loc-cta{display:flex;gap:14px;flex-wrap:wrap;margin-top:8px}
.loc-map iframe{width:100%;height:400px;border:0;border-radius:18px;box-shadow:var(--shadow-md);display:block}

/* ================= Final CTA ================= */
.cta-banner{
  background:linear-gradient(120deg,var(--deep-plum),var(--blossom-rose));
  color:#fff;
  padding:64px 0;
}
.cta-grid{display:grid;grid-template-columns:1.35fr .8fr;gap:44px;align-items:center}
.cta-banner .eyebrow{background:rgba(255,255,255,.14);color:#fff}
.cta-banner h2{color:#fff;margin-bottom:14px}
.cta-banner p{font-size:17px;color:rgba(255,255,255,.9);max-width:700px}
.cta-row{display:flex;gap:14px;justify-content:flex-end;flex-wrap:wrap}

/* ================= Footer ================= */
.footer{background:var(--deep-plum);color:rgba(255,255,255,.8);padding:60px 0 26px}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;margin-bottom:38px}
.footer .word{font-family:var(--font-display);font-weight:800;font-size:24px;color:#fff;line-height:1.1}
.footer .sub{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-bottom:16px}
.footer p{font-size:14px;line-height:1.7;color:rgba(255,255,255,.75);max-width:32ch}
.footer h4{font-size:13px;letter-spacing:.05em;text-transform:uppercase;color:#fff;margin-bottom:16px;font-weight:800}
.footer ul{list-style:none}
.footer ul li{margin-bottom:10px}
.footer ul a{font-size:14px;color:rgba(255,255,255,.75);transition:color var(--t-base)}
.footer ul a:hover{color:#fff}
.footer-soc{display:flex;gap:14px;margin-top:18px}
.footer-soc a{width:44px;height:44px;border-radius:10px;background:rgba(255,255,255,.08);display:inline-flex;align-items:center;justify-content:center;color:#fff;transition:background var(--t-base),transform .18s}
.footer-soc a:hover{background:var(--blossom-rose);transform:translateY(-2px)}
.footer-soc i,.footer-soc svg{width:20px;height:20px;color:currentColor;stroke:currentColor;fill:currentColor}
.footer-bottom{border-top:1px solid rgba(255,255,255,.14);padding-top:22px;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;align-items:center}
.footer-bottom p{font-size:12.5px;color:rgba(255,255,255,.6);max-width:none}
.footer-disclaimer{width:100%;box-sizing:border-box;padding:10px 0;margin:0;background:var(--deep-plum)}
.footer-disclaimer .container{font-size:12.5px;color:rgba(255,255,255,.6);font-weight:400;line-height:1.5}

/* floating whatsapp (mobile) */
.fab{position:fixed;right:18px;bottom:18px;z-index:60;background:#25D366;color:#fff;width:56px;height:56px;border-radius:50%;display:none;align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(0,0,0,.25)}

/* ================= Blog listing ================= */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.blog-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--border-default);border-radius:18px;overflow:hidden;box-shadow:var(--shadow-sm);transition:transform var(--t-base),box-shadow var(--t-base),border-color var(--t-base)}
.blog-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--rose-20)}
.blog-card .bimg{width:100%;height:280px;object-fit:contain; background:#f8f8f8;display:block}
.blog-card .bbody{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1}
.pill-tag{align-self:flex-start;background:var(--rose-10);color:var(--blossom-rose);font-size:12px;font-weight:800;padding:4px 12px;border-radius:var(--radius-pill);margin-bottom:12px}
.blog-card h3{font-weight:800;font-size:19px;color:var(--charcoal-ink);margin-bottom:8px;line-height:1.3}
.blog-card .excerpt{font-size:14px;color:var(--slate-mist);line-height:1.5;flex:1;margin-bottom:14px;display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden}
.blog-card .bmeta{font-size:12.5px;color:var(--slate-mist)}

/* ================= Blog post ================= */
.post{padding:56px 0 72px}
.post-head{max-width:760px;margin:0 auto 28px;text-align:center}
.post-head .pill-tag{display:inline-block;align-self:auto;margin:0 auto 16px}
.post-head h1{font-family:var(--font-display);font-weight:800;font-size:44px;line-height:1.12;letter-spacing:-.01em;color:var(--charcoal-ink);margin-bottom:14px}
.post-head .pmeta{font-size:14px;color:var(--slate-mist)}
.post-cover{max-width:960px;margin:0 auto 40px}
.post-cover img{width:100%;height:auto;max-height:600px;object-fit:contain;border-radius:18px;box-shadow:var(--shadow-md);display:block;margin:0 auto}
.prose{max-width:720px;margin:0 auto;font-size:18px;line-height:1.7;color:var(--charcoal-ink)}
.prose h2{font-weight:800;font-size:28px;margin:36px 0 14px;padding-left:14px;border-left:4px solid var(--blossom-rose);line-height:1.2}
.prose h3{font-weight:800;font-size:21px;margin:28px 0 10px}
.prose p{margin-bottom:18px}
.prose ul,.prose ol{margin:0 0 18px 22px}
.prose li{margin-bottom:8px}
.prose a{color:var(--blossom-rose);text-decoration:underline}
.prose blockquote{border-left:3px solid var(--blossom-rose);padding-left:18px;margin:26px 0;font-family:var(--font-display);font-style:italic;font-size:21px;line-height:1.4;color:var(--deep-plum)}
.post-disclaimer{max-width:720px;margin:38px auto 0;font-size:13px;color:var(--slate-mist);border-top:1px solid var(--border-default);padding-top:18px;line-height:1.6}

/* ================= Responsive ================= */
@media(max-width:1020px){
  .services-layout,
  .doctor-grid,
  .loc-grid,
  .cta-grid{grid-template-columns:1fr}
  .services-head{position:static}
  .doctor-grid{padding:58px 24px}
  .doctor-photo{max-width:420px;min-height:460px}
  .doctor-card{max-width:520px}
  .cta-row{justify-content:flex-start}
}

@media(max-width:900px){
  .hero{padding:52px 0 80px}
  .hero-grid{grid-template-columns:1fr;gap:34px}
  .hero-photo{margin:0;max-width:440px;border-radius:30px}
  .stage-grid,.svc-grid{grid-template-columns:repeat(2,1fr)}
  .trust-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
  .trust-item{padding:14px 24px}
  .trust-item:nth-child(2)::after{display:none}
  .trust-item:nth-child(-n+2){border-bottom:1px solid var(--border-default)}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
  .benefit-card:nth-child(2){border-right:0}
  .benefit-card:nth-child(-n+2){border-bottom:1px solid var(--border-default)}
  .concern-list{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .story-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .post-head h1{font-size:32px}
  .prose{font-size:17px}
  .loc-map iframe{height:320px}
  .nav-links,.nav-phone{display:none}

  .brand-logo{height:46px;max-width:160px}
  .nav-dropdown-menu{position:static;width:100%;transform:none;opacity:1;visibility:visible;pointer-events:auto;display:grid;grid-template-columns:1fr;box-shadow:none;border:0;padding:12px 0 0;background:transparent}
  .hamburger{display:block}
  .fab{display:flex}
}

@media(max-width:560px){
  .container{padding:0 18px}
  .section{padding:58px 0}
  .hero{padding:42px 0 62px}
  .hero h1{font-size:35px}
  .hero p.lede{font-size:16px}
  .hero-cta .btn{width:100%}
  .trust-strip-section{margin-top:-28px}
  .trust-strip{grid-template-columns:1fr;padding:8px 0;border-radius:12px}
  .trust-item{padding:13px 20px}
  .trust-item::after{display:none!important}
  .trust-item:not(:last-child){border-bottom:1px solid var(--border-default)}
  .trust-icon{width:40px;height:40px;flex-basis:40px}
  .trust-icon i,.trust-icon svg{width:20px;height:20px}
  .trust-content strong{font-size:14px}
  .trust-content span{font-size:12px}
  .stage-grid,.svc-grid,.benefit-grid,.process-grid,.concern-list,.blog-grid{grid-template-columns:1fr}
  .benefit-card{border-right:0;border-bottom:1px solid var(--border-default)}
  .benefit-card:last-child{border-bottom:0}
  .doctor-roles{grid-template-columns:1fr 1fr}
  .doctor-photo{min-height:360px}
  .btn-lg{width:100%}
  .cta-row .btn{width:100%}

  /* Fix mobile menu height for small screens */
  .mobile-menu{
    top:70px;
    height:calc(100vh - 70px);
  }
}


/* ===== Header patch support for logo + service dropdown from index.astro ===== */
.brand-logo{display:block;height:54px;width:auto;max-width:190px;object-fit:contain}
.nav-dropdown{position:relative}
.nav-dropdown-toggle{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:600;color:var(--slate-mist);transition:color var(--t-base)}
.nav-dropdown-toggle:hover{color:var(--charcoal-ink)}
.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 18px);
  left:50%;
  width:min(780px,90vw);
  transform:translateX(-50%) translateY(8px);
  background:#fff;
  border:1px solid var(--border-default);
  border-radius:18px;
  box-shadow:var(--shadow-lg);
  padding:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:all var(--t-base);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.nav-dropdown-menu h4{font-size:13px;color:var(--blossom-rose);margin-bottom:10px}
.nav-dropdown-menu a{display:block;padding:7px 0;color:var(--slate-mist);font-size:14px;font-weight:600}
.nav-dropdown-menu a:hover{color:var(--blossom-rose)}
@media(max-width:900px){
  .brand-logo{height:46px;max-width:160px}
  .nav-dropdown-menu{position:static;display:none;width:100%;transform:none;opacity:1;visibility:visible;pointer-events:auto;box-shadow:none;border:0;padding:10px 0;grid-template-columns:1fr;background:transparent}
  .nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown:focus-within .nav-dropdown-menu{display:grid;transform:none}
}
@media(max-width:560px){.brand-logo{height:42px;max-width:145px}}

/* ===== Dropdown click/hover fix ===== */
header.nav,
.nav-inner,
.nav-links,
.nav-dropdown {
  overflow: visible;
}

header.nav {
  z-index: 9999;
}

.nav-dropdown {
  z-index: 10000;
}

.nav-dropdown-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-menu {
  z-index: 10001;
  top: calc(100% + 10px);
  pointer-events: none;
}

/* invisible bridge so the menu does not disappear while moving cursor from Services to dropdown */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

@media(max-width:900px){
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }
}

/* ================= Unified modern typography =================
   Matches the updated About page while preserving the Blossom
   wordmark styling in the header and footer.
================================================================ */

/* Main page and service-page headings */
.hero h1,
.sec-head h2,
.concern-box h2,
.process-box h2,
.loc-info h2,
.doctor-copy h2,
.cta-banner h2,
.doctor-copy h3,
.post-head h1,
.prose h2,
.prose h3 {
  font-family: var(--font-body), Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Home hero: strong and modern without becoming oversized */
.hero h1 {
  font-size: clamp(46px, 4.15vw, 66px);
  line-height: 1.08;
  max-width: 820px;
  text-wrap: balance;
}

/* Section headings */
.sec-head h2,
.concern-box h2,
.process-box h2,
.loc-info h2,
.doctor-copy h2,
.cta-banner h2 {
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

/* Doctor name and article headings */
.doctor-copy h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.post-head h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
}

.prose h2 {
  letter-spacing: -0.02em;
}

.prose h3 {
  letter-spacing: -0.015em;
}

/* Keep cards clean and consistent with the same sans-serif family */
.stage-body h3,
.svc-card h3,
.benefit-card h3,
.process-step h3,
.blog-card h3,
.faq summary {
  font-family: var(--font-body), Arial, sans-serif;
}

/* Prevent desktop headings from being forced into awkward single lines */
@media (max-width: 1240px) {
  .concern-section .concern-box h2,
  .process-section .process-box h2 {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .sec-head h2,
  .concern-box h2,
  .process-box h2,
  .loc-info h2,
  .doctor-copy h2,
  .cta-banner h2 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.14;
  }

  .post-head h1 {
    font-size: 34px;
  }
}

/* ================= Mobile menu ================= */
.mobile-menu{display:none}
@media(max-width:980px){
  .mobile-menu{
    display:none;
    position:fixed;
    top:76px;
    left:0;
    right:0;
    height:calc(100vh - 76px);
    background:#fff;
    z-index:49;
    overflow-y:auto;
    padding:16px 24px 40px;
    transform:translateX(100%);
    transition:transform .28s ease;
    box-shadow:var(--shadow-lg);
  }
  .mobile-menu.is-open{
    display:block;
    transform:translateX(0);
    animation: slideIn .28s ease forwards;
  }
  @keyframes slideIn{
    from{transform:translateX(100%);opacity:0;}
    to{transform:translateX(0);opacity:1;}
  }
  .mobile-nav{display:flex;flex-direction:column;gap:4px}
  .mobile-nav > a{
    display:block;
    padding:14px 0;
    font-size:17px;
    font-weight:700;
    color:var(--charcoal-ink);
    border-bottom:1px solid var(--border-light);
  }
  .mobile-nav > a:hover{color:var(--blossom-rose)}
  .mobile-services-group{border-bottom:1px solid var(--border-light)}
  .mobile-services-group summary{
    padding:14px 0;
    font-size:17px;
    font-weight:700;
    color:var(--charcoal-ink);
    cursor:pointer;
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .mobile-services-group summary::-webkit-details-marker{display:none}
  .mobile-services-inner{padding:0 0 12px}
  .mobile-services-inner h4{
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--slate-mist);
    margin:14px 0 6px;
  }
  .mobile-services-inner a{
    display:block;
    padding:8px 0;
    font-size:15px;
    color:var(--charcoal-ink);
    font-weight:500;
  }
  .mobile-services-inner a:hover{color:var(--blossom-rose)}
  .mobile-cta{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:24px;
  }
}

/* ================= Legal Pages ================= */
.legal-page{padding:72px 0 88px}
.legal-header{text-align:center;margin-bottom:56px}
.legal-header h1{
  font-family:var(--font-body);
  font-weight:800;
  font-size:clamp(36px,4vw,52px);
  line-height:1.1;
  letter-spacing:-0.03em;
  color:var(--charcoal-ink);
  margin-bottom:12px
}
.legal-header p{font-size:14px;color:var(--slate-mist);margin-top:8px}
.legal-content{max-width:820px;margin:0 auto}
.legal-content h2{
  font-family:var(--font-body);
  font-weight:800;
  font-size:22px;
  color:var(--blossom-rose);
  margin:32px 0 12px;
  line-height:1.25
}
.legal-content h3{
  font-family:var(--font-body);
  font-weight:700;
  font-size:18px;
  color:var(--charcoal-ink);
  margin:24px 0 8px
}
.legal-content h2:first-child,
.legal-content h3:first-child{margin-top:0}
.legal-content p{
  font-size:15px;
  color:var(--charcoal-ink);
  line-height:1.7;
  margin-bottom:16px
}
.legal-content ul,
.legal-content ol{
  margin:16px 0 16px 22px;
  font-size:15px;
  line-height:1.65;
  color:var(--charcoal-ink)
}
.legal-content li{margin-bottom:8px}
.legal-content a{color:var(--blossom-rose);text-decoration:underline}
.legal-content a:hover{text-decoration:none}
.legal-content .important-box{
  background:var(--soft-rose);
  border:1px solid var(--border-default);
  border-left:4px solid var(--blossom-rose);
  border-radius:8px;
  padding:20px 24px;
  margin:24px 0
}
.legal-content .important-box p{
  margin:0;
  font-weight:700;
  color:var(--deep-plum)
}
.legal-content .contact-box{
  background:var(--cream-bone);
  border:1px solid var(--border-default);
  border-radius:12px;
  padding:24px;
  margin:24px 0
}
.legal-content .contact-item{
  padding:8px 0;
  font-size:15px;
  line-height:1.5
}
.legal-content .contact-item strong{color:var(--charcoal-ink);font-weight:700}

@media(max-width:900px){
  .legal-page{padding:58px 0 72px}
  .legal-header h1{font-size:32px}
  .legal-content{max-width:100%}
  .legal-content h2{font-size:20px}
  .legal-content h3{font-size:17px}
  .legal-content p,.legal-content ul,.legal-content ol{font-size:14px}
}

/* ===================== About page styles (about.css) ===================== */

/* ================= About page only ================= */
.about-page {
  background: #fff;
  color: var(--charcoal-ink);
}

.about-hero {
  padding: 72px 0 70px;
  background:
    radial-gradient(circle at 18% 12%, rgba(194,24,91,.12), transparent 34%),
    linear-gradient(105deg, #fff 0%, #fff8fb 58%, #fbedf2 100%);
}

.simple-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .75fr;
  gap: 54px;
  align-items: center;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-10);
  color: var(--blossom-rose);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.about-eyebrow i,
.about-eyebrow svg {
  width: 17px;
  height: 17px;
}

.about-hero h1,
.about-section h2,
.about-final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--charcoal-ink);
}

.about-hero h1 {
  font-size: clamp(42px, 5vw, 70px);
  max-width: 920px;
  margin-bottom: 24px;
}

.about-hero p,
.about-section p,
.about-head p,
.about-final-cta p {
  font-size: 18px;
  color: var(--slate-mist);
  line-height: 1.7;
}

.about-hero .about-lede {
  color: var(--charcoal-ink);
  font-weight: 500;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.simple-profile-card {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 26px;
  box-shadow: var(--shadow-lg, 0 16px 40px rgba(0,0,0,.08));
  overflow: hidden;
}

.simple-profile-card img {
  width: 100%;
  aspect-ratio: 4 / 4.1;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  background: #fff4f8;
}

.simple-profile-card div {
  padding: 24px;
}

.simple-profile-card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--blossom-rose);
  margin-bottom: 6px;
}

.simple-profile-card p {
  color: var(--charcoal-ink);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}

.simple-profile-card span {
  color: var(--slate-mist);
  font-size: 14px;
  line-height: 1.6;
}

.about-strip {
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.about-strip-grid {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px 0;
}

.about-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid var(--border-default);
}

.about-strip-item:last-child {
  border-right: 0;
}

.about-strip-item i,
.about-strip-item svg {
  width: 38px;
  height: 38px;
  color: var(--blossom-rose);
  background: var(--rose-10);
  border-radius: 50%;
  padding: 8px;
  flex-shrink: 0;
}

.about-strip-item strong {
  display: block;
  font-size: 17px;
  color: var(--charcoal-ink);
}

.about-strip-item span {
  display: block;
  font-size: 13px;
  color: var(--slate-mist);
}

.about-section {
  padding: 76px 0;
}

.about-white {
  background: #fff;
}

.about-cream {
  background: var(--cream-bone);
}

.simple-two-column,
.simple-focus-grid,
.simple-faq-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.about-section h2,
.about-head h2,
.simple-clinic-card h2 {
  font-size: clamp(36px, 4vw, 58px);
  margin-bottom: 18px;
  max-width: 980px;
}

.about-section p + p {
  margin-top: 16px;
}

.simple-card,
.simple-clinic-card,
.about-faq-list {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.simple-quote-card {
  padding: 34px;
}

.simple-quote-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.compact-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.simple-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.simple-values-grid article {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 20px;
  padding: 28px;
}

.simple-values-grid i,
.simple-values-grid svg {
  width: 44px;
  height: 44px;
  color: var(--blossom-rose);
  background: var(--rose-10);
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 18px;
}

.simple-values-grid h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.simple-values-grid p {
  font-size: 15px;
}

.simple-focus-section p {
  max-width: 680px;
}

.simple-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.simple-focus-list span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rose-20);
  background: var(--rose-10);
  color: var(--deep-plum);
  border-radius: var(--radius-pill);
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
}

.simple-clinic-card {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.simple-clinic-card p {
  max-width: 800px;
}

.simple-clinic-actions,
.about-final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.about-faq-list {
  padding: 12px;
}

.about-faq {
  border-bottom: 1px solid var(--border-default);
}

.about-faq:last-child {
  border-bottom: 0;
}

.about-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
  color: var(--charcoal-ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.about-faq summary::-webkit-details-marker {
  display: none;
}

.about-faq summary i,
.about-faq summary svg {
  width: 18px;
  height: 18px;
  color: var(--blossom-rose);
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.about-faq[open] summary i,
.about-faq[open] summary svg {
  transform: rotate(180deg);
}

.about-faq p {
  padding: 0 20px 20px;
  font-size: 15px;
}

.about-final-cta {
  background: var(--blossom-rose);
  color: #fff;
  padding: 64px 0;
}

.about-final-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

.about-final-cta h2,
.about-final-cta p {
  color: #fff;
}

.about-final-cta h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 12px;
}

.about-eyebrow.light {
  background: rgba(255,255,255,.16);
  color: #fff;
}

@media (max-width: 980px) {
  .simple-hero-grid,
  .simple-two-column,
  .simple-focus-grid,
  .simple-faq-layout,
  .simple-clinic-card,
  .about-final-grid {
    grid-template-columns: 1fr;
  }

  .about-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-strip-item:nth-child(2) {
    border-right: 0;
  }

  .about-strip-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-default);
  }

  .simple-values-grid {
    grid-template-columns: 1fr;
  }

  .simple-clinic-actions,
  .about-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .about-hero {
    padding: 56px 0 50px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-section {
    padding: 56px 0;
  }

  .about-strip {
    margin-top: 18px;
  }

  .about-strip-grid {
    grid-template-columns: 1fr;
  }

  .about-strip-item,
  .about-strip-item:nth-child(2) {
    border-right: 0;
  }

  .about-strip-item:not(:last-child) {
    border-bottom: 1px solid var(--border-default);
  }

  .simple-profile-card h2 {
    font-size: 28px;
  }

  .simple-clinic-card {
    padding: 26px;
  }
}

/* ================= Updated Doctor Profile bullets + At a Glance card ================= */

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: start;
}

.about-profile-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 0;
}

.about-profile-list li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--slate-mist);
}

.about-profile-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rose-10);
  color: var(--blossom-rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.about-profile-list strong {
  color: var(--charcoal-ink);
  font-weight: 800;
}

/* Right-side profile summary card */
.about-glance-card {
  position: sticky;
  top: 110px;
  background: #fff7fa;
  border: 1px solid var(--border-default);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.about-glance-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f9dfe9;
  color: var(--blossom-rose);
  font-size: 14px;
  font-weight: 800;
}

.about-glance-item {
  padding: 18px 0;
  border-bottom: 1px solid #edd6df;
}

.about-glance-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-glance-item strong {
  display: block;
  color: var(--charcoal-ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
}

.about-glance-item span {
  display: block;
  margin-top: 5px;
  color: var(--slate-mist);
  font-size: 15px;
  line-height: 1.5;
}

/* Remove old single-column restriction */
.simple-background .simple-two-column.profile-only,
.simple-background .simple-two-column.about-profile-only {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  max-width: none;
}

/* Mobile / tablet */
@media (max-width: 900px) {
  .about-profile-grid,
  .simple-background .simple-two-column.profile-only,
  .simple-background .simple-two-column.about-profile-only {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-glance-card {
    position: static;
  }
}

/* Improves the older simple-focus-grid layout if you have not yet changed the Astro markup. */
.simple-focus-grid {
  align-items: center;
}

.simple-focus-section .simple-focus-grid {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 28px;
  padding: 54px;
  box-shadow: var(--shadow-sm);
}

.simple-focus-section .simple-focus-grid > div:first-child p {
  font-size: 19px;
  line-height: 1.75;
  max-width: 590px;
}

/* ================= Updated responsive rules ================= */
@media (max-width: 900px) {
  .about-concerns-card,
  .simple-focus-section .simple-focus-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
  }

  .about-concerns-copy,
  .about-concerns-copy h2,
  .about-concerns-copy p {
    max-width: 100%;
  }

  .about-topic-chips,
  .simple-focus-list {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .about-profile-list li {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-topic-chips,
  .simple-focus-list {
    gap: 10px;
  }

  .about-topic-chips span,
  .simple-focus-list span {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }

  .about-concerns-card,
  .simple-focus-section .simple-focus-grid {
    padding: 28px 20px;
    border-radius: 22px;
  }
}
/* ================= About page spacing fixes ================= */

/* Add safe side padding to About page sections */
.about-section {
  padding-left: 32px;
  padding-right: 32px;
}

.about-container {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

/* Keep consultation heading in one line on desktop */
.about-consultation-section .about-section-head h2,
.simple-values-section .about-section-head h2 {
  max-width: 100%;
  font-size: clamp(42px, 4.1vw, 66px);
}

@media (min-width: 1100px) {
  .about-consultation-section .about-section-head h2,
  .simple-values-section .about-section-head h2 {
    white-space: nowrap;
  }
}

/* Fix “What you can discuss” layout and side spacing */
.about-concerns-section {
  padding-left: 32px;
  padding-right: 32px;
}

.about-concerns-card {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* If chips are showing as plain text, force chip styling */
.about-topic-chips,
.simple-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.about-topic-chips span,
.simple-focus-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff0f6;
  border: 1px solid #f2bfd1;
  color: #8b123f;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 700px) {
  .about-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-consultation-section .about-section-head h2,
  .simple-values-section .about-section-head h2 {
    white-space: normal;
    font-size: clamp(34px, 10vw, 46px);
  }

  .about-topic-chips span,
  .simple-focus-list span {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ================= Typography and hero polish (July 2026) ================= */

/* Keep the page elegant, but reduce the oversized editorial feel. */
.about-hero {
  padding: 64px 0 62px;
}

.simple-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(36px, 4vw, 58px);
}

/* Display serif works best at a lighter weight. */
.about-hero h1,
.about-section h2,
.about-head h2,
.about-final-cta h2,
.simple-profile-card h2,
.simple-clinic-card h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

/* More controlled desktop scale and line length. */
.about-hero h1 {
  font-size: clamp(48px, 4.55vw, 72px);
  line-height: 1.01;
  max-width: 860px;
  margin-bottom: 22px;
  text-wrap: balance;
}

/* Comfortable reading size and stronger contrast. */
.about-hero p,
.about-section p,
.about-head p,
.about-final-cta p {
  font-size: 18px;
  line-height: 1.68;
  color: #657084;
}

.about-hero .about-lede {
  max-width: 780px;
  color: var(--charcoal-ink);
  font-size: 19px;
  line-height: 1.62;
  font-weight: 500;
}

.about-hero .about-lede + p {
  max-width: 760px;
}

/* Slightly calmer eyebrow and action spacing. */
.about-eyebrow {
  font-size: 15px;
  padding: 9px 16px;
  margin-bottom: 22px;
}

.about-hero-actions {
  margin-top: 26px;
}

/* Give the portrait a cleaner, more premium crop. */
.simple-profile-card {
  border-radius: 24px;
}

.simple-profile-card img {
  aspect-ratio: 4 / 3.55;
  object-position: center 20%;
}

.simple-profile-card div {
  padding: 26px 28px 28px;
}

.simple-profile-card h2 {
  font-size: clamp(32px, 2.5vw, 42px);
  line-height: 1.08;
  margin-bottom: 8px;
}

.simple-profile-card p {
  font-size: 18px;
  line-height: 1.42;
  font-weight: 700;
}

.simple-profile-card span {
  font-size: 15px;
  line-height: 1.55;
}

/* Keep section headings prominent without competing with the hero. */
.about-section h2,
.about-head h2,
.simple-clinic-card h2 {
  font-size: clamp(34px, 3.45vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}

/* Avoid forced single-line headings on medium desktops. */
@media (max-width: 1240px) {
  .about-consultation-section .about-section-head h2,
  .simple-values-section .about-section-head h2 {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .about-hero {
    padding: 56px 0 52px;
  }

  .simple-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-hero h1 {
    max-width: 760px;
  }

  .simple-profile-card {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .about-hero {
    padding: 46px 0 42px;
  }

  .about-eyebrow {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .about-hero h1 {
    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

  .about-hero .about-lede {
    font-size: 18px;
    line-height: 1.58;
  }

  .about-hero p,
  .about-section p,
  .about-head p,
  .about-final-cta p {
    font-size: 16px;
    line-height: 1.65;
  }

  .simple-profile-card img {
    aspect-ratio: 4 / 3.7;
  }

  .simple-profile-card div {
    padding: 22px;
  }

  .simple-profile-card h2 {
    font-size: 32px;
  }

  .simple-profile-card p {
    font-size: 17px;
  }

  .about-section h2,
  .about-head h2,
  .simple-clinic-card h2 {
    font-size: clamp(32px, 9vw, 44px);
  }
}

/* ================= Modern sans-serif heading option =================
   Uses the site's existing body font, so no extra font download is needed.
   This removes the awkward decorative J and F shapes from the display serif.
===================================================================== */

.about-hero h1,
.about-section h2,
.about-head h2,
.about-final-cta h2,
.simple-profile-card h2,
.simple-clinic-card h2 {
  font-family: var(--font-body), Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

/* Match the stronger, modern medical style of the reference screenshot. */
.about-hero h1 {
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.12;
  max-width: 820px;
  text-wrap: balance;
}

.simple-profile-card h2 {
  font-size: clamp(30px, 2.25vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.about-section h2,
.about-head h2,
.simple-clinic-card h2 {
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about-final-cta h2 {
  letter-spacing: -0.03em;
}

@media (max-width: 700px) {
  .about-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .simple-profile-card h2 {
    font-size: 30px;
  }
}

/* ================= Final CTA colour refinement =================
   Keeps the section consistent with the soft Blossom pink palette.
================================================================ */

.about-final-cta {
  background:
    radial-gradient(circle at 12% 18%, rgba(194, 24, 91, .10), transparent 30%),
    linear-gradient(105deg, #fff 0%, #fff7fa 58%, #fbeaf1 100%);
  color: var(--charcoal-ink);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-final-cta h2 {
  color: var(--charcoal-ink);
}

.about-final-cta p {
  color: var(--slate-mist);
}

.about-final-cta .about-eyebrow.light {
  background: var(--rose-10);
  color: var(--blossom-rose);
}

/* Primary action */
.about-final-cta .btn-white,
.about-final-cta .btn-primary {
  background: var(--blossom-rose);
  color: #fff;
  border-color: var(--blossom-rose);
  box-shadow: 0 10px 24px rgba(194, 24, 91, .18);
}

.about-final-cta .btn-white:hover,
.about-final-cta .btn-primary:hover {
  background: var(--deep-plum);
  border-color: var(--deep-plum);
}

/* Secondary action */
.about-final-cta .btn-ghostw,
.about-final-cta .btn-secondary,
.about-final-cta .btn-ghost {
  background: #fff;
  color: var(--blossom-rose);
  border-color: var(--blossom-rose);
}

.about-final-cta .btn-ghostw:hover,
.about-final-cta .btn-secondary:hover,
.about-final-cta .btn-ghost:hover {
  background: var(--soft-rose);
  color: var(--deep-plum);
  border-color: var(--deep-plum);
}

/* ================= Blog pagination ================= */
.pagination .nav-links{display:flex;justify-content:center;gap:8px;margin-top:36px;flex-wrap:wrap}
.pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 14px;border:1px solid var(--border-default);border-radius:999px;font-size:14px;font-weight:700;color:var(--charcoal-ink);background:#fff;transition:all var(--t-base)}
.pagination a.page-numbers:hover{transform:translateY(-2px);border-color:var(--blossom-rose);color:var(--blossom-rose);box-shadow:var(--shadow-sm)}
.pagination .page-numbers.current{background:var(--blossom-rose);border-color:var(--blossom-rose);color:#fff;pointer-events:none}
.pagination .dots{border:0;background:none;min-width:auto;padding:0}
.screen-reader-text{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;border:0;padding:0;margin:-1px}
