/* =========================================================================
   NATABEL PRISTINE CLEANING
   Premium design system: noir · ivory · champagne gold
   Type: Fraunces (variable display serif) + Plus Jakarta Sans (UI)
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Noir — rich black (dark sections, primary brand) */
  --noir:        #0A0A0A;
  --noir-deep:   #000000;
  --noir-bright: #1A1A1A;
  --noir-soft:   #F5F5F5;
  --noir-tint:   #FAFAFA;
  --noir-line:   #E5E5E5;

  /* Legacy aliases (older markup still references var(--emerald*)) */
  --emerald:        var(--noir);
  --emerald-deep:   var(--noir-deep);
  --emerald-bright: var(--noir-bright);
  --emerald-soft:   var(--noir-soft);
  --emerald-tint:   var(--noir-tint);
  --emerald-line:   var(--noir-line);

  /* Champagne gold — luxury accent (CTAs, highlights, dark-section accents) */
  --brass:          #C6A14A;
  --brass-bright:   #E3C878;
  --brass-deep:     #8F6E1F;
  --brass-soft:     #FBF6EC;
  --on-brass:       #17120A; /* text on gold surfaces */

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-ui:      'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* White / warm neutrals */
  --ivory:          #FFFFFF;
  --ivory-warm:     #FDFCFA;
  --cream:          #F8F6F2;
  --paper:          #FFFFFF;

  /* Ink */
  --ink:            #0A0A0A;
  --ink-2:          #2A2A2A;
  --muted:          #6B6B6B;
  --line:           #E8E8E8;

  /* Semantic aliases */
  --brand:          var(--noir);
  --brand-deep:     var(--noir-deep);
  --brand-soft:     var(--noir-soft);
  --cta:            var(--brass-bright);
  --cta-deep:       var(--brass-deep);
  --cta-soft:       var(--brass-soft);
  --bg:             var(--ivory);
  --bg-soft:        var(--cream);
  --heading:        var(--ink);
  --text:           var(--ink-2);
  --border:         var(--line);

  /* Effects */
  --shadow-sm:    0 1px 2px rgba(10,10,10,.04), 0 1px 3px rgba(10,10,10,.06);
  --shadow:       0 6px 18px rgba(10,10,10,.06), 0 2px 6px rgba(10,10,10,.04);
  --shadow-md:    0 18px 40px rgba(10,10,10,.10), 0 6px 14px rgba(10,10,10,.05);
  --shadow-lg:    0 36px 80px rgba(10,10,10,.14), 0 12px 28px rgba(10,10,10,.07);
  --shadow-brass: 0 12px 28px rgba(198,161,74,.32);
  --shadow-emerald: 0 12px 28px rgba(10,10,10,.28);

  --radius:       14px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --radius-pill:  999px;

  --ring:         0 0 0 3px rgba(198,161,74,.28);
  --ring-brass:   0 0 0 3px rgba(198,161,74,.35);

  --ease:         cubic-bezier(.2,.7,.2,1);
  --ease-out:     cubic-bezier(.16,1,.3,1);
  --ease-lux:     cubic-bezier(.7,0,.2,1);
}

/* ---------- Reset & base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 400;
}
/* Display sizes lean on Fraunces' SOFT axis — gently rounded, soap-smooth terminals */
h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 380;
  letter-spacing: -0.028em;
  line-height: 1.04;
  font-variation-settings: 'SOFT' 55, 'WONK' 0;
}
h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  letter-spacing: -0.022em;
  font-weight: 400;
  font-variation-settings: 'SOFT' 45, 'WONK' 0;
}
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-variation-settings: 'SOFT' 25, 'WONK' 0; }
p { margin: 0 0 1rem; }
a { color: var(--brass-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brass); }
img { max-width: 100%; display: block; }
ul,ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--brass-bright); color: var(--noir-deep); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--ink); color: var(--ivory); padding: 10px 16px; border-radius: 0 0 10px 0; transition: left .2s var(--ease); }
.skip-link:focus { left: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1400px; }
.container-tight { max-width: 1000px; }
.section { padding: clamp(72px, 10vw, 132px) 0; }
.section-sm { padding: clamp(52px, 6vw, 80px) 0; }
.bg-soft { background: var(--bg-soft); }
.bg-cream { background: var(--cream); }
.section-dark {
  background: #000000;
  color: var(--ivory); position: relative; overflow: hidden;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark p, .section-dark .lead { color: rgba(255,255,255,.78); }
.section-dark .h-eyebrow { color: var(--brass-bright); }
.section-dark .h-eyebrow::before { background: var(--brass-bright); }
.section-dark .serif-italic { color: var(--brass-bright); }
.section-gold {
  background: linear-gradient(168deg, #FFFCF5 0%, var(--brass-soft) 50%, #FFF9EE 100%);
  position: relative; overflow: hidden;
}
.section-gold .h-eyebrow { color: var(--brass-deep); }
.section-light { background: var(--ivory); }
.bg-emerald { background: #000000; color: var(--ivory); position: relative; overflow: hidden; }
.bg-emerald .h-eyebrow { color: var(--brass-bright); }
.bg-emerald h1, .bg-emerald h2, .bg-emerald h3 { color: var(--ivory); }
.bg-emerald p { color: rgba(255,255,255,.82); }
.bg-emerald a { color: var(--brass-bright); }
.bg-ink { background: var(--ink); color: var(--ivory); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--ivory); }
.bg-ink p { color: rgba(255,255,255,.78); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Typography helpers ---------- */
.h-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass-deep); margin: 0 0 20px;
}
.h-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--brass); }
.h-eyebrow.center { justify-content: center; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.25rem); color: var(--muted); line-height: 1.7; max-width: 58ch; }
.lead-lg { font-size: clamp(1.18rem, 2vw, 1.42rem); color: var(--muted); line-height: 1.6; max-width: 60ch; }
.mono { font-family: var(--font-ui); font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.muted { color: var(--muted); }
.serif-italic { font-family: 'Fraunces', serif; font-style: italic; color: var(--brass-deep); }
.section-head { max-width: 760px; }
.section-head.text-center { margin-inline: auto; }
.divider { height: 1px; background: var(--border); border: 0; }
.pull { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.35; color: var(--brass-deep); letter-spacing: -.02em; }

/* ---------- Buttons (magnetic-ready) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .96rem; letter-spacing: -0.005em;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  text-align: center; line-height: 1; white-space: nowrap; position: relative;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg, .btn .i { width: 18px; height: 18px; transition: transform .3s var(--ease-out); }
.btn:hover svg, .btn:hover .i { transform: translateX(3px); }

.btn-brass { background: linear-gradient(180deg, var(--brass-bright), var(--brass)); color: var(--on-brass); box-shadow: var(--shadow-brass); }
.btn-brass:hover { color: var(--on-brass); box-shadow: 0 16px 36px rgba(198,161,74,.45); }
.btn-emerald { background: linear-gradient(180deg, var(--noir-bright), var(--noir-deep)); color: var(--ivory); box-shadow: var(--shadow-emerald); }
.btn-emerald:hover { color: var(--ivory); box-shadow: 0 16px 36px rgba(10,10,10,.42); }
.btn-ivory { background: var(--ivory); color: var(--noir); box-shadow: var(--shadow); }
.btn-ivory:hover { background: #fff; color: var(--noir-deep); }
.btn-outline { background: transparent; color: var(--noir); border-color: var(--noir-line); }
.btn-outline:hover { background: var(--noir); color: var(--ivory); border-color: var(--noir); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: var(--ivory); border-color: rgba(255,255,255,.22); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: var(--ivory); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: .86rem; }
.btn-block { display: flex; width: 100%; }

.btn-dark { background: linear-gradient(180deg, var(--noir-bright), var(--noir-deep)); color: var(--ivory); box-shadow: var(--shadow-emerald); border-color: rgba(198,161,74,.25); }
.btn-dark:hover { color: var(--ivory); box-shadow: 0 16px 36px rgba(198,161,74,.2); border-color: rgba(198,161,74,.4); }
.btn-outline-light { background: transparent; color: var(--ivory); border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); color: var(--brass-bright); border-color: var(--brass-bright); }
.btn-outline-gold { background: transparent; color: var(--brass-deep); border-color: var(--brass); }
.btn-outline-gold:hover { background: var(--brass-soft); color: var(--brass-deep); border-color: var(--brass-deep); }

/* Legacy aliases (back-compat with existing markup) */
.btn-cta { background: linear-gradient(180deg, var(--brass-bright), var(--brass)); color: var(--on-brass); box-shadow: var(--shadow-brass); }
.btn-cta:hover { color: var(--on-brass); box-shadow: 0 16px 36px rgba(198,161,74,.45); }
.btn-primary { background: linear-gradient(180deg, var(--noir-bright), var(--noir-deep)); color: var(--ivory); box-shadow: var(--shadow-emerald); }
.btn-primary:hover { color: var(--ivory); box-shadow: 0 16px 36px rgba(10,10,10,.42); }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--ink); border-color: var(--border); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: #fff; border-color: var(--noir); color: var(--noir-deep); }
.btn-light { background: var(--ivory); color: var(--ink); box-shadow: var(--shadow); }
.btn-light:hover { background: #fff; color: var(--ink); }

/* ---------- Pills ---------- */
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--noir-soft); color: var(--noir); font-size: .8rem; font-weight: 600; border: 1px solid var(--noir-line); }
.pill-cta, .pill-brass { background: var(--brass-soft); color: var(--brass-deep); border-color: #E8D6B6; }
.pill-dark, .pill-light { background: rgba(255,255,255,.1); color: var(--ivory); border: 1px solid rgba(255,255,255,.22); }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--brass-bright); position: relative; }
.dot-live::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--brass-bright); opacity: .35; animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(2); opacity: 0; } }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: top .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 18px; }
.site-header.scrolled { background: rgba(255,255,255,.52); backdrop-filter: saturate(180%) blur(22px); box-shadow: 0 1px 0 rgba(10,10,10,.05), 0 10px 30px rgba(10,10,10,.04); }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo-link { gap: 0; text-decoration: none; }
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.brand-logo-header { height: 46px; }
.brand-logo-sm { height: 42px; }
.brand-logo-footer { height: clamp(52px, 7vw, 68px); }
.brand-logo-trust { height: clamp(40px, 5vw, 52px); width: auto; margin: 0 auto; display: block; }
@media (min-width: 720px) {
  .site-header .brand-logo-header { height: 56px; }
  .brand-logo-sm { height: 46px; }
}
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; filter: drop-shadow(0 4px 8px rgba(10,10,10,.15)); }
.brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.28rem; color: var(--ink); letter-spacing: -.02em; line-height: 1.05; }
.brand-name span { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-deep); margin-top: 5px; }

