/* ============================================================
   EliteMD Aesthetics — Medical-Luxury Design System
   Palette elevated from the clinic's teal/emerald logo.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand — Black · White · Gold (true luxe palette, no navy/no green) */
  --emerald:        #17150F;   /* near-black warm — headings/primary text */
  --emerald-700:    #000000;   /* pure black */
  --emerald-500:    #C3A24C;   /* gold (icon accent) */
  --gold:           #C3A24C;   /* GOLD — primary accent */
  --gold-light:     #E3C880;   /* champagne-gold glow */
  --gold-soft:      #F1E8CE;   /* pale gold */

  /* Secondary accent — now gold (sage removed) */
  --sage:           #C3A24C;   /* mapped to gold */
  --sage-deep:      #9C7F30;   /* deep gold for text on light */
  --sage-soft:      #F4EDD9;   /* pale gold wash */

  /* Neutrals */
  --ivory:          #FFFFFF;   /* white page bg */
  --ivory-deep:     #F4F2EC;
  --sand:           #F6F4EF;   /* warm soft-white section break */
  --champagne:      #E3C880;
  --espresso:       #141210;   /* near-black band */
  --noir:           #0D0C0A;   /* deep black (dark hero/bands) */
  --charcoal:       #1C1A16;   /* warm charcoal */
  --cloud:          #F7F5EF;   /* warm white text on dark */
  --cloud-soft:     #B9B2A4;   /* muted warm-grey on black */
  --green:          #0D0C0A;   /* (legacy name) deep black */
  --paper:          #FFFFFF;
  --ink:            #1A1712;   /* near-black warm body text */
  --ink-soft:       #5E574C;   /* warm taupe-grey */
  --line:           #EAE5DA;   /* warm light border */

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 130px);
  --radius: 4px;
  --shadow-sm: 0 2px 16px rgba(0,0,0,.06);
  --shadow-md: 0 20px 50px -24px rgba(0,0,0,.30);
  --shadow-lg: 0 40px 90px -40px rgba(0,0,0,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 500; letter-spacing: -.01em; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-y); }
.bg-ivory { background: var(--ivory); }
.bg-sand  { background: var(--sand); }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--sand); }
.bg-champ { background: var(--sand); }
.bg-emerald { background: var(--charcoal); color: var(--cloud-soft); }
.bg-emerald h1,.bg-emerald h2,.bg-emerald h3 { color: var(--cloud); }
.bg-emerald .lead, .bg-emerald p, .bg-emerald .muted { color: var(--cloud-soft); }
.bg-emerald .feature-row h4 { color: var(--cloud); }
.bg-emerald .feature-row p { color: var(--cloud-soft); }
.bg-emerald .feature-ic { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Type system ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .7; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .7; }

