/* ═══════════════════════════════════════════════
   ELANORA MEDSPA & DENTAL — style.css
   Premium Black & Gold — All Audit Improvements
═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body { font-family: 'Jost', sans-serif; background: #080706; color: #DDD5C8; overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'Jost', sans-serif; border: none; background: none; }
input, select, textarea { font-family: 'Jost', sans-serif; }
svg { display: block; }

/* ── DESIGN TOKENS ── */
:root {
  --c0: #080706; --c1: #0F0D0B; --c2: #161310;
  --c3: #1E1A15; --c4: #26211A; --c5: #2E2820;
  --g: #C8A96A; --gl: #DFC28D; --gd: #A8883E;
  --cr: #EDE7DC; --m: #998E81; --d: #5E5649;
  --green: #25D366;
  --pad: clamp(1.2rem, 5vw, 5rem);
  --r: 1rem; --rl: 1.5rem;
  --shadow: 0 8px 40px rgba(0,0,0,.5);
  --shadow-g: 0 6px 26px rgba(200,169,106,.28);
}

/* ── ACCESSIBILITY: SCREEN READER ONLY ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Cormorant Garamond', serif; line-height: 1.08; letter-spacing: -.01em; }
h2.serif { font-size: clamp(1.9rem, 3.5vw, 3.2rem); font-weight: 300; color: var(--cr); margin: .6rem 0 .9rem; }
h2.serif em { font-style: italic; color: var(--g); }
.eyebrow { font-size: .63rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--g); display: inline-flex; align-items: center; gap: .5rem; }
.eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--g); opacity: .6; flex-shrink: 0; }
.rule { width: 44px; height: 1px; background: linear-gradient(90deg, var(--g), transparent); margin: 1.2rem 0; opacity: .5; }

/* ── SVG ICONS ── */
.ico { width: 22px; height: 22px; stroke: currentColor; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 2rem; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: all .25s; white-space: nowrap; cursor: pointer; }
.btn-g { background: var(--g); color: var(--c0); padding: .78rem 1.9rem; box-shadow: var(--shadow-g); border: none; }
.btn-g:hover { background: var(--gl); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(200,169,106,.44); }
.btn-o { background: transparent; color: var(--cr); border: 1px solid rgba(200,169,106,.38); padding: .78rem 1.9rem; }
.btn-o:hover { border-color: var(--g); color: var(--g); transform: translateY(-2px); }
.btn-sm { padding: .48rem 1.2rem; font-size: .68rem; }

/* ── PRELOADER ── */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--c0); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem; transition: opacity .6s ease, visibility .6s ease; }
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-logo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(200,169,106,.3); animation: pl-glow 1.5s ease-in-out infinite; }
.pl-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--cr); letter-spacing: .04em; }
.pl-name span { color: var(--g); }
.pl-bar { width: 120px; height: 2px; background: var(--c3); border-radius: 2px; overflow: hidden; }
.pl-fill { height: 100%; background: var(--g); animation: pl-load 1.8s ease-out forwards; }
@keyframes pl-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,106,0); } 50% { box-shadow: 0 0 24px 6px rgba(200,169,106,.22); } }
@keyframes pl-load { from { width: 0; } to { width: 100%; } }

/* ── SCROLL PROGRESS ── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--g), var(--gl)); z-index: 1000; width: 0; box-shadow: 0 0 8px rgba(200,169,106,.5); transition: width .1s linear; }

/* ── STICKY FREE CONSULTATION BANNER ── */
.sticky-banner { background: var(--g); color: var(--c0); text-align: center; padding: .5rem var(--pad); font-size: .72rem; font-weight: 600; letter-spacing: .06em; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 90; }
.sticky-banner a { color: var(--c0); font-weight: 700; border-bottom: 1px solid rgba(0,0,0,.3); transition: border-color .2s; }
.sticky-banner a:hover { border-color: var(--c0); }
.sticky-banner-close { position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--c0); font-size: 1rem; cursor: pointer; opacity: .6; line-height: 1; padding: .25rem; }
.sticky-banner-close:hover { opacity: 1; }

/* ── TOP INFO BAR ── */
.topinfo { background: var(--c3); border-bottom: 1px solid rgba(200,169,106,.12); padding: .42rem var(--pad); }
.topinfo-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .6rem; }
.topinfo-left { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.ti-item { display: flex; align-items: center; gap: .38rem; font-size: .65rem; color: var(--m); }
.ti-item a { color: var(--m); transition: color .2s; }
.ti-item a:hover { color: var(--g); }
.topinfo-right { display: flex; gap: .55rem; align-items: center; }
.ti-soc { width: 25px; height: 25px; border-radius: 50%; border: 1px solid rgba(200,169,106,.18); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--m); transition: all .2s; text-decoration: none; }
.ti-soc:hover { border-color: var(--g); color: var(--g); }
.ti-freecon { background: var(--g); color: var(--c0); border-radius: 1rem; padding: .16rem .72rem; font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* ── ANNOUNCEMENT BAR ── */
.ann { background: var(--g); overflow: hidden; padding: .36rem 0; }
.ann-track { display: inline-flex; animation: ticker 32s linear infinite; white-space: nowrap; }
.ann-item { padding: 0 2rem; font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c0); }
.ann-item::after { content: ' ✦ '; margin-left: 2rem; opacity: .35; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAVIGATION ── */
#nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: .8rem var(--pad); border-bottom: 1px solid transparent; transition: all .35s; }
#nav.solid { background: rgba(8,7,6,.96); backdrop-filter: blur(20px); border-bottom-color: rgba(200,169,106,.12); }
.nav-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(200,169,106,.35); }
.nav-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--cr); }
.nav-brand-text span { color: var(--g); }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--m); transition: all .2s; padding-bottom: .25rem; border-bottom: 1px solid transparent; }
.nav-links a:hover { color: var(--g); border-bottom-color: var(--g); }
.nav-actions { display: flex; gap: .55rem; align-items: center; }
.burger { display: none; flex-direction: column; gap: 5px; padding: .35rem; cursor: pointer; }
.burger span { display: block; width: 21px; height: 1.5px; background: var(--cr); border-radius: 2px; transition: all .25s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mob-nav { position: fixed; inset: 0; z-index: 99; background: rgba(8,7,6,.97); backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: all .3s; }
.mob-nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mob-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--cr); transition: color .2s; text-decoration: none; }
.mob-nav a:hover { color: var(--g); }
.mob-actions { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; margin-top: .8rem; }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 9rem var(--pad) 5rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,7,6,.9) 0%, rgba(8,7,6,.65) 60%, rgba(8,7,6,.4) 100%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb-a { width: 480px; height: 480px; background: radial-gradient(rgba(200,169,106,.1), transparent 70%); top: -8%; right: -5%; animation: orb 14s ease-in-out infinite; }
.hero-orb-b { width: 320px; height: 320px; background: radial-gradient(rgba(200,169,106,.07), transparent 70%); bottom: -5%; left: -8%; animation: orb 18s ease-in-out infinite reverse; }
@keyframes orb { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-26px) scale(1.04); } }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid rgba(200,169,106,.28); border-radius: 2rem; padding: .3rem .95rem; margin-bottom: 1.5rem; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--g); background: rgba(200,169,106,.06); }
.hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; line-height: 1.07; letter-spacing: -.01em; color: var(--cr); margin-bottom: 1.2rem; }
.hero-h1 em { font-style: italic; color: var(--g); }
.hero-sub { font-size: .97rem; color: var(--m); line-height: 1.82; max-width: 480px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-free { display: inline-flex; align-items: center; gap: .45rem; font-size: .7rem; color: var(--g); margin-bottom: 2.8rem; }
.hero-free::before { content: '✓'; background: rgba(200,169,106,.15); border-radius: 50%; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: .65rem; flex-shrink: 0; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(200,169,106,.12); }
.hs-n { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--g); display: block; line-height: 1; }
.hs-l { font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; color: var(--m); margin-top: .25rem; display: block; }
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .4rem; z-index: 1; animation: bob 2.8s ease-in-out infinite; }
.scroll-cue span { font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; color: var(--d); }
.scroll-cue::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--g), transparent); }
@keyframes bob { 0%, 100% { opacity: .35; transform: translateX(-50%) translateY(0); } 50% { opacity: .9; transform: translateX(-50%) translateY(6px); } }