.nav { display: none; align-items: center; gap: 2px; }
@media (min-width: 1020px){ .nav { display: flex; } }
.nav a { color: var(--ink-2); font-weight: 500; font-size: .92rem; padding: 9px 14px; border-radius: 999px; transition: all .2s var(--ease); }
.nav a:hover { color: var(--brass-deep); background: var(--brass-soft); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.phone-link { display: none; align-items: center; gap: 9px; font-weight: 600; color: var(--ink); font-size: .92rem; }
@media (min-width: 920px){ .phone-link { display: inline-flex; } }
.phone-link svg, .phone-link .i { width: 17px; height: 17px; color: var(--brass-deep); }
.header-cta .btn { display: none; }
@media (min-width: 640px){ .header-cta .btn { display: inline-flex; } }

.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.6); border: 1px solid var(--border); color: var(--ink); backdrop-filter: blur(8px); transition: background .2s var(--ease), transform .1s var(--ease); }
.menu-toggle:active { transform: scale(.94); background: var(--noir-soft); }
@media (min-width: 1020px){ .menu-toggle { display: none; } }

.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 400px); max-width: 100vw; background: var(--ivory); z-index: 90; transform: translate3d(100%,0,0); visibility: hidden; pointer-events: none; transition: transform .4s var(--ease-out), visibility 0s linear .4s; box-shadow: -30px 0 80px rgba(10,10,10,.2); padding: 24px; overflow-y: auto; contain: layout paint; }
.mobile-menu.open { transform: translate3d(0,0,0); visibility: visible; pointer-events: auto; transition: transform .4s var(--ease-out); }
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(10,10,10,.45); z-index: 85; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); backdrop-filter: blur(2px); }
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu .mm-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a { padding: 16px 14px; border-radius: 12px; color: var(--ink); font-weight: 500; font-size: 1.08rem; border-bottom: 1px solid var(--border); }
.mobile-menu nav a:last-child { border-bottom: 0; }
.mobile-menu nav a:hover { background: var(--noir-soft); color: var(--noir); }
.mobile-menu nav a[aria-current="page"], .mobile-menu nav a.active { background: var(--noir-tint); color: var(--noir); font-weight: 600; }
.mobile-menu .mm-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); border-top: 1px solid var(--border); box-shadow: 0 -8px 28px rgba(10,10,10,.10); }
@media (min-width: 720px){ .mobile-cta-bar { display: none; } }
.mobile-cta-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 12px 6px; min-height: 52px; border-radius: 12px; font-size: .66rem; font-weight: 600; color: var(--ink-2); border: 1px solid var(--border); background: var(--ivory); letter-spacing: .02em; transition: background .15s var(--ease), transform .1s var(--ease); }
.mobile-cta-bar a:active { transform: scale(.95); background: var(--noir-soft); }
.mobile-cta-bar a svg, .mobile-cta-bar a .i { width: 18px; height: 18px; }
.mobile-cta-bar a.cta-primary { background: linear-gradient(180deg, var(--brass-bright), var(--brass)); color: var(--on-brass); border-color: transparent; box-shadow: var(--shadow-brass); }
.mobile-cta-bar a.cta-primary svg, .mobile-cta-bar a.cta-primary .i { color: var(--on-brass); }
body { padding-bottom: 84px; }
@media (min-width: 720px){ body { padding-bottom: 0; } }

