/* ── SHARED STYLES — CLA Surgery Redesign (Précis variant) ─── */
:root {
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Outfit', system-ui, sans-serif;
  --bg:     #ffffff;
  --bg2:    #f7f3ef;
  --bg3:    #f0ebe4;
  --ink:    #1a1614;
  --soft:   #4a423d;
  --muted:  #6b6258;
  --line:   #e6ddd0;
  --gold:   #a8784e;
  --gold-d: #7a5535;
  --cream:  #f8f1e6;
  --white:  #ffffff;
  --dark:   #1a1614;
  --radius: 4px;
  --gap:    clamp(1.5rem,5vw,4rem);
  --ease:   cubic-bezier(.22,.61,.36,1);
  --t:      300ms var(--ease);
  --max:    1280px;
}
*,*::before,*::after{box-sizing:border-box}
*{margin:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-b);font-size:1.0625rem;line-height:1.65;color:var(--ink);background:var(--bg);-webkit-font-smoothing:antialiased;overflow-x:clip}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{border:none;background:none;cursor:pointer;font:inherit;color:inherit}
ul{list-style:none;padding:0}
::selection{background:var(--gold);color:#fff}

/* Layout */
.ctr{width:100%;max-width:var(--max);margin-inline:auto;padding-inline:var(--gap)}
.sec{padding-block:clamp(4rem,8vw,7rem)}
.sec-alt{background:var(--bg2)}
.sec-dark{background:var(--dark);color:var(--cream)}
.sec-dark h2,.sec-dark h3{color:var(--cream)}

/* Type */
h1,h2,h3,h4{font-family:var(--font-d);font-weight:400;line-height:1.08;letter-spacing:-.01em}
.eyebrow{display:inline-flex;align-items:center;gap:.75rem;font-family:var(--font-b);font-size:.7rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-d)}
.eyebrow::before{content:'';width:24px;height:1px;background:var(--gold);flex-shrink:0}
.eyebrow.center-eye{justify-content:center}
.eyebrow.center-eye::before{display:none}
.eyebrow.center-eye::after{content:'';width:24px;height:1px;background:var(--gold);flex-shrink:0}

/* Buttons */
.btn-primary{display:inline-flex;align-items:center;gap:.5rem;padding:.65rem 1.4rem;background:var(--ink);color:#fff;font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);transition:background var(--t),transform var(--t),box-shadow var(--t)}
.btn-primary:hover{background:var(--gold-d);transform:translateY(-1px)}
.btn-ghost{display:inline-flex;align-items:center;gap:.5rem;padding:.65rem 1.4rem;border:1px solid var(--line);color:var(--ink);font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);transition:all var(--t)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold)}
.btn-gold{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.4rem;background:var(--gold);color:#fff;font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);transition:background var(--t)}
.btn-gold:hover{background:var(--gold-d)}
.btn-white{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.4rem;background:var(--cream);color:var(--ink);font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);transition:background var(--t),color var(--t),transform var(--t),box-shadow var(--t)}
.btn-white:hover{background:#fff;color:var(--gold-d);transform:translateY(-1px);box-shadow:0 14px 32px rgba(0,0,0,.18)}
.btn-wa{display:inline-flex;align-items:center;gap:.6rem;padding:.7rem 1.6rem;background:#25d366;color:#fff;font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;border-radius:var(--radius)}
.btn-wa:hover{background:#1da851}
.arrow::after{content:'  →'}

/* Header */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--line);transition:box-shadow var(--t)}
.site-header.scrolled{box-shadow:0 2px 20px rgba(26,22,20,.06)}
.h-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;padding-block:1rem}
.brand{display:flex;flex-direction:column;gap:3px}
.brand-name{font-family:var(--font-d);font-size:1.5rem;font-weight:500;letter-spacing:.025em;color:var(--ink);line-height:1}
.brand-tag{font-size:.6rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted)}
.main-nav{display:none}
@media(min-width:1024px){.main-nav{display:flex;gap:2rem;align-items:center}}
.main-nav a{font-size:.875rem;color:var(--soft);transition:color var(--t);padding:.25rem 0}
.main-nav a:hover,.main-nav a.active{color:var(--ink)}
.main-nav a.active{border-bottom:1px solid var(--gold)}
.nav-dropdown{position:relative;padding:.9rem 0;margin:-.9rem 0}
.nav-dropdown::after{content:'';position:absolute;left:0;right:0;top:100%;height:1rem}
.nav-trigger{display:inline-flex;align-items:center;gap:.45rem}
.nav-trigger::after{content:'▾';font-size:.7rem;transform:translateY(-1px)}
.nav-panel{position:absolute;top:calc(100% + .2rem);left:50%;transform:translateX(-50%);width:min(860px,80vw);display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.35rem 1.5rem;padding:1.25rem;background:rgba(255,255,255,.98);border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 16px 40px rgba(26,22,20,.08);opacity:0;visibility:hidden;pointer-events:none;transition:opacity var(--t),visibility var(--t),transform var(--t);z-index:110}
.nav-dropdown:hover .nav-panel,.nav-dropdown:focus-within .nav-panel{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(.15rem)}
.nav-panel a{display:block;padding:.45rem 0;border-bottom:1px solid transparent;font-size:.82rem;line-height:1.35}
.nav-panel a:hover{color:var(--gold-d)}
.nav-panel a.nav-panel-all{grid-column:1/-1;padding-bottom:.85rem;margin-bottom:.35rem;border-bottom:1px solid var(--line);font-size:.74rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.h-cta{display:flex;align-items:center;gap:1rem}
.h-cta .btn-primary{padding:.9rem 1.35rem;border-radius:999px;background:linear-gradient(135deg,var(--gold),var(--gold-d));box-shadow:0 14px 30px rgba(199,145,78,.22);font-size:.72rem;letter-spacing:.14em;white-space:nowrap}
.h-cta .btn-primary:hover{background:linear-gradient(135deg,var(--gold-d),var(--gold));box-shadow:0 18px 34px rgba(199,145,78,.28)}
.menu-btn{display:flex;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;padding:0 10px;border:1px solid var(--line);border-radius:999px;background:#fff;flex-shrink:0}
.menu-btn span{width:100%;height:1.5px;background:var(--ink);display:block;transition:transform var(--t),opacity var(--t)}
@media(min-width:1024px){.menu-btn{display:none}}
@media(max-width:1023px){
  .h-inner{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:start;column-gap:1rem}
  .h-cta{position:static;transform:none;justify-self:end;align-self:start;margin-left:0}
  .h-cta .btn-primary,.lang-switch{display:none!important}
}
.mob-nav{position:fixed;inset:64px 0 0 0;background:var(--bg);padding:3rem var(--gap);transform:translateX(100%);transition:transform var(--t);overflow-y:auto;z-index:99}
.mob-nav.open{transform:translateX(0)}
.mob-nav a{display:block;font-family:var(--font-d);font-size:1.75rem;padding:.65rem 0;border-bottom:1px solid var(--line)}
.mob-nav details{border-bottom:1px solid var(--line)}
.mob-nav summary{display:flex;align-items:center;justify-content:space-between;font-family:var(--font-d);font-size:1.75rem;padding:.65rem 0;cursor:pointer;list-style:none}
.mob-nav summary::-webkit-details-marker{display:none}
.mob-nav summary::after{content:'+';font-size:1.15rem;color:var(--gold);transition:transform var(--t)}
.mob-nav details[open] summary::after{transform:rotate(45deg)}
.mob-subnav{padding:0 0 .85rem 1rem}
.mob-subnav a{font-family:var(--font-b);font-size:.95rem;padding:.45rem 0;color:var(--soft)}

/* Breadcrumb */
.breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:var(--muted);flex-wrap:wrap;margin-bottom:2rem}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb .sep{opacity:.4}

/* Trust strip */
.trust-strip{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--bg2);padding:1.25rem 0}
.trust-strip-inner{display:flex;gap:2rem;flex-wrap:wrap;align-items:center;justify-content:space-between}
.trust-item{display:flex;align-items:center;gap:.75rem;font-size:.8rem;color:var(--soft)}
.trust-item::before{content:'✓';color:var(--gold);font-weight:600}
@media(max-width:767px){
  .trust-strip{padding:1rem 0}
  .trust-strip-inner{display:grid;grid-template-columns:1fr;gap:.9rem;justify-content:stretch}
  .trust-item{font-size:.9rem;line-height:1.45}
}

/* Section head */
.sec-head{display:flex;flex-direction:column;gap:.75rem;margin-bottom:3rem}
.sec-head.center{align-items:center;text-align:center}
.sec-head h2{font-size:clamp(2rem,3.5vw,2.8rem)}
.sec-lead{color:var(--soft);font-weight:300;max-width:52ch;line-height:1.7}

