/* ============================================================
   NUSBAUM MASTER STYLESHEET (master.css)
   Single source of truth for the Nusbaum design system.
   PART A = component system (was 8.css / Simple Custom CSS&JS)
   PART B = global chrome + luxury accent overrides (was the
            nusbaum-2026-home plugin's nus-global <style>).
   Loaded once, site-wide, by the nusbaum-lite theme.
   ============================================================ */

/* ========================= PART A ========================= */
:root{
  /* Nusbaum brand: logo blue #0B79BF + gray #808080, with deep navy */
  --navy:#0e2a44;
  --navy-deep:#081a2c;
  --gold:#0b79bf;       /* brand blue (primary accent) */
  --gold-soft:#5db4e8;  /* light blue (accent on dark) */
  --cream:#f3f7fb;
  --cream-deep:#dfe8f1;
  --ink:#2c3137;
  --muted:#697480;
  --white:#fff;
  --serif:'EB Garamond',Georgia,serif; /* elegant display, all headings */
  --sans:'Urbanist',-apple-system,Segoe UI,sans-serif;
  --head:'EB Garamond',Georgia,serif; /* elegant header nav */
  --ease:cubic-bezier(.22,1,.36,1);
  --maxw:1280px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:106.25%}
body{font-family:var(--sans);color:var(--ink);background:var(--cream);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{display:block;max-width:100%}
/* monochrome-luxury: all photography in black & white (logo + accents keep brand color) */
.hero-bg img,.band-bg img,.split-media img,.sel-media .sm img,.cat img{filter:grayscale(1) contrast(1.04)}
.stats.stat-band .band-bg img{filter:grayscale(1) contrast(1.04)}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--serif);font-weight:400;line-height:1.05;letter-spacing:-.01em}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 40px;width:100%}
.eyebrow{font-family:var(--sans);font-weight:500;font-size:.82rem;letter-spacing:.32em;text-transform:uppercase;color:var(--gold)}

/* buttons */
.btn{display:inline-flex;align-items:center;gap:.6em;font-family:var(--sans);font-weight:500;font-size:.85rem;letter-spacing:.16em;text-transform:uppercase;padding:18px 34px;border:1px solid var(--gold);background:var(--gold);color:#fff;cursor:pointer;transition:all .5s var(--ease);position:relative;overflow:hidden}
.btn span{position:relative;z-index:1}
.btn::after{content:"";position:absolute;inset:0;background:var(--navy);transform:translateY(101%);transition:transform .5s var(--ease)}
.btn:hover{color:var(--cream)}
.btn:hover::after{transform:translateY(0)}
.btn.ghost{background:transparent;color:var(--cream);border-color:rgba(255,255,255,.5)}
.btn.ghost::after{background:var(--gold)}
.btn.ghost:hover{color:#fff;border-color:var(--gold)}

/* announcement */
.announce{background:var(--navy-deep);color:var(--cream);text-align:center;font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;padding:11px 20px}
.announce b{color:var(--gold-soft);font-weight:600}
.announce a{border-bottom:1px solid var(--gold);padding-bottom:1px;white-space:nowrap}

/* header */
header{position:sticky;top:0;z-index:100;background:rgba(243,247,251,0);transition:background .5s var(--ease),box-shadow .5s var(--ease),padding .5s var(--ease);padding:20px 0}
header.solid{background:rgba(243,247,251,.96);box-shadow:0 1px 0 rgba(31,45,61,.08);padding:12px 0;backdrop-filter:blur(8px)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:30px}
.brand{display:flex;align-items:center;flex-shrink:0}
.brand-logo{height:44px;width:auto;flex:0 0 auto;max-width:60vw;object-fit:contain;display:block;transition:height .5s var(--ease),filter .4s var(--ease)}
header.solid .brand-logo{height:38px}
header.hero-mode .brand-logo{filter:none}
header.hero-mode .nav-links a,header.hero-mode .nav-phone{color:var(--cream)}
header.solid .nav-links a,header.solid .nav-phone{color:var(--navy)}
.nav-links{display:flex;gap:32px;font-family:var(--sans);font-size:.92rem;letter-spacing:.16em;text-transform:uppercase;font-weight:600}
.nav-links a{position:relative;padding:6px 0;white-space:nowrap;transition:color .3s}
.nav-links a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--gold);transition:width .4s var(--ease)}
.nav-links a:hover{color:var(--gold)}
.nav-links a:hover::after{width:100%}
.nav-right{display:flex;align-items:center;gap:24px}
.nav-phone{font-family:var(--sans);font-size:.95rem;letter-spacing:.04em;font-weight:600;white-space:nowrap;transition:color .3s}
.nav-phone:hover{color:var(--gold)}
.nav-cta{font-family:var(--head);font-size:.92rem;letter-spacing:.12em;font-weight:600;padding:12px 24px}
.burger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:0}
.burger span{width:26px;height:2px;background:currentColor;display:block;transition:.3s}