/* ---------- HERO — jet black + suds only ---------- */
.hero {
  position: relative; overflow: hidden; z-index: 0;
  padding-top: clamp(128px, 15vw, 172px);
  padding-bottom: 0;
  display: flex; flex-direction: column;
  background: #000000;
  color: var(--ivory);
  min-height: 100dvh;
  min-height: 100svh;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; background: #000000; }
.hero-ambient-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  background: #000000;
}
.hero .lead-lg, .hero .hero-sub { color: rgba(255,255,255,.78); }
.hero h1, .hero h1 .hero-line { color: var(--ivory); }
.hero .h-eyebrow { color: var(--brass-bright); }
.hero .h-eyebrow::before { background: var(--brass-bright); }
.hero-grid-deco,
.hero-noise,
.hero-leaks { display: none !important; }

/* ============================================================
   HERO v2 — centered logo-forward (no photo column)
   ============================================================ */
.hero-v2 .hero-inner {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(72px, 9vw, 120px);
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero-v2.hero-centered .hero-inner {
  justify-content: center;
}
.hero-v2 .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Copy column */
.hero-logo-featured { margin-bottom: clamp(16px, 3vw, 28px); }
.hero-logo-link { display: inline-block; text-decoration: none; line-height: 0; }
.hero-logo-img {
  display: block;
  width: min(100%, 380px);
  height: auto;
  margin: 0 auto;
  mix-blend-mode: screen;
}
.hero-v2.hero-centered .hero-logo-img {
  width: min(100%, 460px);
}
.hero-kicker {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px; margin-bottom: 20px;
}
.pill-hero { background: rgba(198,161,74,.12); backdrop-filter: blur(8px); border-color: rgba(198,161,74,.35); color: var(--ivory); }
.hero-kicker-tag { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-bright); }

.hero h1 { margin-bottom: 20px; line-height: 1.02; max-width: 20ch; margin-left: auto; margin-right: auto; }
.hero-line { display: block; }
.hero h1 .accent { color: var(--brass-bright); font-style: normal; }
.hero h1 .accent em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--brass-bright); }
.hero h1 .brass { color: var(--brass-bright); font-style: italic; font-weight: 400; }
.hero-sub { margin-bottom: 28px; max-width: 54ch; margin-left: auto; margin-right: auto; }
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px;
  justify-content: center;
}

.hero-trust-pills {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 14px; margin-bottom: 4px;
}
.hero-trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(198,161,74,.22);
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.88);
}
.hero-trust-pill svg, .hero-trust-pill .i { width: 17px; height: 17px; color: var(--brass-bright); flex-shrink: 0; }
.hero-trust-pill .hero-float-stars { color: var(--brass); letter-spacing: 1px; font-size: .78rem; }
.hero-trust-pill strong { color: var(--brass-bright); font-weight: 700; }

.hero-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  width: 100%; max-width: 680px;
}
.hero-metric {
  padding: 16px 14px; border-radius: 18px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(198,161,74,.2);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease);
}
.hero-metric:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(198,161,74,.15); border-color: rgba(198,161,74,.4); }
.hero-metric-val {
  display: block; font-family: 'Fraunces', serif;
  font-size: 1.6rem; color: var(--brass-bright); line-height: 1;
}
.hero-metric-val small { font-size: .85rem; color: var(--brass); margin-left: 2px; }
.hero-metric-lbl { display: block; font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.55); margin-top: 6px; letter-spacing: .02em; line-height: 1.3; }

/* Stage / photo — portrait, no smoosh */
.hero-v2 .hero-stage {
  position: relative;
  perspective: 1400px;
  min-height: 0;
}
.hero-scene {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-photo {
  position: relative; margin: 0; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 40px 80px rgba(0,0,0,.55),
    0 12px 32px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  transform: translateZ(0);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  display: block; transform: scale(1.02);
  transition: transform 8s var(--ease-out);
}
.hero-scene:hover .hero-photo img { transform: scale(1.06); }
.hero-photo-overlay { display: none; }
.hero-photo-shine { display: none !important; }

/* Floating badges */
.hero-float {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(10,10,10,.12), 0 4px 12px rgba(10,10,10,.06);
  animation: heroFloat 5s var(--ease) infinite alternate;
}
@keyframes heroFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}
.hero-float-rating { top: 18px; left: -16px; display: flex; align-items: center; gap: 10px; animation-delay: 0s; }
.hero-float-stars { color: var(--brass); letter-spacing: 2px; font-size: .9rem; }
.hero-float-text { font-size: .78rem; color: var(--ink-2); line-height: 1.2; }
.hero-float-text strong { display: block; font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--ink); font-weight: 400; }
.hero-float-shield {
  top: 24%; right: -14px; display: flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; color: var(--noir); line-height: 1.25;
  animation-delay: -2.5s;
}
.hero-float-shield svg { width: 22px; height: 22px; color: var(--brass-bright); flex-shrink: 0; }

/* Estimate card — inline in centered hero */
.hero-v2.hero-centered .hero-estimate {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  max-width: 540px;
  margin: 0;
}
.hero-estimate {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-radius: 20px; overflow: hidden;
  box-shadow:
    0 28px 60px rgba(10,10,10,.2),
    0 8px 20px rgba(10,10,10,.08);
  border: 1px solid rgba(255,255,255,.9);
}
.hero-estimate::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.06), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 1;
}
.hero-card-top {
  position: relative; z-index: 2;
  background: #000000;
  padding: 18px 20px; color: var(--ivory);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.hero-card-eyebrow {
  margin: 0 0 4px; font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--brass-bright); opacity: .95;
}
.hero-card-top h3 { color: var(--ivory); margin: 0; font-size: 1.05rem; line-height: 1.2; }
.hero-card-body { position: relative; z-index: 2; padding: 16px 16px 8px; }
.hero-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.hero-card-grid .opt {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  padding: 12px 12px; border-radius: 12px; margin: 0;
  border: 1px solid rgba(10,10,10,.07); background: #FAFAF7;
  transition: all .28s var(--ease);
}
.hero-card-grid .opt:hover {
  border-color: var(--noir-line); background: var(--noir-tint);
  transform: translateY(-2px); box-shadow: 0 6px 16px rgba(10,10,10,.06);
}
.hero-card-grid .opt-ic { width: 34px; height: 34px; border-radius: 10px; margin: 0; }
.hero-card-grid .opt strong { font-size: .82rem; }
.hero-card-grid .opt small { font-size: .68rem; line-height: 1.25; }
.hero-card-foot { position: relative; z-index: 2; padding: 8px 16px 16px; }
.hero-card-foot .btn { padding: 14px 20px; font-size: .92rem; }

/* Wave transition to marquee */
.hero-wave {
  position: relative; z-index: 3; margin-top: auto; line-height: 0;
  transform: translateY(1px);
}
.hero-wave svg { display: block; width: 100%; height: clamp(32px, 4vw, 56px); }

/* ============================================================
   CSS-first reveals — content visible by default, enhanced by JS
   [data-reveal] starts hidden ONLY if .js-ready is on <html>.
   ============================================================ */