/* Testimonials */
.testi-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.25rem}
.testi-card{border:1px solid var(--line);padding:1.75rem;border-radius:var(--radius);display:flex;flex-direction:column;gap:.75rem;transition:border-color var(--t)}
.testi-card:hover{border-color:var(--gold)}
.stars{color:var(--gold);font-size:.9rem;letter-spacing:.05em}
.testi-text{font-size:.9rem;color:var(--soft);font-weight:300;line-height:1.75;font-style:italic;flex:1}
.testi-name{font-size:.8rem;font-weight:500}
.testi-src{font-size:.7rem;color:var(--muted);margin-top:.15rem}

/* Final CTA */
.final-cta{background:var(--bg3);border-top:1px solid var(--line);padding-block:clamp(5rem,10vw,8rem);text-align:center}
.final-cta h2{font-size:clamp(2rem,4vw,3.25rem);max-width:20ch;margin-inline:auto}
.final-cta p{color:var(--soft);max-width:48ch;margin:1.25rem auto 2.5rem;font-weight:300;line-height:1.75}
.cta-row{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.final-meta{margin-top:1.5rem;font-size:.75rem;color:var(--muted);letter-spacing:.06em}

/* Footer */
.site-footer{background:var(--dark);color:rgba(248,241,230,.5);padding-block:clamp(3rem,6vw,5rem)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem}
@media(max-width:768px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr}}
.footer-logo{font-family:var(--font-d);font-size:1.4rem;font-weight:500;color:var(--cream);margin-bottom:.75rem}
.footer-brand p{font-size:.85rem;line-height:1.7;margin-bottom:1.25rem}
.footer-social{display:flex;gap:.75rem}
.footer-social a{width:32px;height:32px;border:1px solid rgba(248,241,230,.12);display:flex;align-items:center;justify-content:center;border-radius:var(--radius);transition:border-color var(--t)}
.footer-social a:hover{border-color:var(--gold)}
.footer-social svg{width:15px;height:15px;fill:rgba(248,241,230,.5)}
.footer-col h4{font-family:var(--font-d);font-size:1rem;font-weight:500;color:var(--cream);margin-bottom:1rem}
.footer-col a{display:block;font-size:.85rem;padding:.25rem 0;transition:color var(--t)}
.footer-col a:hover{color:var(--cream)}
.footer-bottom{border-top:1px solid rgba(248,241,230,.07);padding-top:2rem;margin-top:3rem;font-size:.78rem;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.footer-bottom a:hover{color:var(--cream)}

/* WA Float */
.wa-float{position:fixed;bottom:2rem;right:2rem;z-index:200;width:54px;height:54px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.35);transition:transform var(--t)}
.wa-float:hover{transform:scale(1.08)}
.wa-float svg{width:26px;height:26px;fill:#fff}

/* Split layout */
.split{display:grid;gap:clamp(2rem,6vw,5rem);align-items:center}
@media(min-width:768px){.split{grid-template-columns:1fr 1fr}}
.split.reverse{direction:rtl}
.split.reverse>*{direction:ltr}
.split-img{overflow:hidden;border-radius:var(--radius)}
.split-img img{width:100%;height:clamp(340px,50vw,600px);object-fit:cover;object-position:center top}
.split-text{display:flex;flex-direction:column;gap:1.25rem}
.split-text h2{font-size:clamp(1.75rem,3vw,2.5rem)}
.split-text p{color:var(--soft);font-weight:300;max-width:48ch;line-height:1.75}

/* FAQ */
.faq-list{border-top:1px solid var(--line)}
details.faq-i{border-bottom:1px solid var(--line)}
details.faq-i summary{padding:1.25rem 0;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem;font-size:.95rem}
details.faq-i summary::-webkit-details-marker{display:none}
details.faq-i summary::after{content:'+';font-size:1.2rem;color:var(--gold);flex-shrink:0;transition:transform var(--t)}
details.faq-i[open] summary::after{transform:rotate(45deg)}
.faq-ans{padding-bottom:1.25rem;font-size:.9rem;color:var(--soft);font-weight:300;line-height:1.75;max-width:66ch}

/* Sidebar card */
.sidebar-card{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.sidebar-card-head{background:var(--bg2);padding:1.25rem 1.5rem;border-bottom:1px solid var(--line)}
.sidebar-card-head h3{font-family:var(--font-d);font-size:1.15rem}
.sidebar-card-body{padding:1.5rem}
.data-row{display:flex;justify-content:space-between;align-items:baseline;padding:.6rem 0;border-bottom:1px solid var(--line);gap:1rem}
.data-row:last-child{border-bottom:none}
.data-label{font-size:.75rem;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
.data-val{font-size:.875rem;font-weight:500;text-align:right;max-width:55%}

/* CTA dark card */
.cta-card{background:var(--ink);color:var(--cream);border-radius:var(--radius);padding:2rem 1.75rem}
.cta-card .cta-tag{font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.75rem}
.cta-card h3{font-family:var(--font-d);font-size:1.5rem;color:var(--cream);margin-bottom:.75rem;line-height:1.2}
.cta-card p{font-size:.875rem;color:rgba(248,241,230,.65);font-weight:300;line-height:1.65;margin-bottom:1.5rem}
.cta-card .btn-gold{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1rem;background:var(--gold);color:#fff;font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);margin-bottom:.75rem;transition:background var(--t)}
.cta-card .btn-gold:hover{background:var(--gold-d)}
.cta-card .btn-outline{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.65rem 1rem;border:1px solid rgba(248,241,230,.2);color:rgba(248,241,230,.7);font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);transition:all var(--t)}
.cta-card .btn-outline:hover{border-color:rgba(248,241,230,.5);color:var(--cream)}
.cta-card .meta{text-align:center;font-size:.68rem;color:rgba(248,241,230,.35);margin-top:1rem;letter-spacing:.04em}

/* Related list */
.related-item{display:flex;align-items:center;justify-content:space-between;padding:.85rem 1.5rem;border-bottom:1px solid var(--line);font-size:.875rem;transition:background var(--t),color var(--t)}
.related-item:last-child{border-bottom:none}
.related-item:hover{background:var(--bg2);color:var(--gold)}
.related-item::after{content:'→';font-size:.8rem;opacity:.4}

/* ── HOME ────────────────────────────────── */
/* Scoped to body.home to avoid clashes with .proc-step / .final-cta from other archetypes */
body.home .hero{min-height:100svh;display:grid;grid-template-columns:1fr 1fr;background:var(--bg)}
@media(max-width:767px){body.home .hero{grid-template-columns:1fr;min-height:auto}}
body.home .hero-text{display:flex;flex-direction:column;justify-content:center;padding:clamp(3rem,7vw,6rem) var(--gap);padding-left:max(var(--gap),calc(50vw - 640px + var(--gap)))}
body.home .hero-eyebrow{margin-bottom:.75rem}
body.home .hero-title{font-size:clamp(3.2rem,6.5vw,6rem);line-height:.97;letter-spacing:-.03em;margin-bottom:1.5rem}
body.home .hero-title em{font-style:italic;color:var(--gold);display:block}
body.home .hero-lead{font-size:clamp(1rem,1.4vw,1.15rem);color:var(--soft);max-width:44ch;line-height:1.75;font-weight:300;margin-bottom:2rem}
body.home .hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}
body.home .hero-trust{display:flex;gap:2.5rem;padding-top:1.5rem;border-top:1px solid var(--line)}
body.home .trust-num{font-family:var(--font-d);font-size:1.8rem;font-weight:400;line-height:1;color:var(--ink)}
body.home .trust-lbl{font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-top:.2rem}
body.home .hero-img{position:relative;overflow:hidden}
body.home .hero-img::before{content:'';position:absolute;top:0;left:0;bottom:0;width:3px;background:var(--gold);z-index:1}
body.home .hero-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top}
@media(max-width:767px){body.home .hero-img{height:65vw;position:relative}body.home .hero-img img{position:absolute}}
body.home .about-grid{display:grid;gap:clamp(2.5rem,6vw,5rem);align-items:center}
@media(min-width:768px){body.home .about-grid{grid-template-columns:1fr 1fr}}
body.home .about-img{overflow:hidden;border-radius:var(--radius)}
body.home .about-img img{width:100%;height:clamp(340px,55vw,620px);object-fit:cover;object-position:center top}
body.home .about-text{display:flex;flex-direction:column;gap:1.25rem}
body.home .about-text h2{font-size:clamp(2rem,3.5vw,2.8rem)}
body.home .about-text p{color:var(--soft);font-weight:300;line-height:1.8;max-width:48ch}
body.home .svcs-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.25rem}
body.home .svc-card{position:relative;overflow:hidden;border-radius:var(--radius);aspect-ratio:3/4;display:flex;flex-direction:column;justify-content:flex-end}
body.home .svc-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
body.home .svc-card:hover img{transform:scale(1.04)}
body.home .svc-card::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(26,22,20,.78) 0%,transparent 55%)}
body.home .svc-content{position:relative;z-index:1;padding:1.75rem 1.5rem;color:#fff}
body.home .svc-cat{font-size:.63rem;letter-spacing:.18em;text-transform:uppercase;opacity:.6;margin-bottom:.2rem}
body.home .svc-content h3{font-family:var(--font-d);font-size:1.5rem;font-weight:400;margin-bottom:.3rem}
body.home .svc-content p{font-size:.82rem;opacity:.75;font-weight:300}
body.home .cta-band{background:var(--ink);color:var(--cream);padding-block:clamp(4rem,8vw,7rem);text-align:center}
body.home .cta-band h2{font-family:var(--font-d);font-size:clamp(2rem,4vw,3.25rem);color:var(--cream);max-width:16ch;margin-inline:auto}
body.home .cta-band p{color:rgba(248,241,230,.6);max-width:48ch;margin:1.25rem auto 2.5rem;font-weight:300;line-height:1.7}
body.home .surg-list{display:flex;flex-direction:column;gap:.6rem;margin-top:.5rem}
body.home .surg-list li{font-size:.9rem;color:var(--soft);padding-left:1.25rem;position:relative;font-weight:300}
body.home .surg-list li::before{content:'';position:absolute;left:0;top:.65em;width:8px;height:1px;background:var(--gold)}
body.home .stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:3rem}
body.home .stat-num{font-family:var(--font-d);font-size:clamp(3.5rem,7vw,6rem);font-weight:300;color:var(--gold);line-height:1}
body.home .stat-lbl{font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.4rem;color:rgba(248,241,230,.45)}
body.home .stat-desc{font-size:.875rem;margin-top:.65rem;color:rgba(248,241,230,.6);font-weight:300;line-height:1.6;max-width:24ch}
body.home .quote-sec{padding-block:clamp(5rem,10vw,9rem)}
body.home .quote-decor{width:1px;height:56px;background:var(--gold);margin:0 auto 2rem}
body.home .quote-inner{max-width:860px;margin-inline:auto;text-align:center}
body.home .quote-inner blockquote{font-family:var(--font-d);font-size:clamp(1.5rem,3vw,2.4rem);font-style:italic;font-weight:300;line-height:1.4}
body.home .quote-inner cite{display:block;margin-top:2rem;font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);font-style:normal}
body.home .process{display:flex;flex-direction:column}
body.home .proc-step{display:grid;grid-template-columns:72px 1fr;gap:1.5rem;padding:1.75rem 0;border-top:1px solid var(--line)}
body.home .proc-step:last-child{border-bottom:1px solid var(--line)}
body.home .proc-n{font-family:var(--font-d);font-size:3rem;font-weight:300;color:var(--line);line-height:1}
body.home .proc-body h3{font-family:var(--font-d);font-size:1.25rem;margin-bottom:.35rem}
body.home .proc-body p{font-size:.875rem;color:var(--soft);font-weight:300;line-height:1.7;max-width:52ch}
body.home .faq-layout{display:grid;gap:3rem}
@media(min-width:900px){body.home .faq-layout{grid-template-columns:1fr 2fr;gap:5rem;align-items:start}}
body.home .faq-hd h2{font-size:clamp(2rem,3.5vw,2.6rem);margin-top:.75rem}
body.home .faq-hd p{color:var(--soft);margin-top:.75rem;font-weight:300;line-height:1.7}
/* CONFLICT: index overrides shared .final-cta (bg2 vs bg3, larger h2/lead). Scoped to body.home */
body.home .final-cta{background:var(--bg2);border-top:1px solid var(--line);padding-block:clamp(5rem,10vw,8rem);text-align:center}
body.home .final-cta h2{font-size:clamp(2.25rem,4vw,3.5rem);max-width:18ch;margin-inline:auto}
body.home .final-cta p{color:var(--soft);max-width:50ch;margin:1.25rem auto 2.5rem;font-weight:300;line-height:1.7}
body.home .final-meta{margin-top:1.5rem;font-size:.75rem;color:var(--muted);letter-spacing:.06em}