/* ── TRUST STRIP ── */
.trust { background: var(--c2); border-top: 1px solid rgba(200,169,106,.07); border-bottom: 1px solid rgba(200,169,106,.07); padding: 1.9rem var(--pad); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.trust-item { display: flex; align-items: center; gap: .85rem; }
.trust-ico { width: 42px; height: 42px; border-radius: 50%; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--g); }
.trust-ico svg { width: 20px; height: 20px; }
.trust-txt strong { display: block; font-size: .8rem; font-weight: 600; color: var(--cr); }
.trust-txt span { font-size: .68rem; color: var(--m); }

/* ── SECTIONS ── */
.sec { padding: 5.5rem var(--pad); }
.sec-a { background: var(--c1); }
.sec-b { background: var(--c0); }
.sec-c { background: var(--c2); }
.sec-hd { margin-bottom: 2.8rem; }
.sec-hd.ctr { text-align: center; }
.sec-hd.ctr .rule { margin-left: auto; margin-right: auto; }
.sec-hd.ctr .eyebrow::before { display: none; }
.sec-hd.ctr .eyebrow::after { content: ''; width: 16px; height: 1px; background: var(--g); opacity: .6; flex-shrink: 0; }
.sec-desc { font-size: .89rem; color: var(--m); line-height: 1.8; max-width: 540px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--rl); border: 1px solid rgba(200,169,106,.14); }
.about-img-sm { position: absolute; bottom: -1.3rem; right: -1.3rem; width: 155px; height: 115px; object-fit: cover; border-radius: var(--r); border: 2px solid var(--g); box-shadow: 0 10px 36px rgba(0,0,0,.5); }
.about-tag { position: absolute; top: 1.1rem; left: 1.1rem; background: var(--g); color: var(--c0); border-radius: .8rem; padding: .52rem .95rem; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 4px 16px rgba(200,169,106,.35); }
.about-body p { font-size: .88rem; color: var(--m); line-height: 1.85; margin-bottom: 1rem; }
.about-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.pill { background: rgba(200,169,106,.08); border: 1px solid rgba(200,169,106,.18); border-radius: 2rem; padding: .28rem .82rem; font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; color: var(--g); }
.about-nums { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.8rem; padding-top: 1.8rem; border-top: 1px solid rgba(200,169,106,.1); }
.an-n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--g); display: block; line-height: 1; }
.an-l { font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; color: var(--m); display: block; margin-top: .18rem; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.why-card { background: var(--c3); border: 1px solid rgba(200,169,106,.08); border-radius: var(--rl); padding: 1.8rem; transition: all .3s; position: relative; overflow: hidden; }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--g), transparent); transform: scaleX(0); transition: transform .35s; }
.why-card:hover { border-color: rgba(200,169,106,.25); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.45); }
.why-card:hover::after { transform: scaleX(1); }
.why-ico { width: 46px; height: 46px; border-radius: .75rem; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; color: var(--g); }
.why-ico svg { width: 22px; height: 22px; }
.why-card h3 { font-size: .9rem; font-weight: 600; color: var(--cr); margin-bottom: .55rem; }
.why-card p { font-size: .8rem; color: var(--m); line-height: 1.7; }

/* ── DOCTORS ── */
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 820px; margin: 0 auto; }
.doc-card { background: var(--c3); border: 1px solid rgba(200,169,106,.1); border-radius: var(--rl); overflow: hidden; transition: all .28s; }
.doc-card:hover { border-color: rgba(200,169,106,.28); transform: translateY(-4px); box-shadow: var(--shadow); }
.doc-photo { height: 320px; overflow: hidden; position: relative; }
.doc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s; display: block; }
.doc-card:hover .doc-photo img { transform: scale(1.04); }
.doc-photo-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(to top, var(--c3), transparent); }
.doc-pin { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; background: var(--g); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--c0); }
.doc-body { padding: 1.6rem 1.8rem 1.9rem; }
.doc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; color: var(--cr); margin-bottom: .18rem; }
.doc-qual { font-size: .72rem; font-weight: 600; color: var(--g); letter-spacing: .04em; margin-bottom: .2rem; }
.doc-title { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--m); margin-bottom: .9rem; }
.doc-bio { font-size: .8rem; color: var(--m); line-height: 1.7; margin-bottom: 1rem; }
.doc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.doc-tag { background: rgba(200,169,106,.07); border: 1px solid rgba(200,169,106,.15); border-radius: 2rem; padding: .17rem .68rem; font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; color: var(--g); }
.doc-socials { display: flex; gap: .55rem; }
.doc-soc { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(200,169,106,.2); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--m); transition: all .2s; text-decoration: none; }
.doc-soc:hover { border-color: var(--g); color: var(--g); background: rgba(200,169,106,.08); }

