/* ============================================================
   iCollab Healthcare — Design System
   Brand: Coral #F98959 · Teal #388D94
   ============================================================ */
:root{
  /* Brand */
  --coral:#F98959;
  --coral-deep:#E8703B;
  --coral-soft:#FFF1E9;
  --teal:#388D94;
  --teal-deep:#2A6E74;
  --teal-soft:#E8F3F3;
  --teal-ink:#1D4D52;

  /* Neutrals */
  --ink:#23323A;
  --muted:#5E7178;
  --line:#E7EEEF;
  --cloud:#F7FAFA;
  --paper:#FFFFFF;
  --shadow-sm:0 2px 10px rgba(35,50,58,.05);
  --shadow:0 10px 40px rgba(56,141,148,.10);
  --shadow-lg:0 24px 70px rgba(56,141,148,.16);

  --radius:18px;
  --radius-lg:28px;
  --radius-pill:999px;
  --maxw:1180px;
  --gutter:clamp(20px,5vw,40px);

  --serif:"Fraunces",Georgia,"Times New Roman",serif;
  --sans:"Plus Jakarta Sans","Inter",system-ui,-apple-system,sans-serif;

  --ease:cubic-bezier(.22,.61,.36,1);
}

*{box-sizing:border-box;margin:0;padding:0}
img{max-width:100%;height:auto}
table{max-width:100%}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{animation-duration:.001ms!important;transition-duration:.001ms!important}}
body{font-family:var(--sans);color:var(--ink);background:var(--paper);line-height:1.65;font-size:17px;overflow-x:hidden;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
img{max-width:100%;display:block}
a{color:var(--teal);text-decoration:none;transition:color .2s var(--ease)}
a:hover{color:var(--teal-deep)}

h1,h2,h3,h4{font-family:var(--serif);font-weight:500;line-height:1.1;color:var(--teal-ink);letter-spacing:-.02em}
h1{font-size:clamp(2.4rem,5.5vw,4rem)}
h2{font-size:clamp(1.9rem,4vw,2.9rem)}
h3{font-size:clamp(1.25rem,2vw,1.55rem);letter-spacing:-.01em}
h4{font-size:1.15rem}
p{max-width:68ch}

.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}
.wrap-narrow{max-width:840px;margin-inline:auto;padding-inline:var(--gutter)}
section{padding:clamp(3.5rem,8vw,7rem) 0}
.lede{font-size:clamp(1.1rem,1.6vw,1.3rem);color:var(--muted);line-height:1.6}

/* Eyebrow */
.eyebrow{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--sans);font-weight:700;
  font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--coral-deep)}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--coral);border-radius:2px}
.eyebrow.on-dark{color:var(--coral)}

/* Skip link */
.skip{position:absolute;left:-999px;top:0;background:var(--paper);color:var(--teal-ink);padding:.7rem 1.1rem;border-radius:10px;z-index:200;font-weight:600;box-shadow:var(--shadow)}
.skip:focus{left:14px;top:14px}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font-family:var(--sans);font-weight:700;
  font-size:1rem;padding:.92rem 1.6rem;border-radius:var(--radius-pill);min-height:52px;cursor:pointer;border:2px solid transparent;
  transition:transform .2s var(--ease),background .2s var(--ease),box-shadow .2s var(--ease),color .2s var(--ease);white-space:nowrap}