/* ── HOME EXPERT PASS: clarity, conversion, mobile polish ───── */
body.home .hero{position:relative;isolation:isolate;background:linear-gradient(115deg,#fff 0%,#fbf8f4 52%,#f0ebe4 100%)}
body.home .hero::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.72) 43%,rgba(255,255,255,0) 62%);z-index:0;pointer-events:none}
body.home .hero-text{position:relative;z-index:2}
body.home .hero-title{letter-spacing:0;text-wrap:balance}
body.home .hero-lead{font-size:1.08rem;color:#403832;margin-bottom:1.25rem}
body.home .hero-proof{display:flex;flex-wrap:wrap;gap:.55rem .7rem;margin-bottom:2rem;max-width:44rem}
body.home .hero-proof li{display:inline-flex;align-items:center;gap:.45rem;padding:.48rem .7rem;background:rgba(255,255,255,.74);border:1px solid rgba(168,120,78,.18);border-radius:999px;color:var(--soft);font-size:.78rem;line-height:1.25;box-shadow:0 8px 22px rgba(26,22,20,.04)}
body.home .hero-proof li::before{content:'';width:.4rem;height:.4rem;border-radius:50%;background:var(--gold);box-shadow:0 0 0 4px rgba(168,120,78,.12);flex:0 0 auto}
body.home .hero-actions .btn-primary{padding:.85rem 1.55rem;border-radius:999px;background:linear-gradient(135deg,var(--ink),#3a2c24);box-shadow:0 18px 38px rgba(26,22,20,.16)}
body.home .hero-actions .btn-ghost{border-radius:999px;background:rgba(255,255,255,.64);white-space:nowrap}
body.home .hero-img::after{content:'Dra. Claudia Liuzza';position:absolute;left:2rem;bottom:2rem;z-index:2;padding:.72rem 1rem;background:rgba(255,255,255,.88);border:1px solid rgba(230,221,208,.85);border-radius:var(--radius);box-shadow:0 18px 40px rgba(26,22,20,.12);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--soft);backdrop-filter:blur(12px)}
body.home .hero-trust{gap:clamp(1.2rem,3vw,2.5rem)}
body.home .trust-num{font-size:clamp(1.55rem,2.4vw,2.05rem)}
.trust-strip{background:#fff;box-shadow:0 14px 45px rgba(26,22,20,.04)}
.trust-strip-inner{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:0}
.trust-item{justify-content:center;min-height:3rem;padding:.25rem 1rem;text-align:center;border-right:1px solid var(--line)}
.trust-item:last-child{border-right:none}
body.home .svc-card{box-shadow:0 18px 48px rgba(26,22,20,.08);border:1px solid rgba(255,255,255,.72);transition:transform var(--t),box-shadow var(--t)}
body.home .svc-card:hover{transform:translateY(-4px);box-shadow:0 26px 62px rgba(26,22,20,.14)}
body.home .svc-card::after{background:linear-gradient(to top,rgba(26,22,20,.86) 0%,rgba(26,22,20,.48) 44%,rgba(26,22,20,.06) 72%)}
body.home .svc-content p{max-width:30ch;color:rgba(255,255,255,.82)}
body.home .cta-band{position:relative;overflow:hidden;background:linear-gradient(135deg,#1a1614 0%,#2b211b 68%,#3a2b22 100%)}
body.home .cta-band::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(168,120,78,.16),transparent 45%,rgba(255,255,255,.04));pointer-events:none}
body.home .cta-band .ctr{position:relative;z-index:1}
body.home .testi-card{background:#fff;box-shadow:0 14px 38px rgba(26,22,20,.05)}
body.home .proc-step{transition:background var(--t),padding-left var(--t)}
body.home .proc-step:hover{background:rgba(168,120,78,.045);padding-left:1rem}
.menu-btn[aria-expanded="true"] span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.menu-btn[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-btn[aria-expanded="true"] span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
@media(max-width:1023px){
  body.home .hero{padding-top:0}
  body.home .hero::before{background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,255,255,.78) 58%,rgba(255,255,255,0))}
  .trust-strip-inner{grid-template-columns:repeat(2,minmax(0,1fr));gap:.2rem}
  .trust-item{justify-content:flex-start;text-align:left;border-right:none;border-bottom:1px solid var(--line)}
  .trust-item:last-child{grid-column:1/-1;border-bottom:none}
}
@media(max-width:767px){
  body.home .hero-text{padding-top:3rem;padding-bottom:2.5rem}
  body.home .hero-title{font-size:3.35rem;line-height:1}
  body.home .hero-lead{font-size:1rem;line-height:1.65}
  body.home .hero-proof{display:grid;grid-template-columns:1fr;gap:.55rem;margin-bottom:1.6rem}
  body.home .hero-proof li{width:100%;justify-content:flex-start}
  body.home .hero-actions{display:grid;grid-template-columns:1fr;gap:.75rem;margin-bottom:2rem}
  body.home .hero-actions a{justify-content:center;width:100%}
  body.home .hero-trust{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.75rem}
  body.home .trust-lbl{font-size:.58rem;letter-spacing:.04em}
  body.home .hero-img{height:min(92vw,430px)}
  body.home .hero-img::after{left:1rem;right:1rem;bottom:1rem;text-align:center}
  .trust-strip-inner{grid-template-columns:1fr}
  .trust-item{min-height:auto;border-bottom:1px solid var(--line)}
  body.home .proc-step:hover{padding-left:0}
}

/* ── ABOUT (la-clinica) ──────────────────── */
.about-hero{padding-top:clamp(3rem,6vw,5rem);padding-bottom:clamp(3rem,6vw,5rem);background:var(--bg)}
.about-hero-grid{display:grid;gap:4rem;align-items:end}
@media(min-width:900px){.about-hero-grid{grid-template-columns:1fr 1fr}}
.about-hero-text h1{font-size:clamp(3rem,6vw,5.5rem);line-height:.95;letter-spacing:-.03em;margin-top:.75rem}
.about-hero-text .lead{font-size:clamp(1rem,1.4vw,1.15rem);color:var(--soft);margin-top:1.5rem;max-width:44ch;line-height:1.75;font-weight:300}
.about-hero-img{position:relative;overflow:hidden}
.about-hero-img img{width:100%;height:clamp(400px,65vh,700px);object-fit:cover;object-position:center top;border-radius:var(--radius)}
.about-hero-img::before{content:'';position:absolute;top:0;left:0;bottom:0;width:3px;background:var(--gold);z-index:1}
.formation{display:flex;flex-direction:column;gap:0;max-width:820px}
.f-item{display:grid;grid-template-columns:56px 1fr;gap:1.5rem;padding:1.5rem 0;border-top:1px solid var(--line)}
.f-item:last-child{border-bottom:1px solid var(--line)}
.f-dot{width:12px;height:12px;background:var(--gold);border-radius:50%;margin-top:.4rem;justify-self:center}
.f-body strong{display:block;font-size:.95rem;font-weight:500;margin-bottom:.25rem}
.f-body span{font-size:.85rem;color:var(--soft);font-weight:300}
.badge-row{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.5rem}
.badge{display:inline-flex;align-items:center;gap:.35rem;font-size:.72rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;border:1px solid var(--gold);color:var(--gold-d);padding:.35rem .85rem;border-radius:2rem}
.stats-band{background:var(--dark);padding-block:clamp(4rem,8vw,6rem)}
.stats-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:2.5rem}
/* la-clinica .stat-num/.stat-lbl: smaller variant than home; home is body.home-scoped so this is the default */
.stat-num{font-family:var(--font-d);font-size:clamp(3rem,6vw,5rem);font-weight:300;color:var(--gold);line-height:1}
.stat-lbl{font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(248,241,230,.45);margin-top:.4rem}
.philosophy{text-align:center;padding-block:clamp(4rem,8vw,7rem)}
.quote-decor{width:1px;height:50px;background:var(--gold);margin:0 auto 2rem}
.philosophy blockquote{font-family:var(--font-d);font-size:clamp(1.5rem,3vw,2.5rem);font-style:italic;font-weight:300;line-height:1.4;max-width:860px;margin-inline:auto}
.philosophy cite{display:block;margin-top:2rem;font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);font-style:normal}
.clinic-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.5rem;margin-top:2rem}
.clinic-item{padding:1.75rem;border:1px solid var(--line);border-radius:var(--radius);transition:border-color var(--t)}
.clinic-item:hover{border-color:var(--gold)}
.clinic-icon{font-size:1.5rem;margin-bottom:.75rem;color:var(--gold)}
.clinic-item h3{font-family:var(--font-d);font-size:1.2rem;margin-bottom:.5rem}
.clinic-item p{font-size:.875rem;color:var(--soft);font-weight:300;line-height:1.65}