/* ── TECHNOLOGY ── */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
.tech-card { background: var(--c3); border: 1px solid rgba(200,169,106,.1); border-radius: var(--r); padding: 1.6rem; transition: all .28s; display: flex; gap: 1rem; align-items: flex-start; }
.tech-card:hover { border-color: rgba(200,169,106,.28); transform: translateY(-3px); box-shadow: var(--shadow); }
.tech-ico { width: 46px; height: 46px; border-radius: .75rem; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--g); }
.tech-ico svg { width: 22px; height: 22px; }
.tech-name { font-size: .88rem; font-weight: 600; color: var(--cr); margin-bottom: .3rem; line-height: 1.3; }
.tech-desc { font-size: .74rem; color: var(--m); line-height: 1.6; }
.tech-badge { display: inline-block; font-size: .57rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(200,169,106,.12); color: var(--g); border-radius: 1rem; padding: .14rem .58rem; margin-top: .44rem; }
.tech-certs { display: flex; gap: 2rem; margin-top: 1.4rem; padding: 1.4rem 2rem; background: var(--c3); border: 1px solid rgba(200,169,106,.1); border-radius: var(--r); flex-wrap: wrap; align-items: center; justify-content: center; }
.cert-n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--g); display: block; font-weight: 400; line-height: 1; }
.cert-l { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--m); display: block; margin-top: .18rem; text-align: center; }

/* ── BEFORE & AFTER ── */
.ba-scroll { display: flex; gap: 1.1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: rgba(200,169,106,.2) transparent; margin-top: 2.2rem; }
.ba-scroll::-webkit-scrollbar { height: 3px; }
.ba-scroll::-webkit-scrollbar-thumb { background: rgba(200,169,106,.3); border-radius: 2px; }
.ba-card { flex: 0 0 280px; scroll-snap-align: start; border: 1px solid rgba(200,169,106,.1); border-radius: var(--rl); overflow: hidden; background: var(--c3); transition: all .25s; }
.ba-card:hover { border-color: rgba(200,169,106,.27); transform: translateY(-3px); }
.ba-img { height: 260px; display: flex; position: relative; overflow: hidden; }
.ba-half { flex: 1; overflow: hidden; }
.ba-half img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-ph { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.ba-ph.bef { background: linear-gradient(150deg, var(--c4), var(--c3)); }
.ba-ph.aft { background: linear-gradient(150deg, #1c1508, #141008); }
.ba-div { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--g), transparent); transform: translateX(-50%); z-index: 2; }
.ba-pill { position: absolute; left: 50%; top: .75rem; transform: translateX(-50%); background: var(--g); color: var(--c0); font-size: .56rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .16rem .65rem; border-radius: 2rem; white-space: nowrap; z-index: 3; }
.ba-b, .ba-a { position: absolute; bottom: .55rem; font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; z-index: 3; }
.ba-b { left: .6rem; color: var(--m); }
.ba-a { right: .6rem; color: var(--g); }
.ba-body { padding: .9rem 1.1rem; }
.ba-tx { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--g); margin-bottom: .28rem; display: block; }
.ba-ttl { font-family: 'Cormorant Garamond', serif; font-size: .95rem; color: var(--cr); line-height: 1.3; }

/* ── TREATMENT FILTER ── */
.tx-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { background: transparent; border: 1px solid rgba(200,169,106,.2); border-radius: 2rem; padding: .45rem 1.1rem; font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--m); cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--g); color: var(--c0); border-color: var(--g); }

/* ── TREATMENTS ── */
.tx-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .9rem; }
.tx-card { background: var(--c3); border: 1px solid rgba(200,169,106,.07); border-radius: var(--r); overflow: hidden; transition: all .28s; cursor: pointer; position: relative; }
.tx-card:hover { border-color: rgba(200,169,106,.28); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.tx-card-overlay { position: absolute; inset: 0; background: rgba(200,169,106,.88); color: var(--c0); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transition: opacity .25s; z-index: 2; }
.tx-card:hover .tx-card-overlay { opacity: 1; }
.tx-card-img { height: 130px; overflow: hidden; }
.tx-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.tx-card:hover .tx-card-img img { transform: scale(1.08); }
.tx-card-ph { height: 130px; display: flex; align-items: center; justify-content: center; background: var(--c4); color: var(--g); }
.tx-card-ph svg { width: 40px; height: 40px; opacity: .5; }
.tx-body { padding: .9rem 1rem; }
.tx-name { font-size: .82rem; font-weight: 500; color: var(--cr); line-height: 1.3; margin-bottom: .22rem; }
.tx-desc { font-size: .68rem; color: var(--m); line-height: 1.5; }
.tx-price { font-size: .7rem; font-weight: 700; color: var(--g); margin-top: .35rem; }
.tx-popular { position: absolute; top: .6rem; right: .6rem; z-index: 3; background: var(--g); color: var(--c0); font-size: .55rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .15rem .55rem; border-radius: 1rem; }

/* ── CRAWLABLE TREATMENT DESCRIPTIONS ── */
.tx-detail-list { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.tx-detail-item { background: var(--c3); border: 1px solid rgba(200,169,106,.07); border-radius: var(--r); padding: 1.2rem 1.4rem; }
.tx-detail-item h3 { font-size: .85rem; font-weight: 600; color: var(--cr); margin-bottom: .3rem; }
.tx-detail-item p { font-size: .76rem; color: var(--m); line-height: 1.65; }
.tx-detail-item .tdprice { color: var(--g); font-weight: 700; font-size: .78rem; margin-top: .4rem; display: block; }

/* ── PACKAGE DEALS ── */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.pkg-card { background: var(--c3); border: 1px solid rgba(200,169,106,.12); border-radius: var(--rl); padding: 1.8rem; position: relative; overflow: hidden; transition: all .28s; }
.pkg-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--g), transparent); transform: scaleX(0); transition: transform .3s; }
.pkg-card:hover { border-color: rgba(200,169,106,.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-badge { display: inline-block; background: var(--g); color: var(--c0); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .65rem; border-radius: 1rem; margin-bottom: 1rem; }
.pkg-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--cr); margin-bottom: .5rem; }
.pkg-includes { font-size: .76rem; color: var(--m); line-height: 1.65; margin-bottom: 1rem; }
.pkg-pricing { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.2rem; }
.pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--g); font-weight: 300; line-height: 1; }
.pkg-save { font-size: .7rem; color: var(--gl); background: rgba(200,169,106,.1); border-radius: 1rem; padding: .18rem .6rem; font-weight: 600; }