.display { font-family: var(--serif); font-weight: 500; line-height: 1.02; letter-spacing: -.015em; }
h1.display { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2.display { font-size: clamp(2.1rem, 4.4vw, 3.45rem); line-height: 1.06; }
h3.display { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.display .it { font-style: italic; color: var(--gold); font-weight: 500; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); line-height: 1.65; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure-tight { max-width: 48ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 17px 30px; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #15120A; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(194,162,78,.55); }
.btn-emerald { background: var(--noir); color: var(--cloud); }
.btn-emerald:hover { background: var(--emerald-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(27,27,31,.35); }
.btn-outline:hover { background: var(--ink); color: var(--cloud); border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--cloud); border-color: rgba(243,241,236,.4); }
.btn-ghost-light:hover { background: rgba(243,241,236,.1); border-color: var(--cloud); }
.btn-lg { padding: 19px 38px; font-size: 14.5px; }

.link-arrow {
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--emerald);
  display: inline-flex; align-items: center; gap: 9px; transition: gap .3s var(--ease), color .3s;
}
.link-arrow .ar { transition: transform .35s var(--ease); }
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover .ar { transform: translateX(6px); }

/* ---------- Header ---------- */
.topbar {
  background: #0A0A0C; color: #C9BCA6;
  font-size: 12.5px; letter-spacing: .04em;
  border-bottom: 1px solid rgba(214,178,112,.14);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 18px; }
.topbar a { color: #C9BCA6; transition: color .25s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .tb-group { display: flex; align-items: center; gap: 22px; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8,8,10,.88); backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(214,178,112,.16);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 14px 40px -18px rgba(0,0,0,.6); background: rgba(8,8,10,.95); }

/* ---- Adaptive LIGHT state: nav over light sections ---- */
.site-header.nav-light {
  background: rgba(255,255,255,.78); backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.site-header.nav-light.scrolled { background: rgba(255,255,255,.9); box-shadow: 0 12px 34px -20px rgba(0,0,0,.22); }
.site-header.nav-light .brand-name { color: var(--emerald); }
.site-header.nav-light .nav-links > a,
.site-header.nav-light .nav-links .mega-trigger { color: var(--ink); }
.site-header.nav-light .nav-links > a:hover,
.site-header.nav-light .nav-links .mega-trigger:hover,
.site-header.nav-light .nav-item.has-mega:hover .mega-trigger,
.site-header.nav-light .nav-item.has-mega.open .mega-trigger { color: var(--gold-deep, #9C7F30); }
.site-header.nav-light .nav-toggle span { background: var(--emerald); }
/* CALL button: outlined-dark on light nav */
.site-header.nav-light .btn-ghost-light { color: var(--ink); border-color: rgba(27,23,18,.4); }
.site-header.nav-light .btn-ghost-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 70px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark-img { height: 44px; width: auto; display: block; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
}
.brand-mark img { height: 44px; width: auto; }
.brand-name { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1; color: var(--cloud); letter-spacing: .01em; }
.brand-name b { font-weight: 600; }
.brand-name em { font-style: italic; color: var(--gold); font-weight: 600; }
.brand-name small { display: block; font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a,
.nav-links .mega-trigger {
  font-size: 14px; font-weight: 600; letter-spacing: .02em; color: var(--cloud);
  position: relative; padding: 6px 0; transition: color .25s;
}
.nav-links > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links > a:hover,
.nav-links .mega-trigger:hover { color: var(--gold); }
.nav-links > a:hover::after { width: 100%; }
.nav-item.has-mega:hover .mega-trigger,
.nav-item.has-mega.open .mega-trigger { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
  font-weight: 700; font-size: 15px; letter-spacing: .01em; color: var(--cloud); white-space: nowrap;
  transition: color .25s; }
.nav-phone svg { color: var(--gold); flex-shrink: 0; transition: color .25s; }
.nav-phone:hover { color: var(--gold-light); }
.nav-phone:hover svg { color: var(--gold-light); }
.site-header.nav-light .nav-phone { color: var(--ink); }
.site-header.nav-light .nav-phone:hover { color: var(--gold-deep, #9C7F30); }
.site-header.nav-light .nav-phone:hover svg { color: var(--gold-deep, #9C7F30); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cloud); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--noir); }

/* YouTube / video background cover */
.yt-bg { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.yt-bg iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; border: 0; pointer-events: none; }
.hero-photo-fallback { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: right 20%; }
.hero-video-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; background: #0D0C0A; }
.hero-overlay-left { background:
  linear-gradient(90deg, rgba(11,9,8,.94) 0%, rgba(11,9,8,.78) 32%, rgba(11,9,8,.42) 60%, rgba(11,9,8,.14) 100%),
  linear-gradient(0deg, rgba(11,9,8,.6) 0%, transparent 36%) !important; }

/* Big serif hero headline (elegant reference style) */
.hero-title-upper { font-family: var(--serif); font-weight: 500; text-transform: none;
  font-size: clamp(3rem, 6.4vw, 5.6rem); line-height: 1.04; letter-spacing: -.01em; color: #FCF8F0;
  margin: 6px 0 0; text-shadow: 0 2px 40px rgba(0,0,0,.5); }
.hero-sub-plain { font-size: clamp(1.05rem,1.5vw,1.28rem); color: rgba(243,241,236,.9); line-height: 1.6;
  max-width: 46ch; margin: 20px 0 32px; }
@media (prefers-reduced-motion: no-preference) {
  .hero-title-upper { animation: fadeUp 1s .08s var(--ease); }
  .hero-sub-plain { animation: fadeUp 1s .2s var(--ease); }
}
.play-dot { font-size: 11px; }

/* ---------- Video tour (click-to-play facade) ---------- */
.video-frame { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: var(--noir); }
.video-poster { position: absolute; inset: 0; background-size: cover; background-position: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; cursor: pointer; }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,9,8,.5), rgba(11,9,8,.2)); transition: background .4s; }
.video-poster:hover::after { background: linear-gradient(0deg, rgba(11,9,8,.42), rgba(11,9,8,.12)); }
.video-play { position: relative; z-index: 2; width: 88px; height: 88px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--gold); color: #15120A; display: grid; place-items: center; font-size: 28px; padding-left: 6px;
  box-shadow: 0 16px 40px -10px rgba(194,162,78,.7); transition: transform .35s var(--ease), background .35s; }
.video-play::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); animation: pulseRing 2.4s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.video-poster:hover .video-play { transform: scale(1.08); background: var(--gold-light); }
.video-label { position: relative; z-index: 2; color: #fff; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: 12px; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* No-video state: keep the poster as an elegant clinic showcase, drop the dead play affordance */
.video-frame.no-video .video-poster { cursor: default; }
.video-frame.no-video .video-play { display: none; }
@media (prefers-reduced-motion: reduce) { .video-play::before { animation: none; } }

/* ---------- Clickable clinic photo (lightbox trigger) ---------- */
.clinic-peek { display: block; position: relative; width: 100%; padding: 0; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-lg); background: var(--noir);
  cursor: zoom-in; -webkit-tap-highlight-color: transparent; }
.clinic-peek-img { position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .8s var(--ease); }
.clinic-peek::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,9,8,.55), rgba(11,9,8,.12) 55%, rgba(11,9,8,.05)); transition: background .4s; }
.clinic-peek:hover .clinic-peek-img { transform: scale(1.05); }
.clinic-peek:hover::after { background: linear-gradient(0deg, rgba(11,9,8,.45), rgba(11,9,8,.06)); }
.clinic-peek:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.clinic-peek .video-label { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 3; text-align: center;
  color: #fff; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,.6); display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.clinic-peek .video-label::before { content: ""; width: 26px; height: 1px; background: var(--gold-light); }
.clinic-peek .video-label::after { content: ""; width: 26px; height: 1px; background: var(--gold-light); }
.clinic-peek-zoom { position: absolute; top: 18px; right: 18px; z-index: 3; width: 46px; height: 46px;
  display: grid; place-items: center; border-radius: 50%; color: #fff;
  background: rgba(11,9,8,.5); border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(6px);
  transition: background .35s var(--ease), transform .35s var(--ease), border-color .35s; }
.clinic-peek:hover .clinic-peek-zoom { background: var(--gold); color: #1A1407; border-color: var(--gold); transform: scale(1.08); }

/* ---------- Lightbox overlay ---------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 4vw, 48px); background: rgba(8,7,6,.92); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
  -webkit-tap-highlight-color: transparent; overscroll-behavior: contain; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 100%; max-height: 100%; width: auto; height: auto; border-radius: 8px;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,.8); transform: scale(.94); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease); object-fit: contain; }
.lightbox.open .lightbox-img { transform: scale(1); opacity: 1; }
.lightbox-close { position: absolute; top: clamp(12px,3vw,26px); right: clamp(12px,3vw,26px); z-index: 2;
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35); color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease); -webkit-tap-highlight-color: transparent; }
.lightbox-close:hover { background: var(--gold); color: #1A1407; border-color: var(--gold); transform: rotate(90deg); }
.lightbox-hint { position: absolute; bottom: clamp(12px,3vw,24px); left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox-img, .lightbox-close { transition: opacity .2s linear; }
  .lightbox-img { transform: none; }
}

/* Cinematic full-bleed video hero */
.hero-cine { min-height: 94vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; background: #1C140F; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 22s ease-in-out infinite alternate; will-change: transform; }
.hero-video.is-live { z-index: 2; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.16); } }

/* Animated warm aurora glow — the "alive" fallback behind any video */
.hero-aurora { position: absolute; inset: -25%; z-index: 1; opacity: 1;
  background:
    radial-gradient(40% 52% at 16% 28%, rgba(226,190,112,.85), transparent 60%),
    radial-gradient(44% 54% at 84% 24%, rgba(178,96,84,.78), transparent 62%),
    radial-gradient(52% 58% at 66% 76%, rgba(150,78,96,.72), transparent 60%),
    radial-gradient(50% 54% at 26% 84%, rgba(120,80,52,.80), transparent 62%),
    radial-gradient(60% 60% at 50% 50%, rgba(70,48,36,.5), transparent 70%);
  filter: blur(10px) saturate(1.15); animation: auroraDrift 16s ease-in-out infinite alternate; }
@keyframes auroraDrift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1.04); }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.12); }
  100% { transform: translate3d(-1%, 3%, 0) scale(1.06); }
}
.hero-grain { position: absolute; inset: 0; z-index: 2; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-overlay { position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,14,10,.30) 0%, rgba(20,14,10,.05) 38%, rgba(20,14,10,.42) 100%),
    linear-gradient(105deg, rgba(18,12,9,.66) 0%, rgba(18,12,9,.30) 42%, rgba(18,12,9,0) 72%); }