/* ── LISTING (cirugia-plastica, medicina-estetica) ── */
/* CONFLICT: cirugia-plastica .listing-hero h1 max=5.6rem, medicina-estetica=5.5rem; lead max-width 54ch vs 52ch — using cirugia-plastica's larger values */
.listing-hero{padding-block:clamp(3rem,6vw,5rem)}
.listing-hero h1{font-size:clamp(3rem,6vw,5.6rem);letter-spacing:-.03em;margin-top:.75rem}
.listing-hero .lead{font-size:clamp(1rem,1.4vw,1.15rem);color:var(--soft);margin-top:1rem;max-width:54ch;font-weight:300;line-height:1.75}
/* cirugia-plastica */
.category{margin-top:3.75rem}
.category:first-of-type{margin-top:0}
.category-head{display:flex;align-items:end;justify-content:space-between;gap:1rem;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--line)}
.category-head h2{font-size:clamp(1.7rem,3vw,2.25rem)}
.category-head p{max-width:46ch;color:var(--soft);font-size:.9rem;font-weight:300;line-height:1.65}
.procs-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.25rem}
.proc-card{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;transition:border-color var(--t),box-shadow var(--t);display:flex;flex-direction:column}
.proc-card:hover{border-color:var(--gold);box-shadow:0 4px 24px rgba(168,120,78,.08)}
.proc-card-img{position:relative;overflow:hidden;height:210px}
.proc-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.proc-card:hover .proc-card-img img{transform:scale(1.03)}
.proc-cat{position:absolute;top:.75rem;left:.75rem;background:rgba(255,255,255,.92);padding:.3rem .65rem;border-radius:2px;font-size:.65rem;letter-spacing:.14em;text-transform:uppercase}
/* CONFLICT: .proc-body — index uses h3 1.25rem with no padding; cirugia-plastica adds padding/flex. Scoped cirugia-plastica via body.listing */
body.listing .proc-body{padding:1.5rem;display:flex;flex-direction:column;gap:.5rem;flex:1}
body.listing .proc-body h3{font-size:1.2rem}
body.listing .proc-body p{font-size:.85rem;color:var(--soft);font-weight:300;line-height:1.6;flex:1}
.proc-card-link{display:block;padding:.8rem 1.5rem;border-top:1px solid var(--line);font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-d);font-weight:500}
.proc-card-link::after{content:' →'}
/* medicina-estetica */
.cat-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--line)}
.cat-head h2{font-size:clamp(1.5rem,2.5vw,2rem)}
.treats-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem}
.treat-card{border:1px solid var(--line);border-radius:var(--radius);padding:1.5rem;display:flex;flex-direction:column;gap:.5rem;transition:border-color var(--t),box-shadow var(--t)}
.treat-card:hover{border-color:var(--gold);box-shadow:0 4px 20px rgba(168,120,78,.08)}
.treat-tag{font-size:.65rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted)}
.treat-card h3{font-family:var(--font-d);font-size:1.2rem}
.treat-card p{font-size:.85rem;color:var(--soft);font-weight:300;line-height:1.6;flex:1}
.treat-card .treat-link{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-d);font-weight:500;margin-top:.25rem}
.treat-card .treat-link::after{content:' →'}
.highlight-row{display:grid;gap:3rem;align-items:center;margin:3rem 0}
@media(min-width:768px){.highlight-row{grid-template-columns:1fr 1fr}}
.highlight-img{overflow:hidden;border-radius:var(--radius)}
.highlight-img img{width:100%;height:clamp(280px,40vw,480px);object-fit:cover;object-position:center top}
.highlight-text{display:flex;flex-direction:column;gap:1rem}
.highlight-text h2{font-size:clamp(1.75rem,3vw,2.5rem)}
.highlight-text p{color:var(--soft);font-weight:300;line-height:1.75;max-width:48ch}
.pill-list{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.25rem}
.pill{background:var(--bg2);border:1px solid var(--line);padding:.3rem .8rem;font-size:.75rem;border-radius:2rem;color:var(--soft)}
.approach-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem;margin-top:1.5rem}
.approach-card{padding:1.5rem;border:1px solid var(--line);border-radius:var(--radius)}
.approach-card h3{font-family:var(--font-d);font-size:1.1rem;margin-bottom:.5rem}
.approach-card p{font-size:.85rem;color:var(--soft);font-weight:300;line-height:1.6}