[data-reveal] { opacity: 1; transform: none; }
html.js-ready [data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
html.js-ready [data-reveal].is-in { opacity: 1; transform: translateY(0); }
html.js-ready [data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
html.js-ready [data-reveal][data-reveal-delay="2"] { transition-delay: .18s; }
html.js-ready [data-reveal][data-reveal-delay="3"] { transition-delay: .28s; }
html.js-ready [data-reveal][data-reveal-delay="4"] { transition-delay: .38s; }
html.js-ready [data-reveal][data-reveal-delay="5"] { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  html.js-ready [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Legacy hero aliases (other pages) */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10,10,10,.1); overflow: hidden; position: relative;
}
.hero-card-body .opt {
  display: flex; align-items: center; gap: 16px; padding: 16px 18px;
  border-radius: 16px; border: 1.5px solid rgba(10,10,10,.08); margin-bottom: 12px;
  transition: all .3s var(--ease); cursor: pointer; background: #FAFAF7;
}
.hero-card-body .opt:hover { border-color: var(--brass-deep); transform: translateX(4px); background: #FAFAF8; box-shadow: 0 2px 12px rgba(10,10,10,.08); }
.hero-card-body .opt-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--brass-soft); color: var(--brass-deep); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-body .opt-ic.brass { background: var(--brass-soft); color: var(--brass-deep); }
.hero-card-body .opt strong { color: var(--ink); font-size: 1rem; display: block; }
.hero-card-body .opt small { color: var(--muted); font-size: .82rem; }
.hero-badge { position: absolute; background: var(--ivory); border: 1px solid var(--border); border-radius: 16px; padding: 11px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px; font-size: .8rem; font-weight: 600; color: var(--ink); }
.hero-badge .stars { color: var(--brass); letter-spacing: 1px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-trust .t-item { display: inline-flex; align-items: center; gap: 9px; font-size: .85rem; color: var(--ink-2); font-weight: 500; }
.hero-trust .t-item svg { width: 17px; height: 17px; color: var(--brass-bright); flex-shrink: 0; }

@media (max-width: 719px){
  .hero-v2 .hero-inner { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .hero-v2.hero-centered .hero-logo-img { width: min(92%, 320px); }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 400px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
@media (max-width: 1019px){
  .hero-v2.hero-centered .hero-estimate { max-width: 100%; }
  .hero-metrics { max-width: 100%; }
}
@media (max-width: 480px){
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .hero-metrics .hero-metric:last-child { grid-column: 1 / -1; }
  .hero-card-grid { grid-template-columns: 1fr; }
}

.marquee-item .bubble-sep {
  display: inline-flex; width: 22px; height: 22px; color: var(--brass-bright);
  opacity: .85; vertical-align: middle;
}
.marquee-item .bubble-sep svg { width: 100%; height: 100%; display: block; }

/* Dual-path premium cards */
.dual-path { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 900px){ .dual-path { grid-template-columns: 1fr 1fr; gap: 32px; } }
.path-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  padding: clamp(36px, 5vw, 52px);
  border: 1px solid rgba(198,161,74,.2);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.path-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(0,0,0,.2); }
.path-card-dark {
  background: #000000;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.path-card-light {
  background: linear-gradient(145deg, #FFFFFF 0%, var(--brass-soft) 100%);
  color: var(--ink);
}
.path-card h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.path-card-dark h3 { color: var(--ivory); }
.path-card-light h3 { color: var(--ink); }
.path-card p { margin-bottom: 24px; font-size: 1rem; line-height: 1.65; }
.path-card-dark p { color: rgba(255,255,255,.75); }
.path-card-light p { color: var(--ink-2); }
.path-card-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.path-card-dark .path-card-icon { background: rgba(198,161,74,.15); color: var(--brass-bright); }
.path-card-light .path-card-icon { background: var(--ivory); color: var(--brass-deep); box-shadow: var(--shadow); }
.path-card-icon svg { width: 28px; height: 28px; }

/* Premium service tiles */
.service-tile {
  background: rgba(255,255,255,.04); border: 1px solid rgba(198,161,74,.18);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .35s var(--ease-out);
}
.service-tile:hover { background: rgba(255,255,255,.07); border-color: rgba(198,161,74,.35); transform: translateY(-4px); }
.section-dark .service-tile h3 { color: var(--ivory); font-size: 1.15rem; }
.section-dark .service-tile p { color: rgba(255,255,255,.65); font-size: .92rem; margin: 0; }
.section-gold .card { border-color: rgba(198,161,74,.25); }
.section-gold .card:hover { border-color: var(--brass); }

.section-dark .stat .num { color: var(--brass-bright); }
.section-dark .stat .lbl { color: rgba(255,255,255,.55); }

/* Review cards premium */
.review-card {
  border: 1px solid var(--border); background: var(--ivory);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.review-card:hover { border-color: rgba(198,161,74,.4); box-shadow: 0 16px 40px rgba(198,161,74,.1); }
.review-stars { color: var(--brass-bright); }

/* Site header on dark hero */
.site-header:not(.scrolled) .brand-name { color: var(--ivory); }
.site-header:not(.scrolled) .brand-name span { color: var(--brass-bright); }
.site-header:not(.scrolled) .nav a { color: rgba(255,255,255,.82); }
.site-header:not(.scrolled) .nav a:hover { color: var(--brass-bright); background: rgba(198,161,74,.12); }
.site-header:not(.scrolled) .phone-link { color: var(--ivory); }
.site-header:not(.scrolled) .menu-toggle { color: var(--ivory); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.site-header:not(.scrolled) { background: transparent; }

/* ---------- Marquee strip ---------- */
.marquee { overflow: hidden; contain: paint; padding: 22px 0; background: var(--ivory); color: var(--ink); border-block: 1px solid var(--border); }
.marquee-track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 38s linear infinite; will-change: transform; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 14px; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; color: var(--ink); }
.marquee-item .star { color: var(--brass-bright); font-size: 1.4rem; }

/* ---------- Stats ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (min-width: 760px){ .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-variation-settings: 'SOFT' 40, 'WONK' 0; font-variant-numeric: tabular-nums; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 400; color: var(--noir); line-height: 1; letter-spacing: -.02em; }
.stat .lbl { font-size: .82rem; color: var(--muted); margin-top: 8px; letter-spacing: .04em; text-transform: uppercase; }
.bg-emerald .stat .num, .bg-ink .stat .num { color: var(--brass-bright); }
.bg-emerald .stat .lbl, .bg-ink .stat .lbl { color: rgba(255,255,255,.6); }

/* ---------- Cards ---------- */
.card { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .35s var(--ease); position: relative; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--noir-line); }
.card-icon { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--noir-soft); color: var(--noir); margin-bottom: 20px; }
.card-icon svg, .card-icon .i { width: 26px; height: 26px; }
.card-icon.amber, .card-icon.brass { background: var(--brass-soft); color: var(--brass-deep); }
.card-icon.sage { background: rgba(156,181,155,.22); color: #5E7A5E; }
.card-icon.ink { background: rgba(26,37,32,.08); color: var(--ink); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 20px; font-size: .96rem; }
.card-links { display: flex; gap: 16px; align-items: center; font-size: .9rem; font-weight: 600; }

.grid-services { display: grid; gap: 24px; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px){ .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .grid-services { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1240px){ .grid-services { grid-template-columns: repeat(4, 1fr); } }
.grid-2 { display: grid; gap: 32px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 26px; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 760px){ .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Split ---------- */
.split { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1020px){ .split { grid-template-columns: 1fr 1fr; gap: 80px; } }
.split-media { border-radius: var(--radius-xl); overflow: hidden; position: relative; background: var(--noir-soft); min-height: 360px; border: 1px solid var(--border); }
.split-media .ph { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.feat-list { display: grid; gap: 16px; margin: 26px 0 32px; }
.feat-item { display: flex; gap: 16px; align-items: flex-start; }
.feat-check { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: var(--brass-bright); color: var(--noir-deep); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(198,161,74,.35); }
.feat-check svg, .feat-check .i { width: 15px; height: 15px; }
.feat-item p { margin: 0; color: var(--ink-2); font-size: 1rem; }
.feat-item strong { color: var(--ink); }
.section-dark .feat-item p { color: rgba(255,255,255,.78); }
.section-dark .feat-item strong { color: var(--ivory); }

/* ---------- Plan cards ---------- */
.plan-card { background: var(--ivory); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 34px 28px; transition: all .4s var(--ease-out); position: relative; }
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--noir-line); }
.plan-card.featured { border-color: var(--noir); box-shadow: var(--shadow-emerald); }
.plan-card.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg, var(--brass-bright), var(--brass)); color: var(--on-brass); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-brass); }
.plan-card h3 { color: var(--noir); margin-bottom: 8px; }
.plan-card .plan-sub { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.plan-card ul { display: grid; gap: 12px; margin-bottom: 26px; }
.plan-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--ink-2); }
.plan-card li svg, .plan-card li .i { width: 16px; height: 16px; color: var(--brass-bright); flex-shrink: 0; margin-top: 4px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 32px; }
@media (min-width: 760px){ .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 8px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(180deg, var(--noir-bright), var(--noir-deep)); color: var(--brass-bright); font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.3rem; box-shadow: var(--shadow-emerald); margin-bottom: 22px; }
.bg-emerald .step-num, .bg-ink .step-num { background: linear-gradient(180deg, var(--brass-bright), var(--brass)); box-shadow: var(--shadow-brass); color: var(--on-brass); }
.step h3 { margin-bottom: 10px; }
.step p { margin: 0; color: var(--muted); }
.bg-emerald .step p, .bg-ink .step p { color: rgba(255,255,255,.78); }

/* ---------- Testimonials ---------- */
.review-card { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--noir-line); }
.review-stars { color: var(--brass); letter-spacing: 3px; font-size: 1.05rem; }
.review-body { color: var(--ink-2); font-size: 1rem; line-height: 1.7; font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.review-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--noir), var(--noir-deep)); color: var(--ivory); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-family: 'Fraunces', serif; }
.review-author strong { color: var(--ink); font-size: .94rem; display: block; }
.review-author small { color: var(--muted); font-size: .78rem; }

