/*
Theme Name: Mindhug
Theme URI: https://mindhug.in
Description: Custom WordPress theme for Mindhug, the psychiatry practice of Dr. Aishwarya Reddy, MD Psychiatrist and University Gold Medalist in Sangli, Maharashtra. Warm, human, conversion-first.
Author: Mindhug
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mindhug
*/

:root{
  --teal:        #1B4F6B;
  --teal-deep:   #143b50;
  --teal-soft:   #2c6a87;
  --blue:        #5A8FA8;
  --mist:        #EDF4F8;
  --gold:        #D4A96A;
  --gold-deep:   #b88a47;
  --gold-soft:   #fbf3e3;
  --gold-mid:    #f3e3c6;
  --gold-border: #e6cd9b;
  --border:      #C9D8E0;
  --paper:       #FBFCFD;
  --cream:       #F6F1E9;
  --ink:         #16323f;
  --ink-soft:    #466374;
  --ink-mute:    #7d97a4;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "DM Sans", system-ui, -apple-system, sans-serif;
  --maxw: 1200px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20,59,80,.05), 0 2px 8px rgba(20,59,80,.04);
  --shadow-md: 0 6px 24px rgba(20,59,80,.08), 0 2px 6px rgba(20,59,80,.05);
  --shadow-lg: 0 24px 60px rgba(20,59,80,.14);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--mist);
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

h1,h2,h3,h4{ font-family:var(--serif); font-weight:600; color:var(--teal); margin:0; line-height:1.08; letter-spacing:-.01em; }
h1{ font-size:clamp(2.6rem, 6vw, 4.6rem); font-weight:500; }
h2{ font-size:clamp(2rem, 4vw, 3.1rem); font-weight:500; }
h3{ font-size:clamp(1.4rem, 2.4vw, 1.9rem); }
h4{ font-size:1.2rem; }
p{ margin:0 0 1rem; color:var(--ink-soft); }
.lead{ font-size:1.18rem; color:var(--ink-soft); line-height:1.75; }
/* breathing room between a heading and the subtext that follows it */
h2{ margin-bottom:.85rem; }
h3{ margin-bottom:.6rem; }
.section-head h2{ margin-bottom:1rem; }

.eyebrow{
  font-family:var(--sans);
  font-weight:600;
  font-size:.74rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--blue);
  display:inline-flex; align-items:center; gap:.55rem;
  margin:0 0 1rem;
}
.eyebrow::before{
  content:""; width:26px; height:1px; background:var(--blue); display:inline-block;
}
.center{ text-align:center; }
.center .eyebrow{ justify-content:center; }