/* ── PROCEDURE DETAIL (small, 13 pages) ──── */
/* Canonical .page-hero / .article / .timeline / .feature-callout for procedure detail pages.
   13 pages share this near-identically (sub-pixel diffs only). Polished pages (rinoplastia, mamoplastia-aumento)
   override via body.proc-lg. */
.page-hero{padding-top:clamp(3rem,6vw,5rem)}
.page-hero-grid{display:grid;gap:4rem;align-items:end}
@media(min-width:900px){.page-hero-grid{grid-template-columns:1fr 1fr}}
.page-hero-text h1{font-size:clamp(3.2rem,6.5vw,5.8rem);line-height:.95;letter-spacing:-.03em;margin-top:.75rem}
.lead{font-size:clamp(1rem,1.4vw,1.12rem);color:var(--soft);margin-top:1.25rem;max-width:46ch;line-height:1.75;font-weight:300}
.page-hero-img{position:relative;overflow:hidden}
.page-hero-img img{width:100%;height:clamp(360px,58vh,680px);object-fit:cover;object-position:center top;border-radius:var(--radius)}
.page-hero-img::before{content:'';position:absolute;top:0;left:0;bottom:0;width:3px;background:var(--gold);z-index:1}
.hero-badge{position:absolute;right:1.25rem;bottom:1.25rem;background:rgba(255,255,255,.92);border:1px solid var(--line);padding:.7rem 1rem;border-radius:var(--radius);font-size:.72rem;letter-spacing:.08em;text-transform:uppercase}
.content-layout{display:grid;gap:4rem;align-items:start}
@media(min-width:1024px){.content-layout{grid-template-columns:1fr 340px}}
.article h2{font-size:clamp(1.7rem,3vw,2.25rem);margin:3rem 0 1rem;padding-bottom:.75rem;border-bottom:1px solid var(--line)}
.article h2:first-child{margin-top:0}
.article p{color:var(--soft);font-weight:300;line-height:1.8;margin-bottom:1rem;max-width:68ch}
.article ul{display:flex;flex-direction:column;gap:.45rem;margin:1rem 0}
.article li{position:relative;padding-left:1.2rem;color:var(--soft);font-size:.9rem;font-weight:300}
.article li::before{content:'';position:absolute;left:0;top:.7em;width:8px;height:1px;background:var(--gold)}
.feature-callout{background:var(--bg2);border-left:3px solid var(--gold);padding:2rem 2rem 2rem 2.35rem;border-radius:0 var(--radius) var(--radius) 0;margin:2rem 0}
.feature-callout h3{font-size:1.55rem;margin-bottom:.6rem}
.feature-callout p{margin:0}
.fc-tag{font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.45rem}
.timeline{display:flex;flex-direction:column}
.tl-item{display:grid;grid-template-columns:96px 1fr;gap:1.25rem;padding:1.2rem 0;border-top:1px solid var(--line)}
.tl-item:last-child{border-bottom:1px solid var(--line)}
.tl-time{font-family:var(--font-d);font-size:1.05rem;color:var(--gold)}
.tl-body h4{font-family:var(--font-d);font-size:1rem;margin-bottom:.25rem}
.tl-body p{font-size:.88rem;max-width:52ch}
.sidebar{position:sticky;top:96px;display:flex;flex-direction:column;gap:1.5rem}

/* ── PROCEDURE DETAIL (large/polished: rinoplastia, mamoplastia-aumento) ── */
/* Overrides for the more polished pages — bigger H1, h3, slightly larger timeline rows, extra headings */
body.proc-lg .page-hero{padding-bottom:0;background:var(--bg)}
body.proc-lg .page-hero-text{padding-bottom:clamp(3rem,5vw,4rem)}
body.proc-lg .page-hero-text h1{font-size:clamp(3.5rem,7vw,6.5rem)}
body.proc-lg .page-hero-text .lead,body.proc-lg .lead{font-size:clamp(1rem,1.4vw,1.15rem);margin-top:1.5rem}
body.proc-lg .page-hero-img img{height:clamp(380px,60vh,700px);object-position:center top;display:block;border-radius:var(--radius) var(--radius) 0 0}
body.proc-lg .hero-badge{right:auto;left:auto;bottom:1.5rem;right:1.5rem;background:rgba(255,255,255,.92);backdrop-filter:blur(8px);padding:.75rem 1.25rem;border:1px solid var(--line);font-size:.75rem;color:var(--ink);z-index:2}
body.proc-lg .article h2{font-size:clamp(1.75rem,3vw,2.4rem);margin-top:3rem;margin-bottom:1rem}
body.proc-lg .article h3{font-size:1.4rem;margin-top:2rem;margin-bottom:.5rem}
body.proc-lg .article strong{color:var(--ink);font-weight:500}
body.proc-lg .article ul{margin:.75rem 0 1rem 0;gap:.4rem}
body.proc-lg .article ul li{font-size:.9rem;padding-left:1.25rem}
body.proc-lg .article ul li::before{top:.65em}
body.proc-lg .feature-callout{padding:2rem 2rem 2rem 2.5rem}
body.proc-lg .feature-callout h3{font-size:1.6rem;margin-bottom:.75rem}
body.proc-lg .feature-callout p{color:var(--soft);font-weight:300;line-height:1.75;max-width:60ch;margin:0}
body.proc-lg .fc-pills{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.25rem}
body.proc-lg .fc-pill{background:#fff;border:1px solid var(--line);padding:.35rem .9rem;font-size:.75rem;letter-spacing:.06em;border-radius:2rem;color:var(--soft)}
body.proc-lg .tl-item{grid-template-columns:100px 1fr;gap:1.5rem;padding:1.5rem 0}
body.proc-lg .tl-time{font-size:1.05rem;font-weight:500;line-height:1.2;padding-top:.1rem}
body.proc-lg .tl-time small{display:block;font-family:var(--font-b);font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-top:.25rem;font-weight:400}
body.proc-lg .tl-body h4{font-size:1.05rem;margin-bottom:.3rem}
body.proc-lg .tl-body p{font-size:.875rem;color:var(--soft);font-weight:300;line-height:1.65}
body.proc-lg .sidebar{top:100px}
/* Mamoplastia-aumento options grid */
body.proc-lg .options-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem;margin-top:1.5rem}
body.proc-lg .opt-card{border:1px solid var(--line);padding:1.5rem;border-radius:var(--radius);transition:border-color var(--t)}
body.proc-lg .opt-card:hover{border-color:var(--gold)}
body.proc-lg .opt-card h4{font-family:var(--font-d);font-size:1.1rem;margin-bottom:.4rem}
body.proc-lg .opt-card p{font-size:.82rem;color:var(--soft);font-weight:300;line-height:1.55}
/* Rinoplastia types grid + gallery */
body.proc-lg .types-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem;margin-top:1.5rem}
body.proc-lg .type-card{border:1px solid var(--line);padding:1.5rem;border-radius:var(--radius);transition:border-color var(--t),box-shadow var(--t)}
body.proc-lg .type-card:hover{border-color:var(--gold);box-shadow:0 4px 20px rgba(168,120,78,.08)}
body.proc-lg .type-card h4{font-family:var(--font-d);font-size:1.15rem;margin-bottom:.5rem}
body.proc-lg .type-card p{font-size:.85rem;color:var(--soft);font-weight:300;line-height:1.6}
body.proc-lg .gallery{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.5rem}
body.proc-lg .gallery-item{position:relative;overflow:hidden;border-radius:var(--radius)}
body.proc-lg .gallery-item img{width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .6s var(--ease)}
body.proc-lg .gallery-item:hover img{transform:scale(1.03)}
body.proc-lg .gallery-label{position:absolute;bottom:.75rem;left:.75rem;background:rgba(255,255,255,.9);font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;padding:.3rem .65rem;border-radius:2px;color:var(--ink)}