/* ---------- Before / After slider ---------- */
.ba-slider { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); aspect-ratio: 16/10; min-height: 280px; user-select: none; cursor: ew-resize; background: var(--noir-soft); }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-img.ba-dirty,
.ba-img.ba-clean { object-position: center; }
.ba-after-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba-after-wrap .ba-img { width: 200%; max-width: none; }
.ba-label { position: absolute; top: 16px; padding: 6px 12px; border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; z-index: 3; }
.ba-label-before { left: 16px; background: rgba(10,10,10,.85); color: var(--ivory); }
.ba-label-after { right: 16px; background: linear-gradient(180deg, var(--brass-bright), var(--brass)); color: var(--on-brass); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--ivory); transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(10,10,10,.2); pointer-events: none; z-index: 2; }
.ba-handle::after { content: ''; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; border-radius: 50%; background: var(--ivory); transform: translate(-50%,-50%); box-shadow: var(--shadow-md); }

/* Placeholder gradient */
.ph-grad { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10,10,10,.12), rgba(198,161,74,.12)), repeating-linear-gradient(45deg, var(--noir-soft) 0 14px, var(--ivory) 14px 28px); display: flex; align-items: center; justify-content: center; color: var(--noir); font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: .72rem; letter-spacing: .14em; }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px){ .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--noir-soft); border: 1px solid var(--border); cursor: pointer; transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item .ba-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.gallery-item:hover .ba-img { transform: scale(1.05); }
.gallery-tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; background: rgba(255,255,255,.95); backdrop-filter: blur(6px); padding: 8px 13px; border-radius: 11px; font-size: .76rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }
.gallery-item .ba-badge { position: absolute; top: 14px; right: 14px; z-index: 2; background: linear-gradient(180deg, var(--brass-bright), var(--brass-deep)); color: var(--ivory); font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: .62rem; letter-spacing: .14em; padding: 5px 10px; border-radius: 7px; }