.hero-inner { position: relative; z-index: 5; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-block: clamp(80px,12vh,140px); }
.hero-copy { max-width: 640px; color: var(--cloud); }
.hero-cine .hero-kicker { color: var(--gold-light); }
.hero-title { color: #FCF8F0; font-size: clamp(2.8rem,6vw,5.2rem); line-height: 1.02;
  text-shadow: 0 2px 40px rgba(0,0,0,.45); }
.hero-title .it { color: var(--gold-light); font-style: italic; }
.hero-sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem,2.1vw,1.85rem);
  color: var(--gold-light); line-height: 1.25; margin: 16px 0 18px; }
.hero-cine .lead { color: rgba(243,241,236,.84); max-width: 48ch; margin-bottom: 32px; }
.hero-cine .hero-trust { border-top-color: rgba(255,255,255,.16); }
.hero-cine .hero-trust li { color: rgba(243,241,236,.8); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .hero-cine .hero-kicker { animation: fadeUp .9s var(--ease); }
  .hero-title { animation: fadeUp 1s .08s var(--ease); }
  .hero-sub { animation: fadeUp 1s .16s var(--ease); }
  .hero-cine .lead { animation: fadeUp 1s .24s var(--ease); }
  .hero-cine .hero-actions { animation: fadeUp 1s .32s var(--ease); }
  .hero-cine .hero-trust { animation: fadeUp 1s .4s var(--ease); }
}

/* Gold shimmer sweep on the kicker */
.shimmer { background: linear-gradient(100deg, var(--gold) 30%, #FFF4D6 50%, var(--gold) 70%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmerMove 4.5s linear infinite; }
@keyframes shimmerMove { to { background-position: 200% center; } }

/* Floating B&A teaser */
.ba-float { flex-shrink: 0; align-self: flex-end; backdrop-filter: blur(4px);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.7); }
@media (prefers-reduced-motion: no-preference) {
  .ba-float { animation: floaty 6s ease-in-out 1.5s infinite; }
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Glass button for hero */
.btn-glass { background: rgba(255,255,255,.08); color: var(--cloud); border-color: rgba(255,255,255,.32); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }

/* Button sheen sweep */
.sheen { position: relative; overflow: hidden; }
.sheen::after { content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-20deg); transition: left .7s var(--ease); }
.sheen:hover::after { left: 140%; }

/* Scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(243,241,236,.7);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 700; }
.scroll-cue .sc-line { width: 1px; height: 46px; background: linear-gradient(var(--gold-light), transparent); position: relative; overflow: hidden; }
.scroll-cue .sc-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-light); animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0% { top: -50%; } 60%,100% { top: 100%; } }

.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; min-height: 84vh; gap: clamp(0px,3vw,40px); align-items: center; padding: clamp(28px,4vw,56px) 0; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: grid; grid-template-columns: repeat(2, auto); justify-content: start; gap: 14px 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-trust li { list-style: none; font-size: 13.5px; color: var(--cloud-soft); display: flex; align-items: center; gap: 9px; font-weight: 600; }
.hero-trust ul { display: contents; }
.tick { color: var(--gold-light); flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero-video, .hero-aurora, .ba-float, .shimmer, .scroll-cue .sc-line::after { animation: none !important; }
}

/* ---------- Authority bar ---------- */
.authbar { background: var(--charcoal); color: var(--cloud); border-block: 1px solid rgba(255,255,255,.08); }
.authbar .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding-block: 20px; }
.authbar .ab { display: flex; align-items: center; gap: 11px; font-size: 13.5px; letter-spacing: .04em; font-weight: 600; }
.authbar .ab svg { color: var(--sage); flex-shrink: 0; }

/* Rotating review ticker (replaces feature words, same bar bg/font) */
.review-ticker { overflow: hidden; width: 100%; padding-block: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ticker-track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform;
  animation: tickerScroll 70s linear infinite; }
.review-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: baseline; gap: 10px; padding: 0 32px; font-size: 13.5px;
  letter-spacing: .02em; font-weight: 600; color: var(--cloud); }
.ticker-item + .ticker-item { border-left: 1px solid rgba(227,200,128,.28); }
.ticker-item .ti-stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; flex-shrink: 0; }
.ticker-item .ti-quote { color: rgba(247,245,239,.82); font-weight: 500; }
.ticker-item .ti-name { color: var(--gold-light); font-weight: 700; white-space: nowrap; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: nowrap; transform: none; }
  .review-ticker { mask-image: none; -webkit-mask-image: none; }
}

/* ---------- Section heading block ---------- */
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline: auto; }