/* ── BLOG (listing) ──────────────────────── */
.blog-hero{padding-block:clamp(3rem,6vw,5rem);border-bottom:1px solid var(--line)}
.blog-hero h1{font-size:clamp(2.5rem,5vw,4.5rem);letter-spacing:-.03em;margin-top:.75rem;max-width:20ch}
.blog-hero .lead{font-size:clamp(.95rem,1.3vw,1.1rem);color:var(--soft);margin-top:1rem;max-width:52ch;font-weight:300;line-height:1.75}
.featured{display:grid;gap:3rem;align-items:stretch}
@media(min-width:900px){.featured{grid-template-columns:1.4fr 1fr}}
.featured-main{display:flex;flex-direction:column}
.featured-img{overflow:hidden;border-radius:var(--radius);flex-shrink:0}
.featured-img img{width:100%;height:clamp(240px,35vw,420px);object-fit:cover;transition:transform .5s var(--ease)}
.featured-img:hover img{transform:scale(1.02)}
.featured-body{display:flex;flex-direction:column;gap:.75rem;padding-top:1.5rem;flex:1}
.featured-meta{font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.featured-body h2{font-size:clamp(1.75rem,3vw,2.25rem);line-height:1.15}
.featured-body p{color:var(--soft);font-weight:300;line-height:1.75;font-size:.95rem;max-width:54ch;flex:1}
.featured-side{display:flex;flex-direction:column;gap:1.25rem}
.side-card{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:border-color var(--t)}
.side-card:hover{border-color:var(--gold)}
.side-card img{width:100%;height:160px;object-fit:cover;transition:transform .5s var(--ease)}
.side-card:hover img{transform:scale(1.03)}
.side-body{padding:1.25rem;display:flex;flex-direction:column;gap:.4rem;flex:1}
.side-body .meta{font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.side-body h3{font-family:var(--font-d);font-size:1.1rem;line-height:1.2}
.side-body p{font-size:.82rem;color:var(--soft);font-weight:300;line-height:1.6;flex:1}
.read-link{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-d);font-weight:500;padding:1rem 1.25rem;border-top:1px solid var(--line);transition:background var(--t)}
.read-link:hover{background:var(--bg2)}
.read-link::after{content:' →'}
.articles-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.art-card{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:border-color var(--t),box-shadow var(--t)}
.art-card:hover{border-color:var(--gold);box-shadow:0 4px 24px rgba(168,120,78,.08)}
.art-card img{width:100%;height:200px;object-fit:cover;transition:transform .5s var(--ease)}
.art-card:hover img{transform:scale(1.03)}
.art-body{padding:1.5rem;display:flex;flex-direction:column;gap:.5rem;flex:1}
.art-meta{font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.art-body h3{font-family:var(--font-d);font-size:1.2rem;line-height:1.2}
.art-body p{font-size:.85rem;color:var(--soft);font-weight:300;line-height:1.6;flex:1}
.art-link{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-d);font-weight:500;padding:.9rem 1.5rem;border-top:1px solid var(--line);transition:background var(--t)}
.art-link:hover{background:var(--bg2)}
.art-link::after{content:' →'}
.filter-bar{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:2.5rem}
.ftab{padding:.4rem 1rem;border:1px solid var(--line);border-radius:2rem;font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;cursor:pointer;transition:all var(--t);background:#fff;color:var(--soft)}
.ftab.active,.ftab:hover{border-color:var(--gold);background:var(--gold);color:#fff}
.newsletter{background:var(--ink);border-radius:var(--radius);padding:clamp(2rem,5vw,3.5rem);text-align:center;margin-top:4rem}
.newsletter h2{font-family:var(--font-d);font-size:clamp(1.75rem,3vw,2.25rem);color:var(--cream);margin-bottom:.75rem}
.newsletter p{color:rgba(248,241,230,.6);font-weight:300;max-width:44ch;margin-inline:auto;margin-bottom:2rem;line-height:1.7}
.newsletter-form{display:flex;gap:.75rem;max-width:440px;margin-inline:auto;flex-wrap:wrap}
.newsletter-form input{flex:1;min-width:200px;padding:.75rem 1rem;border:none;border-radius:var(--radius);font:inherit;font-size:.9rem;background:rgba(255,255,255,.1);color:var(--cream);border:1px solid rgba(248,241,230,.2)}
.newsletter-form input::placeholder{color:rgba(248,241,230,.4)}
.newsletter-form input:focus{outline:none;border-color:var(--gold)}
.newsletter-form button{padding:.75rem 1.5rem;background:var(--gold);color:#fff;border-radius:var(--radius);font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;cursor:pointer;border:none;transition:background var(--t);white-space:nowrap}
.newsletter-form button:hover{background:var(--gold-d)}

/* ── BLOG ARTICLE (6 pages, identical inline blocks) ── */
.article-hero{padding-top:clamp(3rem,5vw,4.5rem);padding-bottom:0;background:var(--bg);border-bottom:1px solid var(--line)}
.article-meta-bar{display:flex;gap:1.5rem;flex-wrap:wrap;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-top:1.25rem;margin-bottom:2rem;align-items:center}
.article-meta-bar span{display:flex;align-items:center;gap:.4rem}
.art-tag{display:inline-block;background:var(--bg2);border:1px solid var(--line);padding:.2rem .75rem;border-radius:2rem;font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold-d)}
.article-title{font-size:clamp(2.25rem,5vw,4rem);line-height:1.05;letter-spacing:-.025em;max-width:22ch;margin-top:.75rem}
.article-lead{font-size:clamp(1rem,1.4vw,1.2rem);color:var(--soft);margin-top:1.25rem;max-width:52ch;font-weight:300;line-height:1.75;margin-bottom:2rem}
.hero-img-full{width:100%;height:clamp(280px,45vw,520px);object-fit:cover;display:block}
.article-layout{display:grid;gap:5rem;align-items:start;padding-block:clamp(3rem,6vw,5rem)}
@media(min-width:1024px){.article-layout{grid-template-columns:1fr 300px}}
.prose{max-width:70ch}
.prose h2{font-size:clamp(1.5rem,2.5vw,2rem);margin-top:3rem;margin-bottom:1rem;padding-bottom:.6rem;border-bottom:1px solid var(--line)}
.prose h2:first-child{margin-top:0}
.prose h3{font-size:1.3rem;margin-top:2rem;margin-bottom:.5rem}
.prose p{color:var(--soft);font-weight:300;line-height:1.85;margin-bottom:1rem}
.prose strong{color:var(--ink);font-weight:500}
.prose ul{margin:.75rem 0 1rem 0;display:flex;flex-direction:column;gap:.4rem}
.prose ul li{font-size:.9rem;color:var(--soft);font-weight:300;padding-left:1.5rem;position:relative;line-height:1.65}
.prose ul li::before{content:'';position:absolute;left:0;top:.7em;width:8px;height:1px;background:var(--gold)}
.key-idea{background:var(--bg2);border-left:3px solid var(--gold);padding:1.75rem 2rem;border-radius:0 var(--radius) var(--radius) 0;margin:1.5rem 0}
.key-idea h2{font-size:1.3rem;margin-bottom:.75rem;padding:0;border:none;margin-top:0}
.key-idea p{margin-bottom:.75rem}
.key-idea ul{margin:.5rem 0 0}
.stat-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:0;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;margin:2rem 0}
.stat-item{padding:1.25rem 1.5rem;border-right:1px solid var(--line)}
.stat-item:last-child{border-right:none}
.stat-item strong{display:block;font-size:.875rem;font-weight:500;margin-bottom:.3rem}
.stat-item span{font-size:.8rem;color:var(--soft);font-weight:300;line-height:1.5}
@media(max-width:600px){.stat-strip{grid-template-columns:1fr}.stat-item{border-right:none;border-bottom:1px solid var(--line)}.stat-item:last-child{border-bottom:none}}
.note{background:var(--cream);border-radius:var(--radius);padding:1.5rem 1.75rem;margin:2rem 0;border:1px solid var(--line)}
.note h3{font-family:var(--font-d);font-size:1.1rem;margin-bottom:.5rem;color:var(--gold-d)}
.note p{font-size:.9rem;color:var(--soft);font-weight:300;line-height:1.7;margin:0}
.anchor-nav{display:flex;gap:.5rem;flex-wrap:wrap;margin:1.5rem 0 2rem}
.anchor-link{font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;padding:.35rem .85rem;border:1px solid var(--line);border-radius:2rem;color:var(--soft);transition:all var(--t)}
.anchor-link:hover{border-color:var(--gold);color:var(--gold-d)}
.inline-cta{background:var(--ink);color:var(--cream);border-radius:var(--radius);padding:2rem;margin:3rem 0}
.inline-cta h3{font-family:var(--font-d);font-size:1.4rem;color:var(--cream);margin-bottom:.75rem;line-height:1.3}
.inline-cta p{font-size:.875rem;color:rgba(248,241,230,.65);font-weight:300;line-height:1.65;margin-bottom:1.25rem}
.inline-cta .actions{display:flex;gap:.75rem;flex-wrap:wrap}
.disclaimer{font-size:.78rem;color:var(--muted);font-style:italic;margin-top:3rem;padding-top:1.5rem;border-top:1px solid var(--line)}
.art-sidebar{position:sticky;top:100px;display:flex;flex-direction:column;gap:1.5rem}
.summary-card{border:1px solid var(--line);border-radius:var(--radius)}
.summary-head{background:var(--bg2);padding:1.25rem 1.5rem;border-bottom:1px solid var(--line)}
.summary-head h3{font-family:var(--font-d);font-size:1.1rem}
.summary-body{padding:1.5rem;display:flex;flex-direction:column;gap:0}
.summary-row{display:flex;flex-direction:column;gap:.2rem;padding:.7rem 0;border-bottom:1px solid var(--line)}
.summary-row:last-child{border:none}
.s-label{font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.s-val{font-size:.875rem;font-weight:400;color:var(--ink)}
.related-art{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.rel-head{background:var(--bg2);padding:1.25rem 1.5rem;border-bottom:1px solid var(--line)}
.rel-head h3{font-family:var(--font-d);font-size:1.1rem}
.rel-item{display:flex;gap:1rem;padding:1rem 1.5rem;border-bottom:1px solid var(--line);transition:background var(--t)}
.rel-item:last-child{border:none}
.rel-item:hover{background:var(--bg2)}
.rel-img{width:60px;height:60px;border-radius:var(--radius);overflow:hidden;flex-shrink:0}
.rel-img img{width:100%;height:100%;object-fit:cover}
.rel-body h4{font-family:var(--font-d);font-size:.95rem;line-height:1.25;margin-bottom:.2rem}
.rel-body span{font-size:.7rem;color:var(--muted);letter-spacing:.06em;text-transform:uppercase}
.reading-progress{position:fixed;top:0;left:0;height:2px;background:var(--gold);z-index:200;width:0;transition:width .1s linear}
.author-box{display:flex;gap:1.5rem;align-items:center;padding:1.75rem;border:1px solid var(--line);border-radius:var(--radius);margin-top:2.5rem}
.author-avatar{width:64px;height:64px;border-radius:50%;overflow:hidden;flex-shrink:0}
.author-avatar img{width:100%;height:100%;object-fit:cover;object-position:center top}
.author-info h3{font-family:var(--font-d);font-size:1.1rem;margin-bottom:.2rem}
.author-info p{font-size:.82rem;color:var(--soft);font-weight:300;line-height:1.6}

/* ── CONTACT ─────────────────────────────── */
.contact-hero{padding-block:clamp(3rem,6vw,5rem);background:var(--bg)}
.contact-hero h1{font-size:clamp(3rem,6vw,5.5rem);letter-spacing:-.03em;margin-top:.75rem}
.contact-hero .lead{font-size:clamp(1rem,1.4vw,1.15rem);color:var(--soft);margin-top:1rem;max-width:44ch;font-weight:300;line-height:1.75}
.contact-layout{display:grid;gap:4rem}
@media(min-width:900px){.contact-layout{grid-template-columns:1fr 1fr}}
.channels{display:flex;flex-direction:column;gap:1rem}
.channel{display:flex;align-items:center;gap:1.5rem;padding:1.5rem;border:1px solid var(--line);border-radius:var(--radius);transition:border-color var(--t),box-shadow var(--t)}
.channel:hover{border-color:var(--gold);box-shadow:0 4px 20px rgba(168,120,78,.08)}
.ch-icon{width:48px;height:48px;border-radius:var(--radius);background:var(--bg2);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ch-icon svg{width:22px;height:22px;fill:var(--gold)}
.ch-label{font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);margin-bottom:.2rem}
.ch-title{font-size:1rem;font-weight:500}
.ch-sub{font-size:.8rem;color:var(--soft);margin-top:.2rem;font-weight:300}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.5rem}
.info-card{padding:1.25rem;border:1px solid var(--line);border-radius:var(--radius)}
.info-label{font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);margin-bottom:.4rem}
.info-val{font-size:.9rem;font-weight:400;line-height:1.5}
.info-val a{color:var(--ink)}
.info-val a:hover{color:var(--gold)}
.form-card{background:var(--bg2);border-radius:var(--radius);padding:clamp(1.5rem,4vw,2.5rem)}
.form-card h2{font-size:clamp(1.75rem,3vw,2.25rem);margin-bottom:.5rem}
.form-card p{color:var(--soft);font-weight:300;font-size:.9rem;margin-bottom:2rem;line-height:1.65}
.form-group{display:flex;flex-direction:column;gap:.35rem;margin-bottom:1.25rem}
.form-group label{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--soft);font-weight:500}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.75rem 1rem;border:1px solid var(--line);border-radius:var(--radius);background:#fff;font:inherit;font-size:.9rem;color:var(--ink);transition:border-color var(--t)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--gold)}
.form-group textarea{height:110px;resize:vertical}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:500px){.form-row{grid-template-columns:1fr}}
.form-privacy{font-size:.78rem;color:var(--soft);margin-bottom:1.5rem;line-height:1.55;font-weight:300}
.form-privacy a{color:var(--gold)}
.submit-btn{width:100%;padding:.85rem;background:var(--ink);color:#fff;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);cursor:pointer;border:none;transition:background var(--t)}
.submit-btn:hover{background:var(--gold-d)}
.map-wrap{margin-top:2rem;border-radius:var(--radius);overflow:hidden;border:1px solid var(--line)}
.map-wrap iframe{width:100%;height:300px;display:block;border:none}
/* CONFLICT: .proc-step exists in home (grid layout) too — contacto's process-strip variant is scoped to body.contact */
.process-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:0;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;margin-top:2rem}
body.contact .proc-step{padding:1.75rem 1.5rem;border-right:1px solid var(--line);position:relative;display:block;border-top:none;grid-template-columns:none;gap:0}
body.contact .proc-step:last-child{border-right:none;border-bottom:none}
body.contact .proc-num{font-family:var(--font-d);font-size:2.5rem;color:var(--line);line-height:1;margin-bottom:.5rem}
body.contact .proc-step h3{font-family:var(--font-d);font-size:1rem;margin-bottom:.3rem}
body.contact .proc-step p{font-size:.8rem;color:var(--soft);font-weight:300;line-height:1.55}
@media(max-width:700px){body.contact .process-strip{grid-template-columns:1fr;border-right:none}body.contact .proc-step{border-right:none;border-bottom:1px solid var(--line)}body.contact .proc-step:last-child{border-bottom:none}}