/* ---------- Areas ---------- */
.area-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px){ .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1060px){ .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-chip { display: flex; align-items: center; gap: 11px; background: var(--ivory); border: 1px solid var(--border); border-radius: 14px; padding: 15px 18px; transition: all .3s var(--ease); font-weight: 500; color: var(--ink-2); font-size: .96rem; }
.area-chip:hover { background: var(--noir-soft); border-color: var(--noir-line); color: var(--noir); transform: translateX(4px); }
.area-chip svg, .area-chip .i { width: 16px; height: 16px; color: var(--brass-deep); flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--noir-line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; background: transparent; border: 0; text-align: left; font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.12rem; color: var(--ink); cursor: pointer; }
.faq-q .chev { width: 22px; height: 22px; color: var(--brass-deep); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 24px 24px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; background: #000000; border-radius: var(--radius-xl); padding: clamp(56px, 8vw, 96px); color: var(--ivory); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08); }
.cta-banner::before,
.cta-banner::after { display: none; }
.cta-banner > *:not(.natabel-bubble-canvas) { position: relative; z-index: 2; }
.cta-banner-logo { margin-bottom: clamp(20px, 3vw, 28px); }
.cta-banner-logo-img {
  display: block;
  width: min(100%, 260px);
  height: auto;
}
.cta-banner h2 { color: var(--ivory); }
.cta-banner p { color: rgba(255,255,255,.85); }
.cta-banner .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Forms ---------- */
.form-card { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.form-head { padding: 28px 32px; border-bottom: 1px solid var(--border); background: var(--paper); }
.form-head h2 { margin: 0 0 6px; font-size: 1.55rem; }
.form-head p { margin: 0; color: var(--muted); font-size: .92rem; }
.form-body { padding: 32px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--brass-deep); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--border); background: var(--paper); font-family: inherit; font-size: .98rem; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--noir); background: #fff; box-shadow: var(--ring); }
.field input::placeholder, .field textarea::placeholder { color: #aab4a9; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px){ .field-row { grid-template-columns: 1fr 1fr; } }
.field-error { font-size: .78rem; color: #b94533; margin-top: 7px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b94533; }
.field.invalid .field-error { display: block; }

.choice-group { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px){ .choice-group.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 560px){ .choice-group.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px){ .choice-group.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.choice { position: relative; display: flex; flex-direction: column; gap: 5px; padding: 16px 16px; border-radius: 14px; border: 1.5px solid var(--border); background: var(--paper); cursor: pointer; transition: all .25s var(--ease); }
.choice:hover { border-color: var(--noir-line); background: #fff; }
.choice .choice-ic { width: 30px; height: 30px; color: var(--noir); margin-bottom: 6px; }
.choice .choice-ic svg, .choice .choice-ic .i { width: 30px; height: 30px; }
.choice strong { font-size: .92rem; color: var(--ink); }
.choice small { font-size: .76rem; color: var(--muted); }
.choice.checked { border-color: var(--noir); background: var(--noir-soft); box-shadow: var(--ring); }
.choice.checked strong { color: var(--noir); }

/* ---------- Funnel ---------- */
.funnel { background: linear-gradient(180deg, var(--cream), var(--ivory)); }
.funnel-card { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; max-width: 920px; margin: 0 auto; }
.funnel-progress { background: var(--paper); border-bottom: 1px solid var(--border); padding: 20px 28px; }
.funnel-progress .bar { height: 6px; background: var(--noir-soft); border-radius: 99px; overflow: hidden; }
.funnel-progress .bar > span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--noir), var(--brass-bright)); border-radius: 99px; transition: width .5s var(--ease); }
.funnel-progress .meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.funnel-progress .meta .step-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--noir); font-weight: 600; }
.funnel-progress .meta .step-count { font-size: .82rem; color: var(--muted); }
.funnel-step { display: none; padding: 38px 32px; animation: stepIn .5s var(--ease-out); }
.funnel-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.funnel-step h3 { font-size: 1.65rem; margin-bottom: 8px; }
.funnel-step .step-desc { color: var(--muted); margin-bottom: 26px; }
.funnel-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; gap: 14px; }
.funnel-nav .btn-back { background: transparent; color: var(--muted); border-color: var(--border); }
.funnel-nav .btn-back:hover { color: var(--ink); border-color: var(--ink); background: transparent; }
.funnel-success { text-align: center; padding: 56px 32px; display: none; }
.funnel-success.active { display: block; animation: stepIn .5s var(--ease-out); }
.funnel-success .check-circle { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px; background: linear-gradient(135deg, var(--brass-bright), var(--brass-deep)); color: var(--noir-deep); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brass); }
.funnel-success .check-circle svg, .funnel-success .check-circle .i { width: 40px; height: 40px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 72px 0 36px; position: relative; overflow: hidden; }
@media (max-width: 719px){ .site-footer { padding-bottom: calc(36px + 96px); } }
.site-footer::before { display: none; }
.site-footer .container { position: relative; z-index: 2; }
.site-footer h4 { color: var(--ivory); font-family: 'Plus Jakarta Sans', sans-serif; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .92rem; }
.site-footer a:hover { color: var(--brass-bright); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; position: relative; z-index: 1; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-links { display: grid; gap: 11px; }
.footer-brand .brand-name { color: var(--ivory); }
.footer-brand .brand-name span { color: var(--brass-bright); }
.footer-contact { display: grid; gap: 13px; }
.footer-contact a { display: flex; align-items: center; gap: 11px; }
.footer-contact svg, .footer-contact .i { width: 17px; height: 17px; color: var(--brass-bright); flex-shrink: 0; }
.footer-bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .82rem; position: relative; z-index: 1; }
.footer-social { display: flex; gap: 11px; }
.footer-social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--noir); color: var(--ivory); }
.footer-social svg, .footer-social .i { width: 17px; height: 17px; }

/* ---------- Breadcrumbs / page hero ---------- */
.breadcrumbs { font-size: .82rem; color: var(--muted); display: flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.breadcrumbs a { color: var(--brass-deep); }
.breadcrumbs span.sep { color: var(--border); }
.page-hero { padding-top: clamp(140px, 16vw, 184px); padding-bottom: clamp(48px, 6vw, 72px); background: radial-gradient(1000px 480px at 85% -20%, var(--noir-soft) 0%, transparent 58%), var(--ivory); border-bottom: 1px solid var(--border); }
.page-hero h1 { margin-bottom: 22px; }
.page-hero .lead { margin-bottom: 30px; }

/* ---------- Trust bar / side CTA ---------- */
.trust-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px; padding: 24px 0; }
.trust-bar .tb-item { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--ink-2); font-size: .9rem; }
.trust-bar .tb-item svg, .trust-bar .tb-item .i { width: 22px; height: 22px; color: var(--brass-deep); }
.side-cta { background: linear-gradient(155deg, var(--noir), var(--noir-deep)); border-radius: var(--radius-lg); padding: 32px; color: var(--ivory); box-shadow: var(--shadow-emerald); position: relative; overflow: hidden; }
.side-cta::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(198,161,74,.3), transparent 70%); z-index: 1; pointer-events: none; }
.side-cta h3 { color: var(--ivory); margin-bottom: 10px; position: relative; z-index: 2; }
.side-cta p { color: rgba(255,255,255,.85); margin-bottom: 20px; font-size: .94rem; position: relative; z-index: 2; }
.side-cta .btn { width: 100%; position: relative; z-index: 2; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 300; border-radius: 50%; transform: translate(-50%,-50%); mix-blend-mode: multiply; }
.cursor-dot { width: 6px; height: 6px; background: var(--noir); transition: transform .12s var(--ease); }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(198,161,74,.45); transition: transform .28s var(--ease-out), width .28s var(--ease-out), height .28s var(--ease-out), border-color .28s var(--ease-out); }
.cursor-ring.hovering { width: 64px; height: 64px; border-color: var(--brass); }
@media (hover: none), (prefers-reduced-motion: reduce) { .cursor-dot, .cursor-ring { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dot-live::after, .marquee-track, .hero-float, .hero-orbs .orb, .cta-banner::before, .hero-leak { animation: none; }
  .hero-ambient-canvas { display: none; }
  .hero-scene { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Touch device hover guards ---------- */
/* On touch devices, :hover sticks after tap. Neutralize hover-lift transforms
   so cards don't get permanently shifted. Visual hover cues (color/shadow)
   are kept since they don't cause layout issues. */
@media (hover: none) {
  .card:hover, .review-card:hover, .gallery-item:hover, .area-chip:hover, .plan-card:hover,
  .choice:hover, .hero-card-body .opt:hover, .hero-card-grid .opt:hover { transform: none; }
  .gallery-item:hover .ba-img { transform: none; }
}

/* ---------- Noscript fallback ---------- */
/* If JS is disabled, .reveal elements (opacity:0) would be invisible.
   Each HTML page also has a <noscript> style override. */

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.flex { display: flex; } .flex-col { flex-direction: column; } .items-center { align-items: center; } .justify-center { justify-content: center; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }

/* =========================================================================
   PREMIUM UPGRADES — promo bar, trust ribbon, float CTA, visual panels
   ========================================================================= */

/* Promo bar */
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: #000000;
  color: var(--ivory); border-bottom: 1px solid rgba(255,255,255,.1);
  transition: transform .35s var(--ease-out), opacity .35s var(--ease-out);
  --promo-h: 56px;
}
.promo-bar.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0; font-size: .86rem; min-height: var(--promo-h); }
.promo-inner p { margin: 0; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.92); min-width: 0; }
.promo-inner p svg { width: 16px; height: 16px; color: var(--brass-bright); flex-shrink: 0; }
.promo-inner strong { color: var(--ivory); font-weight: 700; }
.promo-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.promo-actions .btn-brass { box-shadow: 0 2px 10px rgba(0,0,0,.45); }
.promo-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 10px; border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08); color: var(--ivory); transition: background .2s var(--ease);
}
.promo-close:hover { background: rgba(255,255,255,.18); }
.promo-close svg { width: 16px; height: 16px; }
@media (max-width: 640px){
  .promo-hide-sm { display: none; }
  .promo-inner { font-size: .76rem; gap: 8px; padding: 7px 0; --promo-h: 49px; min-height: 49px; }
  .promo-inner p { gap: 7px; min-width: 0; overflow: hidden; }
  .promo-inner p svg { width: 13px; height: 13px; }
  .promo-inner .btn { padding: 6px 11px; font-size: .74rem; white-space: nowrap; }
  .promo-close { width: 26px; height: 26px; }
  .promo-close svg { width: 14px; height: 14px; }
}