/* ---------- Category grid ---------- */
/* ---------- Category grid (image-led premium cards) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 26px; background: transparent; border: 0; }
.cat-card {
  background: var(--paper); padding: 0; position: relative; border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 0;
  border: 1px solid var(--line); box-shadow: 0 14px 36px -26px rgba(0,0,0,.4);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.cat-card::before { content: ""; position: absolute; inset: 0; border-radius: 16px; border: 1.5px solid rgba(214,178,112,0); z-index: 4; pointer-events: none; transition: border-color .5s; width: auto; background: none; transform: none; }
.cat-card:hover { transform: translateY(-7px); box-shadow: 0 34px 60px -32px rgba(0,0,0,.45); border-color: transparent; }
.cat-card:hover::before { border-color: rgba(214,178,112,.6); }
.cat-img { position: relative; height: 220px; overflow: hidden; background: var(--img) center/cover no-repeat var(--noir); }
.cat-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,12,10,0) 55%, rgba(16,12,10,.35) 100%); }
.cat-card .cat-img { transition: none; }
.cat-card:hover .cat-img { background-size: 108%; }
.cat-img { transition: background-size 1.1s var(--ease); }
.cat-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.cat-card h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--emerald); margin-bottom: 10px; }
.cat-card p { font-size: 14px; color: var(--ink-soft); flex-grow: 1; line-height: 1.6; margin-bottom: 18px; }
.cat-card .link-arrow { margin-top: auto; }

/* ---------- Featured treatments ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 26px; }
.feat-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat-card image-slot, .feat-card .img-fill { width: 100%; height: 215px; }
.feat-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.feat-tag { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.feat-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--emerald); margin-bottom: 10px; }
.feat-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.feat-best { font-size: 13px; color: var(--ink); margin-bottom: 18px; padding: 12px 14px; background: var(--ivory-deep); border-radius: 3px; }
.feat-best b { color: var(--emerald); font-weight: 700; letter-spacing: .02em; }
.feat-body .link-arrow { margin-top: auto; }

/* ---------- Why-choose / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: center; }
.split.media-left { direction: rtl; }
.split.media-left > * { direction: ltr; }
.feature-list { display: grid; gap: 22px; margin-top: 10px; }
.feature-row { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; }
.feature-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--sage-soft); border: 1px solid var(--sage); color: var(--sage-deep); display: grid; place-items: center; }
.feature-row h4 { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--emerald); margin-bottom: 4px; letter-spacing: .01em; }
.feature-row p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.media-frame { position: relative; }
.media-frame image-slot { width: 100%; height: 100%; min-height: 420px; }
.media-frame .badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--green); color: #EAF1ED;
  padding: 22px 26px; border-radius: 3px; box-shadow: var(--shadow-md); max-width: 230px;
}
.media-frame .badge .num { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--sage); }
.media-frame .badge .lbl { font-size: 12.5px; letter-spacing: .04em; color: var(--cloud-soft); margin-top: 6px; }

/* ---------- iPhone-framed video (intro section) ---------- */
.media-frame-phone { display: flex; justify-content: center; }
.iphone-wrap { position: relative; display: inline-block; }
.iphone { position: relative; width: clamp(240px, 26vw, 320px); aspect-ratio: 9 / 19.5;
  background: #0B0B0D; border-radius: 46px; padding: 11px;
  box-shadow: 0 0 0 2px #2A2A2E, 0 26px 60px -22px rgba(0,0,0,.7), inset 0 0 3px rgba(255,255,255,.18); }
.iphone::before { content: ""; position: absolute; inset: 3px; border-radius: 43px; border: 1px solid rgba(255,255,255,.06); pointer-events: none; }
.iphone-screen { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: #000; }
.iphone-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.iphone-island { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 92px; height: 27px; background: #000; border-radius: 16px; }
.media-frame-phone .badge { position: absolute; bottom: 32px; left: -30px; z-index: 5; }
@media (max-width: 980px) {
  .media-frame-phone { margin-top: 8px; }
  .media-frame-phone .badge { position: static; margin: 18px auto 0; }
}

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(168,184,160,.5); }
.stat { background: var(--espresso); padding: 36px 20px; text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.2rem); color: var(--sage); line-height: 1; }
.stat .l { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--cloud-soft); margin-top: 12px; }

/* ---------- Before/After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 22px; }
.ba-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); position: relative; }
.ba-pair image-slot { width: 100%; height: 230px; }
.ba-pair .tagb { position: absolute; top: 12px; padding: 4px 12px; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: rgba(30,36,33,.78); color: #F4EFE3; border-radius: 2px; }
.ba-pair .tagb.before { left: 12px; }
.ba-pair .tagb.after { right: 12px; background: var(--gold); color: #2A2014; }
.ba-card .ba-cap { padding: 18px 22px; font-size: 14px; color: var(--ink-soft); }
.ba-card .ba-cap b { color: var(--emerald); display: block; font-family: var(--serif); font-size: 1.15rem; margin-bottom: 2px; }

/* ---------- Consultation form ---------- */
.consult { background: var(--charcoal); position: relative; overflow: hidden; }
.consult::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 18%, rgba(194,162,78,.16), transparent 55%); pointer-events: none; }
.consult-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px,6vw,84px); align-items: center; position: relative; }
.consult-copy { color: var(--cloud-soft); }
.consult-copy h2 { color: var(--cloud); }
.consult-copy .lead { color: var(--cloud-soft); }
.consult-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.consult-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--cloud); font-weight: 500; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: clamp(28px,3vw,40px); box-shadow: var(--shadow-lg); }
.form-card h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--emerald); margin-bottom: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 3px; background: var(--paper);
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,138,68,.16); }
.field textarea { resize: vertical; min-height: 92px; }
.consent { grid-column: 1/-1; display: flex; gap: 11px; align-items: flex-start; font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 24px; }
.testi-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; }
.testi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.testi-top .stars { margin-bottom: 0; }
.testi-top .g-mark { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--sans); font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0;
  background: conic-gradient(from -45deg, #EA4335 0 25%, #FBBC05 0 50%, #34A853 0 75%, #4285F4 0 100%);
  text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.testi-card blockquote { font-family: var(--serif); font-size: 1.16rem; line-height: 1.55; color: var(--ink); margin: 0 0 24px; font-weight: 500; }
.testi-meta .tg { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .02em; }
.testi-meta { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: #2A2014; display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testi-meta .nm { font-weight: 700; font-size: 14.5px; color: var(--emerald); }
.testi-meta .tg { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 26px; }
.blog-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card image-slot { width: 100%; height: 190px; }
.blog-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-date { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.blog-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--emerald); line-height: 1.2; margin-bottom: 12px; }
.blog-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.blog-body .link-arrow { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 4px; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--emerald); }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .35s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--gold); transition: opacity .3s; }
.faq-q .pm::before { left: 0; right: 0; top: 12px; height: 2px; }
.faq-q .pm::after { top: 0; bottom: 0; left: 12px; width: 2px; }
.faq-item.open .pm::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; max-width: 70ch; }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,5vw,72px); align-items: stretch; }
.loc-info dl { display: grid; gap: 22px; margin: 28px 0 0; }
.loc-info .row { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.loc-info .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--ivory-deep); color: var(--emerald); display: grid; place-items: center; }
.loc-info dt { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.loc-info dd { margin: 0; font-size: 16px; color: var(--ink); }
.loc-map { border-radius: 6px; overflow: hidden; min-height: 420px; border: 1px solid var(--line); }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.areas span { font-size: 13px; padding: 7px 15px; border: 1px solid var(--line); border-radius: 40px; color: var(--ink-soft); background: var(--paper); }

/* ---------- Financing strip ---------- */
.fin-strip { background: var(--sand); border-block: 1px solid var(--line); }
.fin-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: 40px; }
.fin-strip .fin-txt { max-width: 640px; }
.fin-strip h3 { font-family: var(--serif); font-size: clamp(1.5rem,2.4vw,2rem); font-weight: 600; color: var(--emerald); margin-bottom: 6px; }
.fin-strip p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--noir); color: #ACA9A2; font-size: 14.5px; border-top: 1px solid rgba(255,255,255,.07); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-block: clamp(56px,7vw,84px); }
.foot-brand .brand-name { color: #FBF7EE; }
.foot-brand p { margin: 20px 0 22px; max-width: 34ch; line-height: 1.7; color: #9C9A95; }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(201,168,106,.3); display: grid; place-items: center; color: #C9A86A; transition: all .3s; }
.foot-social a:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
.foot-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col a { color: #ACA9A2; transition: color .25s; font-size: 14.5px; }
.foot-col a:hover { color: var(--cloud); }
.foot-contact .row { display: flex; gap: 11px; margin-bottom: 14px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.foot-contact .row svg { color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 12.5px; color: #87857F; }
.foot-bottom a { color: #87857F; }
.foot-bottom a:hover { color: var(--gold-light); }
.foot-disclaimer { font-size: 12px; color: #77756F; padding-bottom: 26px; max-width: 80ch; line-height: 1.6; }

/* ---------- Service page layout ---------- */
.svc-grid { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(36px,5vw,72px); align-items: start; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } .svc-grid aside { position: static !important; } }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 13px; color: var(--ink-soft); padding-block: 18px; display: flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.crumb a:hover { color: var(--gold); }
.crumb .sep { color: var(--line); }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--noir); color: var(--cloud); padding-block: clamp(48px,7vw,96px); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -8%; top: -40%; width: 46%; height: 180%; background: radial-gradient(circle, rgba(194,162,78,.14), transparent 62%); }
.page-hero h1 { color: var(--cloud); max-width: 18ch; }
.page-hero .lead { color: var(--cloud-soft); max-width: 56ch; margin-top: 18px; }
.page-hero .crumb { color: var(--cloud-soft); padding: 0 0 22px; }
.page-hero .crumb a { color: var(--cloud-soft); }
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero .crumb .sep { color: rgba(255,255,255,.25); }

/* ---------- Sticky mobile book bar ---------- */
.mobile-bar { display: none; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* ---------- Prose (article/body pages) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-family: var(--serif); font-size: clamp(1.7rem,3vw,2.3rem); font-weight: 600; color: var(--emerald); margin: 1.8em 0 .5em; }
.prose h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--emerald); margin: 1.4em 0 .4em; }
.prose p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.78; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 12px; margin: 1em 0 1.6em; }
.prose ul li { display: flex; gap: 12px; font-size: 16px; color: var(--ink-soft); }
.prose a.inline { color: var(--emerald); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose a.inline:hover { color: var(--gold); }

/* ---------- New-You-style premium layout additions ---------- */
.btn-pill { border-radius: 999px; padding-left: 36px; padding-right: 36px; }
.hero-kicker { font-family: var(--sans); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-size: clamp(14px,1.5vw,18px); margin: 0 0 10px; display: flex; align-items: center; gap: 12px; }
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); }