/* ── PRICING ── */
.price-tabs { display: flex; gap: .25rem; border-bottom: 1px solid rgba(200,169,106,.12); margin-bottom: 2.4rem; }
.price-tab { padding: .72rem 1.4rem; font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--m); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s; cursor: pointer; background: none; border-left: none; border-right: none; border-top: none; }
.price-tab.on, .price-tab:hover { color: var(--g); border-bottom-color: var(--g); }
.price-pane { display: none; }
.price-pane.on { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1rem; }
.price-card { background: var(--c3); border: 1px solid rgba(200,169,106,.09); border-radius: var(--r); padding: 1.4rem 1.5rem; transition: all .28s; position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--g), transparent); transform: scaleX(0); transition: transform .3s; }
.price-card:hover { border-color: rgba(200,169,106,.28); transform: translateY(-3px); box-shadow: var(--shadow); }
.price-card:hover::before { transform: scaleX(1); }
.price-ico { width: 38px; height: 38px; border-radius: .6rem; background: rgba(200,169,106,.09); border: 1px solid rgba(200,169,106,.12); display: flex; align-items: center; justify-content: center; color: var(--g); margin-bottom: .8rem; }
.price-ico svg { width: 18px; height: 18px; }
.price-name { font-size: .86rem; font-weight: 600; color: var(--cr); margin-bottom: .28rem; line-height: 1.3; }
.price-desc { font-size: .69rem; color: var(--m); line-height: 1.5; margin-bottom: .9rem; }
.price-amt { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--g); margin-bottom: .8rem; line-height: 1; }
.price-amt .sup { font-size: 1rem; vertical-align: super; margin-right: .08rem; font-family: 'Jost', sans-serif; font-weight: 400; }
.price-amt.consult { font-size: .92rem; color: var(--m); font-family: 'Jost', sans-serif; font-weight: 500; }
.price-btn { display: inline-flex; align-items: center; gap: .38rem; background: transparent; border: 1px solid rgba(200,169,106,.3); border-radius: 2rem; padding: .36rem .9rem; font-size: .63rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--g); transition: all .2s; cursor: pointer; font-family: 'Jost', sans-serif; }
.price-btn:hover { background: var(--g); color: var(--c0); border-color: var(--g); }
.price-note { text-align: center; margin-top: 1.8rem; font-size: .78rem; color: var(--m); }
.price-note a { color: var(--g); }

/* ── COUNTDOWN TIMER ── */
.offer-timer { display: flex; align-items: center; gap: .5rem; margin-top: 2rem; padding: 1rem 1.4rem; background: rgba(200,169,106,.06); border: 1px solid rgba(200,169,106,.15); border-radius: var(--r); flex-wrap: wrap; }
.timer-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--m); }
.countdown { display: flex; gap: .4rem; }
.countdown span { background: var(--c4); border: 1px solid rgba(200,169,106,.15); border-radius: .4rem; padding: .3rem .6rem; min-width: 46px; text-align: center; }
.countdown span strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--g); line-height: 1; font-weight: 400; }
.countdown span small { font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; color: var(--m); }

/* ── SHOP ── */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.shop-card { background: var(--c3); border: 1px solid rgba(200,169,106,.1); border-radius: var(--rl); padding: 1.9rem; transition: all .28s; text-align: center; position: relative; overflow: hidden; }
.shop-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--g), transparent); transform: scaleX(0); transition: transform .3s; }
.shop-card:hover { border-color: rgba(200,169,106,.28); transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-card:hover::before { transform: scaleX(1); }
.shop-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.15); display: flex; align-items: center; justify-content: center; color: var(--g); margin: 0 auto 1rem; }
.shop-icon svg { width: 28px; height: 28px; }
.shop-cat { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g); margin-bottom: .45rem; display: block; }
.shop-title { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; color: var(--cr); margin-bottom: .58rem; }
.shop-items { font-size: .75rem; color: var(--m); line-height: 1.75; margin-bottom: 1.3rem; }
.shop-avail { display: inline-block; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.2); border-radius: 2rem; padding: .2rem .72rem; font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--g); margin-bottom: 1.1rem; }
.shop-note { font-size: .77rem; color: var(--m); text-align: center; margin-top: 1.4rem; padding: 1.1rem; background: var(--c3); border-radius: var(--r); border: 1px solid rgba(200,169,106,.08); }

/* ── VIDEO TESTIMONIALS (REELS) ── */
.reels-scroll { display: flex; gap: 1.2rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: rgba(200,169,106,.2) transparent; margin-top: 2.5rem; }
.reels-scroll::-webkit-scrollbar { height: 3px; }
.reels-scroll::-webkit-scrollbar-thumb { background: rgba(200,169,106,.3); border-radius: 2px; }
.reel-card { flex: 0 0 320px; scroll-snap-align: start; background: var(--c3); border: 1px solid rgba(200,169,106,.1); border-radius: var(--r); overflow: hidden; transition: all .25s; }
.reel-card:hover { border-color: rgba(200,169,106,.28); transform: translateY(-3px); }
.reel-frame iframe { width: 320px; min-height: 520px; background: var(--c4); display: block; border: none; }
.reel-fb { display: flex; align-items: center; justify-content: space-between; padding: .78rem 1rem; background: var(--c4); }
.reel-fb-txt { font-size: .7rem; color: var(--m); }
.reel-fb-link { font-size: .64rem; color: var(--g); font-weight: 600; text-decoration: none; }