/* Header offset tracks promo height via --promo-h so they can never desync */
html.has-promo .site-header { top: var(--promo-h, 56px); }
html.has-promo .page-hero { padding-top: calc(var(--promo-h, 56px) + 120px); }
html.has-promo .hero { padding-top: calc(var(--promo-h, 56px) + 110px); }
@media (min-width: 1020px){
  html.has-promo .page-hero { padding-top: clamp(196px, 18vw, 236px); }
  html.has-promo .hero { padding-top: clamp(186px, 18vw, 236px); }
}
@media (max-width: 640px){
  html.has-promo .site-header { top: 55px; }
  html.has-promo .page-hero { padding-top: calc(55px + 116px); }
  html.has-promo .hero { padding-top: calc(55px + 100px); }
}

/* Floating desktop CTA */
.float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 65;
  display: none; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(16px) scale(.96);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
  pointer-events: none;
}
@media (min-width: 720px){ .float-cta { display: flex; } }
.float-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-cta-main {
  padding: 16px 22px; border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgba(198,161,74,.45), 0 4px 12px rgba(10,10,10,.12);
  font-size: .94rem; gap: 8px;
}
.float-cta-phone {
  width: 52px; height: 52px; border-radius: 50%; margin-inline: auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ivory); color: var(--noir); border: 1.5px solid var(--noir-line);
  box-shadow: var(--shadow-md); transition: transform .25s var(--ease-out), background .2s var(--ease);
}
.float-cta-phone:hover { transform: scale(1.06); background: var(--noir-soft); color: var(--noir-deep); }
.float-cta-phone svg { width: 22px; height: 22px; }

/* Trust ribbon */
.trust-ribbon {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-ribbon-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.trust-ribbon-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px){ .trust-ribbon-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.tr-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: 16px 12px; border-radius: var(--radius);
  background: var(--ivory); border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease);
}
.tr-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--noir-line); }
.tr-num {
  font-family: 'Fraunces', serif; font-size: 1.65rem; color: var(--brass-deep);
  line-height: 1; display: inline-flex; align-items: center; gap: 4px;
}
.tr-num svg { width: 28px; height: 28px; color: var(--brass-deep); }
.tr-lbl { font-size: .78rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; max-width: 16ch; line-height: 1.35; }

/* Hero ambient orbs */
.hero-orbs { display: none !important; }

/* Premium hero card — glass handled in HERO block */

/* Visual panels (split media) */
.visual-panel {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  min-height: 460px; border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
}
.visual-panel.emerald { background: #000000; color: var(--ivory); }
.visual-panel.brass { background: linear-gradient(150deg, var(--brass-deep) 0%, var(--brass) 100%); color: var(--ivory); }
.visual-panel-inner { padding: 40px; position: relative; z-index: 2; }
.visual-panel-inner h3 { color: var(--ivory); font-size: 1.4rem; margin-bottom: 20px; }
.visual-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.visual-panel-grid span {
  display: flex; align-items: center; gap: 9px; font-size: .92rem;
}
.visual-panel-grid svg { width: 16px; height: 16px; color: var(--brass-bright); flex-shrink: 0; }
.visual-panel.brass .visual-panel-grid svg { color: var(--ivory); opacity: .9; }
.visual-panel::after { display: none; }

/* Premium cards — gradient border on hover */
.card.card-premium::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--noir-line), var(--brass-soft), var(--noir-line));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s var(--ease);
}
.card.card-premium:hover::before { opacity: 1; }

/* Before / after image fallbacks (placeholder SVGs in assets/) */
.ba-dirty { background: #7A6F5E; }
.ba-clean { background: #F8F6F2; }

/* Enhanced page hero */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(10,10,10,.12) 0%, transparent 58%),
    radial-gradient(600px 380px at 5% 80%, rgba(198,161,74,.08) 0%, transparent 55%),
    var(--ivory);
}

/* Page hero v2 — editorial split + photography */
.page-hero-split { padding-bottom: clamp(56px, 8vw, 96px); }
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr min(42%, 460px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.page-hero-copy { min-width: 0; }
.page-hero-logo { margin-bottom: clamp(16px, 3vw, 24px); }
.page-hero-logo-img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  mix-blend-mode: screen;
}
.page-hero-media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(10,10,10,.14), 0 8px 24px rgba(10,10,10,.06);
  aspect-ratio: 4 / 5;
  max-height: min(480px, 52vh);
  border: 1px solid rgba(10,10,10,.06);
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-slot.photo-slot { border-radius: var(--radius-lg); overflow: hidden; }
.photo-slot-inner { position: relative; }
.photo-slot-inner img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-slot-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.28) 100%);
  pointer-events: none;
}
@media (max-width: 960px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-media {
    order: -1;
    max-height: 280px;
    aspect-ratio: 16 / 10;
    width: 100%;
  }
}