.ba-teaser { display: grid; grid-template-columns: 1fr 1fr 1.25fr; max-width: 470px; margin-top: 34px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: var(--paper); }
.ba-teaser image-slot { height: 116px; width: 100%; }
.ba-teaser .ba-cta { background: linear-gradient(140deg, var(--gold) 0%, var(--gold-light) 100%); color: #2A2014; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 14px; transition: filter .3s; }
.ba-teaser .ba-cta:hover { filter: brightness(1.05); }
.ba-teaser .ba-cta b { font-family: var(--serif); font-size: 1.2rem; line-height: 1.1; }
.ba-teaser .ba-cta span { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; margin-top: 5px; font-weight: 700; }

/* Signature 4-up — luxe photo cards */
.sig-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.sig-card { position: relative; border-radius: 16px; overflow: hidden; background: var(--noir); min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate;
  box-shadow: 0 18px 40px -26px rgba(0,0,0,.5); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.sig-card::after { content: ""; position: absolute; inset: 0; z-index: 3; border-radius: 16px; border: 1px solid rgba(214,178,112,0); transition: border-color .5s; pointer-events: none; }
.sig-card:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -30px rgba(0,0,0,.6); }
.sig-card:hover::after { border-color: rgba(214,178,112,.55); }
.sig-img { position: absolute; inset: 0; z-index: 0; background: var(--img) center/cover no-repeat; transition: transform 1.1s var(--ease); }
.sig-card:hover .sig-img { transform: scale(1.09); }
.sig-card::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,12,10,.10) 0%, rgba(16,12,10,.30) 42%, rgba(13,10,9,.88) 100%); transition: background .5s; }
.sig-card:hover::before { background: linear-gradient(180deg, rgba(16,12,10,.18) 0%, rgba(16,12,10,.42) 42%, rgba(13,10,9,.92) 100%); }
.sig-body { position: relative; z-index: 2; padding: 28px 26px 30px; text-align: left; }
.sig-kick { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.sig-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #FCF8F0; margin-bottom: 10px; line-height: 1.12; }
.sig-card p { font-size: 13.5px; color: rgba(243,241,236,.82); margin-bottom: 18px; line-height: 1.55; }
.sig-link { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); transition: gap .35s var(--ease); white-space: nowrap; }
.sig-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.sig-card:hover .sig-link { gap: 14px; }
.sig-card:hover .sig-link svg { transform: translateX(4px); }

/* Press strip — auto-scrolling marquee */
.press { background: var(--paper); border-block: 1px solid var(--line); overflow: hidden; }
.press .wrap { padding-block: 40px; }
.press .pl { text-align: center; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 28px; }
.press-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 50px; }
.press-row image-slot { height: 48px; width: 132px; filter: grayscale(1); opacity: .55; transition: opacity .3s, filter .3s; }
.press-row image-slot:hover { filter: grayscale(0); opacity: 1; }