/* ── YOUTUBE LITE EMBED ── */
.yt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.yt-card { border-radius: var(--r); overflow: hidden; border: 1px solid rgba(200,169,106,.1); background: var(--c3); transition: all .25s; }
.yt-card:hover { border-color: rgba(200,169,106,.28); transform: translateY(-3px); }
.yt-lite { position: relative; cursor: pointer; background: #000; display: block; contain: content; }
.yt-lite::before { display: block; content: ''; padding-top: 56.25%; }
.yt-lite img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.yt-lite:hover img { opacity: .8; }
.yt-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(200,169,106,.92); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; box-shadow: 0 4px 20px rgba(0,0,0,.5); }
.yt-play-btn:hover { background: var(--g); transform: translate(-50%, -50%) scale(1.1); }
.yt-play-btn svg { width: 26px; height: 26px; fill: var(--c0); margin-left: 3px; }
.yt-lite.activated { padding-top: 56.25%; height: 0; }
.yt-lite.activated::before { display: none; }
.yt-lite.activated iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.yt-info { padding: .95rem 1.2rem; }
.yt-tag { font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; color: var(--g); background: rgba(200,169,106,.1); border-radius: 2rem; padding: .15rem .62rem; display: inline-block; margin-bottom: .42rem; }
.yt-title { font-family: 'Cormorant Garamond', serif; font-size: .98rem; color: var(--cr); line-height: 1.3; }

/* ── CLINIC PHOTOS ── */
.clinic-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1rem; margin-top: 2.5rem; }
.cp { border-radius: var(--r); overflow: hidden; border: 1px solid rgba(200,169,106,.1); transition: all .28s; cursor: pointer; }
.cp:hover { border-color: rgba(200,169,106,.3); transform: scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.cp img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; display: block; }
.cp:hover img { transform: scale(1.07); }
.cp.tall { grid-row: span 2; }
.cp.tall img { height: 410px; }

/* ── HYGIENE SECTION ── */
.hygiene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
.hygiene-card { background: var(--c3); border: 1px solid rgba(200,169,106,.08); border-radius: var(--r); padding: 1.6rem; display: flex; gap: .9rem; align-items: flex-start; transition: all .25s; }
.hygiene-card:hover { border-color: rgba(200,169,106,.2); transform: translateY(-2px); }
.hygiene-ico { width: 40px; height: 40px; border-radius: .6rem; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--g); }
.hygiene-ico svg { width: 20px; height: 20px; }
.hygiene-name { font-size: .86rem; font-weight: 600; color: var(--cr); margin-bottom: .28rem; }
.hygiene-desc { font-size: .74rem; color: var(--m); line-height: 1.6; }