.btn:focus-visible{outline:3px solid var(--coral);outline-offset:3px}
.btn svg{width:18px;height:18px}
.btn-primary{background:var(--coral);color:#fff;box-shadow:0 8px 22px rgba(249,137,89,.32)}
.btn-primary:hover{background:var(--coral-deep);color:#fff;transform:translateY(-2px);box-shadow:0 14px 30px rgba(249,137,89,.4)}
.btn-teal{background:var(--teal);color:#fff;box-shadow:0 8px 22px rgba(56,141,148,.28)}
.btn-teal:hover{background:var(--teal-deep);color:#fff;transform:translateY(-2px)}
.btn-ghost{background:#fff;color:var(--teal);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--teal);background:var(--teal-soft);transform:translateY(-2px)}
.btn-ghost-dark{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.btn-ghost-dark:hover{background:rgba(255,255,255,.12);color:#fff;border-color:#fff}
.btn-sm{min-height:44px;padding:.65rem 1.15rem;font-size:.92rem}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.82);backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent;transition:border-color .3s,box-shadow .3s}
.site-header.scrolled{border-color:var(--line);box-shadow:var(--shadow-sm)}
.nav{display:flex;align-items:center;justify-content:space-between;height:82px;gap:1.5rem}
.brand{display:flex;align-items:center;gap:.7rem;flex-shrink:0}
.brand img{height:42px;width:auto}
.nav-links{display:flex;align-items:center;gap:.3rem;list-style:none}
.nav-links>li{position:relative}
.nav-links>li>a{display:flex;align-items:center;gap:.3rem;color:var(--ink);font-weight:600;font-size:.96rem;padding:.6rem .85rem;border-radius:10px}
.nav-links>li>a:hover{color:var(--teal-deep);background:var(--teal-soft)}
.nav-links .chev{width:14px;height:14px;transition:transform .2s}
.nav-links>li:hover .chev{transform:rotate(180deg)}
/* Dropdown */
.dropdown{position:absolute;top:calc(100% + 8px);left:0;min-width:260px;background:#fff;border:1px solid var(--line);
  border-radius:16px;box-shadow:var(--shadow-lg);padding:.6rem;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:.22s var(--ease)}
.nav-links>li:hover .dropdown,.nav-links>li:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown a{display:block;padding:.6rem .8rem;border-radius:10px;color:var(--ink);font-weight:600;font-size:.92rem}
.dropdown a small{display:block;font-weight:400;color:var(--muted);font-size:.8rem;margin-top:.1rem}
.dropdown a:hover{background:var(--coral-soft);color:var(--coral-deep)}
.nav-cta{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.intake-btn svg{width:16px;height:16px}
.nav-cta .btn svg.icon{width:16px;height:16px}
.menu-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:12px;border-radius:10px}
.menu-toggle span{width:24px;height:2.5px;background:var(--teal-ink);border-radius:2px;transition:.25s}

/* Mobile drawer */
.drawer{position:fixed;inset:0;z-index:150;background:#fff;transform:translateX(100%);transition:transform .35s var(--ease);
  display:flex;flex-direction:column;padding:1.5rem var(--gutter) 2rem;overflow-y:auto}
.drawer.open{transform:translateX(0)}
.drawer-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.2rem}
.drawer-close{background:none;border:0;font-size:2rem;line-height:1;color:var(--teal-ink);cursor:pointer;padding:.3rem .6rem}
/* Actions block at top of drawer */
.drawer-actions{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.6rem}
.drawer-actions .btn{width:100%}
.drawer-call{display:flex;gap:.6rem}
.drawer-call .btn{flex:1}
/* Simplified section links */
.drawer-nav{display:flex;flex-direction:column}
.drawer-nav .d-item{display:flex;justify-content:space-between;align-items:center;font-family:var(--serif);
  font-size:1.4rem;color:var(--teal-ink);padding:.95rem 0;border-bottom:1px solid var(--line)}
.drawer-nav .d-item::after{content:"›";color:var(--coral);font-size:1.5rem;font-family:var(--sans)}
.d-newpatient{display:flex;align-items:center;gap:.5rem;margin-top:1.6rem;font-weight:700;color:var(--teal-deep);font-size:.98rem}
.d-newpatient svg{color:var(--coral)}

/* ---------- Hero ---------- */
.hero{position:relative;overflow:hidden;background:
  radial-gradient(900px 500px at 88% -8%,var(--coral-soft),transparent 60%),
  radial-gradient(800px 600px at 5% 110%,var(--teal-soft),transparent 55%),var(--paper)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4.5rem);align-items:center;
  padding:clamp(3rem,7vw,6rem) 0 clamp(3.5rem,8vw,6.5rem)}
.hero h1{margin:1rem 0 1.2rem}
.hero h1 .accent{color:var(--coral);font-style:italic}
.hero .cta-row{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:2rem}
.hero .trust-row{display:flex;flex-wrap:wrap;gap:1.5rem;margin-top:2.5rem;padding-top:2rem;border-top:1px solid var(--line)}
.trust-item{display:flex;align-items:center;gap:.6rem;font-size:.92rem;color:var(--muted);font-weight:600}
.trust-item strong{color:var(--teal-ink);font-family:var(--serif);font-size:1.4rem;font-weight:600}

/* Hero visual — interlocking organic motif */
.hero-visual{position:relative;aspect-ratio:1/1;max-width:520px;margin-inline:auto;width:100%}
.blob{position:absolute;border-radius:46% 54% 58% 42%/52% 44% 56% 48%;filter:blur(.3px)}
.blob-coral{inset:8% 14% 22% 6%;background:linear-gradient(150deg,#FFB892,var(--coral));opacity:.92;
  border-radius:58% 42% 50% 50%/55% 50% 50% 45%;animation:float1 9s var(--ease) infinite alternate}
.blob-teal{inset:24% 6% 6% 30%;background:linear-gradient(150deg,var(--teal),#2A6E74);opacity:.9;
  border-radius:50% 50% 42% 58%/45% 55% 45% 55%;mix-blend-mode:multiply;animation:float2 11s var(--ease) infinite alternate}
.hero-visual .card-float{position:absolute;background:#fff;border-radius:16px;box-shadow:var(--shadow-lg);
  padding:.85rem 1.1rem;display:flex;align-items:center;gap:.7rem;font-weight:700;color:var(--teal-ink);font-size:.9rem;z-index:3}
.card-float .pulse{width:12px;height:12px;border-radius:50%;background:#46C26B;position:relative}
.card-float .pulse::after{content:"";position:absolute;inset:-5px;border-radius:50%;border:2px solid #46C26B;opacity:.5;animation:ping 2s infinite}
.cf-1{top:12%;right:-4%}
.cf-2{bottom:14%;left:-6%}
.hero-visual .ring{position:absolute;width:90px;height:90px;border:3px solid var(--coral);border-radius:50%;top:-2%;left:24%;z-index:2;background:#fff}
@keyframes float1{to{transform:translate(8px,-12px) rotate(3deg)}}
@keyframes float2{to{transform:translate(-10px,10px) rotate(-3deg)}}
@keyframes ping{75%,100%{transform:scale(2.2);opacity:0}}

/* ---------- Cards ---------- */
.grid{display:grid;gap:1.5rem}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.9rem;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s;position:relative;overflow:hidden}
.card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:transparent}

/* Service card with immersive top accent */
.svc-card{display:flex;flex-direction:column}
.svc-card .icon-wrap{width:58px;height:58px;border-radius:16px;display:grid;place-items:center;margin-bottom:1.2rem;
  background:var(--teal-soft);color:var(--teal);transition:.25s var(--ease)}
.svc-card:hover .icon-wrap{background:var(--coral);color:#fff;transform:rotate(-6deg) scale(1.05)}
.svc-card svg.icon{width:28px;height:28px}
.svc-card h3{margin-bottom:.5rem}
.svc-card p{color:var(--muted);font-size:.97rem;flex-grow:1}
.svc-card .more{margin-top:1.2rem;font-weight:700;color:var(--teal);display:inline-flex;align-items:center;gap:.4rem}
.svc-card .more svg{width:16px;height:16px;transition:transform .2s}
.svc-card:hover .more svg{transform:translateX(4px)}
.svc-card::after{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--coral),var(--teal));
  transform:scaleX(0);transform-origin:left;transition:transform .3s var(--ease)}
.svc-card:hover::after{transform:scaleX(1)}
a.svc-card{color:inherit}

/* Refined horizontal navigation link card */
.nav-link-card{display:flex;align-items:center;gap:1.1rem;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:1.5rem 1.6rem;transition:.25s var(--ease);color:var(--ink);position:relative;overflow:hidden}
.nav-link-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:transparent;color:var(--ink)}
.nav-link-card .nlc-ic{flex:0 0 auto;width:50px;height:50px;border-radius:14px;display:grid;place-items:center;
  background:var(--teal-soft);color:var(--teal);transition:.25s var(--ease)}
.nav-link-card:hover .nlc-ic{background:var(--coral);color:#fff;transform:rotate(-5deg)}
.nav-link-card .nlc-body{flex:1;display:flex;flex-direction:column;gap:.15rem}
.nav-link-card .nlc-title{font-family:var(--serif);font-size:1.3rem;color:var(--teal-ink);line-height:1.1}
.nav-link-card .nlc-sub{color:var(--muted);font-size:.92rem}
.nav-link-card .nlc-arrow{flex:0 0 auto;color:var(--teal);transition:transform .25s var(--ease)}
.nav-link-card:hover .nlc-arrow{transform:translateX(5px);color:var(--coral-deep)}

/* ---------- Section helpers ---------- */
.section-head{max-width:680px;margin-bottom:clamp(2rem,4vw,3.2rem)}
.section-head.center{margin-inline:auto;text-align:center}
.section-head h2{margin:.7rem 0 .8rem}
.tealband{background:var(--teal-ink);color:#E9F2F2;position:relative;overflow:hidden}
.tealband h2,.tealband h3{color:#fff}
.tealband .lede{color:#B8D2D4}
.cloud{background:var(--cloud)}

/* ---------- Feature list ---------- */
.feature-list{list-style:none;display:grid;gap:1.1rem;margin-top:1.5rem}
.feature-list-2col{grid-template-columns:1fr 1fr;gap:1.1rem 2rem}
@media(max-width:640px){.feature-list-2col{grid-template-columns:1fr}}
.feature-list li{display:flex;gap:.9rem;align-items:flex-start}
.feature-list .tick{flex:0 0 auto;width:30px;height:30px;border-radius:50%;background:var(--coral-soft);color:var(--coral-deep);
  display:grid;place-items:center;margin-top:2px}
.tealband .feature-list .tick{background:rgba(255,255,255,.12);color:var(--coral)}
.feature-list strong{color:var(--teal-ink)}
.tealband .feature-list strong{color:#fff}

/* ---------- Steps ---------- */
.steps{counter-reset:step;display:grid;gap:1.5rem}
.step{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:2rem 1.7rem 1.7rem}
.step::before{counter-increment:step;content:counter(step,decimal-leading-zero);position:absolute;top:1.4rem;right:1.6rem;
  font-family:var(--serif);font-size:2rem;color:var(--coral);opacity:.35}
.step h3{font-size:1.2rem;margin:.3rem 0 .5rem}
.step p{color:var(--muted);font-size:.96rem}

/* ---------- Location card ---------- */
.loc-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;transition:.25s var(--ease)}
.loc-card:hover{box-shadow:var(--shadow);transform:translateY(-4px)}
.loc-card .loc-head{padding:1.7rem 1.7rem .2rem;display:flex;align-items:flex-start;justify-content:space-between;gap:1rem}
.loc-pin{flex:0 0 auto;width:46px;height:46px;border-radius:13px;background:var(--coral-soft);color:var(--coral-deep);display:grid;place-items:center}
.loc-card .loc-body{padding:1rem 1.7rem 1.7rem}
.loc-meta{display:grid;gap:.55rem;margin:1rem 0 1.3rem;font-size:.95rem;color:var(--muted)}
.loc-meta a{font-weight:700;color:var(--teal)}
.loc-meta div{display:flex;gap:.6rem;align-items:flex-start}
.loc-meta svg{width:18px;height:18px;flex-shrink:0;color:var(--teal);margin-top:3px}
.loc-actions{display:flex;flex-wrap:wrap;gap:.6rem}
.loc-photo{width:100%;height:auto;border-radius:var(--radius);margin-bottom:1.3rem;display:block;object-fit:cover;aspect-ratio:16/10}
.phys-cta{display:grid;grid-template-columns:1.4fr 1fr;gap:2rem;align-items:center}
.phys-cta-btn{text-align:right}
@media(max-width:760px){
  .phys-cta{grid-template-columns:1fr;gap:1.3rem}
  .phys-cta-btn{text-align:left}
  .phys-cta-btn .btn{width:100%}
}
.loc-cta{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:.5rem}
@media(max-width:560px){
  .loc-cta{flex-direction:column;align-items:stretch}
  .loc-cta .btn{width:100%}
}

/* ---------- Physician cards (NO photos) ---------- */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.doc-card{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.7rem;
  overflow:hidden;transition:.25s var(--ease)}
.doc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:transparent}
/* Monogram instead of photo */
.doc-mono{width:64px;height:64px;border-radius:50%;display:grid;place-items:center;font-family:var(--serif);
  font-size:1.5rem;font-weight:600;color:#fff;margin-bottom:1.1rem;letter-spacing:.02em;position:relative}
.doc-mono::after{content:"";position:absolute;inset:-5px;border-radius:50%;border:1.5px solid currentColor;opacity:.25}
.doc-mono.c{background:linear-gradient(135deg,#FFB892,var(--coral))}
.doc-mono.t{background:linear-gradient(135deg,var(--teal),var(--teal-deep))}
.doc-card h3{font-size:1.2rem;margin-bottom:.2rem}
.doc-role{color:var(--coral-deep);font-weight:700;font-size:.85rem;letter-spacing:.04em;text-transform:uppercase}
.doc-cred{color:var(--muted);font-size:.85rem;margin-top:.5rem;font-style:italic}
.doc-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:1rem}
.doc-tag{background:var(--teal-soft);color:var(--teal-deep);font-size:.74rem;font-weight:700;padding:.28rem .65rem;border-radius:var(--radius-pill);letter-spacing:.02em}
.doc-card .corner{position:absolute;top:0;right:0;width:60px;height:60px;opacity:.06;color:var(--teal)}
.doc-card.feat{border-color:var(--coral)}
.doc-card.feat .doc-mono{width:74px;height:74px;font-size:1.7rem}

/* ---------- FAQ ---------- */
.faq details{border:1px solid var(--line);border-radius:14px;margin-bottom:.8rem;background:#fff;overflow:hidden;transition:.2s}
.faq details[open]{border-color:var(--teal);box-shadow:var(--shadow-sm)}
.faq summary{list-style:none;cursor:pointer;padding:1.15rem 1.4rem;font-weight:700;color:var(--teal-ink);
  display:flex;justify-content:space-between;align-items:center;gap:1rem;font-size:1.02rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary .ic{flex:0 0 auto;width:26px;height:26px;border-radius:50%;background:var(--teal-soft);color:var(--teal);
  display:grid;place-items:center;font-size:1.3rem;line-height:1;transition:.25s var(--ease)}
.faq details[open] summary .ic{background:var(--coral);color:#fff;transform:rotate(45deg)}
.faq .faq-body{padding:0 1.4rem 1.3rem;color:var(--muted)}

/* ---------- Pull / quote band ---------- */
.quote-band{text-align:center}
.quote-band blockquote{font-family:var(--serif);font-size:clamp(1.5rem,3.2vw,2.4rem);line-height:1.3;color:#fff;
  max-width:20ch;margin:0 auto;font-style:italic}
.quote-band .qmark{font-family:var(--serif);font-size:5rem;color:var(--coral);line-height:.5;display:block;margin-bottom:.5rem}

/* ---------- CTA banner ---------- */
.cta-banner{background:linear-gradient(120deg,var(--teal),var(--teal-deep));border-radius:var(--radius-lg);
  padding:clamp(2.5rem,5vw,4rem);text-align:center;position:relative;overflow:hidden}
.cta-banner::before,.cta-banner::after{content:"";position:absolute;border-radius:50%;opacity:.12;background:var(--coral)}
.cta-banner::before{width:300px;height:300px;top:-120px;right:-80px}
.cta-banner::after{width:200px;height:200px;bottom:-100px;left:-50px}
.cta-banner h2{color:#fff;position:relative}
.cta-banner p{color:#C2DBDC;margin:.7rem auto 1.8rem;position:relative}
.cta-banner .cta-row{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap;position:relative}

/* ---------- Emergency notice ---------- */
.emergency{display:flex;gap:.8rem;align-items:flex-start;background:var(--coral-soft);border:1px solid #F6C9AE;
  border-left:4px solid var(--coral);border-radius:12px;padding:1rem 1.3rem;color:#8A3D17;font-size:.95rem;font-weight:500}
.emergency svg{flex-shrink:0;width:22px;height:22px;color:var(--coral-deep);margin-top:2px}

/* Policy notice callout */
.policy-notice{display:flex;gap:1.3rem;align-items:flex-start;background:linear-gradient(120deg,var(--coral-soft),#fff);
  border:1px solid #F6C9AE;border-radius:var(--radius-lg);padding:clamp(1.6rem,3vw,2.2rem)}
.policy-notice .pn-ic{flex:0 0 auto;width:54px;height:54px;border-radius:14px;background:var(--coral);color:#fff;display:grid;place-items:center}
.policy-notice h2{color:var(--teal-ink)}
@media(max-width:560px){.policy-notice{flex-direction:column;gap:1rem}}

/* Pathway cards (physician join) */
.path-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.7rem 1.5rem;position:relative;transition:.25s var(--ease)}
.path-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:transparent}
.path-card .path-num{font-family:var(--serif);font-size:1.6rem;color:var(--coral);opacity:.5;font-weight:600}
.path-card h3{font-size:1.15rem;margin:.4rem 0 .5rem}
.path-card p{color:var(--muted);font-size:.93rem}

/* ---------- Breadcrumb ---------- */
.crumb{padding:1.3rem 0 0;font-size:.85rem;color:var(--muted)}
.crumb a{color:var(--muted);font-weight:600}
.crumb a:hover{color:var(--teal)}
.crumb span{margin:0 .5rem;opacity:.5}

/* ---------- Page hero (interior) ---------- */
.page-hero{background:radial-gradient(700px 400px at 90% 0%,var(--teal-soft),transparent 55%),var(--cloud);
  padding:clamp(2rem,5vw,3.5rem) 0 clamp(2.5rem,5vw,4rem);position:relative;overflow:hidden}
.page-hero h1{margin:.6rem 0 1rem;max-width:18ch}
.page-hero .lede{max-width:60ch}
.page-hero .deco{position:absolute;right:-60px;top:-40px;width:280px;height:280px;opacity:.5;pointer-events:none}
@media(max-width:640px){.page-hero .deco{width:130px;height:130px;right:-48px;top:-28px;opacity:.22}}

/* ---------- Prose ---------- */
.prose h2{margin:2.5rem 0 1rem}
.prose h3{margin:2rem 0 .6rem}
.prose p{margin-bottom:1.1rem;color:#3C4D54}
.prose ul{margin:1rem 0 1.5rem 0;padding-left:0;list-style:none;display:grid;gap:.8rem}
.prose ul li{position:relative;padding-left:1.6rem;color:#3C4D54;line-height:1.6}
.prose ul li::before{content:"";position:absolute;left:.15rem;top:.62em;width:7px;height:7px;border-radius:50%;background:var(--coral)}
.prose ul li strong{color:var(--teal-ink);font-weight:700}
.prose .columns{columns:2;column-gap:2.5rem}
@media(max-width:640px){.prose .columns{columns:1}}

/* Chip row */
.chips{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.2rem}
.chip{background:#fff;border:1px solid var(--line);border-radius:var(--radius-pill);padding:.5rem 1rem;font-size:.88rem;font-weight:600;color:var(--teal-deep)}
/* Related-links cluster (internal-link SEO block) */
.rel-wrap{padding:3rem 0}
.rel-wrap .rel-head{margin-bottom:1.4rem}
.rel-wrap .rel-head h2{margin:.5rem 0 0;font-size:clamp(1.4rem,2.4vw,1.85rem)}
.rel-sub{margin:.5rem 0 0;color:var(--muted);font-size:.97rem;max-width:60ch}
.rel-chips{display:flex;flex-wrap:wrap;gap:.6rem}
.rel-chip{display:inline-flex;align-items:center;gap:.45rem;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius-pill);padding:.6rem 1.1rem;font-size:.92rem;font-weight:600;color:var(--teal-deep);
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}
.rel-chip svg{color:var(--coral-deep);flex:none}
.rel-chip:hover{border-color:var(--coral);box-shadow:0 6px 18px rgba(232,112,59,.12);transform:translateY(-1px);color:var(--teal-ink)}
.rel-chip:focus-visible{outline:3px solid var(--coral);outline-offset:3px}

/* Stat row */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.stat .num{font-family:var(--serif);font-size:clamp(2rem,4vw,3rem);color:var(--coral);font-weight:600;line-height:1}
.stat .lab{font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-top:.5rem;font-weight:600}
.tealband .stat .num{color:var(--coral)}
.tealband .stat .lab{color:#9DBFC1}

/* ---------- Footer ---------- */
.site-footer{background:var(--teal-ink);color:#B8D2D4;padding:clamp(3rem,6vw,4.5rem) 0 2rem}
.site-footer .wrap{max-width:1320px}
.footer-grid{display:grid;grid-template-columns:minmax(190px,1fr) repeat(4,minmax(170px,1.15fr));gap:2.5rem 3rem;align-items:start}
.site-footer .addr{font-size:.9rem;line-height:1.75;text-wrap:pretty}
.site-footer img.flogo{height:48px;margin-bottom:1.1rem}
.site-footer h4{color:#fff;font-family:var(--sans);font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:1.1rem}
.site-footer ul{list-style:none;display:grid;gap:.6rem}
.site-footer a{color:#B8D2D4;font-size:.93rem}
.site-footer a:hover{color:#fff}
.foot-social{display:flex;gap:.6rem;margin-top:1.2rem}
.foot-social a{width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.2);display:grid;place-items:center;transition:border-color .2s,background .2s}
.foot-social a:hover{border-color:rgba(255,255,255,.55);background:rgba(255,255,255,.06)}
.foot-social a:hover{background:var(--coral);border-color:var(--coral)}
.foot-social svg{width:18px;height:18px}
.foot-emergency{background:rgba(255,255,255,.06);border-radius:12px;padding:.9rem 1.2rem;margin-top:2.5rem;font-size:.86rem;color:#C2DBDC;display:flex;gap:.6rem;align-items:center}
.foot-bottom{border-top:1px solid rgba(255,255,255,.14);margin-top:2rem;padding-top:1.4rem;display:flex;flex-wrap:wrap;
  gap:1rem;justify-content:space-between;font-size:.82rem;color:#86A6A8}
.foot-bottom a{color:#86A6A8}
.disclaimer-line{font-size:.78rem;color:#6E9092;margin-top:.8rem;max-width:75ch}

/* ---------- Sticky mobile bar ---------- */
.mobile-bar{display:none;position:fixed;bottom:0;left:0;right:0;z-index:90;background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);border-top:1px solid var(--line);padding:.6rem;padding-bottom:calc(.6rem + env(safe-area-inset-bottom));
  gap:.5rem;box-shadow:0 -6px 24px rgba(0,0,0,.08)}
.mobile-bar .btn{flex:1;min-height:50px;font-size:.95rem;cursor:pointer}
.mb-callsheet{position:absolute;left:.6rem;right:.6rem;bottom:calc(100% + .4rem);background:#fff;border:1px solid var(--line);
  border-radius:16px;box-shadow:var(--shadow-lg);padding:.5rem;display:flex;flex-direction:column;gap:.3rem}
.mb-callsheet[hidden]{display:none}
.mb-clinic{display:flex;align-items:center;gap:.8rem;padding:.85rem 1rem;border-radius:12px;color:var(--ink)}
.mb-clinic:hover,.mb-clinic:active{background:var(--teal-soft)}
.mb-clinic svg{color:var(--teal);flex:0 0 auto}
.mb-clinic strong{display:block;color:var(--teal-ink);font-size:1rem;line-height:1.2}
.mb-clinic small{display:block;color:var(--muted);font-size:.85rem}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}

/* ---------- Forms ---------- */
.field{margin-bottom:1.1rem}
.field label{display:block;font-weight:600;font-size:.9rem;color:var(--teal-ink);margin-bottom:.4rem}
.field input,.field select,.field textarea{width:100%;max-width:100%;padding:.85rem 1rem;border:1.5px solid var(--line);border-radius:12px;
  font-family:inherit;font-size:1rem;color:var(--ink);background:#fff;transition:border-color .2s,box-shadow .2s;-webkit-appearance:none;appearance:none}
/* date/time inputs have intrinsic width on iOS — force them to honour the container */
.field input[type=date],.field input[type=time],.field input[type=datetime-local]{min-width:0;max-width:100%;min-height:52px;-webkit-appearance:none;appearance:none}
/* Checkboxes & radios must keep native appearance and not inherit text-input box styling */
.field input[type=checkbox],.field input[type=radio]{-webkit-appearance:auto;appearance:auto;width:auto;max-width:none;min-height:0;padding:0;border:0;border-radius:0;background:none;accent-color:var(--teal)}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px var(--teal-soft)}
.field textarea{min-height:130px;resize:vertical}
.field{min-width:0}
.form-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(1.7rem,3vw,2.6rem);box-shadow:var(--shadow-sm);max-width:100%;overflow:hidden}
.req{color:var(--coral-deep);font-weight:700}
.btn-lg{min-height:58px;padding:1rem 1.9rem;font-size:1.05rem}
/* Consent checkbox row */
.consent-field{display:flex;gap:.7rem;align-items:flex-start}
.consent-field input[type=checkbox]{-webkit-appearance:checkbox;appearance:checkbox;flex:0 0 auto;width:20px;height:20px;min-height:0;min-width:0;padding:0;margin:0;margin-top:.15rem;border:0;border-radius:0;background:none;accent-color:var(--teal);cursor:pointer}
.consent-field label{font-weight:400;font-size:.88rem;color:var(--muted);line-height:1.5;cursor:pointer}
.consent-field label a{color:var(--teal-deep);font-weight:600;text-decoration:underline}
/* Policy/consent callout box */
.policy-box{background:var(--teal-soft);border:1px solid var(--line);border-radius:14px;padding:1.2rem 1.3rem;margin-bottom:1.1rem;max-width:100%}
.policy-box p{font-size:.92rem;line-height:1.55}
.policy-box .btn{max-width:100%;white-space:normal;height:auto;min-height:44px}
/* Signature pad */
.sigpad-wrap{position:relative;border:1.5px dashed var(--line);border-radius:14px;background:#fff;overflow:hidden}
.sigpad-wrap.signed{border-style:solid;border-color:var(--teal)}
.sigpad{display:block;width:100%;height:170px;touch-action:none;cursor:crosshair;border-radius:14px}
.sig-clear{position:absolute;top:.6rem;right:.6rem;background:#fff;border:1px solid var(--line);color:var(--muted);
  font-size:.78rem;font-weight:600;padding:.35rem .8rem;border-radius:var(--radius-pill);cursor:pointer;z-index:2}
.sig-clear:hover{color:var(--coral-deep);border-color:var(--coral)}
.sig-hint{position:absolute;left:50%;bottom:.7rem;transform:translateX(-50%);color:#B9C7C8;font-size:.85rem;
  letter-spacing:.05em;pointer-events:none;font-style:italic}
.sigpad-wrap.signed .sig-hint{display:none}
/* Hidden flag input + drawn-signature error */
.sig-flag{position:absolute;width:1px;height:1px;opacity:0;pointer-events:none;left:-9999px}
.sig-error{color:var(--coral-deep);font-size:.85rem;font-weight:600;margin:.5rem 0 0}
/* Form section heading */
.form-sec{font-family:var(--sans);font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;color:var(--coral-deep);
  font-weight:700;margin:1.8rem 0 1rem;padding-bottom:.5rem;border-bottom:1px solid var(--line)}
.form-sec:first-of-type{margin-top:.3rem}

/* Medical Office Assistant cards (compact) */
.moa-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.moa-card{display:flex;align-items:center;gap:.85rem;background:#fff;border:1px solid var(--line);border-radius:14px;
  padding:.9rem 1rem;transition:.22s var(--ease)}
.moa-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:transparent}
.moa-card.moa-lead{border-color:var(--coral)}
.moa-mono{flex:0 0 auto;width:44px;height:44px;border-radius:50%;display:grid;place-items:center;font-family:var(--serif);
  font-size:1rem;font-weight:600;color:#fff}
.moa-mono.c{background:linear-gradient(135deg,#FFB892,var(--coral))}
.moa-mono.t{background:linear-gradient(135deg,var(--teal),var(--teal-deep))}
.moa-info{display:flex;flex-direction:column;gap:.05rem;min-width:0}
.moa-info strong{color:var(--teal-ink);font-size:.96rem;line-height:1.2}
.moa-info span{color:var(--muted);font-size:.82rem}
@media(max-width:980px){.moa-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.moa-grid{grid-template-columns:1fr}}

/* Book page — call/intake rows (everything else uses .card + .grid-2) */
.book-row{display:flex;align-items:center;gap:1rem;background:#fff;border:1px solid var(--line);border-radius:14px;
  padding:.9rem 1.1rem;transition:.22s var(--ease);color:var(--ink)}
.book-row:hover{border-color:transparent;box-shadow:var(--shadow);transform:translateY(-2px);color:var(--ink)}
.book-row .br-ic{flex:0 0 auto;width:44px;height:44px;border-radius:12px;background:var(--teal-soft);color:var(--teal);display:grid;place-items:center;transition:.22s var(--ease)}
.book-row:hover .br-ic{background:var(--coral);color:#fff}
.book-row .br-t{flex:1;display:flex;flex-direction:column;gap:.05rem;min-width:0}
.book-row .br-t strong{color:var(--teal-ink);font-size:1rem;line-height:1.2}
.book-row .br-t span{color:var(--muted);font-size:.86rem}
.book-row .br-a{flex:0 0 auto;color:var(--teal);transition:transform .22s var(--ease)}
.book-row:hover .br-a{transform:translateX(4px);color:var(--coral-deep)}

/* ---------- Responsive ---------- */
@media(max-width:1080px){
  .intake-btn{display:none}
}
@media(max-width:1180px){
  .footer-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:980px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:860px){
  .nav-links,.nav-cta .btn{display:none}
  .menu-toggle{display:flex}
  .nav{height:66px}
  .brand img{height:38px}
  .hero-grid{grid-template-columns:1fr;text-align:center}
  .hero .eyebrow,.hero .cta-row,.hero .trust-row{justify-content:center}
  .hero-visual{order:-1;max-width:340px}
  .grid-2,.grid-3,.stats{grid-template-columns:1fr}
  .section-head{margin-inline:auto;text-align:center}
  body{padding-bottom:74px}
  .mobile-bar{display:flex}
  .prose .columns{columns:1}
}
@media(max-width:560px){
  .team-grid,.grid-4{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}
  .hero .cta-row{flex-direction:column;align-items:stretch}
  .hero .cta-row .btn{width:100%}
  .cta-banner .cta-row{flex-direction:column;align-items:stretch}
  .cta-banner .cta-row .btn{width:100%}
  .loc-actions{flex-direction:column}
  .loc-actions .btn{width:100%}
}

/* ===================== Aesthetics page (immersive) ===================== */
.aes-page{--aes-rose:#E9A98F;--aes-blush:#FBEFE9;--aes-ink:#2A3A3D}
/* Soft atmospheric hero wash */
.aes-hero{position:relative;overflow:hidden;background:linear-gradient(165deg,#FBF4EF 0%,var(--teal-soft) 100%)}
.aes-hero::before,.aes-hero::after{content:"";position:absolute;border-radius:50%;filter:blur(60px);opacity:.5;z-index:0}
.aes-hero::before{width:380px;height:380px;background:radial-gradient(circle,var(--coral-soft),transparent 70%);top:-120px;right:-80px}
.aes-hero::after{width:420px;height:420px;background:radial-gradient(circle,var(--teal-soft),transparent 70%);bottom:-160px;left:-120px}
.aes-hero>*{position:relative;z-index:1}
.aes-hero-inner{padding:clamp(3.5rem,8vw,6rem) 0 clamp(3rem,6vw,5rem);text-align:center;max-width:840px;margin-inline:auto}
.aes-hero h1{font-size:clamp(2.4rem,6vw,4.2rem);line-height:1.02;margin:.6rem 0 1rem;letter-spacing:-.01em}
.aes-hero .lede{max-width:60ch;margin-inline:auto}
.aes-hero .cta-row{justify-content:center;margin-top:1.8rem}

/* Offer ribbon */
.aes-offer{display:inline-flex;align-items:center;gap:.6rem;background:var(--coral-deep);color:#fff;padding:.6rem 1.3rem;border-radius:999px;font-weight:700;font-size:.95rem;letter-spacing:.01em;box-shadow:0 10px 30px -8px rgba(232,112,59,.5)}
.aes-offer .dot{width:8px;height:8px;border-radius:50%;background:#fff;opacity:.85}

/* Consultation roadmap */
.aes-road{position:relative;display:grid;gap:1.1rem;counter-reset:step;margin-top:2rem}
.aes-step{position:relative;display:grid;grid-template-columns:auto 1fr;gap:1.2rem;align-items:start;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.5rem 1.6rem;transition:transform .5s var(--ease),box-shadow .5s var(--ease)}
.aes-step:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.aes-step .num{counter-increment:step;width:46px;height:46px;border-radius:14px;background:linear-gradient(150deg,var(--teal),var(--teal-deep));color:#fff;display:grid;place-items:center;font-family:var(--display);font-size:1.35rem;font-weight:600;flex-shrink:0}
.aes-step .num::before{content:counter(step)}
.aes-step h3{margin:.1rem 0 .35rem;font-size:1.2rem}
.aes-step p{margin:0;color:var(--muted);font-size:.96rem}
.aes-step.is-offer{border-color:var(--coral);background:linear-gradient(180deg,var(--coral-soft),#fff)}
.aes-step.is-offer .num{background:linear-gradient(150deg,var(--coral),var(--coral-deep))}

/* Treatment cards — elevated, with hover */
.aes-treatments{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.aes-tx{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.6rem 1.5rem;transition:transform .5s var(--ease),box-shadow .5s var(--ease),border-color .5s var(--ease);display:flex;flex-direction:column}
.aes-tx:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:var(--coral)}
.aes-tx .tx-ic{width:48px;height:48px;border-radius:13px;background:var(--teal-soft);color:var(--teal-deep);display:grid;place-items:center;margin-bottom:1rem}
.aes-tx h3{font-size:1.2rem;margin:0 0 .4rem}
.aes-tx p{margin:0;color:var(--muted);font-size:.95rem;line-height:1.6}
.aes-tx .tx-price{margin-top:.9rem;display:inline-block;align-self:flex-start;background:var(--teal-soft);color:var(--teal-deep);font-weight:700;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase;padding:.35rem .8rem;border-radius:999px}
.aes-tx .tx-more{margin-top:1.1rem;display:inline-flex;align-items:center;gap:.4rem;color:var(--coral-deep);font-weight:700;font-size:.92rem;transition:gap .25s var(--ease)}
.aes-tx .tx-more:hover{gap:.7rem}

/* Injector feature band */
.aes-injector{background:linear-gradient(150deg,var(--teal-ink),var(--teal-deep));color:#Eaf4f4;border-radius:var(--radius-lg);padding:clamp(2rem,4vw,3.2rem);position:relative;overflow:hidden}
.aes-injector::after{content:"";position:absolute;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(249,137,89,.22),transparent 70%);top:-100px;right:-80px}
.aes-injector>*{position:relative;z-index:1}
.aes-injector .eyebrow{color:var(--coral)}
.aes-injector h2{color:#fff}
.aes-injector .aes-creds{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem 1.5rem;margin-top:1.5rem;list-style:none;padding:0}
.aes-injector .aes-creds li{font-size:.96rem;line-height:1.5}
.aes-injector .aes-creds strong{color:#fff;display:block;margin-bottom:.15rem}

/* Sticky bottom offer nudge (desktop) */
@media(min-width:861px){
  .aes-stickybar{position:sticky;bottom:1.2rem;z-index:5;margin:2rem auto 0;max-width:max-content;display:flex;align-items:center;gap:1.2rem;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-md);border-radius:999px;padding:.6rem .7rem .6rem 1.5rem}
  .aes-stickybar p{margin:0;font-weight:600;font-size:.95rem}
}
.aes-stickybar{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;justify-content:center}

@media(max-width:860px){
  .aes-treatments{grid-template-columns:1fr}
  .aes-hero h1{font-size:clamp(2rem,9vw,2.8rem)}
  .aes-injector .aes-creds{grid-template-columns:1fr}
}

/* ===================== Aesthetics treatment landing pages ===================== */
.aes-tx-page{--tx-rose:#E9A98F;--tx-blush:#FBEFE9}
/* Split hero: text + offer */
.txp-hero{position:relative;overflow:hidden;background:linear-gradient(160deg,#FBF4EF 0%,var(--teal-soft) 100%);padding:clamp(3rem,7vw,5.5rem) 0 clamp(2.5rem,5vw,4rem)}
.txp-hero::before{content:"";position:absolute;width:440px;height:440px;border-radius:50%;filter:blur(70px);opacity:.45;background:radial-gradient(circle,var(--coral-soft),transparent 70%);top:-160px;right:-120px;z-index:0}
.txp-hero>*{position:relative;z-index:1}
.txp-hero-grid{display:grid;grid-template-columns:1.3fr .9fr;gap:clamp(1.5rem,4vw,3.5rem);align-items:center}
.txp-eyebrow{display:inline-flex;align-items:center;gap:.5rem;color:var(--teal-deep);font-weight:700;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:1rem}
.txp-eyebrow .tx-ic{width:34px;height:34px;border-radius:9px;background:#fff;display:grid;place-items:center;box-shadow:var(--shadow-sm)}
.txp-hero h1{font-size:clamp(2.2rem,5vw,3.6rem);line-height:1.04;margin:.2rem 0 1rem;letter-spacing:-.01em}
.txp-hero .lede{max-width:54ch}
.txp-hero .cta-row{margin-top:1.6rem}
/* offer card in hero */
.txp-offer-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);padding:1.8rem;text-align:center}
.txp-offer-card .badge{display:inline-block;background:var(--coral-soft);color:var(--coral-deep);font-weight:700;font-size:.74rem;letter-spacing:.08em;text-transform:uppercase;padding:.35rem .85rem;border-radius:999px;margin-bottom:1rem}
.txp-offer-card .amt{font-family:var(--display);font-size:3.2rem;line-height:1;color:var(--teal-deep);font-weight:600}
.txp-offer-card .amt span{font-size:1.4rem;vertical-align:super}
.txp-offer-card .amt-complimentary{display:inline-grid;place-items:center;width:74px;height:74px;border-radius:50%;background:linear-gradient(135deg,var(--teal-soft),var(--coral-soft));color:var(--teal-deep);margin:.2rem auto .4rem}
.txp-offer-card p{color:var(--muted);font-size:.9rem;margin:.6rem 0 1.2rem}
.txp-offer-card .btn{width:100%}

/* "what to expect" steps */
.txp-expect{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem;counter-reset:s}
.txp-expect .txp-step{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.5rem;transition:transform .5s var(--ease),box-shadow .5s var(--ease)}
.txp-expect .txp-step:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.txp-expect .txp-step .n{counter-increment:s;width:38px;height:38px;border-radius:10px;background:var(--teal-soft);color:var(--teal-deep);font-family:var(--display);font-size:1.15rem;font-weight:600;display:grid;place-items:center;margin-bottom:.9rem}
.txp-expect .txp-step .n::before{content:counter(s)}
.txp-expect .txp-step h3{font-size:1.08rem;margin:0 0 .35rem}
.txp-expect .txp-step p{margin:0;color:var(--muted);font-size:.93rem}

/* areas / benefits chips */
.txp-chips{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.2rem}
.txp-chips span{background:#fff;border:1px solid var(--line);border-radius:999px;padding:.5rem 1.1rem;font-size:.92rem;font-weight:500;color:var(--ink)}

/* the redesigned booking form — warm card with rose accent rail */
.txp-bookwrap{position:relative;background:linear-gradient(160deg,#fff,var(--teal-soft));border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-lg)}
.txp-bookwrap .rail{position:absolute;inset:0 auto 0 0;width:6px;background:linear-gradient(180deg,var(--coral),var(--teal))}
.txp-book{padding:clamp(1.8rem,4vw,3rem) clamp(1.5rem,4vw,3rem) clamp(1.8rem,4vw,3rem) calc(clamp(1.5rem,4vw,3rem) + 6px)}
.txp-book .form-head{display:flex;align-items:center;gap:1rem;margin-bottom:.4rem}
.txp-book .form-head .ic{width:46px;height:46px;border-radius:12px;background:var(--coral-soft);color:var(--coral-deep);display:grid;place-items:center;flex-shrink:0}
.txp-book h2{margin:0;font-size:clamp(1.5rem,2.6vw,2rem)}
.txp-book .offer-pill{display:inline-flex;align-items:center;gap:.45rem;background:var(--coral-deep);color:#fff;font-weight:700;font-size:.82rem;padding:.4rem .9rem;border-radius:999px;margin:1rem 0 1.4rem}
.txp-book .quick{display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:1.3rem}
.txp-book form .field input,.txp-book form .field textarea{background:#fff}
.txp-book .grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

@media(max-width:860px){
  .txp-hero-grid{grid-template-columns:1fr}
  .txp-expect{grid-template-columns:1fr}
  .txp-book .grid-2{grid-template-columns:1fr}
}

/* Aesthetics logos */
.aes-hero .aes-logo{display:block;margin:0 auto 1.6rem;width:min(320px,72vw);height:auto}
.aes-tx-page .txp-logo{display:block;width:64px;height:auto;margin-bottom:1rem}

/* Footer "Areas we serve" internal-link row */
.foot-areas{border-top:1px solid rgba(255,255,255,.12);margin-top:1.8rem;padding-top:1.4rem;display:flex;flex-wrap:wrap;align-items:center;gap:.5rem 1rem}
.foot-areas-label{font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--antique-gold,#9A8253);font-weight:700;opacity:.9}
.foot-areas nav{display:flex;flex-wrap:wrap;gap:.4rem .9rem}
.foot-areas nav a{color:rgba(255,255,255,.72);font-size:.86rem;transition:color .25s ease}
.foot-areas nav a:hover{color:#fff}

/* Area-links chip row (locations hub) */
.area-links{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center}
.area-links a{background:#fff;border:1px solid var(--line);border-radius:999px;padding:.55rem 1.2rem;font-size:.92rem;font-weight:600;color:var(--teal-deep);transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s var(--ease)}
.area-links a:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm);border-color:var(--teal)}

/* Clinics bubble on landing pages — clean, aligned, responsive */
.clinic-bubble{background:linear-gradient(150deg,var(--coral-soft),var(--teal-soft));border:0;border-radius:var(--radius-lg);padding:1.6rem}
.clinic-bubble h3{margin:0 0 1.1rem;font-size:1.25rem}
.clinic-bubble .cb-item{display:flex;gap:.85rem;align-items:flex-start;padding:.9rem 1rem;background:rgba(255,255,255,.7);border:1px solid rgba(255,255,255,.9);border-radius:var(--radius);transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease)}
.clinic-bubble .cb-item + .cb-item{margin-top:.7rem}
.clinic-bubble .cb-item:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm);background:#fff}
.clinic-bubble .cb-ic{flex:0 0 34px;width:34px;height:34px;border-radius:9px;background:#fff;display:grid;place-items:center;color:var(--teal-deep);box-shadow:var(--shadow-sm)}
.clinic-bubble .cb-ic svg{width:18px;height:18px}
.clinic-bubble .cb-text{display:flex;flex-direction:column;gap:.15rem;min-width:0}
.clinic-bubble .cb-text strong{color:var(--ink);font-size:1rem;line-height:1.3}
.clinic-bubble .cb-addr{color:var(--muted);font-size:.9rem;line-height:1.4}
.clinic-bubble .cb-phone{color:var(--teal-deep);font-weight:700;font-size:.92rem;margin-top:.1rem}

/* ============ Cinematic treatment-area map (pinned scroll) ============ */
.amx{position:relative;padding:clamp(3rem,7vw,5rem) 0 0;background:linear-gradient(180deg,#fff 0%,var(--teal-soft) 30%,#fff 100%)}
.amx-head{text-align:center;max-width:640px;margin:0 auto clamp(1.5rem,4vw,2.5rem)}
.amx-sub{max-width:46ch;margin:.6rem auto 0;color:var(--muted)}
/* stage: figure pinned left, panels scroll right */
.amx-stage{display:grid;grid-template-columns:minmax(300px,1fr) minmax(280px,440px);gap:clamp(2rem,5vw,4rem);align-items:start;padding-bottom:clamp(2rem,5vw,4rem)}
.amx-figure{position:sticky;top:0;height:100vh;display:flex;align-items:center;justify-content:center;min-width:0}
.amx-figure-inner{position:relative;width:100%;max-width:440px;aspect-ratio:400/520}
.fig-svg{width:100%;height:100%;overflow:visible;position:relative;z-index:2}
/* line drawing */
.fig-line{fill:none;stroke:var(--teal-deep);stroke-width:2.6;stroke-linecap:round;stroke-linejoin:round;
  stroke-dasharray:1400;stroke-dashoffset:1400}
.amx.is-drawn .fig-line{animation:figDraw 1.8s var(--ease) forwards}
.fig-neck{stroke-width:2;opacity:.9}
.fig-feat{stroke-width:2.2}
.fig-thin{stroke-width:1.6;stroke-dasharray:none;stroke-dashoffset:0;opacity:0}
.amx.is-drawn .fig-thin{animation:figFade 1s ease .9s forwards}
.fig-hair{fill:none;stroke:var(--antique-gold,#C9A24B);stroke-width:1.7;stroke-linecap:round;opacity:0}
.amx.is-drawn .fig-hair{animation:figFade 1.4s ease .5s forwards}
.fig-aura{opacity:0;transition:opacity .8s ease}
.amx.is-drawn .fig-aura{opacity:1}
@keyframes figDraw{to{stroke-dashoffset:0}}
@keyframes figFade{to{opacity:.85}}
/* hotspots — dim by default, illuminate when active */
.fig-pt{opacity:.26;transition:opacity .5s var(--ease)}
.fig-pt .fig-halo{fill:var(--coral);opacity:0;transform-box:fill-box;transform-origin:center;transform:scale(.4);transition:opacity .5s var(--ease),transform .5s var(--ease)}
.fig-pt .fig-ring{fill:none;stroke:var(--coral);stroke-width:1.6;opacity:.55}
.fig-pt .fig-core{fill:var(--coral);opacity:.7}
.fig-pt.is-active{opacity:1}
.fig-pt.is-active .fig-halo{opacity:.16;transform:scale(1);animation:figPulse 2s ease-in-out infinite}
.fig-pt.is-active .fig-ring{opacity:1;stroke:var(--coral-deep)}
.fig-pt.is-active .fig-core{fill:var(--coral-deep);opacity:1}
@keyframes figPulse{0%,100%{transform:scale(1);opacity:.16}50%{transform:scale(1.5);opacity:.28}}
/* panels */
.amx-panels{display:flex;flex-direction:column;gap:0}
.amx-panel{min-height:62vh;display:flex;flex-direction:column;justify-content:center;padding:2rem 0;opacity:.32;transform:translateY(12px);
  transition:opacity .6s var(--ease),transform .6s var(--ease)}
.amx-panel.is-active{opacity:1;transform:none}
.amx-num{font-family:var(--display);font-size:.95rem;color:var(--coral-deep);font-weight:600;letter-spacing:.12em;display:inline-flex;align-items:center;gap:.7rem;margin-bottom:.7rem}
.amx-num-line{display:inline-block;width:34px;height:1.5px;background:var(--coral);opacity:.5}
.amx-panel h3{font-size:clamp(1.6rem,3.2vw,2.4rem);margin:0 0 .6rem;line-height:1.1}
.amx-panel p{font-size:1.08rem;color:var(--muted);max-width:42ch;margin:0}
.amx-panel.is-diffuse .amx-num{color:var(--teal-deep)}
.amx-panel.is-diffuse .amx-num-line{background:var(--teal)}
/* clinical (body-system) variant — teal instead of coral so it reads medical, not cosmetic */
.amx-body{background:linear-gradient(180deg,#fff 0%,var(--teal-soft) 30%,#fff 100%)}
.amx-body .amx-num{color:var(--teal-deep)}
.amx-body .amx-num-line{background:var(--teal)}
.amx-body .fig-pt .fig-halo{fill:var(--teal)}
.amx-body .fig-pt .fig-ring{stroke:var(--teal)}
.amx-body .fig-pt .fig-core{fill:var(--teal)}
.amx-body .fig-pt.is-active .fig-halo{animation:figPulse 2s ease-in-out infinite}
.amx-body .fig-pt.is-active .fig-ring{stroke:var(--teal-deep)}
.amx-body .fig-pt.is-active .fig-core{fill:var(--teal-deep)}

/* ---------- MOBILE: figure becomes a sticky top band, panels scroll cleanly below ---------- */
@media(max-width:820px){
  .amx{background:#fff}
  .amx-stage{display:block;padding-bottom:2rem}
  .amx-figure{position:sticky;top:60px;z-index:5;height:auto;display:block;
    background:linear-gradient(180deg,var(--teal-soft),#fff);border-radius:0 0 var(--radius-lg) var(--radius-lg);
    box-shadow:0 12px 28px -14px rgba(0,0,0,.22);margin:0 calc(50% - 50vw);padding:.6rem 0 1rem}
  .amx-figure-inner{width:auto;max-width:none;height:42vh;min-height:300px;max-height:420px;aspect-ratio:auto;margin:0 auto;display:flex;justify-content:center}
  .amx-figure-inner .fig-svg{width:auto;height:100%}
  .amx-panels{padding-top:2rem}
  /* each panel tall enough to fill the space below the figure → only one in focus at a time */
  .amx-panel{min-height:54vh;padding:1.4rem 0;text-align:center;justify-content:center}
  .amx-panel:not(.is-active){opacity:.4}
  .amx-panel.is-active{opacity:1}
  .amx-panel p{margin:0 auto}
  .amx-num{justify-content:center}
}
@media(prefers-reduced-motion:reduce){
  .fig-line{stroke-dashoffset:0 !important;animation:none !important}
  .fig-hair{opacity:.85 !important;animation:none !important}
  .fig-pt.is-active .fig-halo{animation:none}
  .amx-panel{transform:none !important}
}

/* ===== Aesthetics: Why-us trust band + process ===== */
.aes-why{padding:clamp(3.5rem,7vw,5.5rem) 0}
.aes-why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;margin-top:2.5rem}
.aes-why-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.8rem;transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.aes-why-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.aes-why-card .awc-ic{width:50px;height:50px;border-radius:14px;background:linear-gradient(135deg,var(--coral-soft),var(--teal-soft));display:grid;place-items:center;color:var(--teal-deep);margin-bottom:1rem}
.aes-why-card h3{font-size:1.18rem;margin:0 0 .5rem}
.aes-why-card p{color:var(--muted);font-size:.96rem;margin:0;line-height:1.55}
.aes-process{padding:clamp(3.5rem,7vw,5.5rem) 0}
.aes-process-steps{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6rem 2.5rem;margin-top:2.5rem}
.aps{display:flex;gap:1.1rem;align-items:flex-start}
.aps-n{flex:0 0 44px;width:44px;height:44px;border-radius:50%;background:var(--coral);color:#fff;display:grid;place-items:center;font-family:var(--serif);font-size:1.25rem;font-weight:600}
.aps h3{font-size:1.15rem;margin:.2rem 0 .4rem}
.aps p{color:var(--muted);font-size:.96rem;margin:0;line-height:1.55}
@media(max-width:860px){
  .aes-why-grid{grid-template-columns:1fr;gap:1rem}
  .aes-process-steps{grid-template-columns:1fr;gap:1.3rem}
}

/* Aesthetics popular-treatments link cluster */
.aes-poplinks{display:flex;flex-wrap:wrap;gap:.7rem;justify-content:center;max-width:820px;margin:2rem auto 0}
.aes-poplinks a{display:inline-flex;align-items:center;padding:.7rem 1.2rem;background:#fff;border:1px solid var(--line);border-radius:var(--radius-pill);color:var(--teal-ink);font-weight:600;font-size:.96rem;transition:all .25s var(--ease)}
.aes-poplinks a:hover{border-color:var(--coral);background:var(--coral-soft);color:var(--coral-deep);transform:translateY(-2px)}

/* ===== Flow & polish pass ===== */
/* Anchor targets clear the sticky header when jumped to */
:target,[id]{scroll-margin-top:96px}
/* Friendly, legible prose links (body content) */
.prose a:not(.btn){color:var(--teal-deep);text-decoration:underline;text-decoration-color:color-mix(in srgb,var(--teal) 35%,transparent);text-underline-offset:3px;text-decoration-thickness:1.5px;transition:text-decoration-color .2s var(--ease),color .2s var(--ease)}
.prose a:not(.btn):hover{color:var(--coral-deep);text-decoration-color:var(--coral)}
/* Consistent list rhythm in prose (handled by .prose ul li::before above) *//* Gentle section dividers when two same-bg sections meet (avoids flat seams) */
section + section.cloud, section.cloud + section{position:relative}
/* Card hover consistency — unify the lift used across card types */
.card{transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s var(--ease)}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
/* Smooth focus ring consistency for keyboard users */
a:focus-visible,button:focus-visible,summary:focus-visible{outline:3px solid var(--coral);outline-offset:2px;border-radius:6px}

/* ===== Location pages: getting-here info grid + photo gallery ===== */
.loc-info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;margin-top:2.2rem}
.loc-info-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.5rem}
.loc-info-card .lic-ic{width:46px;height:46px;border-radius:13px;background:linear-gradient(135deg,var(--teal-soft),var(--coral-soft));display:grid;place-items:center;color:var(--teal-deep);margin-bottom:.9rem}
.loc-info-card h3{font-size:1.05rem;margin:0 0 .4rem}
.loc-info-card p{color:var(--muted);font-size:.92rem;line-height:1.5;margin:0 0 .4rem}
.loc-gallery{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;gap:.7rem;margin-bottom:1.3rem}
.loc-gallery .loc-shot:first-child{grid-column:1 / -1}
.loc-shot{width:100%;height:100%;min-height:130px;object-fit:cover;border-radius:var(--radius);display:block}
.loc-shot-ph{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.4rem;background:linear-gradient(135deg,var(--teal-soft),var(--coral-soft));color:var(--teal-deep);min-height:150px}
.loc-shot-ph small{font-size:.8rem;letter-spacing:.04em;text-transform:uppercase;opacity:.75}
.loc-shot:first-child.loc-shot-ph{min-height:170px}
@media(max-width:900px){.loc-info-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.loc-info-grid{grid-template-columns:1fr}}

/* ===== Visiting-us section on local landing pages ===== */
.visit-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem;margin-top:2.2rem}
.visit-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column;transition:transform .25s var(--ease),box-shadow .25s var(--ease)}
.visit-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.visit-photo,.visit-photo img,.visit-photo-ph{width:100%;height:170px}
.visit-photo img{object-fit:cover;display:block}
.visit-photo-ph{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.4rem;background:linear-gradient(135deg,var(--teal-soft),var(--coral-soft));color:var(--teal-deep)}
.visit-photo-ph small{font-size:.78rem;letter-spacing:.05em;text-transform:uppercase;opacity:.75}
.visit-body{padding:1.4rem 1.5rem 1.6rem}
.visit-body h3{font-size:1.3rem;margin:0 0 .9rem}
.visit-list{list-style:none;margin:0 0 1.2rem;padding:0;display:grid;gap:.6rem}
.visit-list li{display:flex;gap:.7rem;align-items:flex-start;color:#3C4D54;font-size:.93rem;line-height:1.45}
.visit-list li svg{color:var(--teal);flex:0 0 auto;margin-top:.15rem}
.visit-cta{display:flex;gap:.6rem;flex-wrap:wrap}
.btn-sm{padding:.5rem .9rem;font-size:.88rem}
@media(max-width:780px){.visit-grid{grid-template-columns:1fr}}

/* ===== Services hub: find-care descriptive cards ===== */
.findcare-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:2.2rem}
.findcare-card{display:flex;flex-direction:column;gap:.3rem;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.2rem 1.3rem;transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s var(--ease)}
.findcare-card strong{color:var(--teal-ink);font-size:1rem;line-height:1.25}
.findcare-card span{color:var(--muted);font-size:.88rem;line-height:1.45}
.findcare-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--coral)}
@media(max-width:980px){.findcare-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.findcare-grid{grid-template-columns:1fr}}

/* ===================== IMMERSIVE SERVICE-DETAIL COMPONENTS ===================== */
/* Layout: optional sticky TOC rail on desktop alongside the prose */
.detail-layout{display:grid;grid-template-columns:1fr;gap:0;padding-inline:var(--gutter);max-width:1120px;margin-inline:auto}
@media(min-width:1080px){
  .detail-layout{grid-template-columns:230px minmax(0,1fr);gap:3.2rem;align-items:start}
  .detail-layout .prose{max-width:760px}
}
.detail-toc{display:none}
@media(min-width:1080px){
  .detail-toc{display:block;position:sticky;top:110px;font-size:.9rem}
  .detail-toc .toc-label{font-family:var(--sans);font-weight:700;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--coral-deep);margin-bottom:1rem;display:flex;align-items:center;gap:.5rem}
  .detail-toc .toc-label::before{content:"";width:22px;height:2px;background:var(--coral);border-radius:2px}
  .detail-toc a{display:block;padding:.5rem 0 .5rem .9rem;color:var(--muted);border-left:2px solid var(--line);line-height:1.35;transition:color .2s,border-color .2s}
  .detail-toc a:hover{color:var(--teal-deep);border-left-color:var(--coral)}
  .detail-toc a.active{color:var(--teal-ink);font-weight:600;border-left-color:var(--coral)}
}

/* Key-points highlight band — scannable takeaways right under the hero */
.key-band{background:linear-gradient(135deg,var(--teal-soft),var(--coral-soft));border-radius:var(--radius-lg);
  padding:clamp(1.4rem,3vw,2.2rem);margin:0 0 2.4rem}
.key-band .kb-head{font-family:var(--sans);font-weight:700;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--teal-deep);margin-bottom:1.1rem;display:flex;align-items:center;gap:.5rem}
.key-band .kb-head svg{width:16px;height:16px}
.key-grid{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:640px){.key-grid{grid-template-columns:repeat(2,1fr);gap:1.2rem}}
.key-item{display:flex;gap:.85rem;align-items:flex-start}
.key-item .ki-ic{flex:none;width:38px;height:38px;border-radius:11px;background:#fff;display:grid;place-items:center;color:var(--coral-deep);box-shadow:0 3px 10px rgba(42,110,116,.10)}
.key-item .ki-ic svg{width:19px;height:19px}
.key-item p{margin:0;font-size:.96rem;line-height:1.5;color:var(--teal-ink)}
.key-item p strong{color:var(--teal-deep)}

/* Decorated section headings — icon tile beside each prose h2 for rhythm */
.prose .sec-h{display:flex;align-items:center;gap:.8rem;margin:2.8rem 0 1rem;scroll-margin-top:100px}
.prose .sec-h:first-child{margin-top:.5rem}
.prose .sec-h .sec-ic{flex:none;width:40px;height:40px;border-radius:12px;display:grid;place-items:center;
  background:var(--teal-soft);color:var(--teal-deep);transition:transform .25s var(--ease),background .25s}
.prose .sec-h .sec-ic svg{width:21px;height:21px}
.prose .sec-h:hover .sec-ic{background:var(--coral);color:#fff;transform:rotate(-6deg) scale(1.05)}
.prose .sec-h h2{margin:0}

/* "Signs / at a glance" icon callout grid (richer than a plain list where it fits) */
.signs-grid{display:grid;grid-template-columns:1fr;gap:1rem;margin:1.5rem 0 2rem}
@media(min-width:640px){.signs-grid{grid-template-columns:repeat(3,1fr)}}
.sign-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.3rem;position:relative;overflow:hidden;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s}
.sign-card::before{content:"";position:absolute;inset:0 auto 0 0;width:3px;background:linear-gradient(180deg,var(--coral),var(--teal))}
.sign-card:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(42,110,116,.12);border-color:transparent}
.sign-card .sc-ic{width:42px;height:42px;border-radius:12px;background:var(--coral-soft);color:var(--coral-deep);display:grid;place-items:center;margin-bottom:.9rem}
.sign-card .sc-ic svg{width:21px;height:21px}
.sign-card h3{font-size:1.02rem;margin:0 0 .35rem;color:var(--teal-ink)}
.sign-card p{margin:0;font-size:.92rem;color:var(--muted);line-height:1.5}

/* ===================== INLINE 'RELATED READING' LINK BOX (in-prose interlinking) ===================== */
.prose .inline-link-box{display:flex;align-items:center;gap:1rem;margin:2rem 0;padding:1.1rem 1.3rem;
  background:linear-gradient(135deg,var(--teal-soft),#fff);border:1px solid var(--line);border-radius:var(--radius);
  text-decoration:none;transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s;position:relative;overflow:hidden}
.prose .inline-link-box::before{content:"";position:absolute;inset:0 auto 0 0;width:3px;background:linear-gradient(180deg,var(--coral),var(--teal))}
.prose .inline-link-box:hover{transform:translateX(3px);box-shadow:0 10px 26px rgba(42,110,116,.12);border-color:transparent}
.prose .inline-link-box .ilb-ic{flex:none;width:42px;height:42px;border-radius:12px;background:#fff;color:var(--teal-deep);display:grid;place-items:center;box-shadow:0 3px 10px rgba(42,110,116,.10)}
.prose .inline-link-box .ilb-txt{flex:1;display:flex;flex-direction:column;gap:.15rem}
.prose .inline-link-box .ilb-kicker{font-family:var(--sans);font-weight:700;font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:var(--coral-deep)}
.prose .inline-link-box .ilb-label{font-family:var(--display);font-size:1.08rem;color:var(--teal-ink);font-weight:600;line-height:1.25}
.prose .inline-link-box .ilb-blurb{font-size:.9rem;color:var(--muted);line-height:1.4}
.prose .inline-link-box .ilb-arrow{flex:none;color:var(--coral-deep);transition:transform .25s var(--ease)}
.prose .inline-link-box:hover .ilb-arrow{transform:translateX(4px)}
/* inline contextual links within prose — clear but not garish */
.prose p a:not(.btn):not(.inline-link-box),.prose li a:not(.btn){color:var(--teal-deep);text-decoration:underline;text-decoration-color:var(--teal-soft);text-underline-offset:2px;text-decoration-thickness:2px;transition:text-decoration-color .2s,color .2s}
.prose p a:not(.btn):not(.inline-link-box):hover,.prose li a:not(.btn):hover{color:var(--coral-deep);text-decoration-color:var(--coral)}

/* ===================== MOBILE TAP-TARGET COMFORT (>=44px touch zones) ===================== */
@media(max-width:640px){
  /* Footer nav column links — expand vertical hit area without enlarging text */
  .site-footer ul li a{display:inline-block;padding:.7rem 0;line-height:1.1}
  /* Footer contact links (phone/email) */
  .site-footer .foot-contact a{display:inline-block;padding:.5rem 0}
  /* address-block links (phone/fax/email separated by <br>) use line-height for even spacing, not padding */
  .site-footer p.addr a{display:inline;padding:0}
  .site-footer p.addr{line-height:2}
  /* Areas-we-serve chips — give them tappable height + spacing so they don't crowd */
  .foot-areas nav{display:flex;flex-wrap:wrap;gap:.55rem .45rem}
  .foot-areas nav a{display:inline-block;padding:.6rem .8rem;background:rgba(255,255,255,.06);border-radius:999px;line-height:1.1}
  .foot-areas nav a:hover{background:rgba(255,255,255,.12)}
  /* Breadcrumb links — comfortable tap height */
  .crumb a{display:inline-block;padding:.45rem 0}
  /* Social icon — bump to full 44px target */
  .foot-social a{min-width:44px;min-height:44px;display:inline-grid;place-items:center}
}


/* ---------- Footer: Appointment Booking Line ---------- */
.foot-bookline{display:flex;align-items:center;gap:1.1rem;background:linear-gradient(135deg,rgba(249,137,89,.14),rgba(232,112,59,.08));
  border:1px solid rgba(249,137,89,.34);border-radius:16px;padding:1.05rem 1.25rem;margin:0 0 2.4rem}
.foot-bookline .fbl-ic{flex:0 0 auto;width:46px;height:46px;border-radius:13px;background:var(--coral);color:#fff;display:grid;place-items:center}
.foot-bookline .fbl-t{flex:1;display:flex;flex-direction:column;gap:.18rem;min-width:0}
.foot-bookline .fbl-t strong{color:#fff;font-size:1.02rem;letter-spacing:.01em}
.foot-bookline .fbl-t span{color:#B8D2D4;font-size:.84rem;line-height:1.45}
.foot-bookline .fbl-cta{flex:0 0 auto;background:var(--coral);color:#fff;font-weight:700;font-size:1.06rem;
  padding:.72rem 1.35rem;border-radius:12px;white-space:nowrap;transition:.22s var(--ease)}
.foot-bookline .fbl-cta:hover{background:var(--coral-deep);color:#fff;transform:translateY(-2px);box-shadow:0 10px 24px -12px rgba(232,112,59,.8)}
@media(max-width:720px){
  /* Mobile: compact two-row layout — icon inline with the label, CTA as a
     full-width tap target. Avoids the icon occupying its own row. */
  .foot-bookline{display:grid;grid-template-columns:auto 1fr;grid-template-areas:"ic tx" "cta cta";
    align-items:center;gap:.55rem .7rem;padding:.9rem 1rem;margin-bottom:2rem;border-radius:14px}
  .foot-bookline .fbl-ic{grid-area:ic;width:36px;height:36px;border-radius:10px}
  .foot-bookline .fbl-ic svg{width:18px;height:18px}
  .foot-bookline .fbl-t{grid-area:tx;gap:.1rem}
  .foot-bookline .fbl-t strong{font-size:.95rem;line-height:1.25}
  .foot-bookline .fbl-t span{font-size:.76rem;line-height:1.4}
  .foot-bookline .fbl-cta{grid-area:cta;width:100%;text-align:center;margin-top:.25rem;
    padding:.78rem 1rem;font-size:1.08rem;letter-spacing:.01em}
}

/* Highlighted booking row (dedicated appointment line) */
.book-row-hl{border-color:rgba(249,137,89,.55);background:linear-gradient(135deg,var(--coral-soft),#fff)}
.book-row-hl .br-ic{background:var(--coral);color:#fff}
.book-row-hl .br-t strong{color:var(--coral-deep)}


/* ---------- Book-by-phone landing page ---------- */
.phone-hero{background:linear-gradient(160deg,var(--teal-soft) 0%,#fff 62%);padding:clamp(2.6rem,6vw,4.6rem) 0 clamp(2.4rem,5vw,3.8rem);position:relative;overflow:hidden}
.ph-grid{display:grid;grid-template-columns:1.35fr .95fr;gap:clamp(1.8rem,4vw,3.4rem);align-items:center}
.ph-copy h1{font-size:clamp(2rem,4.4vw,3.15rem);line-height:1.1;margin:.5rem 0 .9rem}
.ph-copy .lede{max-width:52ch}

.ph-cta{display:inline-flex;align-items:center;gap:1rem;background:var(--coral);color:#fff;
  border-radius:18px;padding:1rem 1.6rem 1rem 1.15rem;margin-top:1.6rem;
  box-shadow:0 16px 34px -16px rgba(232,112,59,.85);transition:.22s var(--ease)}
.ph-cta:hover{background:var(--coral-deep);color:#fff;transform:translateY(-3px);box-shadow:0 20px 42px -16px rgba(232,112,59,.95)}
.ph-cta-ic{flex:0 0 auto;width:54px;height:54px;border-radius:15px;background:rgba(255,255,255,.2);display:grid;place-items:center}
.ph-cta-t{display:flex;flex-direction:column;line-height:1.15}
.ph-cta-t small{font-size:.74rem;letter-spacing:.12em;text-transform:uppercase;opacity:.92}
.ph-cta-t strong{font-size:clamp(1.5rem,2.8vw,1.95rem);letter-spacing:.01em}
.ph-cta-center{margin-left:auto;margin-right:auto}

.ph-ticks{list-style:none;display:flex;flex-wrap:wrap;gap:.5rem 1.4rem;margin:1.5rem 0 0;padding:0}
.ph-ticks li{display:flex;align-items:center;gap:.45rem;font-size:.9rem;color:var(--teal-ink);font-weight:600}
.ph-ticks svg{color:var(--teal);flex:0 0 auto}

.ph-scope{display:flex;gap:.6rem;align-items:flex-start;margin-top:1.5rem;padding:.9rem 1.1rem;
  background:var(--coral-soft);border:1px solid rgba(249,137,89,.35);border-radius:12px;
  font-size:.85rem;color:var(--ink);line-height:1.5;max-width:56ch}
.ph-scope svg{color:var(--coral-deep);flex:0 0 auto;margin-top:.1rem}

.ph-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:clamp(1.5rem,3vw,2rem);box-shadow:var(--shadow)}
.ph-card h2{font-size:1.3rem;margin:0 0 .4rem}
.ph-card>p{color:var(--muted);font-size:.92rem;margin:0 0 1.1rem}
.ph-div{display:flex;align-items:center;gap:.8rem;margin:1.3rem 0 1rem;color:var(--muted);
  font-size:.76rem;font-weight:600;letter-spacing:.09em;text-transform:uppercase}
.ph-div::before,.ph-div::after{content:"";flex:1;height:1px;background:var(--line)}

.ph-step{width:46px;height:46px;border-radius:50%;background:var(--teal-soft);color:var(--teal-ink);
  display:grid;place-items:center;font-weight:800;font-size:1.15rem;margin:0 auto 1rem}

.ph-two{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.8rem,4vw,3rem)}
.ph-list{list-style:none;padding:0;margin:1.2rem 0 0;display:flex;flex-direction:column;gap:.85rem}
.ph-list li{display:flex;gap:.7rem;align-items:flex-start;font-size:.94rem;line-height:1.5}
.ph-list svg{color:var(--teal);flex:0 0 auto;margin-top:.15rem}
.ph-list-muted svg{color:var(--muted)}
.ph-list-muted li{color:var(--muted)}

.ph-final{background:linear-gradient(150deg,var(--teal-deep),var(--teal-ink));color:#fff;padding:clamp(2.8rem,6vw,4.4rem) 0}
.ph-final h2{color:#fff;font-size:clamp(1.7rem,3.4vw,2.4rem);margin:0 0 .5rem}
.ph-final p{color:#CFE6E7}
.ph-final .ph-cta{margin-top:1.7rem}

@media(max-width:900px){
  .ph-grid{grid-template-columns:1fr}
  .ph-two{grid-template-columns:1fr}
}
@media(max-width:560px){
  .ph-cta{width:100%;justify-content:flex-start}
  .ph-cta-t strong{font-size:1.5rem}
}

/* Mobile call sheet: booking line emphasis */
.mb-callsheet .mb-book{background:var(--coral-soft);border-color:rgba(249,137,89,.4)}
.mb-callsheet .mb-book strong{color:var(--coral-deep)}