/* Awards band (espresso) */
.awards { background: var(--espresso); color: #E7D6BC; text-align: center; position: relative; overflow: hidden; }
.awards::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(214,178,122,.14), transparent 60%); pointer-events: none; }
.awards .eyebrow { color: var(--gold-light); justify-content: center; }
.awards h2 { color: #FBF3E4; position: relative; }
.award-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 36px; max-width: 920px; margin: 48px auto 0; position: relative; }
.award { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.laurel { width: 92px; height: 92px; color: var(--gold-light); }
.award b { font-family: var(--serif); font-size: 1.35rem; color: #FBF3E4; line-height: 1.2; }
.award span { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: #C9B89C; }

/* ---------- Premium micro-effects ---------- */
.cat-card image-slot, .feat-card image-slot, .blog-card image-slot, .ba-pair image-slot, .sig-card image-slot { overflow: hidden; }
.feat-card image-slot img, .blog-card image-slot img, .cat-card image-slot img { transition: transform .8s var(--ease); }
.feat-card:hover image-slot img, .blog-card:hover image-slot img { transform: scale(1.07); }
.sig-card:hover .cat-ic { transform: translateY(-4px) scale(1.06); }
.cat-ic { transition: transform .5s var(--ease); }
.cat-card:hover .cat-ic { transform: translateY(-4px) scale(1.06); }
.btn { position: relative; }
.testi-card, .ba-card, .feat-card, .blog-card, .sig-card, .cat-card { will-change: transform; }

/* ---------- Service-page experience gallery ---------- */
.exp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.exp-img { position: relative; height: 380px; border-radius: 14px; overflow: hidden; background: var(--img) center/cover no-repeat var(--noir); box-shadow: 0 18px 44px -28px rgba(0,0,0,.45); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.exp-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,12,10,0) 48%, rgba(13,10,9,.82) 100%); transition: background .5s; }
.exp-img:hover { transform: translateY(-6px); box-shadow: 0 36px 64px -32px rgba(0,0,0,.5); background-size: 108%; }
.exp-img:nth-child(2) { transform: translateY(30px); }
.exp-img:nth-child(2):hover { transform: translateY(24px); }
.exp-cap { position: absolute; left: 22px; bottom: 20px; z-index: 2; color: #FCF8F0; font-family: var(--serif); font-size: 1.28rem; font-weight: 600; line-height: 1.1; }
.exp-cap small { display: block; font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
@media (max-width: 760px) { .exp-gallery { grid-template-columns: 1fr; } .exp-img { height: 260px; } .exp-img:nth-child(2) { transform: none; } .exp-img:nth-child(2):hover { transform: translateY(-6px); } }

/* ---------- Treatments page: editorial category sections ---------- */
.tx-section { padding-block: clamp(56px,8vw,110px); }
.tx-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(34px,5vw,72px); align-items: start; }
.tx-aside { position: sticky; top: 150px; }
.tx-aside .eyebrow { color: var(--gold); }
.tx-aside h2 { margin-bottom: 14px; }
.tx-aside .lead { color: var(--ink-soft); }
.tx-img { margin-top: 26px; border-radius: 18px; overflow: hidden; aspect-ratio: 5/6; position: relative; background: var(--img) center/cover no-repeat var(--noir); box-shadow: var(--shadow-lg); }
.tx-img::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(195,162,76,.4); border-radius: 18px; }
.tx-img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,12,10,.5)); z-index: 1; }
.tx-aside .btn { margin-top: 24px; }
.bg-paper .tx-img, .bg-sand .tx-img { box-shadow: var(--shadow-md); }

.tx-cards { display: grid; gap: 16px; }
[data-reveal].tx-cards { opacity: 1 !important; transform: none !important; }
.tx-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  padding: 26px 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); overflow: hidden;
  text-decoration: none; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  opacity: 0; transform: translateY(22px); }
.tx-cards.in .tx-card { opacity: 1; transform: none; transition: transform .6s var(--ease), box-shadow .45s var(--ease), border-color .45s, opacity .6s var(--ease); }
.tx-cards.in .tx-card:nth-child(1){transition-delay:.04s}
.tx-cards.in .tx-card:nth-child(2){transition-delay:.10s}
.tx-cards.in .tx-card:nth-child(3){transition-delay:.16s}
.tx-cards.in .tx-card:nth-child(4){transition-delay:.22s}
.tx-cards.in .tx-card:nth-child(5){transition-delay:.28s}
.tx-cards.in .tx-card:nth-child(6){transition-delay:.34s}
.tx-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--gold), var(--gold-light)); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.tx-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.tx-card:hover::before { transform: scaleY(1); }
.tx-n { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--gold); line-height: 1; min-width: 30px; }
.tx-c-body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--emerald); margin: 0 0 5px; transition: color .3s; }
.tx-c-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.tx-ar { color: var(--gold); opacity: 0; transform: translateX(-6px); transition: opacity .35s var(--ease), transform .35s var(--ease); flex-shrink: 0; }
.tx-card:hover .tx-ar { opacity: 1; transform: none; }
.tx-card:hover .tx-c-body h3 { color: var(--gold-deep, #9C7F30); }
.tx-tagline { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: inline-block; margin-bottom: 6px; }
@media (max-width: 880px) {
  .tx-layout { grid-template-columns: 1fr; }
  .tx-aside { position: static; }
  .tx-img { aspect-ratio: 16/9; max-height: 280px; }
}

/* ---------- Clinic hours card (near reviews) ---------- */
.hours-card { max-width: 540px; margin: 56px auto 0; background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 34px 40px; box-shadow: var(--shadow-md); text-align: center; position: relative; overflow: hidden; }
.hours-card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hours-head { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 22px; }
.hours-ic { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold-deep, #9C7F30); }
.hours-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--emerald); white-space: nowrap; }
.hours-rows { display: grid; gap: 12px; max-width: 420px; margin: 0 auto; }
.hours-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; }
.hours-row .hr-day { text-align: right; font-weight: 600; font-size: 15px; color: var(--ink); }
.hours-row .hr-time { text-align: left; font-size: 15px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-row .hr-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.hours-cta { display: inline-block; margin-top: 24px; font-family: var(--sans); font-weight: 700;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep, #9C7F30); transition: gap .3s, color .3s; }
.hours-cta:hover { color: var(--gold); }
@media (max-width: 480px) {
  .hours-card { padding: 28px 24px; }
  .hours-row { grid-template-columns: 1fr; gap: 2px; }
  .hours-row .hr-day, .hours-row .hr-time { text-align: center; }
  .hours-row .hr-dot { display: none; }
  .hours-row + .hours-row { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
}

/* ---------- Google rating badge ---------- */
.rating-badge { display: inline-flex; align-items: center; gap: 18px; margin: 26px auto 0; padding: 14px 26px 14px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 60px; box-shadow: var(--shadow-sm); }
.rating-badge .rb-score { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--emerald); line-height: 1; }
.rating-badge .rb-right { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.rating-badge .stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.rating-badge .rb-sub { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .02em; }

/* ---------- Interactive layer: glow + scroll progress ---------- */
.glow-host { position: relative; }
.glow-host > * { position: relative; z-index: 1; }
.glow-host::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(340px circle at var(--gx,50%) var(--gy,50%), rgba(227,200,128,.16), transparent 70%);
  opacity: var(--go, 0); transition: opacity .4s var(--ease); mix-blend-mode: screen;
}
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .12s linear;
}

/* ---------- Team (About) ---------- */
.team-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,64px); align-items: center; margin-top: 52px; }
.team-portrait { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; background: var(--noir); box-shadow: var(--shadow-lg); }
.team-portrait image-slot { width: 100%; height: 100%; }
.team-portrait::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(195,162,76,.35); border-radius: 18px; pointer-events: none; }
.team-portrait .role-pill { position: absolute; left: 20px; bottom: 20px; z-index: 3; background: var(--gold); color: #1A1407; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; padding: 8px 16px; border-radius: 30px; }
.team-feat-body .eyebrow { margin-bottom: 12px; }
.team-feat-body h3 { font-family: var(--serif); font-size: clamp(2rem,3.4vw,2.8rem); font-weight: 600; color: var(--emerald); line-height: 1.05; margin-bottom: 6px; }
.team-feat-body .t-role { font-family: var(--sans); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.team-feat-body p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.72; margin-bottom: 14px; }
.cred-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.cred-pills span { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--emerald); background: var(--gold-soft); border: 1px solid var(--gold); padding: 7px 14px; border-radius: 30px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.team-card { position: relative; border-radius: 16px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); display: flex; flex-direction: column; }
.team-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.team-photo { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--ivory-deep); }
.team-photo image-slot { width: 100%; height: 100%; }
.team-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(13,12,10,.5)); opacity: 0; transition: opacity .4s; }
.team-card:hover .team-photo::after { opacity: 1; }
.team-body { padding: 22px 22px 26px; text-align: center; }
.team-body .t-tag { font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.team-body h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--emerald); margin-bottom: 10px; }
.team-body p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .team-feature { grid-template-columns: 1fr; } .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Service detail: process / glance / timeline / benefits ---------- */
.proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 26px; margin-top: 48px; counter-reset: proc; }
.proc-step { position: relative; padding: 30px 26px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.proc-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.proc-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--gold); line-height: 1; display: block; margin-bottom: 14px; }
.proc-step h4 { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--emerald); margin-bottom: 8px; letter-spacing: .01em; }
.proc-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.glance { background: var(--noir); color: var(--cloud); position: relative; overflow: hidden; }
.glance::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(195,162,76,.14), transparent 55%); pointer-events: none; }
.glance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 2px; position: relative; }
.gl { padding: 30px 22px; text-align: center; }
.gl-ic { width: 30px; height: 30px; color: var(--gold-light); margin: 0 auto 14px; display: block; }
.gl-l { display: block; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--cloud-soft); margin-bottom: 8px; }
.gl-v { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #FCF8F0; line-height: 1.1; }

.tl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.tl-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; position: relative; overflow: hidden; }
.tl-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.tl-tag { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); background: var(--gold-soft); padding: 5px 12px; border-radius: 30px; margin-bottom: 16px; }
.tl-card h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--emerald); margin-bottom: 8px; }
.tl-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.62; margin: 0; }