/* ── REVIEWS SLIDER ── */
.rev-slider { overflow: hidden; margin-top: 2.5rem; }
.rev-track { display: flex; gap: 1.1rem; transition: transform .55s cubic-bezier(.25,.8,.25,1); }
.rev-card { flex: 0 0 calc(33.333% - .75rem); background: var(--c3); border: 1px solid rgba(200,169,106,.08); border-radius: var(--rl); padding: 1.7rem; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.rev-card:hover { border-color: rgba(200,169,106,.22); transform: translateY(-3px); }
.rev-top { display: flex; align-items: center; gap: .78rem; margin-bottom: .95rem; }
.rev-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--g), var(--gd)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--c0); flex-shrink: 0; border: 2px solid rgba(200,169,106,.3); }
.rev-meta strong { display: block; font-size: .82rem; font-weight: 600; color: var(--cr); }
.rev-meta span { font-size: .68rem; color: var(--m); }
.rev-stars { color: var(--g); font-size: .82rem; letter-spacing: .05em; margin-bottom: .75rem; }
.rev-verified { display: inline-flex; align-items: center; gap: .28rem; font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--g); background: rgba(200,169,106,.08); border-radius: 1rem; padding: .13rem .52rem; margin-bottom: .65rem; }
.rev-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--cr); line-height: 1.58; flex: 1; margin-bottom: .85rem; }
.rev-treatment { font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; color: var(--g); }
.rev-platform { font-size: .6rem; color: var(--d); margin-top: .18rem; }
.rev-controls { display: flex; justify-content: center; align-items: center; gap: .65rem; margin-top: 1.5rem; }
.rev-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(200,169,106,.2); cursor: pointer; transition: all .3s; border: none; padding: 0; }
.rev-dot.on { background: var(--g); width: 20px; border-radius: 3px; }
.rev-prev, .rev-next { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(200,169,106,.25); color: var(--g); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .9rem; transition: all .2s; background: none; font-family: 'Jost', sans-serif; }
.rev-prev:hover, .rev-next:hover { background: var(--g); color: var(--c0); border-color: var(--g); }
.rev-summary { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; padding: 1.4rem 1.8rem; background: var(--c3); border: 1px solid rgba(200,169,106,.1); border-radius: var(--r); flex-wrap: wrap; justify-content: center; }
.rev-big-n { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--g); font-weight: 300; line-height: 1; }
.rev-big-stars { color: var(--g); font-size: 1.1rem; letter-spacing: .05em; }
.rev-google-btn { display: inline-flex; align-items: center; gap: .45rem; border: 1px solid rgba(200,169,106,.25); border-radius: 2rem; padding: .48rem 1.1rem; font-size: .68rem; color: var(--g); transition: all .2s; margin-top: .5rem; text-decoration: none; }
.rev-google-btn:hover { border-color: var(--g); background: rgba(200,169,106,.05); }
@media (max-width: 900px) { .rev-card { flex: 0 0 calc(50% - .55rem); } }
@media (max-width: 640px) { .rev-card { flex: 0 0 100%; } }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.blog-card { background: var(--c3); border: 1px solid rgba(200,169,106,.09); border-radius: var(--rl); overflow: hidden; transition: all .28s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: rgba(200,169,106,.28); transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img { height: 180px; overflow: hidden; background: var(--c4); position: relative; display: flex; align-items: center; justify-content: center; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-img-ph { color: var(--g); opacity: .3; }
.blog-img-ph svg { width: 60px; height: 60px; }
.blog-body { padding: 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--g); background: rgba(200,169,106,.1); border-radius: 2rem; padding: .17rem .65rem; display: inline-block; margin-bottom: .7rem; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--cr); line-height: 1.4; margin-bottom: .6rem; }
.blog-excerpt { font-size: .76rem; color: var(--m); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.blog-meta { font-size: .65rem; color: var(--d); margin-bottom: .8rem; }
.blog-read { font-size: .7rem; font-weight: 600; color: var(--g); letter-spacing: .06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .3rem; text-decoration: none; transition: gap .2s; }
.blog-read:hover { gap: .6rem; }

/* ── INSTAGRAM ── */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.insta-card { border-radius: var(--r); overflow: hidden; border: 1px solid rgba(200,169,106,.1); position: relative; transition: all .25s; cursor: pointer; text-decoration: none; display: block; }
.insta-card:hover { border-color: rgba(200,169,106,.3); transform: scale(1.02); }
.insta-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .4s; }
.insta-card:hover img { transform: scale(1.08); }
.insta-overlay { position: absolute; inset: 0; background: rgba(8,7,6,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.insta-card:hover .insta-overlay { background: rgba(8,7,6,.55); }
.insta-overlay-ico { font-size: 1.7rem; opacity: 0; transform: scale(.8); transition: all .3s; color: #fff; }
.insta-card:hover .insta-overlay-ico { opacity: 1; transform: scale(1); }
.insta-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 1.7rem; padding: 1.3rem 1.7rem; background: var(--c3); border: 1px solid rgba(200,169,106,.1); border-radius: var(--rl); }
.insta-handle { display: flex; align-items: center; gap: .72rem; }
.insta-logo-ico { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.insta-handle strong { display: block; font-size: .86rem; color: var(--cr); font-weight: 600; }
.insta-handle span { font-size: .68rem; color: var(--m); }

/* ── FAQ ── */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(200,169,106,.1); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; gap: 1.1rem; text-align: left; cursor: pointer; background: none; border: none; }
.faq-qt { font-size: .88rem; font-weight: 500; color: var(--cr); transition: color .2s; line-height: 1.45; }
.faq-q:hover .faq-qt { color: var(--g); }
.faq-ico { width: 27px; height: 27px; border-radius: 50%; border: 1px solid rgba(200,169,106,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--g); font-size: .8rem; transition: all .3s; }
.faq-item.open .faq-ico { background: var(--g); color: var(--c0); border-color: var(--g); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding .38s ease; }
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 1.2rem; }
.faq-a p { font-size: .82rem; color: var(--m); line-height: 1.8; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.cdet { display: flex; gap: .88rem; align-items: flex-start; margin-bottom: 1.4rem; }
.cico { width: 42px; height: 42px; border-radius: 50%; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .08rem; color: var(--g); }
.cico svg { width: 18px; height: 18px; }
.clbl { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g); margin-bottom: .26rem; display: block; }
.cval { font-size: .85rem; color: var(--cr); line-height: 1.65; }
.cval a { color: var(--cr); transition: color .2s; }
.cval a:hover { color: var(--g); }
.hrs-tbl { width: 100%; border-collapse: collapse; }
.hrs-tbl tr { border-bottom: 1px solid rgba(200,169,106,.07); }
.hrs-tbl td { padding: .48rem 0; font-size: .8rem; }
.hrs-tbl td:first-child { color: var(--m); }
.hrs-tbl td:last-child { color: var(--cr); text-align: right; font-weight: 500; }
.hrs-tbl tr.open td:last-child { color: var(--g); }
.hrs-tbl tr:last-child { border: none; }
.map-wrap { border-radius: var(--rl); overflow: hidden; border: 1px solid rgba(200,169,106,.12); margin-top: 1.6rem; position: relative; }
.map-wrap iframe { width: 100%; height: 265px; filter: grayscale(75%) invert(85%) sepia(20%) saturate(.8) brightness(.7); display: block; border: none; }
.map-lbl { position: absolute; bottom: .8rem; left: 50%; transform: translateX(-50%); background: rgba(8,7,6,.88); backdrop-filter: blur(10px); border: 1px solid rgba(200,169,106,.2); border-radius: .9rem; padding: .42rem 1.1rem; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--g); white-space: nowrap; }
/* Form */
.form-box { background: var(--c3); border: 1px solid rgba(200,169,106,.1); border-radius: var(--rl); padding: 2.2rem; position: relative; overflow: hidden; }
.form-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--cr); margin-bottom: .3rem; }
.form-sub { font-size: .75rem; color: var(--m); margin-bottom: 1.6rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .8rem; }
.fg { margin-bottom: .8rem; position: relative; }
.fg label { display: block; font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; color: var(--m); margin-bottom: .42rem; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--c4); border: 1px solid rgba(200,169,106,.1); border-radius: .6rem; padding: .7rem .92rem; font-size: .82rem; color: var(--cr); outline: none; transition: border-color .2s, box-shadow .2s; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--d); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(200,169,106,.08); }
.fg input.invalid, .fg select.invalid, .fg textarea.invalid { border-color: #e53935; }
.fg-err { font-size: .65rem; color: #e57373; margin-top: .3rem; display: block; }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A96A' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; cursor: pointer; }
.fg select option { background: var(--c3); color: var(--cr); }
.fg textarea { min-height: 84px; resize: vertical; }
.fsub { width: 100%; background: var(--g); color: var(--c0); border-radius: 2rem; padding: .88rem; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: all .25s; box-shadow: 0 6px 22px rgba(200,169,106,.22); cursor: pointer; border: none; font-family: 'Jost', sans-serif; }
.fsub:hover { background: var(--gl); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,169,106,.38); }
.fnote { text-align: center; font-size: .67rem; color: var(--d); margin-top: .8rem; }
.form-thanks { display: none; position: absolute; inset: 0; background: var(--c3); align-items: center; justify-content: center; flex-direction: column; gap: .9rem; text-align: center; padding: 2rem; z-index: 10; border-radius: var(--rl); }
.form-thanks.show { display: flex; }
.ft-icon { font-size: 3rem; animation: ft-pop .5s ease-out; }
@keyframes ft-pop { 0% { transform: scale(0); } 80% { transform: scale(1.15); } 100% { transform: scale(1); } }
.ft-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--cr); }
.ft-desc { font-size: .83rem; color: var(--m); line-height: 1.7; max-width: 320px; }