.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 clamp(1.1rem, 4vw, 2.5rem); }
.section{ padding:clamp(3.5rem, 8vw, 7rem) 0; }
.section--mist{ background:var(--mist); }
.section--paper{ background:var(--paper); }
.section--cream{ background:var(--cream); }
.section--teal{ background:var(--teal); color:#dcebd4; }

.section-head{ max-width:680px; margin:0 0 clamp(2rem,4vw,3.2rem); }
.section-head.center{ margin-left:auto; margin-right:auto; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  font-family:var(--sans); font-weight:600; font-size:1rem;
  padding:.95rem 1.7rem; border-radius:999px; border:1.5px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap; line-height:1;
}
.btn svg{ width:1.15em; height:1.15em; }
.btn--primary{ background:var(--teal); color:#fff; box-shadow:0 6px 18px rgba(27,79,107,.22); }
.btn--primary:hover{ background:var(--teal-deep); transform:translateY(-2px); box-shadow:0 10px 26px rgba(27,79,107,.3); }
.btn--gold{ background:var(--gold); color:#3a2c12; box-shadow:0 6px 18px rgba(212,169,106,.35); }
.btn--gold:hover{ background:var(--gold-deep); color:#fff; transform:translateY(-2px); box-shadow:0 10px 28px rgba(212,169,106,.4); }
.btn--ghost{ background:transparent; color:var(--teal); border-color:var(--border); }
.btn--ghost:hover{ border-color:var(--teal); background:rgba(27,79,107,.04); transform:translateY(-2px); }
.btn--wa{ background:#25D366; color:#06351a; box-shadow:0 6px 18px rgba(37,211,102,.28); }
.btn--wa:hover{ background:#1faf55; color:#fff; transform:translateY(-2px); }
.btn--lg{ padding:1.1rem 2.1rem; font-size:1.06rem; }
.btn--block{ width:100%; }
.btn--light{ background:#fff; color:var(--teal); }
.btn--light:hover{ background:var(--mist); transform:translateY(-2px); }

.badge-gold{
  display:inline-flex; align-items:center; gap:.55rem;
  font-family:var(--sans); font-weight:600; font-size:.8rem; letter-spacing:.03em;
  color:var(--gold-deep);
  background:linear-gradient(180deg,var(--gold-soft),var(--gold-mid));
  border:1px solid var(--gold-border);
  padding:.5rem .9rem .5rem .65rem; border-radius:999px;
  box-shadow:0 2px 8px rgba(212,169,106,.18);
}
.badge-gold .medal{
  width:22px;height:22px;border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
  display:grid;place-items:center; color:#fff; flex:none;
  box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.4);
}
.badge-gold .medal svg{ width:12px;height:12px; }
.badge-gold.badge-gold--lg{ font-size:.92rem; padding:.6rem 1.1rem .6rem .7rem; }
.badge-gold.badge-gold--lg .medal{ width:26px;height:26px; }

.ph{
  position:relative; overflow:hidden;
  background-color:var(--mist);
  background-image:repeating-linear-gradient(135deg,
     rgba(90,143,168,.16) 0, rgba(90,143,168,.16) 1px,
     transparent 1px, transparent 11px);
  border:1px solid var(--border);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  min-height:120px;
}
.ph::after{
  content:attr(data-label);
  font-family:ui-monospace, "SF Mono", Menlo, monospace;
  font-size:.72rem; letter-spacing:.04em;
  color:var(--blue);
  background:rgba(251,252,253,.82);
  border:1px solid var(--border);
  padding:.35rem .7rem; border-radius:6px;
  text-align:center; max-width:80%;
}
.ph[data-label=""]::after, .ph:not([data-label])::after{ content:none; }
.ph--round{ border-radius:50%; }
.ph-img{ position:relative; overflow:hidden; border:1px solid var(--border); border-radius:var(--radius); }
.ph-img img{ width:100%; height:100%; object-fit:cover; }

.card{
  background:var(--paper); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.8rem;
  box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:#aec6d2; }

.icon-chip{
  width:54px; height:54px; border-radius:14px; flex:none;
  background:var(--mist); border:1px solid var(--border);
  display:grid; place-items:center; color:var(--teal);
  margin-bottom:1.1rem;
}
.icon-chip svg{ width:26px; height:26px; }

.grid{ display:grid; gap:var(--gap); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

.site-header{
  position:sticky; top:0; z-index:60;
  background:var(--mist);
  background:color-mix(in srgb, var(--mist) 85%, transparent);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--border);
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; height:74px; }
.brand{ display:flex; align-items:center; gap:.6rem; }
.brand .mark{
  width:38px;height:38px;border-radius:11px;flex:none;
  background:linear-gradient(150deg,var(--teal),var(--blue));
  display:grid;place-items:center;color:#fff;
  box-shadow:0 3px 10px rgba(27,79,107,.25);
}
.brand .mark svg{ width:21px;height:21px; }
.brand .mark img{ width:38px;height:38px;border-radius:11px;object-fit:cover; }
.brand .word{ font-family:var(--serif); font-weight:600; font-size:1.5rem; color:var(--teal); line-height:1; }
.brand .word span{ display:block; font-family:var(--sans); font-weight:500; font-size:.6rem; letter-spacing:.22em; text-transform:uppercase; color:var(--blue); margin-top:3px; }

.nav-links{ display:flex; align-items:center; gap:1.9rem; list-style:none; margin:0; padding:0; }
.nav-links a{ font-weight:500; font-size:.98rem; color:var(--ink-soft); position:relative; padding:.3rem 0; transition:color .15s; white-space:nowrap; display:inline-flex; align-items:center; gap:.35rem; }
.nav-links .caret{ width:0; height:0; border-left:4px solid transparent; border-right:4px solid transparent; border-top:5px solid currentColor; display:inline-block; }
.brand-logo{ height:46px; width:auto; display:block; }
@media (max-width:980px){ .brand-logo{ height:40px; } }

/* Hardcoded Mindhug logo lockup (strokes + type follow the selected palette/fonts) */
.mindhug-mark{ width:44px; height:44px; flex:none; display:block; }
.mindhug-mark svg{ width:100%; height:100%; display:block; }
.mindhug-mark .mh-arm-a{ stroke:var(--teal); }
.mindhug-mark .mh-arm-b{ stroke:var(--blue); }
.mindhug-word{ font-family:var(--serif); font-weight:600; font-size:1.5rem; line-height:1; color:var(--teal); letter-spacing:.005em; }
.mindhug-word em{ font-style:normal; color:var(--blue); }
.mindhug-word small{ display:block; font-family:var(--sans); font-weight:500; font-size:.58rem; letter-spacing:.22em; text-transform:uppercase; color:var(--blue); margin-top:4px; }
@media (max-width:600px){ .mindhug-mark{ width:38px; height:38px; } .mindhug-word{ font-size:1.3rem; } }
.nav-links a:hover{ color:var(--teal); }
.nav-links a.active{ color:var(--teal); }
.nav-links a.active::after{ content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--gold); border-radius:2px; }

.has-sub{ position:relative; }
.submenu{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(8px);
  background:var(--paper); border:1px solid var(--border); border-radius:16px;
  box-shadow:var(--shadow-lg); padding:.6rem; min-width:240px;
  opacity:0; visibility:hidden; transition:opacity .18s, transform .18s; z-index:70;
}
.has-sub:hover .submenu{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
@media (min-width:981px){
  .submenu::before{ content:""; position:absolute; left:0; right:0; top:-18px; height:18px; }
  .has-sub > a{ padding-bottom:1rem; margin-bottom:-1rem; }
}
.submenu a{ display:flex; align-items:center; gap:.7rem; padding:.6rem .7rem; border-radius:10px; font-size:.95rem; color:var(--ink-soft); }
.submenu a:hover{ background:var(--mist); color:var(--teal); }
.submenu a .dot{ width:7px;height:7px;border-radius:50%;background:var(--blue);flex:none; }

.nav-cta{ display:flex; align-items:center; gap:.8rem; }
.nav-toggle{ display:none; background:none; border:1px solid var(--border); border-radius:10px; width:44px;height:44px; align-items:center;justify-content:center; color:var(--teal); }
.nav-toggle svg{ width:22px;height:22px; }

@media (max-width:980px){
  .nav-links{
    position:fixed; inset:74px 0 auto 0; flex-direction:column; align-items:stretch; gap:0;
    background:var(--paper); border-bottom:1px solid var(--border);
    padding:.25rem 1.1rem .8rem; box-shadow:var(--shadow-md);
    transform:translateY(-130%); transition:transform .28s ease; z-index:55;
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-links a{ padding:.6rem .1rem; border-bottom:1px solid var(--border); font-size:.95rem; }
  .nav-links a.active::after{ display:none; }
  .has-sub .submenu{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding:.1rem 0 .35rem .8rem; min-width:0; }
  .has-sub .submenu a{ border:none; padding:.38rem .1rem; font-size:.9rem; }
  .has-sub .submenu a .dot{ width:6px; height:6px; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn--ghost{ display:none; }
}

.site-footer{ background:var(--teal-deep); color:#bcd2dd; padding:clamp(3rem,6vw,4.5rem) 0 2rem; }
.site-footer h4{ color:#fff; font-family:var(--sans); font-weight:600; font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:1.2rem; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:2.5rem; }
.site-footer a{ color:#bcd2dd; transition:color .15s; }
.site-footer a:hover{ color:#fff; }
.footer-links{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.7rem; font-size:.96rem; }
.footer-brand .word{ font-family:var(--serif); font-size:1.7rem; color:#fff; }
.footer-brand p{ color:#9fbccb; max-width:30ch; font-size:.95rem; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:2.6rem; padding-top:1.6rem; display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.86rem; color:#8fb0c0; }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:2rem; } .footer-brand{ grid-column:1/-1; } }
@media (max-width:460px){ .footer-grid{ grid-template-columns:1fr; } }

.wa-float{
  position:fixed; right:20px; bottom:20px; z-index:80;
  width:58px;height:58px;border-radius:50%;
  background:#25D366; color:#fff; display:grid;place-items:center;
  box-shadow:0 10px 30px rgba(37,211,102,.45);
  transition:transform .2s;
}
.wa-float:hover{ transform:scale(1.07); }
.wa-float svg{ width:30px;height:30px; }
.wa-float .pulse{ position:absolute; inset:0; border-radius:50%; box-shadow:0 0 0 0 rgba(37,211,102,.5); animation:wapulse 2.4s infinite; }
@keyframes wapulse{ 70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }

.mobile-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:75;
  display:none; gap:.7rem; padding:.7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background:var(--paper);
  border-top:1px solid var(--border);
  box-shadow:0 -6px 18px rgba(20,59,80,.08);
}
.mobile-cta .btn{ flex:1; }
@media (max-width:760px){
  .mobile-cta{ display:flex; }
  .wa-float{ bottom:96px; width:52px;height:52px; }
  body{ padding-bottom:calc(92px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion:no-preference){
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:none; }
}

/* HERO */
.hero{ position:relative; padding:clamp(2.5rem,6vw,5rem) 0 clamp(3rem,7vw,5.5rem); overflow:hidden; }
.hero::before{
  content:""; position:absolute; top:-20%; right:-10%; width:60%; height:120%;
  background:radial-gradient(closest-side, color-mix(in srgb, var(--gold) 16%, transparent), transparent 70%);
  pointer-events:none;
}
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,4vw,4rem); align-items:center; }
.hero-copy h1{ margin:.4rem 0 1.2rem; }
.hero-copy .em{ font-style:italic; color:var(--blue); }
.hero-copy .lead{ max-width:46ch; margin-bottom:1.8rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.9rem; margin-bottom:1.8rem; }
.hero-reassure{ display:flex; align-items:center; gap:.55rem; font-size:.92rem; color:var(--ink-mute); }
.hero-reassure svg{ width:1.05rem;height:1.05rem; color:var(--blue); flex:none; }
.hero-photo{ position:relative; }
.hero-photo .ph, .hero-photo .ph-img{ aspect-ratio:4/5; border-radius:24px; box-shadow:var(--shadow-lg); }
.hero-photo .float-badge{
  position:absolute; left:-22px; bottom:34px;
  background:var(--paper); border:1px solid var(--border); border-radius:16px;
  padding:.9rem 1.1rem; box-shadow:var(--shadow-md); display:flex; align-items:center; gap:.8rem;
  max-width:230px;
}
.hero-photo .float-badge .num{ font-family:var(--serif); font-size:2rem; color:var(--teal); line-height:1; }
.hero-photo .float-badge small{ display:block; color:var(--ink-mute); font-size:.78rem; line-height:1.3; }
.hero-photo .name-tag{
  position:absolute; right:-14px; top:26px;
  background:var(--teal); color:#fff; border-radius:14px; padding:.8rem 1.1rem;
  box-shadow:var(--shadow-md);
}
.hero-photo .name-tag b{ font-family:var(--serif); font-weight:600; font-size:1.15rem; display:block; }
.hero-photo .name-tag span{ font-size:.78rem; color:#bcd9e6; }
@media (max-width:860px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-photo{ order:-1; max-width:420px; margin:0 auto; }
  .hero-photo .float-badge{ left:0; }
}

/* TRUST BAR */
.trustbar{ background:var(--paper); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.trust-grid--3{ grid-template-columns:repeat(3,1fr); }
.trust-item{ padding:1.8rem 1rem; text-align:center; border-left:1px solid var(--border); }
.trust-item:first-child{ border-left:none; }
.trust-item .num{ font-family:var(--serif); font-size:clamp(2rem,3.4vw,2.8rem); color:var(--teal); font-weight:600; line-height:1; }
.trust-item .num .plus{ color:var(--gold); }
.trust-item .lbl{ font-size:.86rem; color:var(--ink-mute); margin-top:.45rem; letter-spacing:.02em; }
.trust-item.is-gold .num{ display:inline-flex; }
@media (max-width:600px){ .trust-grid--3{ grid-template-columns:1fr; } .trust-grid--3 .trust-item{ border-left:none; border-top:1px solid var(--border); } .trust-grid--3 .trust-item:first-child{ border-top:none; } }

/* ABOUT SNIPPET */
.about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(2rem,4vw,3.5rem); align-items:center; }
.about-grid .ph, .about-grid .ph-img{ aspect-ratio:4/5; border-radius:20px; }
.about-grid .sig{ font-family:var(--serif); font-style:italic; font-size:1.5rem; color:var(--teal); margin-top:1.4rem; }
@media (max-width:760px){ .about-grid{ grid-template-columns:1fr; } .about-grid .ph, .about-grid .ph-img{ max-width:340px; } }

/* SERVICE CARD */
.svc-card{ display:flex; flex-direction:column; }
.svc-card h3{ font-size:1.4rem; margin-bottom:.5rem; }
.svc-card p{ font-size:.97rem; margin-bottom:1.2rem; flex:1; }
.svc-link{ font-weight:600; font-size:.92rem; color:var(--teal); display:inline-flex; align-items:center; gap:.4rem; }
.svc-link svg{ width:1rem;height:1rem; transition:transform .18s; }
.svc-card--hover:hover .svc-link svg{ transform:translateX(4px); }

/* WHY pillars */
.pillar{ display:flex; gap:1.1rem; }
.pillar .n{ font-family:var(--serif); font-size:1.6rem; color:var(--gold); line-height:1; flex:none; width:2.4rem; }
.pillar h4{ color:var(--teal); margin-bottom:.4rem; font-size:clamp(1.35rem,2vw,1.6rem); }
.pillar p{ font-size:.95rem; margin:0; }

/* CTA BANNER */
.cta-banner{ position:relative; overflow:hidden; border-radius:var(--radius-lg); background:var(--teal); color:#fff; padding:clamp(2.4rem,5vw,4rem); text-align:center; }
.cta-banner::after{ content:""; position:absolute; inset:0; background:radial-gradient(closest-side at 80% 20%, color-mix(in srgb, var(--gold) 24%, transparent), transparent 60%); pointer-events:none; }
.cta-banner > *{ position:relative; }
.cta-banner h2{ color:#fff; font-size:clamp(2.2rem,5vw,3.6rem); margin-bottom:.7rem; }
.cta-banner p{ color:#cfe3ec; max-width:48ch; margin:0 auto 1.8rem; }

/* TESTIMONIALS */
.t-viewport{ overflow:hidden; }
.t-track{ display:flex; align-items:stretch; transition:transform .5s ease; }
.t-card{ flex:0 0 100%; padding:0 .3rem; display:flex; }
.t-inner{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); padding:clamp(1.8rem,3vw,2.8rem); box-shadow:var(--shadow-sm); width:100%; max-width:760px; margin:0 auto; text-align:center; display:flex; flex-direction:column; justify-content:center; }
.t-stars{ color:var(--gold); letter-spacing:.15em; margin-bottom:1rem; }
.t-quote{ font-family:var(--serif); font-size:clamp(1.05rem,2vw,1.35rem); color:var(--ink); line-height:1.5; font-weight:400; margin-bottom:1.4rem; }
.t-who{ display:flex; align-items:center; justify-content:center; gap:.8rem; }
.t-who .av{ width:44px;height:44px;border-radius:50%;background:var(--mist);border:1px solid var(--border); display:grid;place-items:center; color:var(--teal); font-weight:600; font-family:var(--serif); }
.t-who b{ color:var(--teal); }
.t-who small{ display:block; color:var(--ink-mute); font-size:.84rem; }
.t-nav{ display:flex; align-items:center; justify-content:center; gap:1.4rem; margin-top:1.8rem; }
.t-arrow{ width:46px;height:46px;border-radius:50%;border:1px solid var(--border);background:var(--paper); display:grid;place-items:center; color:var(--teal); transition:all .15s; }
.t-arrow:hover{ background:var(--teal); color:#fff; border-color:var(--teal); }
.t-arrow svg{ width:20px;height:20px; }
.t-dots{ display:flex; gap:.5rem; }
.t-dots button{ width:9px;height:9px;border-radius:50%;border:none;background:var(--border);padding:0;transition:all .2s; }
.t-dots button.active{ background:var(--gold); width:26px;border-radius:5px; }

/* FAQ */
.faq{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-q{ width:100%; background:none; border:none; text-align:left; padding:1.4rem 2.5rem 1.4rem 0; position:relative; font-family:var(--serif); font-size:clamp(1.15rem,2vw,1.4rem); color:var(--teal); font-weight:600; }
.faq-q::after{ content:"+"; position:absolute; right:.2rem; top:50%; transform:translateY(-50%); font-family:var(--sans); font-weight:400; font-size:1.6rem; color:var(--blue); transition:transform .2s; }
.faq-item.open .faq-q::after{ content:"\2212"; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item.open .faq-a{ max-height:340px; }
.faq-a p{ padding:0 2rem 1.5rem 0; margin:0; }
.faq-item.open .faq-a{ max-height:520px; }

/* WHEN TO CONSULT */
.consult-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:1fr; gap:1.25rem; }
@media (max-width:1000px){ .consult-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:720px){ .consult-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:720px){
  .consult-grid{ display:grid; grid-auto-flow:column; grid-auto-columns:78%; grid-template-columns:none; grid-auto-rows:auto; align-items:stretch; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; gap:.8rem; padding-bottom:.7rem; scrollbar-width:none; }
  .consult-grid::-webkit-scrollbar{ display:none; }
  .consult-card{ height:auto; scroll-snap-align:start; }
  .consult-note{ margin-top:.9rem; }
}
.consult-card{ display:flex; flex-direction:column; height:100%; background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.6rem 1.5rem; box-shadow:var(--shadow-sm); }
.consult-card--urgent{ background:#fdecee; border-color:#f1bcc0; }
.consult-card--severe{ background:#fbf1e1; border-color:#ecd2a6; }
.consult-ico{ width:46px; height:46px; border-radius:13px; flex:none; display:grid; place-items:center; background:#fff; border:1px solid var(--border); color:var(--teal); margin-bottom:1.1rem; }
.consult-ico svg{ width:22px; height:22px; }
.consult-card--urgent .consult-ico{ color:#c0392b; border-color:#eebcc0; }
.consult-card--severe .consult-ico{ color:#bd7b1c; border-color:#ecd2a6; }
.consult-card h4{ color:var(--teal); font-size:1.18rem; margin-bottom:.8rem; line-height:1.25; }
.consult-card--urgent h4{ color:#b3261e; }
.consult-card--severe h4{ color:#a86717; }
.consult-card ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.5rem; }
.consult-card li{ position:relative; padding-left:1.1rem; font-size:.93rem; color:var(--ink-soft); line-height:1.45; }
.consult-card li::before{ content:""; position:absolute; left:0; top:.5em; width:6px; height:6px; border-radius:50%; background:var(--blue); }
.consult-card--urgent li::before{ background:#d9534f; }
.consult-card--severe li::before{ background:#d98324; }
.consult-note{ margin:auto 0 0; padding-top:.9rem; font-weight:600; font-size:.92rem; color:#b3261e; }

/* BOOK */
.book-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:0; max-width:1080px; margin:0 auto; background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.book-aside{ background:var(--teal); color:#dcebd4; padding:clamp(2rem,4vw,3rem); position:relative; }
.book-aside::after{ content:""; position:absolute; inset:0; background:radial-gradient(closest-side at 80% 15%, color-mix(in srgb, var(--gold) 22%, transparent), transparent 60%); pointer-events:none; }
.book-aside > *{ position:relative; }
.book-aside .ph, .book-aside .ph-img{ aspect-ratio:4/5; border-radius:18px; border-color:rgba(255,255,255,.25); background-color:rgba(255,255,255,.06); margin-bottom:1.4rem; }
.book-aside .ph::after{ background:rgba(20,59,80,.6); color:#cfe3ec; border-color:rgba(255,255,255,.2); }
.book-aside h3{ color:#fff; }
.book-aside .name{ font-family:var(--serif); color:#fff; font-size:1.5rem; }
.book-aside .role{ color:#bcd9e6; font-size:.92rem; margin-bottom:1rem; }
.reassure-list{ list-style:none; margin:1.4rem 0 0; padding:0; display:flex; flex-direction:column; gap:.9rem; }
.reassure-list li{ display:flex; gap:.7rem; align-items:flex-start; color:#cfe3ec; font-size:.96rem; }
.reassure-list svg{ width:20px;height:20px;color:var(--gold);flex:none;margin-top:1px; }
.book-form{ padding:clamp(2rem,4vw,3rem); }
.field{ margin-bottom:1.2rem; }
.field label{ display:block; font-weight:600; font-size:.9rem; color:var(--teal); margin-bottom:.45rem; }
.field label .req{ color:var(--gold-deep); }
.field input, .field select, .field textarea{
  width:100%; font-family:var(--sans); font-size:1rem; color:var(--ink);
  padding:.85rem 1rem; border:1.5px solid var(--border); border-radius:12px; background:var(--mist);
  transition:border-color .15s, box-shadow .15s; appearance:none;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(90,143,168,.18); background:#fff; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.select-wrap{ position:relative; }
.select-wrap::after{ content:""; position:absolute; right:1rem; top:50%; width:9px;height:9px;border-right:2px solid var(--blue);border-bottom:2px solid var(--blue); transform:translateY(-70%) rotate(45deg); pointer-events:none; }
.form-note{ font-size:.85rem; color:var(--ink-mute); display:flex; gap:.5rem; align-items:flex-start; margin-top:1rem; }
.form-note svg{ width:16px;height:16px;color:var(--blue);flex:none;margin-top:2px; }
.or-divide{ display:flex; align-items:center; gap:1rem; margin:1.4rem 0; color:var(--ink-mute); font-size:.85rem; }
.or-divide::before,.or-divide::after{ content:""; flex:1; height:1px; background:var(--border); }
.book-success{ margin-top:1.4rem; background:#eaf6ee; border:1px solid #b7dcc2; color:#1f6b3a; border-radius:12px; padding:1rem 1.2rem; display:flex; gap:.7rem; align-items:flex-start; }
.book-success[hidden], .book-error[hidden]{ display:none; }
.book-success svg{ flex:none; margin-top:1px; }
.book-error{ margin-top:1.4rem; background:#fbeaea; border:1px solid #e6b7b7; color:#8a2b2b; border-radius:12px; padding:1rem 1.2rem; }
.is-loading{ opacity:.6; pointer-events:none; }
.book-embed{ max-width:1080px; margin:2.4rem auto 0; }
.book-embed .embed-frame{ border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); background:var(--paper); min-height:680px; }
.book-embed iframe{ width:100%; min-height:680px; border:0; display:block; }
@media (max-width:820px){ .book-wrap{ grid-template-columns:1fr; } .book-aside{ order:2; } .field-row{ grid-template-columns:1fr; } }

/* ABOUT PAGE */
.page-hero{ padding:clamp(2.5rem,5vw,4.5rem) 0 0; }
.about-hero-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,4vw,4rem); align-items:center; }
.about-hero-grid .ph, .about-hero-grid .ph-img{ aspect-ratio:4/5; border-radius:24px; box-shadow:var(--shadow-lg); }
.about-hero-grid h1{ margin:.6rem 0 1.2rem; }
@media (max-width:820px){ .about-hero-grid{ grid-template-columns:1fr; } .about-hero-grid .ph, .about-hero-grid .ph-img{ max-width:380px; } }
.creds-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
.cred{ display:flex; gap:.9rem; align-items:flex-start; background:var(--paper); border:1px solid var(--border); border-radius:14px; padding:1.1rem 1.2rem; }
.cred svg{ width:22px;height:22px;color:var(--blue);flex:none;margin-top:2px; }
.cred b{ color:var(--teal); display:block; font-family:var(--serif); font-size:1.15rem; }
.cred small{ color:var(--ink-mute); }
@media (max-width:560px){ .creds-grid{ grid-template-columns:1fr; } }
.gold-highlight{ background:linear-gradient(135deg,var(--gold-soft),var(--gold-mid)); border:1px solid var(--gold-border); border-radius:var(--radius-lg); padding:clamp(1.8rem,4vw,3rem); display:flex; gap:1.6rem; align-items:center; }
.gold-highlight .seal{ width:88px;height:88px;border-radius:50%;flex:none; background:radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 60%, var(--gold-deep)); display:grid;place-items:center;color:#fff; box-shadow:inset 0 0 0 3px rgba(255,255,255,.45), 0 8px 22px rgba(0,0,0,.18); }
.gold-highlight .seal svg{ width:44px;height:44px; }
.gold-highlight h3{ color:var(--gold-deep); }
.gold-highlight p{ color:var(--gold-deep); margin:0; }
.philosophy{ text-align:center; max-width:780px; margin:0 auto; }
.philosophy .quote{ font-family:var(--serif); font-style:italic; font-size:clamp(1.6rem,3.4vw,2.4rem); color:var(--teal); line-height:1.35; }
.timeline{ max-width:760px; margin:2rem auto 0; }
.tl-item{ display:grid; grid-template-columns:130px 1fr; gap:1.5rem; padding:1.4rem 0; border-bottom:1px solid var(--border); }
.tl-item .yr{ font-family:var(--serif); font-size:1.3rem; color:var(--gold-deep); font-weight:600; }
.tl-item h4{ color:var(--teal); margin-bottom:.3rem; }
.tl-item p{ margin:0; font-size:.96rem; }
@media (max-width:560px){ .tl-item{ grid-template-columns:1fr; gap:.3rem; } }

/* SERVICE SINGLE */
.svc-hero{ padding:clamp(2.4rem,5vw,4rem) 0 clamp(2.4rem,5vw,4rem); }
.svc-hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,4vw,3.5rem); align-items:center; }
.svc-hero .badge-tag{ display:inline-flex; align-items:center; gap:.5rem; font-size:.78rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--blue); }
.svc-hero h1{ margin:.5rem 0 1.1rem; }
.svc-hero .ph, .svc-hero .ph-img{ aspect-ratio:4/5; border-radius:22px; box-shadow:var(--shadow-lg); }
.svc-bigicon{ width:64px;height:64px;border-radius:18px; background:var(--mist); border:1px solid var(--border); display:grid;place-items:center; color:var(--teal); margin-bottom:1.2rem; }
.svc-bigicon svg{ width:32px;height:32px; }
@media (max-width:820px){ .svc-hero-grid{ grid-template-columns:1fr; } .svc-hero .ph, .svc-hero .ph-img{ order:-1; max-width:360px; } }
.symptom-card{ background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); padding:clamp(1.8rem,3vw,2.6rem); box-shadow:var(--shadow-sm); }
.symptom-list{ list-style:none; margin:1.4rem 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:.9rem 1.6rem; }
.symptom-list li{ display:flex; gap:.7rem; align-items:flex-start; color:var(--ink-soft); }
.symptom-list svg{ width:20px;height:20px; color:#3f8f5e; flex:none; margin-top:2px; }
@media (max-width:600px){ .symptom-list{ grid-template-columns:1fr; } }
.steps{ display:grid; gap:1.2rem; max-width:760px; }
.step{ display:flex; gap:1.1rem; align-items:flex-start; background:var(--paper); border:1px solid var(--border); border-radius:16px; padding:1.4rem 1.5rem; }
.step-n{ font-family:var(--serif); font-size:1.6rem; color:var(--gold); line-height:1; flex:none; width:2.4rem; }
.step h4{ color:var(--teal); margin-bottom:.3rem; }
.step p{ margin:0; font-size:.96rem; }
.note-box{ background:var(--mist); border:1px solid var(--border); border-left:4px solid var(--blue); border-radius:12px; padding:1.3rem 1.5rem; max-width:760px; }
.note-box p{ margin:0; color:var(--ink-soft); }

/* RESOURCES */
.res-hero{ padding:clamp(2.4rem,5vw,4rem) 0 clamp(1.5rem,3vw,2.5rem); }
.filter-row{ display:flex; gap:.6rem; flex-wrap:wrap; margin-bottom:2.2rem; }
.chip{ font-size:.88rem; font-weight:600; color:var(--ink-soft); background:var(--paper); border:1px solid var(--border); padding:.5rem 1.1rem; border-radius:999px; transition:all .15s; cursor:pointer; }
.chip:hover{ border-color:var(--blue); color:var(--teal); }
.chip.active{ background:var(--teal); color:#fff; border-color:var(--teal); }
.featured{ display:grid; grid-template-columns:1.1fr .9fr; gap:0; background:var(--paper); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); margin-bottom:2.6rem; }
.featured .ph, .featured .ph-img{ border:none; border-radius:0; min-height:320px; }
.featured .feat-body{ padding:clamp(1.8rem,3.5vw,3rem); display:flex; flex-direction:column; justify-content:center; }
.meta{ display:flex; align-items:center; gap:.7rem; font-size:.82rem; color:var(--ink-mute); margin-bottom:.8rem; flex-wrap:wrap; }
.meta .cat{ color:var(--teal); font-weight:600; background:var(--mist); border:1px solid var(--border); padding:.25rem .7rem; border-radius:999px; }
.featured h2{ font-size:clamp(1.8rem,3.2vw,2.6rem); margin-bottom:.7rem; }
@media (max-width:820px){ .featured{ grid-template-columns:1fr; } .featured .ph, .featured .ph-img{ min-height:200px; } }
.article{ display:flex; flex-direction:column; overflow:hidden; padding:0; }
.article .ph, .article .ph-img{ border:none; border-radius:0; aspect-ratio:4/5; }
.article .art-body{ padding:1.5rem 1.6rem 1.7rem; display:flex; flex-direction:column; flex:1; }
.article h3{ font-size:1.35rem; margin:.5rem 0; }
.article p{ font-size:.95rem; flex:1; }
.article .svc-link{ font-weight:600; font-size:.9rem; color:var(--teal); display:inline-flex; align-items:center; gap:.4rem; }
.article .svc-link svg{ width:1rem;height:1rem; transition:transform .18s; }
.article:hover .svc-link svg{ transform:translateX(4px); }
.is-hidden{ display:none !important; }
.newsletter{ background:var(--teal); color:#fff; border-radius:var(--radius-lg); padding:clamp(2.2rem,4vw,3.4rem); text-align:center; position:relative; overflow:hidden; }
.newsletter::after{ content:""; position:absolute; inset:0; background:radial-gradient(closest-side at 15% 20%, color-mix(in srgb, var(--gold) 22%, transparent), transparent 55%); pointer-events:none; }
.newsletter > *{ position:relative; }
.newsletter h2{ color:#fff; }
.news-form{ display:flex; gap:.6rem; max-width:460px; margin:1.4rem auto 0; flex-wrap:wrap; }
.news-form input{ flex:1; min-width:200px; padding:.85rem 1.1rem; border-radius:999px; border:1.5px solid rgba(255,255,255,.3); background:rgba(255,255,255,.12); color:#fff; font-family:inherit; font-size:1rem; }
.news-form input::placeholder{ color:#bcd9e6; }
.news-form input:focus{ outline:none; border-color:var(--gold); background:rgba(255,255,255,.18); }

/* POST SINGLE */
.post-hero{ padding:clamp(2.4rem,5vw,4rem) 0 0; }
.post-body{ max-width:760px; margin:0 auto; }
.post-body img{ border-radius:var(--radius); margin:1.6rem 0; }
.post-body h2{ margin:2rem 0 1rem; }
.post-body h3{ margin:1.6rem 0 .8rem; }
.post-body ul, .post-body ol{ color:var(--ink-soft); padding-left:1.3rem; }
.post-body li{ margin:.4rem 0; }
.post-body blockquote{ border-left:4px solid var(--blue); background:var(--mist); margin:1.6rem 0; padding:1.2rem 1.5rem; border-radius:12px; font-family:var(--serif); font-style:italic; font-size:1.3rem; color:var(--teal); }

.skip-link{ position:absolute; left:-999px; }
.skip-link:focus{ left:1rem; top:1rem; background:#fff; padding:.6rem 1rem; border-radius:8px; z-index:200; }

/* ============================================================
   MOBILE + CRO ENHANCEMENTS
   ============================================================ */
/* sticky-header offset so in-page anchors (#services, #consult, #book) land below the bar */
html{ scroll-padding-top:88px; }
/* contain sideways scroll on the content wrapper, NOT html/body - clipping the root
   re-anchors position:fixed (the sticky bar) away from the real screen bottom on iOS */
#main{ overflow-x:clip; }
.wrap{ max-width:100%; }
/* comfortable tap targets everywhere */
.btn, .nav-toggle, .t-arrow, .faq-q, .chip{ min-height:44px; }
.nav-links a{ min-height:auto; }
img{ height:auto; }

/* "Book Appointment" lives in the header on desktop, inside the menu on mobile */
.nav-book-mobile{ display:none; }
@media (max-width:980px){
  .nav-book-desktop{ display:none; }
  .nav-book-mobile{ display:block; margin-top:.6rem; }
  .nav-book-mobile a.btn{ color:#3a2c12; border-bottom:none; padding:.72rem 1.4rem; width:100%; font-size:.98rem; }
}

@media (max-width:860px){
  .hero{ padding-top:1.1rem; }
}

@media (max-width:600px){
  /* compact, cleaner rhythm on phones */
  .section{ padding:clamp(2.1rem,7vw,3rem) 0; }
  .card{ padding:1.3rem; }
  .grid{ gap:1rem; }
  h1{ font-size:clamp(2rem,8.5vw,2.6rem); line-height:1.14; }
  h2{ font-size:clamp(1.6rem,6.5vw,2.1rem); }
  .lead{ font-size:1.04rem; }
  .section-head{ margin-bottom:1.6rem; }

  /* centre hero + stacked two-column intros for a tidy mobile look */
  .hero-grid{ text-align:center; }
  .hero-copy .lead{ margin-left:auto; margin-right:auto; }
  .hero-copy .badge-gold, .hero-copy .eyebrow,
  .hero-reassure,
  .about-grid .eyebrow,
  .svc-hero .badge-tag,
  .about-hero-grid .badge-gold{ justify-content:center; }
  .about-grid > div,
  .svc-hero .svc-hero-grid > .reveal,
  .about-hero-grid > .reveal{ text-align:center; }
  /* Why Choose: keep the whole section left-aligned */
  .why-grid, .why-grid .reveal, .why-pillars .pillar{ text-align:left; }
  .why-grid .eyebrow{ justify-content:flex-start; }
  .svc-hero .svc-bigicon{ margin-left:auto; margin-right:auto; }

  /* full-width primary CTAs */
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn,
  .cta-banner .btn,
  .section--teal .btn,
  .svc-hero .btn,
  .about-hero-grid .btn,
  .page-hero .btn,
  #consult .btn{ width:100%; }
  .btn--lg{ padding:.95rem 1.4rem; font-size:1rem; }

  /* keep Dr. Reddy's face clear: hide the badge, tuck the name chip to the bottom */
  .hero-photo{ max-width:300px; }
  .hero-photo .float-badge{ display:none; }
  .hero-photo .name-tag{ top:auto; bottom:12px; left:12px; right:auto; padding:.5rem .8rem; }
  .hero-photo .name-tag b{ font-size:.98rem; }
  .hero-photo .name-tag span{ font-size:.72rem; }

  .t-inner{ padding:1.3rem 1.1rem; }
  .t-quote{ font-size:1.02rem; line-height:1.4; margin-bottom:1rem; }
  .t-who .av{ width:38px; height:38px; }
  .t-viewport{ transition:height .35s ease; }
  .book-aside{ order:2; }

  /* WHEN TO REACH OUT: two compact cards per row, tighter bullets */
  #consult .consult-grid{ gap:.8rem; }
  .consult-card{ padding:1rem .8rem; }
  .consult-ico{ width:38px; height:38px; border-radius:11px; margin-bottom:.7rem; }
  .consult-ico svg{ width:19px; height:19px; }
  .consult-card h4{ font-size:1rem; margin-bottom:.5rem; line-height:1.2; }
  .consult-card ul{ gap:.3rem; }
  .consult-card li{ font-size:.82rem; line-height:1.32; padding-left:.95rem; }
  .consult-note{ font-size:.82rem; padding-top:.7rem; }
}

@media (max-width:460px){
  .consult-grid{ grid-auto-rows:auto; }
  .wrap{ padding-left:1.05rem; padding-right:1.05rem; }
  .footer-bottom{ flex-direction:column; gap:.4rem; text-align:center; }
}

/* mobile sticky bar: short prompt + single Book CTA */
@media (max-width:760px){
  .mobile-cta{ align-items:center; gap:.7rem; }
  .mobile-cta-text{ flex:1; font-family:var(--serif); font-size:1.02rem; line-height:1.18; color:var(--teal); font-weight:600; }
  .mobile-cta .btn{ flex:none; padding:.82rem 1.2rem; font-size:.98rem; }
}
@media (max-width:380px){
  .mobile-cta-text{ display:none; }
  .mobile-cta .btn{ flex:1; }
}

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

/* ============================================================
   WHY-CHOOSE layout (responsive, replaces old inline grid)
   ============================================================ */
.why-grid{ grid-template-columns:.9fr 1.1fr; gap:clamp(2rem,4vw,4rem); align-items:start; }
.why-pillars{ grid-template-columns:1fr 1fr; gap:2rem; }
@media (max-width:780px){ .why-grid, .why-pillars{ grid-template-columns:1fr; } }

/* Floating WhatsApp bubble off on the homepage */
.is-home .wa-float{ display:none; }

/* ============================================================
   MOBILE REFINEMENTS (compact, tidy)
   ============================================================ */
@media (max-width:600px){
  /* hero credential pill smaller */
  .badge-gold.badge-gold--lg{ font-size:.76rem; padding:.42rem .8rem .42rem .5rem; letter-spacing:.01em; }
  .badge-gold.badge-gold--lg .medal{ width:19px; height:19px; }

  /* reassurance line: icon aligns to first line, group centred */
  .hero-reassure{ align-items:flex-start; justify-content:center; text-align:left; gap:.5rem; font-size:.88rem; }
  .hero-reassure svg{ margin-top:.25em; }

  /* trust bar compact */
  .trust-item{ padding:1rem .8rem; }
  .trust-item .num{ font-size:1.9rem; }
  .trust-item.is-gold .num svg{ width:28px; height:28px; }
  .trust-item .lbl{ font-size:.8rem; margin-top:.3rem; }

  /* smaller, tighter body copy site-wide */
  p{ font-size:.93rem; line-height:1.55; }
  .lead{ font-size:1rem; line-height:1.55; }

  /* HOW I CAN HELP: two compact service cards per row */
  #services .grid{ grid-template-columns:repeat(2,1fr); gap:.7rem; }
  #services .svc-card{ padding:1rem .85rem; }
  #services .svc-card .icon-chip{ width:42px; height:42px; margin-bottom:.55rem; }
  #services .svc-card .icon-chip svg{ width:21px; height:21px; }
  #services .svc-card h3{ font-size:1.02rem; margin-bottom:.3rem; line-height:1.2; }
  #services .svc-card p{ font-size:.8rem; line-height:1.4; margin-bottom:.6rem; }
  #services .svc-link{ font-size:.78rem; }

  /* WHY CHOOSE: readable full-width pillars */
  .pillar{ gap:.8rem; }
  .pillar .n{ font-size:1.3rem; width:1.7rem; }
  .pillar h4{ font-size:1.12rem; margin-bottom:.25rem; }
  .pillar p{ font-size:.9rem; line-height:1.45; }

  /* FAQ compact */
  .faq-q{ padding:.95rem 1.8rem .95rem 0; font-size:1.02rem; }
  .faq-q::after{ font-size:1.3rem; }
  .faq-a p{ font-size:.9rem; line-height:1.5; padding:0 .8rem 1rem 0; }
  .faq-item.open .faq-a{ max-height:680px; }

  /* FOOTER: single centred column, compact line spacing */
  .site-footer{ padding:2.4rem 0 1.4rem; }
  .site-footer h4{ margin-bottom:.5rem; font-size:.76rem; }
  .footer-grid{ grid-template-columns:1fr; gap:1.3rem; text-align:center; }
  .footer-contact{ display:none; }
  .footer-links{ gap:.05rem; font-size:16px; align-items:center; line-height:1.45; }
  .footer-links li{ margin:0; }
  .footer-brand p{ font-size:.86rem; line-height:1.5; max-width:34ch; margin-left:auto; margin-right:auto; }
  .footer-brand .badge-gold{ display:none; }
  .footer-bottom{ font-size:16px; line-height:1.5; margin-top:1.6rem; padding-top:1.1rem; justify-content:center; text-align:center; }
}

/* ============================================================
   MINIMUM TEXT SIZE: 16px floor across the whole site
   (logo micro-tagline is excluded as a brand graphic element)
   ============================================================ */
.eyebrow,
.badge-gold, .badge-gold.badge-gold--lg,
.trust-item .lbl,
.hero-reassure,
.svc-link,
.t-who small,
.form-note,
.meta, .meta .cat,
.chip,
.site-footer h4,
.footer-links,
.footer-bottom,
.svc-hero .badge-tag,
.field label,
.cred small,
.tl-item p,
.step p,
.symptom-list li,
.article p,
.svc-card p,
.pillar p,
.consult-card li,
.consult-note,
.ph::after,
.hero-photo .name-tag span,
.hero-photo .float-badge small{ font-size:16px; }

@media (max-width:600px){
  p, .lead,
  .pillar p, .faq-a p,
  #services .svc-card p, #services .svc-link,
  .consult-card li, .consult-note,
  .article p, .meta,
  .hero-reassure, .trust-item .lbl,
  .has-sub .submenu a,
  .badge-gold.badge-gold--lg{ font-size:16px; }
}

/* ============================================================
   Reusable card scroller (mobile): equal-height, swipeable,
   infinite-looped via JS. Add class .mh-scroller to a card grid.
   ============================================================ */
@media (max-width:720px){
  .mh-scroller{ display:grid !important; grid-auto-flow:column; grid-auto-columns:80%; grid-template-columns:none !important; grid-auto-rows:auto; align-items:stretch; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:auto; -webkit-overflow-scrolling:touch; gap:.8rem; padding-bottom:.7rem; margin-left:0; margin-right:0; scrollbar-width:none; }
  .mh-scroller::-webkit-scrollbar{ display:none; }
  .mh-scroller > *{ scroll-snap-align:center; scroll-snap-stop:always; height:auto; max-width:none; opacity:1 !important; transform:none !important; }
  .consult-grid{ scroll-snap-type:x mandatory; scroll-behavior:auto; }
  .consult-grid > *{ scroll-snap-align:center; scroll-snap-stop:always; opacity:1 !important; transform:none !important; }
}

/* ============================================================
   Service page mobile refinements
   ============================================================ */
@media (max-width:600px){
  .svc-hero{ padding-top:1.1rem; padding-bottom:clamp(1.4rem,4vw,2rem); }
  .svc-hero-grid{ gap:1.1rem; }
  .svc-hero .ph, .svc-hero .ph-img{ max-width:280px; margin-left:auto; margin-right:auto; }
  .symptom-card{ padding:1.3rem 1.2rem; }
  .symptom-list{ gap:.45rem; }
  .symptom-list li{ line-height:1.4; }
  .note-box{ padding:1rem 1.1rem; }
  .note-box p{ font-size:16px; line-height:1.5; }
}

/* Service hero: logo + name on one centered line */
.svc-head{ display:flex; align-items:center; justify-content:flex-start; flex-wrap:wrap; gap:.75rem; margin-bottom:1.1rem; text-align:left; }
.svc-head .svc-bigicon{ width:62px; height:62px; border-radius:18px; margin-bottom:0; flex:none; }
.svc-head .svc-bigicon svg{ width:31px; height:31px; }
.svc-head h1{ margin:0; font-size:clamp(2rem,5.5vw,3rem); line-height:1.05; }
@media (max-width:820px){
  .svc-hero{ min-height:calc(100vh - 74px); min-height:calc(100svh - 74px); display:flex; align-items:flex-start; padding-top:1rem; padding-bottom:1.5rem; }
  .svc-hero .svc-hero-grid{ width:100%; }
  .svc-hero .svc-hero-grid > .reveal{ text-align:center; }
  .svc-hero .svc-hero-grid > .reveal > div[style*="flex"]{ justify-content:center; }
  /* icon + heading as centered inline elements on one line (no flex justify to break) */
  .svc-head{ display:block !important; text-align:center; margin-bottom:.9rem; }
  .svc-head .svc-bigicon{ display:inline-grid !important; place-items:center; vertical-align:middle; width:46px; height:46px; border-radius:13px; margin:0 .5rem 0 0; padding:0; }
  .svc-head .svc-bigicon svg{ width:22px; height:22px; }
  .svc-head h1{ display:inline; vertical-align:middle; line-height:1.2; font-size:clamp(1.75rem,6vw,2.3rem) !important; }
}

/* Testimonials: responsive grid on desktop, infinite mh-scroller on mobile */
.t-grid{ grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); max-width:1100px; margin-left:auto; margin-right:auto; align-items:stretch; }
.t-grid .t-inner{ margin:0; max-width:none; }

/* About page portrait: match homepage hero size on mobile */
@media (max-width:600px){
  .about-hero-grid .ph, .about-hero-grid .ph-img{ max-width:300px; margin-left:auto; margin-right:auto; }
}

/* ============================================================
   DESKTOP hero + treatment refinements (>=861px)
   ============================================================ */
@media (min-width:861px){
  /* lift hero copy to the top, trim the top whitespace */
  .hero-grid, .about-hero-grid{ align-items:start; }
  .svc-hero-grid{ align-items:center; }
  .hero{ padding-top:clamp(1.4rem,3vw,2.6rem); }
  .svc-hero{ padding-top:clamp(1.4rem,3vw,2.4rem); }
  .page-hero{ padding-top:clamp(1.6rem,3vw,2.6rem); }
  /* smaller hero images, centered so there's breathing room on the sides */
  .hero-photo{ max-width:430px; margin-left:auto; margin-right:auto; }
  .svc-hero .ph, .svc-hero .ph-img{ max-width:400px; margin-left:auto; margin-right:auto; }
  .about-hero-grid .ph, .about-hero-grid .ph-img{ max-width:400px; margin-left:auto; margin-right:auto; }
  /* Treatment Approach: 3 steps across the width instead of a narrow left column */
  .steps{ grid-template-columns:repeat(3,1fr); max-width:none; }
}