.benefit-2col { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,5vw,72px); align-items: center; }
.benefit-list { display: grid; gap: 16px; margin-top: 22px; }
.benefit-list .bi { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
.benefit-list .bi svg { width: 26px; height: 26px; color: var(--gold); margin-top: 1px; }
.benefit-list .bi b { font-family: var(--sans); font-weight: 700; font-size: 15px; color: var(--emerald); display: block; margin-bottom: 2px; }
.benefit-list .bi span { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.benefit-media { position: relative; border-radius: 16px; overflow: hidden; min-height: 460px; background: var(--img) center/cover no-repeat var(--noir); box-shadow: var(--shadow-lg); }
.benefit-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(195,162,76,.3); border-radius: 16px; }

.candidate { background: var(--sand); border-radius: 16px; padding: clamp(28px,4vw,48px); display: grid; grid-template-columns: 1fr 1fr; gap: 30px 48px; }
.candidate .cand-col h4 { font-family: var(--serif); font-size: 1.35rem; color: var(--emerald); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.candidate .cand-col h4 svg { width: 22px; height: 22px; color: var(--gold); }
.candidate ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.candidate li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; padding-left: 22px; position: relative; }
.candidate li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.candidate .cand-col.no li::before { background: var(--line); }

@media (max-width: 860px) {
  .tl-grid { grid-template-columns: 1fr; }
  .benefit-2col { grid-template-columns: 1fr; }
  .benefit-media { min-height: 300px; }
  .candidate { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-cine { min-height: 0; }
  .hero-inner { flex-direction: column; align-items: flex-start; padding-block: clamp(64px,12vh,110px); }
  .ba-float { align-self: stretch; max-width: 100%; margin-top: 8px; }
  .scroll-cue { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .split.media-left { direction: ltr; }
  .split, .consult-grid, .loc-grid { grid-template-columns: 1fr; }
  .media-frame .badge { position: static; margin-top: 18px; max-width: none; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .sig-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .award-grid { grid-template-columns: 1fr; gap: 30px; max-width: 360px; }
}
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 84px; left: 0; right: 0; background: var(--charcoal);
    padding: 18px var(--pad) 26px; border-bottom: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links > a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .nav-cta .btn-emerald { display: none; }
  .nav-phone { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; }
  .mobile-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 -6px 24px -10px rgba(16,61,52,.3);
  }
  .mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    padding: 11px 6px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
  .mobile-bar a.primary { background: var(--gold); color: #2A2014; }
  .mobile-bar a + a { border-left: 1px solid var(--line); }
  body { padding-bottom: 64px; }
  .ba-pair image-slot { height: 160px; }
}


/* ===================================================================
   INTERACTIVE / PREMIUM LAYER — mega-menu, image tiles, service hero
   =================================================================== */

/* ---- Mega-menu dropdown ---- */
.nav-item { position: relative; }
.nav-item.has-mega > .mega-trigger { display: inline-flex; align-items: center; gap: 6px; }
.mega-trigger .chev { transition: transform .35s var(--ease); }
.nav-item.has-mega:hover .mega-trigger .chev,
.nav-item.has-mega.open .mega-trigger .chev { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 1px); left: 50%; transform: translate(-50%, 10px);
  width: min(1000px, calc(100vw - 40px));
  background: linear-gradient(180deg, #16140F 0%, #0B0907 100%);
  border: 1px solid rgba(195,162,76,.26); border-radius: 12px;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.8);
  padding: 22px; z-index: 80;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 20px;
}
.nav-item.has-mega:hover .mega,
.nav-item.has-mega.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-col h5 { font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.09); }
.mega-col a { display: flex; align-items: center; gap: 8px; color: #CBC4B5; font-size: 12.5px; font-weight: 500; line-height: 1.15; padding: 5px 8px; margin: 0 -8px; border-radius: 7px; transition: background .2s, color .2s, padding .2s; }
.mega-col a svg { width: 11px; height: 11px; color: var(--gold); opacity: .85; flex-shrink: 0; transition: transform .25s; }
.mega-col a:hover { background: rgba(214,178,112,.12); color: #fff; padding-left: 12px; }
.mega-col a:hover svg { transform: translateX(2px); }
.mega-col + .mega-col { border-left: 1px solid rgba(255,255,255,.05); padding-left: 22px; }
.mega-foot { grid-column: 1 / -1; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(214,178,112,.16);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.mega-foot span { font-size: 12.5px; color: #B9B2A4; }
.mega-foot span b { color: var(--gold-light); font-weight: 700; }
.mega-foot .btn { padding: 11px 22px; font-size: 12px; }

/* ---- Premium designed image tile (duotone bg + icon + label) ---- */
.rx-media { position: relative; overflow: hidden; height: 215px; background: var(--noir); }
.rx-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .9s var(--ease); }
.rx-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,10,7,.12) 0%, rgba(15,10,7,.40) 55%, rgba(15,10,7,.74) 100%); }
.feat-card:hover .rx-bg, .blog-card:hover .rx-bg, .ba-card:hover .rx-bg { transform: scale(1.08); }
.rx-ic { position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; color: var(--gold-light); z-index: 2; opacity: .92; filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)); transition: transform .5s var(--ease); }
.feat-card:hover .rx-ic, .blog-card:hover .rx-ic { transform: translate(-50%,-58%) scale(1.08); }
.rx-tag { position: absolute; left: 18px; bottom: 14px; z-index: 2; color: #fff; font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: .01em; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.rx-tag small { display: block; font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 3px; }

/* media-frame & hero use bg images now */
.img-cover { position: absolute; inset: 0; background-size: cover; background-position: center; }
.media-frame .img-photo { width: 100%; min-height: 440px; border-radius: 10px; background-size: cover; background-position: center; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.media-frame .img-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(15,10,7,0) 40%, rgba(15,10,7,.4)); }