/* ── FOOTER ── */
footer { background: var(--c1); border-top: 1px solid rgba(200,169,106,.1); padding: 4rem var(--pad) 1.8rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.4rem; }
.foot-brand { display: flex; align-items: center; gap: .62rem; margin-bottom: .45rem; }
.foot-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(200,169,106,.3); }
.foot-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--cr); }
.foot-brand-text span { color: var(--g); }
.foot-desc { font-size: .76rem; color: var(--m); line-height: 1.75; max-width: 230px; margin-bottom: 1.2rem; }
.foot-socs { display: flex; gap: .58rem; }
.fsoc { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(200,169,106,.18); display: flex; align-items: center; justify-content: center; font-size: .76rem; color: var(--m); transition: all .2s; text-decoration: none; }
.fsoc:hover { border-color: var(--g); color: var(--g); background: rgba(200,169,106,.08); }
.foot-col h4 { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--g); margin-bottom: 1.1rem; }
.foot-col ul { display: flex; flex-direction: column; gap: .56rem; }
.foot-col ul li a { font-size: .76rem; color: var(--m); transition: color .2s; text-decoration: none; }
.foot-col ul li a:hover { color: var(--cr); }
.foot-bot { border-top: 1px solid rgba(200,169,106,.07); padding-top: 1.3rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; align-items: center; }
.foot-copy { font-size: .66rem; color: var(--d); }
.foot-legal { display: flex; gap: 1rem; }
.foot-legal a { font-size: .66rem; color: var(--d); transition: color .2s; cursor: pointer; }
.foot-legal a:hover { color: var(--m); }

/* ── FLOATING BUTTONS ── */
.float-right { position: fixed; bottom: 1.7rem; right: 1.7rem; display: flex; flex-direction: column; gap: .68rem; z-index: 500; }
.fl-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: 0 6px 22px rgba(0,0,0,.4); transition: all .2s; text-decoration: none; }
.fl-btn:hover { transform: scale(1.12); }
.fl-wa { background: #25D366; box-shadow: 0 6px 22px rgba(37,211,102,.32); }
.fl-wa:hover { box-shadow: 0 10px 34px rgba(37,211,102,.52); }
.fl-call { background: var(--g); color: var(--c0); box-shadow: 0 6px 22px rgba(200,169,106,.28); }
.fl-call:hover { background: var(--gl); box-shadow: 0 10px 34px rgba(200,169,106,.48); }
/* Back to top */
.back-top { position: fixed; bottom: 2rem; right: 7.5rem; width: 40px; height: 40px; border-radius: 50%; background: var(--g); color: var(--c0); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; z-index: 500; cursor: pointer; opacity: 0; transform: translateY(10px); transition: all .3s; box-shadow: 0 4px 16px rgba(200,169,106,.3); border: none; }
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gl); transform: translateY(-3px); }
/* Offers button */
.fl-offers { position: fixed; bottom: 1.7rem; left: 1.7rem; z-index: 500; background: var(--g); color: var(--c0); border-radius: 2rem; padding: .56rem 1.1rem; display: flex; align-items: center; gap: .42rem; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; box-shadow: 0 6px 22px rgba(200,169,106,.35); animation: offers-pulse 2.8s ease-in-out infinite; }
.fl-offers:hover { background: var(--gl); animation: none; transform: scale(1.04); }
@keyframes offers-pulse { 0%, 100% { box-shadow: 0 6px 22px rgba(200,169,106,.35); } 50% { box-shadow: 0 8px 28px rgba(200,169,106,.58); } }
/* Mobile sticky bar */
.mob-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 600; background: var(--c2); border-top: 1px solid rgba(200,169,106,.2); padding: .55rem 1rem; gap: .5rem; }
.mob-sticky a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .18rem; padding: .48rem; border-radius: .6rem; font-size: .58rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; transition: all .2s; }
.ms-call { background: rgba(200,169,106,.1); color: var(--g); }
.ms-wa { background: rgba(37,211,102,.15); color: #25D366; }
.ms-book { background: var(--g); color: var(--c0); }

/* ── WHATSAPP CHAT POPUP ── */
.wa-chat { position: fixed; bottom: 5.5rem; right: 1.7rem; z-index: 600; opacity: 0; transform: translateY(10px) scale(.96); pointer-events: none; transition: all .35s ease; }
.wa-chat.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.wa-chat-box { background: var(--c2); border: 1px solid rgba(200,169,106,.15); border-radius: 1.2rem 1.2rem .2rem 1.2rem; padding: 1.2rem 1.4rem; width: 272px; box-shadow: 0 12px 40px rgba(0,0,0,.5); position: relative; }
.wa-chat-close { position: absolute; top: .55rem; right: .65rem; background: none; border: none; color: var(--m); font-size: .85rem; cursor: pointer; padding: .15rem; line-height: 1; }
.wa-chat-header { display: flex; align-items: center; gap: .7rem; margin-bottom: .82rem; }
.wa-chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.wa-chat-name { font-size: .8rem; font-weight: 600; color: var(--cr); }
.wa-chat-status { font-size: .63rem; color: #25D366; }
.wa-chat-bubble { background: var(--c3); border-radius: .8rem .8rem .8rem .1rem; padding: .68rem .88rem; font-size: .78rem; color: var(--m); line-height: 1.55; margin-bottom: .95rem; }
.wa-chat-bubble strong { color: var(--cr); display: block; margin-bottom: .18rem; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 700; background: var(--c3); border-top: 1px solid rgba(200,169,106,.2); padding: .95rem var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; transform: translateY(0); transition: transform .35s ease; }
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-text { font-size: .76rem; color: var(--m); max-width: 580px; line-height: 1.6; }
.cookie-text a { color: var(--g); }
.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; }

/* ── EXIT INTENT ── */
.exit-popup { display: none; position: fixed; inset: 0; z-index: 950; background: rgba(8,7,6,.96); backdrop-filter: blur(20px); align-items: center; justify-content: center; padding: 1rem; }
.exit-popup.open { display: flex; }
.exit-inner { background: var(--c2); border: 1px solid rgba(200,169,106,.2); border-radius: var(--rl); max-width: 450px; width: 100%; padding: 2.5rem; text-align: center; position: relative; }
.exit-close { position: absolute; top: .9rem; right: .9rem; width: 30px; height: 30px; border-radius: 50%; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.2); color: var(--g); cursor: pointer; font-size: .88rem; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.exit-close:hover { background: var(--g); color: var(--c0); }
.exit-icon { font-size: 2.8rem; margin-bottom: .9rem; }
.exit-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--cr); margin-bottom: .55rem; line-height: 1.2; }
.exit-title em { font-style: italic; color: var(--g); }
.exit-desc { font-size: .82rem; color: var(--m); line-height: 1.7; margin-bottom: 1.3rem; }
.exit-offer { background: rgba(200,169,106,.08); border: 1px solid rgba(200,169,106,.2); border-radius: var(--r); padding: .95rem; margin-bottom: 1.4rem; }
.exit-offer-main { font-size: .95rem; color: var(--cr); font-weight: 600; }
.exit-offer-sub { font-size: .72rem; color: var(--m); margin-top: .18rem; }
.exit-btns { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.exit-no { font-size: .7rem; color: var(--d); cursor: pointer; margin-top: .9rem; transition: color .2s; }
.exit-no:hover { color: var(--m); }

/* ── SOCIAL PROOF NOTIFICATION ── */
.social-proof { position: fixed; bottom: 2rem; left: 1.7rem; z-index: 500; background: var(--c3); border: 1px solid rgba(200,169,106,.15); border-radius: var(--r); padding: .72rem .95rem; display: flex; align-items: center; gap: .65rem; max-width: 255px; box-shadow: 0 8px 28px rgba(0,0,0,.4); opacity: 0; transform: translateX(-20px); transition: all .4s ease; pointer-events: none; }
.social-proof.show { opacity: 1; transform: translateX(0); pointer-events: all; }
.sp-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--g), var(--gd)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--c0); flex-shrink: 0; }
.sp-name { font-size: .73rem; font-weight: 600; color: var(--cr); }
.sp-action { font-size: .67rem; color: var(--m); }
.sp-time { font-size: .58rem; color: var(--d); margin-top: .08rem; }