/* Form & funnel polish */
.form-card, .funnel-card {
  border: 1px solid rgba(10,10,10,.08);
  box-shadow: 0 24px 60px rgba(10,10,10,.08), 0 8px 20px rgba(10,10,10,.04);
}
.field.invalid .choice-group { outline: 2px solid #b94533; outline-offset: 4px; border-radius: 14px; }
.choice.checked { transform: translateY(-1px); }

/* Header glass upgrade */
.site-header.scrolled {
  background: rgba(255,255,255,.52);
  backdrop-filter: saturate(180%) blur(22px);
}

/* =========================================================================
   REALISTIC SUDS BUBBLE SYSTEM — canvas + sprite accents
   ========================================================================= */
.natabel-bubble-canvas {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 1;
}

.section-dark .container,
.bg-emerald .container,
.path-card-dark > *:not(.natabel-bubble-canvas) {
  position: relative;
  z-index: 2;
}

.natabel-bubble {
  position: absolute;
  left: var(--bx, 50%); top: var(--by, 30%);
  width: auto; height: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%) scale(var(--bs, 1));
  --bubble-drift-x: 6px;
  --bubble-drift-y: -22px;
  animation: natabelBubbleFloat 10s var(--ease) infinite;
  animation-delay: var(--bd, 0s);
  filter: drop-shadow(0 2px 8px rgba(255,255,255,.12));
}
.natabel-bubble.is-sm { filter: drop-shadow(0 1px 4px rgba(255,255,255,.08)); }
.natabel-bubble.is-cluster { filter: drop-shadow(0 2px 10px rgba(255,255,255,.08)); }
.natabel-bubble-img {
  display: block; width: 100%; height: auto;
  object-fit: contain;
}
@keyframes natabelBubbleFloat {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(var(--bs, 1)); }
  12% { opacity: 0.92; }
  50% { opacity: 0.78; transform: translate(calc(-50% + var(--bubble-drift-x)), calc(-50% + var(--bubble-drift-y))) scale(calc(var(--bs, 1) * 1.04)); }
  88% { opacity: 0.35; }
}
.hero-copy .natabel-bubble, .page-hero-copy .natabel-bubble { max-width: 52px; }
@media (max-width: 759px) {
  .natabel-bubble {
    --bubble-drift-x: 3px;
    --bubble-drift-y: -12px;
    animation-duration: 18s;
    filter: drop-shadow(0 2px 6px rgba(255,255,255,.14));
  }
  .page-hero-copy .natabel-bubble { max-width: 46px; }
}

/* =========================================================================
   FOUNDER SECTION + CONVERSION COMPONENTS
   ========================================================================= */
.founder-quote {
  margin: 26px 0 22px; padding-left: 22px;
  border-left: 3px solid var(--brass);
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.45;
  color: var(--ink); letter-spacing: -.01em;
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
}
.founder-sig {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 420; line-height: 1.1;
  color: var(--brass-deep); letter-spacing: -.01em;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.founder-sig-role {
  margin: 6px 0 0; font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.founder-media {
  margin: 0; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 5; max-height: 560px;
  box-shadow: 0 32px 72px rgba(10,10,10,.18), 0 10px 26px rgba(10,10,10,.08);
  border: 1px solid rgba(10,10,10,.06);
}
.founder-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-guarantee {
  display: flex; align-items: center; gap: 14px;
  margin-top: -34px; position: relative; z-index: 2;
  margin-inline: clamp(12px, 4vw, 32px);
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border: 1px solid rgba(198,161,74,.35); border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow-md);
}
.founder-guarantee-ic {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  color: var(--on-brass);
}
.founder-guarantee-ic svg, .founder-guarantee-ic .i { width: 20px; height: 20px; }
.founder-guarantee strong { display: block; color: var(--ink); font-size: .94rem; }
.founder-guarantee small { color: var(--muted); font-size: .8rem; line-height: 1.3; }

/* Guarantee microcopy under CTAs */
.guarantee-note {
  display: flex; align-items: center; gap: 8px; margin: 14px 0 0;
  font-size: .8rem; font-weight: 500; color: var(--muted);
}
.guarantee-note svg, .guarantee-note .i { width: 15px; height: 15px; color: var(--brass-deep); flex-shrink: 0; }
.cta-banner .guarantee-note { color: rgba(255,255,255,.66); margin-top: 18px; }
.cta-banner .guarantee-note svg, .cta-banner .guarantee-note .i { color: var(--brass-bright); }
.guarantee-note-card { justify-content: center; margin-top: 10px; font-size: .74rem; }

/* Plan price anchors — hidden until PCC.pricing values are set */
.plan-price {
  margin: -12px 0 18px; font-family: var(--font-display);
  font-size: 1.5rem; color: var(--ink); font-variant-numeric: tabular-nums;
}
.plan-price .from { font-family: var(--font-ui); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }

/* =========================================================================
   SQUEEGEE REVEAL — signature clean-sweep media wipe
   Media wipes in left-to-right behind a soft shine bar, like a squeegee
   pass over glass. Applied by motion.js to .ba-slider / .page-hero-media.
   ========================================================================= */
html.js-ready .squeegee-reveal {
  clip-path: inset(0 100% 0 0);
}
html.js-ready .squeegee-reveal.swept {
  animation: squeegeeSweep 1.15s var(--ease-lux) forwards;
}
@keyframes squeegeeSweep {
  to { clip-path: inset(0 0% 0 0); }
}
.squeegee-reveal.squeegee-reveal { position: relative; }
.squeegee-reveal::before {
  content: ''; position: absolute; top: -4%; bottom: -4%; left: -18%;
  width: 14%; z-index: 5; pointer-events: none; opacity: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.85) 45%, rgba(227,200,120,.35) 60%, transparent);
  filter: blur(6px);
}
html.js-ready .squeegee-reveal.swept::before {
  animation: squeegeeShine 1.15s var(--ease-lux) forwards;
}
@keyframes squeegeeShine {
  0% { left: -18%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 112%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html.js-ready .squeegee-reveal { clip-path: none !important; animation: none !important; }
  html.js-ready .squeegee-reveal::before { display: none; }
}

/* SplitText line masks — GSAP wraps lines; keep gold accents intact */
.split-line { will-change: transform; }

/* Cursor suds trail */
.natabel-trail-bubble {
  position: fixed; left: 0; top: 0; z-index: 9999;
  width: 18px; height: 18px;
  pointer-events: none;
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  filter: drop-shadow(0 1px 4px rgba(255,255,255,.25));
}
.natabel-trail-bubble .natabel-bubble-img { width: 100%; height: auto; }

/* Button suds burst */
.natabel-btn-bubble {
  position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: visible;
}
.natabel-btn-bubble-piece {
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 18px;
  animation: natabelBtnSuds 1s var(--ease-out) forwards;
  animation-delay: calc(var(--bi, 0) * 0.06s);
  transform: translate(-50%, -50%);
}
.natabel-btn-bubble-piece .natabel-bubble-img { width: 100%; height: auto; }
@keyframes natabelBtnSuds {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.2); }
  35% { opacity: 1; transform: translate(calc(-50% + (var(--bi, 0) - 1) * 14px), calc(-50% - 28px)) scale(1.15); }
  100% { opacity: 0; transform: translate(calc(-50% + (var(--bi, 0) - 1) * 22px), calc(-50% - 52px)) scale(0.35); }
}

@media (prefers-reduced-motion: reduce) {
  .natabel-bubble, .natabel-bubble-canvas, .hero-ambient-canvas,
  .natabel-btn-bubble, .natabel-trail-bubble { display: none !important; }
}