/* ── LEGAL PAGES ──────────────────────── */
.legal-hero{padding-block:clamp(3rem,6vw,5rem)}
.legal-hero h1{font-size:clamp(2.8rem,5.5vw,4.8rem);margin-top:.75rem}
.legal-hero p{max-width:56ch;color:var(--soft);font-weight:300;line-height:1.75;margin-top:1rem}
.legal-wrap{display:grid;grid-template-columns:minmax(0,1fr);gap:2rem}
.legal-card{border:1px solid var(--line);border-radius:var(--radius);padding:clamp(1.5rem,3vw,2rem)}
.legal-card h2{font-size:clamp(1.4rem,2.5vw,2rem);margin-bottom:1rem}
.legal-card p,.legal-card li{color:var(--soft);font-weight:300;line-height:1.8}
.legal-card ul{display:flex;flex-direction:column;gap:.6rem}
.cookie-table{width:100%;border-collapse:collapse;margin-top:1rem}
.cookie-table th,.cookie-table td{border:1px solid var(--line);padding:.85rem;vertical-align:top;text-align:left;font-size:.9rem}
.cookie-table th{background:var(--bg2);font-weight:500;color:var(--ink)}
.legal-note{background:var(--bg2);border-left:3px solid var(--gold);padding:1rem 1.25rem;border-radius:0 var(--radius) var(--radius) 0}
.legal-note strong{color:var(--ink)}
.legal-warning{background:#fff3cd;border:1px solid #ffeaa7;border-left:4px solid #f39c12;padding:1.25rem 1.5rem;border-radius:var(--radius);margin-bottom:2rem}
.legal-warning strong{color:#7d5a00;display:block;margin-bottom:.25rem;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase}
.legal-warning p{color:#7d5a00;font-size:.9rem;font-weight:400;line-height:1.6;margin:0}

/* ── 404 ────────────────────────────────── */
.nf-hero{padding-block:clamp(4rem,10vw,8rem);background:var(--bg);min-height:calc(100vh - 220px);display:flex;align-items:center}
.nf-grid{display:grid;gap:clamp(2.5rem,6vw,5rem);align-items:start}
@media(min-width:900px){.nf-grid{grid-template-columns:1.3fr 1fr}}
.nf-text{display:flex;flex-direction:column;gap:1rem}
.nf-code{font-family:var(--font-d);font-size:clamp(7rem,18vw,14rem);font-weight:300;line-height:.9;letter-spacing:-.04em;color:var(--gold);margin:.5rem 0}
.nf-title{font-size:clamp(2rem,4vw,3.2rem);letter-spacing:-.02em;margin-bottom:.5rem}
.nf-lead{color:var(--soft);font-weight:300;line-height:1.75;font-size:clamp(1rem,1.3vw,1.1rem);max-width:54ch;margin-bottom:1rem}
.nf-cta-row{display:flex;gap:1rem;flex-wrap:wrap;margin-top:.5rem}
.nf-links{display:flex;flex-direction:column;gap:.5rem;border-left:1px solid var(--line);padding-left:clamp(1.5rem,3vw,2.5rem)}
@media(max-width:899px){.nf-links{border-left:none;padding-left:0;border-top:1px solid var(--line);padding-top:2rem;margin-top:1rem}}
.nf-links h3{font-family:var(--font-b);font-size:.75rem;font-weight:500;color:var(--muted);text-transform:uppercase;letter-spacing:.14em;margin-bottom:1rem}
.nf-link{display:flex;flex-direction:column;gap:.2rem;padding:1rem 0;border-bottom:1px solid var(--line);transition:border-color var(--t),padding-left var(--t)}
.nf-link:last-child{border-bottom:none}
.nf-link:hover{border-bottom-color:var(--gold);padding-left:.5rem}
.nf-link-label{font-family:var(--font-d);font-size:1.15rem;color:var(--ink)}
.nf-link-sub{font-size:.82rem;color:var(--soft);font-weight:300;line-height:1.5}

/* ── LANG SWITCHER ───────────── */
.lang-btn.active{color:var(--ink) !important;border-color:var(--line) !important}
.lang-btn:hover{color:var(--ink)}

/* ── A11Y · SKIP LINK ───────── */
.skip-link{position:absolute;top:-44px;left:1rem;z-index:1000;background:var(--ink);color:#fff;padding:.6rem 1rem;font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);transition:top .2s var(--ease)}
.skip-link:focus{top:.75rem;outline:2px solid var(--gold);outline-offset:2px}

/* ── A11Y · FOCUS RINGS ─────── */
:where(a,button,input,select,textarea,summary,details,[tabindex]):focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:2px}
.btn-primary:focus-visible,.btn-ghost:focus-visible,.btn-gold:focus-visible,.btn-wa:focus-visible,.submit-btn:focus-visible{outline:2px solid var(--gold);outline-offset:3px}
.lang-btn:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
.menu-btn:focus-visible{outline:2px solid var(--gold);outline-offset:2px}

/* ── A11Y · REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
}

/* ── STICKY MOBILE BOTTOM CTA BAR ──── */
.mob-bottom-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:90;background:rgba(255,255,255,.96);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-top:1px solid var(--line);box-shadow:0 -4px 20px rgba(26,22,20,.08);padding:.6rem .75rem calc(.6rem + env(safe-area-inset-bottom));gap:.5rem}
.mob-bottom-cta a{flex:1;display:flex;align-items:center;justify-content:center;gap:.4rem;padding:.7rem .5rem;font-size:.72rem;letter-spacing:.04em;text-transform:uppercase;font-weight:500;border-radius:var(--radius);text-align:center;line-height:1.1}
.mob-bottom-cta .mb-wa{background:#25d366;color:#fff}
.mob-bottom-cta .mb-tel{background:var(--bg2);color:var(--ink);border:1px solid var(--line)}
.mob-bottom-cta .mb-book{background:var(--ink);color:#fff}
.mob-bottom-cta svg{width:14px;height:14px;flex-shrink:0}
@media(max-width:768px){.mob-bottom-cta{display:flex}body{padding-bottom:64px}.wa-float{bottom:5.5rem;right:1rem}}

/* ── COOKIES BANNER (CMP) ──── */
.cookie-banner{position:fixed;bottom:1rem;left:1rem;right:1rem;z-index:300;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 12px 40px rgba(26,22,20,.18);padding:1.25rem;display:none;max-width:560px;max-height:calc(100vh - 7rem);overflow:auto;margin-inline:auto}
.cookie-banner.show{display:block;animation:cb-in .3s var(--ease)}
@keyframes cb-in{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
.cookie-banner h3{font-family:var(--font-d);font-size:1.15rem;margin-bottom:.4rem;color:var(--ink)}
.cookie-banner p{font-size:.82rem;color:var(--soft);line-height:1.55;font-weight:300;margin-bottom:1rem}
.cookie-banner p a{color:var(--gold-d);text-decoration:underline}
.cookie-actions{display:flex;gap:.5rem;flex-wrap:wrap}
.cookie-actions button{padding:.6rem 1rem;border-radius:var(--radius);font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;font-weight:500;cursor:pointer;border:1px solid var(--line);background:#fff;color:var(--ink);transition:all var(--t);flex:1;min-width:120px}
.cookie-actions button.cb-accept{background:var(--ink);color:#fff;border-color:var(--ink)}
.cookie-actions button.cb-accept:hover{background:var(--gold-d);border-color:var(--gold-d)}
.cookie-actions button:hover{border-color:var(--gold);color:var(--gold-d)}
@media(min-width:600px){.cookie-banner{left:auto;right:1.5rem;bottom:1.5rem}}
@media(max-width:768px){.cookie-banner{left:.75rem;right:.75rem;bottom:5.75rem;padding:1rem;max-height:calc(100vh - 8rem)}}

/* ── BACK TO TOP ──── */
.back-top{position:fixed;bottom:2rem;left:2rem;z-index:80;width:44px;height:44px;border-radius:50%;background:#fff;border:1px solid var(--line);display:none;align-items:center;justify-content:center;color:var(--ink);box-shadow:0 4px 16px rgba(26,22,20,.08);transition:all var(--t)}
.back-top.show{display:flex}
.back-top:hover{border-color:var(--gold);color:var(--gold)}
@media(max-width:768px){.back-top{display:none !important}}

/* ── MEDICAL DISCLAIMER + REVIEW BYLINE ──── */
.med-disclaimer{font-size:.78rem;color:var(--muted);line-height:1.6;background:var(--bg2);border:1px solid var(--line);border-radius:var(--radius);padding:.9rem 1.1rem;margin-top:1.25rem}
.med-disclaimer strong{color:var(--soft);font-weight:500}
.med-review{display:flex;align-items:center;gap:.6rem;margin-top:1.25rem;padding:.65rem .9rem;background:var(--bg2);border-left:3px solid var(--gold);border-radius:0 var(--radius) var(--radius) 0;font-size:.78rem;color:var(--soft);line-height:1.55;flex-wrap:wrap}
.med-review strong{color:var(--ink);font-weight:500}
.med-review .mr-date{color:var(--muted);font-size:.72rem;letter-spacing:.04em}

/* ── BODY-LEVEL OFFSET FOR SKIP TARGET ──── */
[id="main"]{scroll-margin-top:80px}

/* ── DEPRECATED MUTED USED FOR BODY: improved contrast helper ─── */
/* For body text that needs WCAG AA compliance, use --soft (#4a423d) instead of --muted */

/* ── BEFORE/AFTER SCAFFOLD (P3) ───────────────────────────────
   Used on small procedure pages whose final-cta currently lacks an
   Antes/Después section. Intentionally NO image grid — we don't fake
   gallery placeholders. A bordered text card with the disclaimer and
   a CTA satisfies medical-advertising compliance until real cases ship.
*/
.ba-section{padding:clamp(2.5rem,5vw,4rem) 0;background:var(--bg2)}
.ba-card{max-width:780px;margin:0 auto;padding:clamp(1.75rem,3vw,2.5rem);border:1px solid var(--line);border-radius:var(--radius);background:var(--bg);text-align:center}
.ba-card .eyebrow{display:inline-block}
.ba-card h2{font-family:var(--font-d);font-size:clamp(1.75rem,3vw,2.4rem);margin-top:.5rem;margin-bottom:1rem;letter-spacing:-.02em}
.ba-card .ba-lead{color:var(--soft);font-weight:300;line-height:1.7;max-width:60ch;margin:0 auto 1.25rem}
.ba-card .ba-disclaimer{font-size:.78rem;color:var(--muted);font-style:italic;line-height:1.6;max-width:60ch;margin:0 auto 1.5rem}
.ba-card .ba-cta{display:inline-block}

/* ── NEWSLETTER STATUS (P2 — Formspree feedback line) ──────── */
.newsletter-status{margin-top:1rem;font-size:.85rem;color:var(--soft);line-height:1.6;min-height:1.2em}
.newsletter-status a{color:var(--gold-d);text-decoration:underline}