/* hero */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;color:var(--cream);margin-top:-84px;padding-top:84px;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:-2;overflow:hidden}
.hero-bg img{width:100%;height:120%;object-fit:cover;object-position:32% center;animation:kenburns 20s ease-out forwards}
@keyframes kenburns{from{transform:scale(1.14)}to{transform:scale(1)}}
.hero::before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(100deg,rgba(8,16,26,.88) 0%,rgba(14,24,36,.6) 45%,rgba(14,24,36,.2) 78%,rgba(14,24,36,.4) 100%)}
.hero-inner{max-width:780px;padding:60px 0;position:relative;z-index:3}
.hero .eyebrow{opacity:0;animation:rise .9s var(--ease) .3s forwards}
.hero h1{font-size:clamp(3rem,7.4vw,6.6rem);font-weight:500;margin:22px 0 26px;color:#fff}
.hero h1 .lux{font-style:italic;color:var(--gold-soft);font-weight:400}
.hero h1 span{display:block;opacity:0;animation:rise 1s var(--ease) forwards}
.hero h1 span:nth-child(1){animation-delay:.45s}
.hero h1 span:nth-child(2){animation-delay:.62s}
.hero p.lead{font-size:1.22rem;font-weight:300;max-width:540px;color:rgba(243,247,251,.9);opacity:0;animation:rise 1s var(--ease) .85s forwards}
.hero-cta{display:flex;gap:16px;margin-top:38px;flex-wrap:wrap;opacity:0;animation:rise 1s var(--ease) 1.05s forwards}
@keyframes rise{from{opacity:0;transform:translateY(36px)}to{opacity:1;transform:translateY(0)}}
.hero-badge{position:absolute;right:48px;bottom:54px;z-index:3;background:rgba(14,24,36,.62);backdrop-filter:blur(10px);border:1px solid rgba(93,180,232,.4);padding:22px 26px;max-width:230px;opacity:0;animation:rise 1s var(--ease) 1.3s forwards}
.hero-badge .stars{color:var(--gold-soft);letter-spacing:.2em;font-size:.95rem}
.hero-badge .num{font-family:var(--serif);font-size:1.9rem;color:#fff;margin-top:6px}
.hero-badge .lbl{font-size:.74rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(243,247,251,.72);margin-top:2px}
.scroll-cue{position:absolute;left:50%;bottom:30px;transform:translateX(-50%);z-index:3;font-size:.66rem;letter-spacing:.34em;text-transform:uppercase;color:rgba(243,247,251,.7);writing-mode:vertical-rl;display:flex;align-items:center;gap:14px}
.scroll-cue::after{content:"";width:1px;height:46px;background:rgba(243,247,251,.5);animation:pulseLine 2s ease-in-out infinite}
@keyframes pulseLine{0%,100%{transform:scaleY(.4);opacity:.4}50%{transform:scaleY(1);opacity:1}}

/* credential marquee */
.creds{background:var(--navy);color:var(--cream);padding:20px 0;overflow:hidden;white-space:nowrap}
.creds-track{display:inline-flex;gap:56px;animation:marquee 34s linear infinite;will-change:transform}
.creds-track span{font-family:var(--serif);font-style:italic;font-size:1.05rem;color:var(--gold-soft);display:inline-flex;align-items:center;gap:56px}
.creds-track span::after{content:"✦";color:rgba(93,180,232,.55);font-style:normal;font-size:.7rem}
@keyframes marquee{to{transform:translateX(-50%)}}

/* reveal */
.reveal{opacity:0;transform:translateY(42px);transition:opacity 1s var(--ease),transform 1s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.12s}.reveal.d2{transition-delay:.24s}.reveal.d3{transition-delay:.36s}.reveal.d4{transition-delay:.48s}

/* ===== FULL-SCREEN PARALLAX BANDS (NJPS-style) ===== */
.band{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.band-bg{position:absolute;inset:-14% 0;z-index:0;will-change:transform} /* JS parallax */
.band-bg img{width:100%;height:100%;object-fit:cover;will-change:transform,opacity}
.band-scrim{position:absolute;inset:0;z-index:1}
.band .wrap{position:relative;z-index:2}
.band-watermark{position:absolute;z-index:1;font-family:var(--serif);font-weight:300;letter-spacing:.02em;color:rgba(255,255,255,.06);font-size:clamp(7rem,20vw,18rem);line-height:.8;bottom:2%;left:-2%;pointer-events:none;user-select:none}
.band-eyebrow{color:var(--gold-soft)}
.band-h{font-size:clamp(2.4rem,5.2vw,4.6rem);font-weight:500;color:#fff;margin:20px 0 24px;max-width:14ch}
.band-h i{font-style:italic;color:var(--gold-soft)}
.band-p{font-size:1.2rem;font-weight:300;color:rgba(243,247,251,.86);max-width:520px}
.band-right .wrap{display:flex;justify-content:flex-end}
.band-col{max-width:560px}

/* centered colored-heading section (light) */
.feature{text-align:center;padding:130px 0 70px}
.feature .eyebrow{display:block}
.feature h2{font-family:var(--serif);font-size:clamp(2.8rem,6vw,5.2rem);font-weight:500;color:var(--gold);margin:16px 0 14px;letter-spacing:-.01em}
.feature .sub{font-family:var(--serif);font-style:italic;font-size:clamp(1.3rem,2.4vw,1.9rem);color:var(--navy);font-weight:300}

/* asymmetric image + text */
.split{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center;padding:30px 0 130px}
.split.flip{grid-template-columns:.95fr 1.05fr}
.split.flip .split-media{order:2}
.split-media{position:relative;overflow:hidden;height:600px}
.split-media img{width:100%;height:100%;object-fit:cover;transition:transform 1.5s var(--ease)}
.split:hover .split-media img{transform:scale(1.05)}
.split-copy h3{font-size:clamp(1.8rem,3.4vw,2.8rem);font-weight:500;color:var(--navy);margin-bottom:20px}
.split-copy p{color:#46505b;font-weight:300;margin-bottom:18px}
.cred-row{display:flex;gap:28px;margin:30px 0;flex-wrap:wrap}
.cred-row .c{border-left:2px solid var(--gold);padding-left:14px}
.cred-row .c b{display:block;font-family:var(--serif);font-size:1.7rem;font-weight:300;color:var(--gold)}
.cred-row .c span{font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}

/* stats overlaid on parallax band */
.stat-band .band-scrim{background:linear-gradient(rgba(8,16,26,.78),rgba(8,16,26,.78))}
.stat-band .wrap{text-align:center}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:50px}
.stat .n{font-family:var(--serif);font-size:clamp(2.6rem,5vw,4.2rem);font-weight:500;color:#fff;line-height:1}
.stat .n b{color:var(--gold-soft);font-weight:300}
.stat .l{font-size:.82rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(243,247,251,.72);margin-top:14px}
.stat{position:relative;padding:0 14px}
.stat:not(:last-child)::after{content:"";position:absolute;right:-10px;top:10%;height:80%;width:1px;background:rgba(93,180,232,.25)}

/* ===== treatment selector (Featured Procedures) ===== */
.selector{background:var(--navy-deep);color:var(--cream);display:grid;grid-template-columns:1fr 1.05fr;min-height:100vh;overflow:hidden}
.sel-list{display:flex;flex-direction:column;justify-content:center;padding:100px 70px}
.sel-list .feature-h{font-family:var(--serif);font-size:clamp(2rem,3.6vw,3rem);font-weight:500;color:#fff;margin:16px 0 30px}
.sel-item{display:flex;align-items:center;gap:16px;font-family:var(--serif);font-size:clamp(1.4rem,2.4vw,2rem);font-weight:300;color:rgba(243,247,251,.45);cursor:pointer;padding:16px 0;border-bottom:1px solid rgba(93,180,232,.16);transition:all .45s var(--ease)}
.sel-item .idx{font-family:var(--sans);font-size:.7rem;letter-spacing:.2em;color:var(--gold-soft);opacity:0;transition:opacity .4s,transform .4s;transform:translateX(-10px)}
.sel-item:hover,.sel-item.active{color:#fff;padding-left:14px}
.sel-item:hover .idx,.sel-item.active .idx{opacity:1;transform:none}
.sel-item.active{color:var(--gold-soft)}
.sel-media{position:relative;min-height:100vh}
.sel-media .sm{position:absolute;inset:0;opacity:0;transition:opacity .8s var(--ease),transform 1.4s var(--ease);transform:scale(1.08)}
.sel-media .sm.on{opacity:1;transform:scale(1)}
.sel-media .sm img{width:100%;height:100%;object-fit:cover}
.sel-media::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,16,26,.72),rgba(8,16,26,.18) 52%,transparent 74%)}
/* caption vertically centered on the image so it stays in the viewport (section is taller than the image) */
.sel-cap{position:absolute;z-index:2;top:50%;transform:translateY(-50%);left:48px;max-width:360px}
.sel-cap .t{font-family:var(--serif);font-size:1.95rem;color:#fff;margin-bottom:8px;text-shadow:0 1px 16px rgba(8,16,26,.7),0 1px 3px rgba(8,16,26,.6)}
.sel-cap .d{font-size:1.04rem;font-weight:300;color:#fff;text-shadow:0 1px 14px rgba(8,16,26,.6)}

/* four pillars */
.cats{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:56px}
.cat{position:relative;height:500px;overflow:hidden;display:flex;align-items:flex-end;cursor:pointer}
.cat img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform 1.2s var(--ease)}
.cat::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(8,16,26,.88),rgba(8,16,26,.12) 60%,rgba(8,16,26,.3))}
.cat:hover img{transform:scale(1.08)}
.cat-body{position:relative;z-index:1;padding:30px;color:var(--cream);transition:transform .5s var(--ease)}
.cat:hover .cat-body{transform:translateY(-6px)}
.cat .num{font-size:.78rem;letter-spacing:.28em;color:var(--gold-soft)}
.cat h3{font-size:1.9rem;font-weight:400;color:#fff;margin:8px 0 10px}
.cat p{font-size:.97rem;color:rgba(243,247,251,.85);font-weight:300;max-height:0;opacity:0;overflow:hidden;transition:all .55s var(--ease)}
.cat:hover p{max-height:90px;opacity:1}
.cat .more{font-size:.76rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-soft);margin-top:14px;display:inline-flex;gap:8px}

/* ===== reviews scroll (E-E-A-T) ===== */
.reviews{padding:130px 0 120px;background:var(--cream);overflow:hidden}
.reviews .feature{padding:0 0 16px}
.reviews .agg{text-align:center;margin-bottom:54px}
.reviews .agg .stars{color:var(--gold);letter-spacing:.28em;font-size:1.3rem}
.reviews .agg .meta{font-size:.9rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-top:10px}
.rev-row{display:flex;gap:24px;width:max-content;padding:6px 0}
.rev-row.r1{animation:revScroll 60s linear infinite}
.rev-row.r2{animation:revScroll 72s linear infinite reverse;margin-top:24px}
.reviews:hover .rev-row{animation-play-state:paused}
@keyframes revScroll{to{transform:translateX(-50%)}}
.rev-card{width:380px;flex:0 0 380px;background:#fff;border:1px solid var(--cream-deep);padding:30px 32px;box-shadow:0 18px 40px rgba(14,42,68,.06)}
.rev-card .stars{color:var(--gold);letter-spacing:.18em;font-size:.95rem}
.rev-card blockquote{font-family:var(--serif);font-style:italic;font-weight:400;font-size:1.34rem;line-height:1.45;color:var(--navy);margin:16px 0 18px}
.rev-card .who{display:flex;align-items:center;gap:12px}
.rev-card .av{width:40px;height:40px;border-radius:50%;background:var(--navy);color:#fff;display:grid;place-items:center;font-weight:600;font-size:.9rem}
.rev-card .nm{font-weight:500;font-size:1rem;color:var(--ink)}
.rev-card .tx{font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold)}

/* CTA */
.cta .band-scrim{background:linear-gradient(rgba(8,16,26,.72),rgba(8,16,26,.72))}
.cta .wrap{text-align:center}
.cta h2{font-size:clamp(2.4rem,5vw,4rem);font-weight:500;color:#fff;margin:18px 0 22px}
.cta h2 i{color:var(--gold-soft)}
.cta p{max-width:560px;margin:0 auto 36px;color:rgba(243,247,251,.85);font-weight:300}
.cta .hero-cta{justify-content:center;opacity:1;animation:none}

/* footer */
footer{background:var(--navy-deep);color:rgba(243,247,251,.78);padding:90px 0 36px;font-weight:300}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:50px}
.foot-logo{height:50px;width:auto;margin-bottom:22px;filter:brightness(0) invert(1)}
.foot-brand p{font-size:1.02rem;max-width:300px}
footer h5{font-family:var(--sans);font-size:.82rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-soft);margin-bottom:20px;font-weight:600}
footer ul{list-style:none}
footer ul li{margin-bottom:11px;font-size:1.02rem}
footer ul li a{transition:color .3s}
footer ul li a:hover{color:var(--gold-soft)}
.foot-contact a{display:block;margin-bottom:12px;font-size:1.02rem}
.foot-phone{font-family:var(--sans)!important;font-size:1.35rem!important;color:#fff!important;font-style:normal;font-weight:600;letter-spacing:.02em}
.foot-bottom{border-top:1px solid rgba(93,180,232,.18);margin-top:60px;padding-top:26px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px;font-size:.82rem;letter-spacing:.08em;color:rgba(243,247,251,.5)}

/* responsive */
@media(max-width:1024px){
  .nav-links,.nav-phone{display:none}
  .burger{display:flex;color:var(--navy)}
  header.hero-mode .burger{color:var(--cream)}
  .split,.split.flip{grid-template-columns:1fr;gap:36px}
  .split.flip .split-media{order:0}
  .split-media{height:420px}
  .selector{grid-template-columns:1fr}
  .sel-list{padding:80px 40px}
  .sel-media{min-height:60vh;order:-1}
  /* mobile image is short: caption back to the bottom over a bottom scrim */
  .sel-media::after{background:linear-gradient(90deg,rgba(8,16,26,.5),transparent 60%)}
  .sel-media::before{content:"";position:absolute;left:0;right:0;bottom:0;height:62%;z-index:1;background:linear-gradient(to top,rgba(8,16,26,.85),rgba(8,16,26,.30) 55%,transparent);pointer-events:none}
  .sel-cap{top:auto;bottom:22px;transform:none;left:22px;right:22px;max-width:none}
  .sel-cap .t{font-size:1.5rem;line-height:1.15}
  .sel-cap .d{font-size:.92rem}
  .sel-item{color:rgba(243,247,251,.92)}
  .sel-item .idx{opacity:1;transform:none}
  .sel-item.active{color:var(--gold-soft,#e3caa0)}
  .cats{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:40px 20px}
  .stat:nth-child(2)::after{display:none}
  .foot-grid{grid-template-columns:1fr 1fr}
  .band-right .wrap{justify-content:flex-start}
}
@media(max-width:640px){
  .wrap{padding:0 22px}
  .cats{grid-template-columns:1fr}
  .stats-grid,.foot-grid{grid-template-columns:1fr}
  .hero-badge{display:none}
  .cat{height:380px}
  .rev-card{width:300px;flex-basis:300px}
  .sel-list{padding:64px 24px}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
  .band-bg img,.sel-media .sm{opacity:1!important;transform:none!important}
}

/* ============ SERVICE / INTERIOR PAGES (shared, all 205) ============ */
.svc-hero{min-height:78vh}
.svc-hero .band-h{max-width:18ch}
.prose{max-width:820px;margin:0 auto;padding:90px 0}
.prose .eyebrow{display:block;margin-bottom:14px}
.prose h2{font-size:clamp(2rem,4vw,3.2rem);font-weight:500;color:var(--navy);margin:46px 0 16px}
.prose h3{font-size:clamp(1.4rem,2.4vw,1.9rem);font-weight:600;color:var(--navy);margin:32px 0 10px}
.prose p{font-size:1.12rem;font-weight:300;color:#3c454f;margin-bottom:18px}
.prose ul{margin:0 0 22px 0;padding-left:0;list-style:none}
.prose ul li{font-size:1.1rem;font-weight:300;color:#3c454f;padding:10px 0 10px 34px;position:relative;border-bottom:1px solid var(--cream-deep)}
.prose ul li::before{content:"✓";position:absolute;left:0;top:10px;color:var(--gold);font-weight:700}
.prose a{color:var(--gold);border-bottom:1px solid rgba(11,121,191,.3)}
.prose a:hover{border-color:var(--gold)}
.prose .lead-xl{font-family:var(--serif);font-style:italic;font-size:clamp(1.5rem,2.6vw,2.1rem);font-weight:400;color:var(--navy);line-height:1.35;margin-bottom:30px}
/* FAQ (native details, no JS, schema via JSON-LD) */
.faq{max-width:860px;margin:0 auto;padding:30px 0 110px}
.faq h2{text-align:center;font-size:clamp(2.2rem,4.4vw,3.4rem);font-weight:500;color:var(--navy);margin-bottom:36px}
.faq details{border-bottom:1px solid var(--cream-deep);padding:8px 0}
.faq summary{font-family:var(--serif);font-size:1.4rem;font-weight:600;color:var(--navy);padding:18px 40px 18px 0;cursor:pointer;list-style:none;position:relative}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";position:absolute;right:6px;top:14px;font-size:1.8rem;font-weight:300;color:var(--gold);transition:transform .3s}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details p{font-size:1.06rem;font-weight:300;color:#3c454f;padding:0 0 20px;margin:0}
/* author / E-E-A-T box */
.author{max-width:860px;margin:0 auto 30px;display:flex;gap:26px;align-items:center;background:var(--cream);border:1px solid var(--cream-deep);padding:26px 30px}
.author img{width:96px;height:96px;border-radius:50%;object-fit:cover;flex:0 0 96px;filter:grayscale(1) contrast(1.04)}
.author .ab b{font-family:var(--serif);font-size:1.3rem;color:var(--navy);display:block}
.author .ab .cr{font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin:4px 0 8px}
.author .ab p{font-size:.98rem;font-weight:300;color:#46505b;margin:0}
/* full-width navy breadcrumb bar (bridges header + hero; text aligned to the 820 reading column) */
.breadcrumb{max-width:none!important;width:100%;background:var(--navy-deep);color:rgba(243,247,251,.6);padding:16px max(22px,calc((100% - 820px)/2))!important;margin:0;font-size:.82rem;letter-spacing:.04em;box-sizing:border-box}
.breadcrumb a{color:var(--gold-soft)}
.breadcrumb a:hover{color:#fff}
@media(max-width:640px){.author{flex-direction:column;text-align:center}}

/* ============ MOBILE OPTIMIZATION (all pages) ============ */
@media(max-width:768px){
  /* full-screen bands become content-height (no huge empty voids on phones) */
  .band,.svc-hero,.stat-band{min-height:auto;padding:90px 0}
  .hero{min-height:90vh}
  .band-col{max-width:100%}
  .band-h{max-width:100%}
  /* ghost watermark scaled to fit within the screen (was 34vw = bled off-screen) */
  .band-watermark{font-size:15vw;white-space:nowrap;bottom:1%;left:0;right:auto}
  /* full-width buttons on mobile (exclude the hidden nav button) */
  .btn:not(.nav-cta){display:flex!important;width:100%!important;min-width:0!important;box-sizing:border-box}
  .hero-cta{flex-direction:column;align-items:stretch}
  /* declutter sticky header: hamburger + logo only; CTA lives in hero + announce */
  .nav-cta{display:none}
  .brand-logo{height:36px}
  header.solid .brand-logo{height:32px}
  /* prose / faq / author readability */
  .prose{padding:56px 0}
  .prose h2{margin:34px 0 12px}
  .faq{padding:14px 0 64px}
  .faq summary{font-size:1.2rem;padding-right:36px}
  .author{padding:22px;gap:18px}
  .breadcrumb{padding:14px 22px!important}
  /* stats: comfortable stacked spacing */
  .stats-grid{gap:30px}
  .stat:not(:last-child)::after{display:none}
  /* reviews cards fit phone */
  .rev-card{width:280px;flex-basis:280px;padding:24px 22px}
  /* selector media not too tall */
  .sel-media{min-height:56vh}
}
@media(max-width:430px){
  .hero h1{font-size:2.9rem}
  .band-h{font-size:2.4rem}
  .announce{font-size:.74rem;letter-spacing:.04em;padding:9px 14px}
  .btn{padding:15px 26px;font-size:.8rem}
}

/* ============ SERVICE AREAS (local GEO, all pages) ============ */
.areas{background:var(--navy);color:var(--cream);padding:96px 0;text-align:center;position:relative;overflow:hidden}
.areas .band-watermark{color:rgba(255,255,255,.05)}
.areas .eyebrow{display:block;margin-bottom:14px}
.areas-h{font-family:var(--serif);font-size:clamp(2.2rem,4.6vw,3.6rem);font-weight:500;color:#fff;margin-bottom:14px}
.areas-sub{max-width:640px;margin:0 auto 14px;font-weight:300;color:rgba(243,247,251,.82);font-size:1.1rem}
.areas-grid{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;max-width:940px;margin:34px auto 0;position:relative;z-index:2}
.areas-grid a,.areas-grid span{font-family:var(--sans);font-size:.9rem;letter-spacing:.1em;text-transform:uppercase;color:var(--cream);border:1px solid rgba(93,180,232,.32);padding:13px 22px;border-radius:40px;transition:all .4s var(--ease);cursor:default}
.areas-grid a{cursor:pointer}
.areas-grid a:hover{background:var(--gold);border-color:var(--gold);color:#fff;transform:translateY(-2px)}
@media(max-width:768px){.areas{padding:70px 0}.areas-grid{gap:9px}.areas-grid a,.areas-grid span{font-size:.8rem;padding:11px 16px}}

/* ============ ENGAGEMENT & DEPTH (v3.4) ============ */
/* horizontal scroll-driven ghost watermark — JS sets --wmx (translateX) per band */
.band-watermark{will-change:transform;transform:translateX(var(--wmx,0px));transition:none}
/* contain the drifting watermark so it never spawns a horizontal scrollbar */
.band,.svc-hero,.areas,.stat-band{overflow:hidden}
/* card depth: lift + deepen shadow on hover across the card systems */
.tcard,.doccard,.vidcard,.cbox,.ivstep,.gtile,.faq-item{transition:transform .5s var(--ease),box-shadow .5s var(--ease)}
.tcard:hover,.doccard:hover,.vidcard:hover,.cbox:hover,.ivstep:hover{transform:translateY(-5px);box-shadow:0 28px 64px -30px rgba(8,16,26,.6)}
/* staggered reveal for auto-tagged cards (11.js adds .reveal + delay) */
.tcard.reveal,.doccard.reveal,.vidcard.reveal,.ivstep.reveal,.cbox.reveal,.gtile.reveal{transform:translateY(34px)}
.tcard.reveal.in,.doccard.reveal.in,.vidcard.reveal.in,.ivstep.reveal.in,.cbox.reveal.in,.gtile.reveal.in{transform:none}
/* equal-width CTA button pair on the pre-footer band — DESKTOP ONLY.
   (On mobile .hero-cta is flex-direction:column, where flex-basis 200px becomes
   button HEIGHT and flex-grow fills the tall band → 200px-tall buttons. So scope
   the equal-width to the desktop row only; mobile keeps natural stacked buttons.) */
.band.cta .hero-cta{gap:16px}
@media(min-width:769px){.band.cta .hero-cta .btn{flex:1 1 200px;max-width:260px}}
@media(max-width:768px){.band.cta .hero-cta .btn{flex:0 0 auto!important;max-width:none!important}}
@media(prefers-reduced-motion:reduce){.band-watermark{transform:none!important}}
/* ---- footer: policy links, disclaimer, Unified Marketing credit + LegitScript (centered) ---- */
.foot-legal{text-align:center;margin:26px auto 12px;font-family:var(--sans);font-size:.8rem;letter-spacing:.03em;line-height:2}
.foot-legal a{color:var(--cream);opacity:.78;padding:0 6px}
.foot-legal a:hover{color:var(--gold);opacity:1}
.foot-disclaimer{max-width:1040px;margin:0 auto 22px;font-family:var(--sans);font-size:.68rem;line-height:1.65;color:rgba(255,255,255,.42);text-align:center}
.foot-bottom{display:flex;flex-direction:column;align-items:center;gap:18px;text-align:center}
.foot-credit{display:flex;align-items:center;justify-content:center;gap:26px;flex-wrap:wrap}
.foot-credit .umg{display:inline-flex;flex-direction:column;align-items:center;gap:5px}
.foot-credit .umg span{font-family:var(--sans);font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.5)}
.foot-credit .umg img{height:24px;width:auto;opacity:.9;transition:opacity .3s}
.foot-credit .umg:hover img{opacity:1}
.foot-credit .ls img{height:62px;width:auto;border-radius:6px;background:#fff;padding:4px}
@media(max-width:600px){.foot-legal{font-size:.74rem}.foot-disclaimer{font-size:.64rem}}

/* ========================= PART B (global chrome + accents) ========================= */
:root{--sans:'Urbanist',-apple-system,Segoe UI,sans-serif;--serif:'EB Garamond',Georgia,serif;--head:'EB Garamond',Georgia,serif}
.brand{flex-shrink:0!important}
.brand-logo{height:42px!important;width:auto!important;flex:0 0 auto!important;max-width:62vw!important;object-fit:contain!important}
/* dropdown nav */
.nav-links{align-items:center}
.nav-item{position:relative}
.nav-item>a{display:inline-flex;align-items:center;gap:6px}
.nav-caret{font-size:.55em;opacity:.65;transition:transform .3s}
.nav-item:hover .nav-caret{transform:rotate(180deg)}
.nav-sub{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(10px);min-width:240px;background:#fff;border:1px solid rgba(11,121,191,.12);border-radius:14px;box-shadow:0 22px 60px rgba(14,42,68,.18);padding:12px;opacity:0;visibility:hidden;transition:opacity .26s,transform .26s,visibility .26s;z-index:80}
.nav-sub.two{min-width:480px;columns:2;column-gap:6px}
.nav-item:hover .nav-sub{opacity:1;visibility:visible;transform:translateX(-50%) translateY(2px)}
.nav-sub a{display:block;font-family:var(--sans)!important;font-size:.8rem!important;letter-spacing:.02em!important;text-transform:none!important;font-weight:500!important;color:var(--navy)!important;padding:9px 14px;border-radius:9px;white-space:nowrap;break-inside:avoid}
.nav-sub a::after{display:none!important}
.nav-sub a:hover{background:rgba(11,121,191,.07);color:var(--gold)!important}
/* inner pages: match the homepage's dark-glass header (was a light cream bar that clashed with the dark
   announce bar + navy breadcrumb + dark svc-hero). Now consistent dark navy header sitewide. */
header.is-inner{background:rgba(13,30,48,.82)!important;-webkit-backdrop-filter:saturate(1.4) blur(16px)!important;backdrop-filter:saturate(1.4) blur(16px)!important;box-shadow:0 1px 0 rgba(255,255,255,.07),0 18px 44px rgba(0,0,0,.18)!important}
header.is-inner .brand-logo{filter:none!important}
header.is-inner .nav-item>a,header.is-inner .nav-phone{color:#fff!important}
header.is-inner .nav-item:hover>a{color:var(--gold)!important}
/* premium on-scroll header: dark glass (was a flat white bar) — applies on all pages once scrolled.
   Alpha was .72 — MORE transparent than the at-rest .is-inner (.82), which is backwards: scrolling is
   exactly when content passes underneath. Over body copy the blur hid it, but over high-contrast
   imagery (the before/after gallery) photos bled straight through the bar. .95 keeps the dark-glass
   look and the blur while staying legible over anything. */
header.solid{background:rgba(13,30,48,.95)!important;-webkit-backdrop-filter:saturate(1.4) blur(16px)!important;backdrop-filter:saturate(1.4) blur(16px)!important;box-shadow:0 1px 0 rgba(255,255,255,.07),0 18px 44px rgba(0,0,0,.20)!important;padding:13px 0!important}
header.solid .brand-logo{filter:none!important}
header.solid .nav-item>a,header.solid .nav-phone{color:#fff!important}
header.solid .nav-item:hover>a{color:var(--gold)!important}
@media(max-width:1024px){
  .nav-links{max-height:84vh!important;overflow-y:auto!important;border-radius:0 0 16px 16px}
  .nav-item{width:100%}
  .nav-item>a{display:block!important;font-weight:700!important;color:var(--navy)!important;text-transform:uppercase;font-size:.95rem!important}
  .nav-sub{position:static!important;transform:none!important;opacity:1!important;visibility:visible!important;box-shadow:none!important;border:none!important;background:transparent!important;padding:2px 0 10px 14px!important;min-width:0!important;columns:1!important}
  .nav-sub.two{columns:1!important;min-width:0!important}
  .nav-sub a{color:#46586a!important;padding:8px 0!important;font-size:.84rem!important;font-weight:500!important;text-transform:none!important;border-bottom:1px solid rgba(11,121,191,.08)!important}
  .nav-sub a:last-child{border-bottom:none!important}
  .nav-caret{display:none}
}
/* === layout/polish fixes === */
/* keep the desktop nav inside the 1280 wrap (was overflowing -> horizontal scroll) */
.nav{gap:16px!important}
.nav-links{gap:17px!important;font-size:.8rem!important;letter-spacing:.05em!important}
.nav-phone{font-size:.88rem!important;letter-spacing:.02em!important}
.brand-logo{height:38px!important}
/* uniform, centered action buttons (the compact nav button is excluded) */
.btn{min-width:248px!important;justify-content:center!important;text-align:center!important}
.nav-right .nav-cta{min-width:auto!important;padding:11px 18px!important;font-size:.78rem!important;letter-spacing:.08em!important}
.hero-cta{flex-wrap:wrap!important}
/* move the vertical 'Scroll' cue off the hero buttons; hide it on mobile */
.scroll-cue{left:auto!important;right:30px!important}
@media(max-width:768px){.scroll-cue{display:none!important}}
/* home hero must cover the FULL header height on desktop (no white strip); mobile header is shorter and already fits */
@media(min-width:1025px){.hero,#top{margin-top:-116px!important}}
/* === content-column rhythm (service/inner pages) === */
/* unify the reading column so breadcrumb, prose, author & faq share one max-width + left edge */
.breadcrumb,.prose,.author,.faq{max-width:820px!important}
@media(min-width:769px){
  .breadcrumb{padding-left:0!important;padding-right:0!important}
  .faq{padding-bottom:72px!important}
}
/* mobile: prose + faq had 0 side padding (text touched the screen edge) -> inset 22px like every other block */
@media(max-width:768px){
  .prose,.faq{padding-left:22px!important;padding-right:22px!important}
}
/* remove Avada's cookie/privacy bar (also stripped from wp_footer output) */
.fusion-privacy-bar,.fusion-privacy-bar-bottom{display:none!important}
/* ===== CHAMPAGNE LUXURY ACCENT SYSTEM (site-wide) — warm gold accents on B&W, Beverly Hills medspa feel ===== */
:root{--champ:#c6a16b;--champ-lt:#e3caa0}
.eyebrow,.band-eyebrow{color:var(--champ)!important;letter-spacing:.4em!important;font-weight:600!important}
.band-h i,.feature .sub,.prose .lead-xl i{color:var(--champ-lt)!important}
.feature h2{color:var(--champ)!important;font-weight:400!important;letter-spacing:-.015em!important}
/* champagne buttons (nav button included for cohesion; prose text links stay blue for contrast) */
.btn{background:var(--champ)!important;border:1px solid var(--champ)!important;color:#fff!important;letter-spacing:.18em!important;font-weight:600!important;border-radius:2px!important;transition:all .5s cubic-bezier(.22,1,.36,1)!important}
.btn:hover{background:transparent!important;color:var(--champ)!important;transform:translateY(-2px)!important}
.btn.ghost{background:transparent!important;color:#fff!important;border-color:rgba(255,255,255,.45)!important}
.btn.ghost:hover{border-color:var(--champ)!important;color:var(--champ)!important}
header.solid .btn,header.is-inner .btn{color:#fff!important}
.stat .n,.stat .n *,.cred-row .c b,.hero-badge .num{color:var(--champ-lt)!important;font-weight:400!important}
.scroll-cue,.sel-item .idx,.hero-badge .stars{color:var(--champ)!important}
.hero-badge{border:1px solid rgba(198,161,107,.45)!important}
.nav-sub a:hover,header.is-inner .nav-item:hover>a,header.solid .nav-item:hover>a{color:var(--champ)!important}
/* home hero drama (selectors only match the homepage) */
.hero h1{font-size:clamp(3.4rem,7.8vw,7rem)!important;font-weight:400!important;letter-spacing:-.022em!important;line-height:.95!important;margin:20px 0 28px!important}
.hero h1 i{color:var(--champ-lt)!important;font-style:italic}
.hero .eyebrow{letter-spacing:.5em!important;font-size:.72rem!important;padding-left:56px!important;position:relative!important}
.hero .eyebrow::before{content:""!important;position:absolute!important;left:0!important;top:.6em!important;width:42px!important;height:1px!important;background:var(--champ)!important}
@media(min-width:769px){#doctor,.selector{padding-top:128px!important;padding-bottom:128px!important}}

/* ========================= PART C — IMAGE MEGA MENU (nusbaum-lite theme) ========================= */
/* Replaces the old .nav-sub dropdowns. Desktop = wide full-width panel with
   grouped link columns + a featured B&W image card + a booking CTA card.
   Mobile = tap-to-expand accordion (feature image hidden, CTA kept). */
.nav-top{display:inline-flex;align-items:center;gap:6px}
.nav-item.has-mega{position:static}          /* mega anchors to <header> for a full-width panel */
header{position:sticky}                        /* (already sticky) — establishes the mega's containing block */

.mega{position:absolute;left:0;right:0;top:100%;background:#fff;border-top:1px solid rgba(11,121,191,.14);
  box-shadow:0 34px 64px -20px rgba(14,42,68,.28);opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .28s var(--ease),transform .28s var(--ease),visibility .28s;z-index:90;pointer-events:none}
.nav-item.has-mega:hover .mega,.nav-item.has-mega:focus-within .mega{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto}
/* Hover bridge: the header's ~20px bottom padding sat between the nav link and the mega
   (top:100%), so moving the mouse down into the panel dropped :hover and snapped it shut.
   Render an invisible strip below the link ONLY while hovering (so it never intercepts
   hero clicks at rest), keeping :hover continuous across the gap. */
.nav-links .nav-item.has-mega:hover > a::before{content:"";position:absolute;left:0;right:0;top:100%;height:28px}
.mega-inner{display:grid;grid-template-columns:minmax(0,1fr) 244px 264px;gap:46px;padding:40px 40px 44px;align-items:stretch}
.mega-cols{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px 34px;min-width:0;align-content:start}
.mega-col{min-width:0}
.mega-col-h{font-family:var(--sans);font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin:0 0 14px;font-weight:700}
.mega-col ul{list-style:none;margin:0;padding:0}
.mega-col li{margin:0 0 8px}
.mega a{font-family:var(--sans)!important;text-transform:none!important;letter-spacing:.005em!important;font-weight:500!important}
.mega a::after{display:none!important}
.mega-col a{display:inline-block;font-size:.92rem;color:var(--navy);transition:color .2s,transform .2s}
.mega-col a:hover{color:var(--gold);transform:translateX(3px)}
/* featured image card */
.mega-feature{position:relative;border-radius:16px;overflow:hidden;min-height:236px;display:flex;align-items:flex-end;color:#fff}
.mega-feature img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:grayscale(1) contrast(1.05);transition:transform .9s var(--ease)}
.mega-feature::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(8,16,26,.92),rgba(8,16,26,.36) 52%,rgba(8,16,26,.08))}
.mega-feature:hover img{transform:scale(1.06)}
.mega-feature-body{position:relative;z-index:1;padding:22px 22px 20px}
.mega-feature-eyebrow{display:block;font-family:var(--sans);font-size:.62rem;letter-spacing:.26em;text-transform:uppercase;color:var(--champ-lt);margin-bottom:7px}
.mega-feature-title{display:block;font-family:var(--serif);font-size:1.55rem;line-height:1.05;color:#fff;margin-bottom:7px}
.mega-feature-desc{display:block;font-size:.82rem;line-height:1.4;color:rgba(255,255,255,.85);margin-bottom:11px}
.mega-feature-cta{font-family:var(--sans);font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;color:var(--champ-lt)}
.mega-feature:hover .mega-feature-cta{color:#fff}
/* booking CTA card */
.mega-cta{background:linear-gradient(155deg,var(--navy),var(--navy-deep));border-radius:16px;padding:28px 26px;color:#fff;display:flex;flex-direction:column;align-items:flex-start}
.mega-cta-eyebrow{font-family:var(--sans);font-size:.62rem;letter-spacing:.26em;text-transform:uppercase;color:var(--champ);margin-bottom:9px}
.mega-cta-h{font-family:var(--serif);font-size:1.4rem;line-height:1.12;color:#fff;margin-bottom:9px}
.mega-cta p{font-size:.82rem;line-height:1.45;color:rgba(255,255,255,.76);margin:0 0 18px}
.mega-cta .btn{min-width:0!important;width:100%!important;justify-content:center!important}
.mega-cta-phone{margin-top:13px;font-family:var(--sans);font-size:.8rem;letter-spacing:.02em;color:var(--champ-lt)}
.mega-cta-phone:hover{color:#fff}
/* narrower desktop: stack the two cards */
@media(min-width:1025px) and (max-width:1200px){
  .mega-inner{grid-template-columns:minmax(0,1fr) 240px}
  .mega-cta{grid-column:2}
  .mega-feature{grid-row:1;grid-column:2;min-height:150px}
}

/* ---- MOBILE NAV + accordion (<=1024): class-based, no inline styles ---- */
@media(max-width:1024px){
  .burger{display:flex;color:var(--navy)}
  header.hero-mode .burger{color:var(--cream)}
  header.solid .burger,header.is-inner .burger{color:#fff}
  .nav-links{position:absolute;top:100%;left:0;right:0;flex-direction:column;gap:0;background:var(--cream);
    max-height:calc(100vh - 64px);overflow-y:auto;padding:6px 0 26px;box-shadow:0 22px 44px rgba(0,0,0,.16);border-radius:0 0 16px 16px}
  header.nav-open .nav-links{display:flex!important}
  .nav-item{width:100%;border-bottom:1px solid var(--cream-deep)}
  .nav-item>a.nav-top{display:flex!important;justify-content:space-between;align-items:center;width:100%;
    padding:16px 22px!important;color:var(--navy)!important;text-transform:uppercase;font-weight:700;font-size:.95rem!important}
  .nav-item.has-mega>a.nav-top .nav-caret{display:inline-block!important;font-size:.7em;transition:transform .3s}
  .nav-item.open>a.nav-top .nav-caret{transform:rotate(180deg)}
  .mega{position:static!important;opacity:1!important;visibility:visible!important;transform:none!important;
    box-shadow:none!important;border:none!important;background:transparent!important;display:none;pointer-events:auto!important}
  .nav-item.open .mega{display:block}
  .mega-inner{display:block!important;padding:2px 22px 16px}
  .mega-cols{flex-direction:column;gap:0}
  .mega-col{padding:4px 0}
  .mega-col-h{margin:12px 0 4px}
  .mega-col a{display:block;padding:9px 0;font-size:.9rem;color:#46586a}
  .mega-feature{display:none}
  .mega-cta{margin:16px 0 6px}
  .mega-cta .btn{width:100%!important}
}

/* ---- PART C fixes (QA 2026-08-05) ---- */
/* mega link color: beat header.hero-mode/.solid .nav-links a (0,2,2) which washed links to cream */
.mega .mega-col-h{color:var(--gold)!important}
.mega .mega-col a{color:var(--navy)!important}
.mega .mega-col a:hover{color:var(--gold)!important}
.mega .mega-feature-title,.mega .mega-cta-h{color:#fff!important}
.mega .mega-feature-eyebrow,.mega .mega-feature-cta{color:var(--champ-lt)!important}
.mega .mega-feature-desc{color:rgba(255,255,255,.9)!important}
.mega .mega-cta p{color:rgba(255,255,255,.78)!important}
.mega .mega-cta-eyebrow{color:var(--champ)!important}
.mega .mega-cta-phone{color:var(--champ-lt)!important}
/* stronger scrim so feature title/desc stay legible over bright B&W images */
.mega-feature::after{background:linear-gradient(to top,rgba(6,14,24,.96),rgba(6,14,24,.55) 46%,rgba(6,14,24,.18))!important}
/* hover bridge: transparent strip above the panel spans the header-padding gap so
   the menu doesn't close while moving the cursor from the top link to the panel */
.mega::before{content:"";position:absolute;bottom:100%;left:0;right:0;height:30px}
@media(max-width:1024px){.mega::before{display:none}}
/* deepen feature scrim further for title/desc legibility over bright images */
.mega .mega-feature::after{background:linear-gradient(to top,rgba(6,14,24,.98),rgba(6,14,24,.86) 42%,rgba(6,14,24,.4) 72%,rgba(6,14,24,.12))!important}
.mega .mega-feature-body{padding:24px 22px 22px!important}

/* ---- PART C fixes #2 (QA 2026-08-05) ---- */
/* HERO ghost watermark: was "TRANSFORMATION" at ~288px = wider than viewport, so
   only a clipped mid-slice showed (looked like gibberish). Size it to fit, center
   it, and kill the JS scroll-drift so it reads as intentional ghost text. */
.hero .band-watermark{font-size:clamp(2.2rem,8.2vw,7rem)!important;left:0!important;right:0!important;bottom:7%!important;text-align:center!important;transform:none!important;color:rgba(255,255,255,.05)!important;letter-spacing:.05em!important;white-space:nowrap}
/* marquee reduced-motion: doubled track would wrap to a multi-line mess when the
   animation is disabled — hide the 2nd copy (spans 7-12) and center the single set. */
@media(prefers-reduced-motion:reduce){
  .creds-track{flex-wrap:wrap;justify-content:center;animation:none}
  .creds-track span:nth-child(n+7){display:none}
}

/* ---- PART C fixes #3 (QA 2026-08-05) — hero watermark parity ---- */
/* Per feedback: the hero ghost word should be the SAME big size as every other
   section's watermark AND drift horizontally on scroll (uses --wmx from master.js).
   Overrides the earlier shrink/center. */
.hero .band-watermark{
  font-size:clamp(7rem,20vw,18rem)!important;
  left:-2%!important;right:auto!important;bottom:2%!important;
  text-align:left!important;letter-spacing:.02em!important;
  color:rgba(255,255,255,.06)!important;
  transform:translateX(var(--wmx,0px))!important;   /* scroll-drift, like the rest */
  will-change:transform;
}
@media(max-width:768px){.hero .band-watermark{font-size:15vw!important;left:0!important;bottom:1%!important}}

/* ---- PART C fixes #4 (QA 2026-08-05) — mega menu polish ---- */
/* DESKTOP: center the feature-card overlay text + the CTA card text (were left-aligned). */
.mega-feature{justify-content:center}
.mega-feature-body{text-align:center;width:100%;padding:24px 20px 22px!important}
.mega-cta{align-items:center!important;text-align:center!important}
.mega-cta .mega-cta-h{max-width:16ch}
/* MOBILE (<=1024): nav-top labels were inheriting the dark-header white color on
   the cream slide-out panel (invisible). Force navy regardless of header state,
   and drop the heavy CTA card from the accordion (nav already has Book + Call). */
@media(max-width:1024px){
  header .nav-links .nav-item > a.nav-top,
  header .nav-links .nav-item > a.nav-top .nav-caret{color:var(--navy)!important}
  header.hero-mode .nav-links .nav-item > a.nav-top,
  header.solid .nav-links .nav-item > a.nav-top,
  header.is-inner .nav-links .nav-item > a.nav-top{color:var(--navy)!important}
  .nav-item .mega-cta{display:none!important}
}

/* ---- PART C fixes #5 (QA 2026-08-05) — breadcrumb full-width ---- */
/* The plugin global CSS bundled .breadcrumb into a max-width:820 reading-column
   rule; in the merged master that rule wins and collapses the full-width navy
   breadcrumb bar to an 820px floating box. Restore full-bleed. */
.breadcrumb{max-width:none!important;width:100%!important}

/* ---- PART C fixes #6 (QA 2026-08-05) — button hover legibility ---- */
/* Two hover systems fought: 8.css slides a navy ::after overlay up on hover while
   the global override set bg:transparent + champagne text — result was hidden/
   low-contrast text. Kill the overlay; hover = darker-gold fill + WHITE text
   (always legible on light OR dark sections). */
.btn::after{display:none!important}
.btn:hover{background:#b0894f!important;border-color:#b0894f!important;color:#fff!important;transform:translateY(-2px)!important}
.btn span{color:inherit!important}
/* ghost buttons (transparent on dark heroes): fill champagne on hover, white text */
.btn.ghost{background:transparent!important;color:#fff!important;border-color:rgba(255,255,255,.5)!important}
.btn.ghost:hover{background:var(--champ)!important;border-color:var(--champ)!important;color:#fff!important}
header.solid .btn:hover,header.is-inner .btn:hover{color:#fff!important}

/* ============ PART C fixes #7 (QA 2026-08-05 batch) ============ */
/* 1) Four Pillars: kill the big cream gap under the full-bleed tiles */
#pillars{padding-bottom:40px!important}
/* 2) Reviews scroller too small on mobile — make cards near-full-width + bigger text */
@media(max-width:768px){
  .rev-card{width:86vw!important;flex-basis:86vw!important;max-width:420px;padding:28px 26px!important}
  .rev-card blockquote{font-size:1.2rem!important}
}
/* 3) nav "Book Consultation" button font was serif (looked broken) — match the sans buttons */
.nav-cta,.nav-cta span{font-family:var(--sans)!important;letter-spacing:.1em!important;font-weight:600!important}
/* 4) MEGA feature card: text was washed out over bright photos + image off-centre +
      desc clipping. Solid dark bottom panel = always legible; center the subject; show all text. */
.mega-feature{position:relative;border-radius:16px;overflow:hidden;min-height:258px;display:flex;flex-direction:column;justify-content:flex-end}
.mega-feature img{position:absolute!important;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 26%!important;filter:grayscale(1) contrast(1.05)}
.mega-feature::after{content:""!important;position:absolute;left:0;right:0;bottom:0;top:auto!important;height:72%!important;background:linear-gradient(to top,rgba(6,12,20,.97),rgba(6,12,20,.9) 42%,rgba(6,12,20,.55) 74%,transparent)!important;z-index:0}
.mega-feature-body{position:relative;z-index:1;text-align:center;width:100%;padding:16px 18px 20px!important}
.mega-feature-eyebrow{color:var(--champ-lt)!important;margin-bottom:6px}
.mega-feature-title{font-size:1.35rem!important;line-height:1.08!important;margin-bottom:6px}
.mega-feature-desc{font-size:.8rem!important;line-height:1.4!important;color:rgba(255,255,255,.92)!important;margin-bottom:9px}
.mega-feature-cta{color:var(--champ-lt)!important}
/* 5) Footer: smaller Unified credit logo */
.foot-credit .umg img{height:15px!important}
/* 6) Footer: full service menu grid + 2 columns on mobile */
.foot-grid{grid-template-columns:1.5fr 1fr 1fr 1fr 1fr 1.1fr!important;gap:34px!important}
footer ul li{margin-bottom:9px;font-size:.94rem}
@media(max-width:1024px){
  .foot-grid{grid-template-columns:1fr 1fr 1fr!important}
  .foot-brand{grid-column:1 / -1}
}
@media(max-width:640px){
  .foot-grid{grid-template-columns:1fr 1fr!important;gap:26px 22px!important}
  .foot-brand{grid-column:1 / -1}
}
/* 7) Ample section padding + full-width action buttons on mobile (edge-to-edge, comfy) */
@media(max-width:768px){
  .band,.svc-hero,.stat-band,.areas,.survey-band,.reviews,.feature{padding-top:76px;padding-bottom:76px}
  .hero-cta .btn,.band.cta .hero-cta .btn,.promo-cta .btn{width:100%!important;flex:1 1 100%!important;max-width:none!important;padding:17px 24px!important}
}

/* ---- PART C fixes #8 — breadcrumb text padding ---- */
/* PART B set padding-left:0 (fine when the bar was a centered 820 box); now that
   it's full-width the text sat flush at the viewport edge. Align text to the 820
   reading column (matches the prose left edge on service pages). */
.breadcrumb{padding-top:16px!important;padding-bottom:16px!important;padding-left:max(22px,calc((100% - 820px)/2))!important;padding-right:max(22px,calc((100% - 820px)/2))!important}
@media(max-width:768px){.breadcrumb{padding-left:22px!important;padding-right:22px!important}}

/* ---- PART C fixes #9 — mega feature card as image-top + solid-panel split ---- */
/* Overlaying text on the photo was fragile (washed out, clipped). Split it:
   image on top, all text on a solid navy panel below = always legible, no clip. */
.mega-feature{display:flex!important;flex-direction:column!important;justify-content:flex-start!important;border-radius:16px;overflow:hidden;min-height:0!important;background:linear-gradient(155deg,var(--navy),var(--navy-deep))!important;color:#fff}
.mega-feature::after{display:none!important}
.mega-feature-media{display:block;position:relative;width:100%;height:136px;overflow:hidden}
.mega-feature-media img{position:absolute!important;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 24%!important;filter:grayscale(1) contrast(1.05);transition:transform .8s var(--ease)}
.mega-feature:hover .mega-feature-media img{transform:scale(1.06)}
.mega-feature-body{display:block;position:static!important;text-align:center;padding:15px 16px 18px!important;width:100%}
.mega-feature-eyebrow{display:block;font-family:var(--sans);font-size:.6rem!important;letter-spacing:.24em;text-transform:uppercase;color:var(--champ)!important;margin-bottom:7px}
.mega-feature-title{display:block;font-family:var(--serif);font-size:1.35rem!important;line-height:1.1!important;color:#fff!important;margin-bottom:7px}
.mega-feature-desc{display:block;font-family:var(--sans);font-size:.8rem!important;line-height:1.4!important;color:rgba(255,255,255,.82)!important;margin-bottom:10px}
.mega-feature-cta{display:block;font-family:var(--sans);font-size:.68rem!important;letter-spacing:.18em;text-transform:uppercase;color:var(--champ-lt)!important}
.mega-feature:hover .mega-feature-cta{color:#fff!important}
/* mega feature card: content-height (don't stretch to the tall link columns → no clip) */
.mega-inner{align-items:start!important}
.mega-feature{align-self:start!important}
.mega-feature-desc{white-space:normal!important;overflow:visible!important}