/* ---- Service-page hero with image ---- */
.svc-hero { position: relative; overflow: hidden; background: var(--noir); color: var(--cloud); }
.svc-hero .svc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 26s ease-in-out infinite alternate; }
.svc-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,9,8,.95) 0%, rgba(11,9,8,.78) 46%, rgba(11,9,8,.38) 100%), linear-gradient(0deg, rgba(11,9,8,.55) 0%, transparent 30%); }
.svc-hero .wrap { position: relative; z-index: 2; padding-block: clamp(56px,9vw,120px); }
.svc-hero .crumb, .svc-hero .crumb a { color: rgba(243,241,236,.62); }
.svc-hero .crumb .sep { color: rgba(255,255,255,.25); }
.svc-hero h1 { color: #FCF8F0; max-width: 16ch; }
.svc-hero .lead { color: rgba(243,241,236,.82); max-width: 54ch; margin-top: 16px; }
.svc-hero .hero-kicker { color: var(--gold-light); }

/* ---- Trust badges row ---- */
.trust-badges { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; }
.trust-badges .tbge { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.trust-badges .tbge svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.trust-badges.on-dark .tbge { color: var(--cloud-soft); }
.trust-badges.on-dark .tbge svg { color: var(--gold-light); }

/* ---- Counters ---- */
.counter { font-variant-numeric: tabular-nums; }

/* ---- Back to top ---- */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 65; width: 50px; height: 50px; border-radius: 50%;
  background: var(--noir); color: var(--gold-light); border: 1px solid rgba(214,178,112,.4);
  display: grid; place-items: center; cursor: pointer; opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s; box-shadow: var(--shadow-md); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: #15120A; }
@media (max-width: 720px){ .to-top { bottom: 78px; right: 16px; } }

/* ---- Related services strip ---- */
.rel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rel-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); transition: border-color .3s, transform .3s, box-shadow .3s; }
.rel-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.rel-card .ric { width: 40px; height: 40px; border-radius: 10px; background: var(--ivory-deep); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.rel-card b { font-family: var(--serif); font-size: 1.08rem; color: var(--emerald); font-weight: 600; }
.rel-card span { display: block; font-size: 12px; color: var(--ink-soft); }

/* ---- Mega-menu responsive ---- */
@media (max-width: 1000px) {
  .mega { display: none !important; }
  .mega-trigger .chev { display: none; }
  .nav-item.has-mega { width: 100%; }
}
@media (max-width: 980px) {
  .rel-grid { grid-template-columns: 1fr; }
  .media-frame .img-photo { min-height: 300px; }
}

.rx-cell { width: 100%; background-size: cover; background-position: center; transition: transform .9s var(--ease); }
.ba-card:hover .rx-cell { transform: scale(1.06); }
.ba-pair { overflow: hidden; }
.ba-pair .tagb { z-index: 3; }
.ba-teaser { overflow: hidden; }


/* ---- Spec-page additions (v13) ---- */
.hero-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; gap: 28px; } }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid rgba(195,162,76,.45); border-radius: 999px; font-size: 14px; font-weight: 600; background: var(--paper); }
.tag-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 900px) { .ben-grid { grid-template-columns: 1fr; } }
.ben-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; }
.ben-card h4 { margin: 14px 0 8px; font-size: 17px; }
.ben-card p { margin: 0; font-size: 14.5px; line-height: 1.55; opacity: .8; }
.ben-ic { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: rgba(195,162,76,.14); color: var(--gold); }
.ben-ic svg { width: 22px; height: 22px; }
.spec-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; margin-top: 40px; }
@media (max-width: 900px) { .spec-wrap { grid-template-columns: 1fr; } }
.spec-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.spec-table tr + tr th, .spec-table tr + tr td { border-top: 1px solid var(--line); }
.spec-table th { text-align: left; padding: 14px 18px; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); width: 42%; vertical-align: top; }
.spec-table td { padding: 14px 18px; font-weight: 600; font-size: 15px; }
.offer-card { background: linear-gradient(180deg, #16140F, #0B0907); color: #FCF8F0; border: 1px solid rgba(195,162,76,.4); border-radius: 16px; padding: 30px; }
.offer-card h3 { color: #FCF8F0; margin: 8px 0 10px; }
.offer-card p { color: rgba(252,248,240,.75); font-size: 15px; line-height: 1.6; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-item figcaption { margin-top: 10px; font-size: 14px; font-weight: 600; text-align: center; opacity: .75; }
.ghl-embed { margin: 34px auto 0; max-width: 640px; border: 2px dashed rgba(195,162,76,.5); border-radius: 14px; padding: 34px 24px; color: rgba(252,248,240,.65); font-size: 14px; text-align: center; }
.consult-strip { background: var(--gold); }
.consult-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; }
.consult-strip h3 { margin: 0; color: #1d1a14; font-size: clamp(18px, 2.4vw, 24px); }
.consult-strip p { margin: 4px 0 0; color: rgba(29,26,20,.75); font-size: 15px; }


/* ---- Financing example-payment cards ---- */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 900px) { .pay-grid { grid-template-columns: 1fr; } }
.pay-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; }
.pay-label { font-size: 14px; font-weight: 600; opacity: .7; }
.pay-amt { font-family: var(--font-display, serif); font-size: 30px; font-weight: 600; color: var(--noir); }
.pay-mo { font-size: 15px; opacity: .85; }
.pay-mo b { color: var(--gold); font-size: 18px; }