/* ── TREATMENT POPUP ── */
.tx-popup { display: none; position: fixed; inset: 0; z-index: 900; background: rgba(8,7,6,.94); backdrop-filter: blur(16px); align-items: center; justify-content: center; padding: 1rem; }
.tx-popup.open { display: flex; }
.tx-popup-inner { background: var(--c2); border: 1px solid rgba(200,169,106,.2); border-radius: var(--rl); max-width: 500px; width: 100%; overflow: hidden; position: relative; max-height: 90vh; overflow-y: auto; }
.tx-popup-hd { background: var(--c3); padding: 1.8rem 2rem; border-bottom: 1px solid rgba(200,169,106,.1); position: relative; }
.tx-popup-close { position: absolute; top: .9rem; right: .9rem; width: 32px; height: 32px; border-radius: 50%; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.2); color: var(--g); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; transition: all .2s; }
.tx-popup-close:hover { background: var(--g); color: var(--c0); }
.tx-popup-ico { font-size: 2.4rem; margin-bottom: .7rem; }
.tx-popup-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; color: var(--cr); margin-bottom: .18rem; }
.tx-popup-cat { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--g); }
.tx-popup-body { padding: 1.4rem 2rem 1.8rem; }
.tx-popup-price { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; color: var(--g); margin-bottom: .85rem; line-height: 1; }
.tx-popup-price.consult { font-size: .92rem; font-family: 'Jost', sans-serif; color: var(--m); }
.tx-popup-desc { font-size: .83rem; color: var(--m); line-height: 1.75; margin-bottom: 1.1rem; }
.tx-popup-meta { display: flex; gap: 1.5rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.tx-meta-lbl { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--d); display: block; }
.tx-meta-val { font-size: .8rem; color: var(--cr); font-weight: 500; display: block; margin-top: .15rem; }
.tx-popup-btns { display: flex; gap: .75rem; }

/* ── LEGAL MODALS ── */
.legal-modal { display: none; position: fixed; inset: 0; z-index: 950; background: rgba(8,7,6,.96); backdrop-filter: blur(16px); align-items: center; justify-content: center; padding: 1rem; }
.legal-modal.open { display: flex; }
.legal-inner { background: var(--c2); border: 1px solid rgba(200,169,106,.15); border-radius: var(--rl); max-width: 640px; width: 100%; max-height: 88vh; overflow: hidden; display: flex; flex-direction: column; }
.legal-hd { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.8rem; border-bottom: 1px solid rgba(200,169,106,.1); flex-shrink: 0; }
.legal-hd h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--cr); }
.legal-hd-close { width: 30px; height: 30px; border-radius: 50%; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.2); color: var(--g); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .9rem; transition: all .2s; }
.legal-hd-close:hover { background: var(--g); color: var(--c0); }
.legal-body { padding: 1.4rem 1.8rem; overflow-y: auto; flex: 1; }
.legal-body h4 { font-size: .88rem; font-weight: 600; color: var(--cr); margin: 1.1rem 0 .38rem; }
.legal-body p, .legal-body li { font-size: .8rem; color: var(--m); line-height: 1.75; margin-bottom: .45rem; }
.legal-body ul { padding-left: 1.1rem; }
.legal-body a { color: var(--g); }

/* ── LIGHTBOX ── */
.lb { display: none; position: fixed; inset: 0; z-index: 900; background: rgba(8,7,6,.96); align-items: center; justify-content: center; padding: 1rem; }
.lb.open { display: flex; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-inner img { max-width: 100%; max-height: 90vh; border-radius: .75rem; object-fit: contain; }
.lb-close { position: absolute; top: -2.4rem; right: 0; background: rgba(200,169,106,.15); border: 1px solid rgba(200,169,106,.3); color: var(--g); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: all .2s; }
.lb-close:hover { background: var(--g); color: var(--c0); }

/* ── REVEAL ANIMATIONS ── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rvl { opacity: 0; transform: translateX(-28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.rvl.vis { opacity: 1; transform: translateX(0); }
.rvr { opacity: 0; transform: translateX(28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.rvr.vis { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-sm { display: none; }
  .why-grid, .tech-grid, .shop-grid, .hygiene-grid { grid-template-columns: 1fr 1fr; }
  .docs-grid { grid-template-columns: 1fr; max-width: 440px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .yt-grid { grid-template-columns: 1fr; }
  .clinic-grid { grid-template-columns: 1fr 1fr; }
  .cp.tall img { height: 200px; }
  .cp.tall { grid-row: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
  .topinfo { display: none; }
  .why-grid, .tech-grid, .shop-grid, .hygiene-grid { grid-template-columns: 1fr; }
  .docs-grid { max-width: 100%; }
  .foot-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.3rem; }
  .clinic-grid { grid-template-columns: 1fr; }
  .price-pane.on { grid-template-columns: 1fr 1fr; }
  .mob-sticky { display: flex; }
  .float-right { bottom: 5.2rem; }
  .fl-offers { bottom: 5.2rem; }
  .back-top { bottom: 5.5rem; right: 1rem; }
  .social-proof { bottom: 5.5rem; }
  .wa-chat { bottom: 9rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) { :root { --pad: 1.1rem; } .price-pane.on { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { *, .rv, .rvl, .rvr { animation: none !important; transition: none !important; } }
