/* chimney-sweep-new-york-e95f7f - auto-generated stylesheet */
:root {
  --primary: #2D1B4E;
  --secondary: #4A2B82;
  --accent: #A78BDB;
  --bg: #FFFFFF;
  --surface: #F5F0FA;
  --text: #2D1B4E;
  --text-light: #4B3B6B;
  --cta-bg: #4A2B82;
  --cta-text: #FFFFFF;
  --header-bg: #FFFFFF;
  --header-text: #2D1B4E;
  --footer-bg: #2D1B4E;
  --footer-text: #E4DAF2;
  --link: #4A2B82;
  --success: #2E8B57;
  --warning: #C08B1F;
  --error: #B33A3A;
  --border: #D8CCE8;

  --radius: 0.58rem;
  --radius-btn: 0.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 16px rgba(0,0,0,.12);

  --font-heading: 'Rubik', Georgia, serif;
  --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
  --fw-heading: 700;
  --fw-body: 400;

  --container-max: 1320px;
  --section-py: 68px;
  --gap: 1.5rem;
  --gap-lg: 3rem;

  --transition: .25s ease;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: var(--fw-body); font-size: 16px; line-height: 1.68; color: var(--text); background: var(--bg); overflow-x: hidden; }

img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { text-decoration: underline; }
button { cursor: pointer; font: inherit; }

/* Focus visible for accessibility */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Honeypot */
.honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: var(--fw-heading); line-height: 1.2; letter-spacing: -0.016em; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============== LAYOUT ============== */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
section { padding: var(--section-py) 0; }

.grid-2, .grid-2-split { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

@media (max-width: 900px) {
  .grid-2, .grid-2-split { grid-template-columns: 1fr; gap: var(--gap); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

.section-head { text-align: center; max-width: 800px; margin: 0 auto 2.5rem; }
.section-intro { font-size: 1.125rem; color: var(--text-light); }
.section-cta { text-align: center; margin-top: 2.5rem; }
.eyebrow { display: inline-block; color: var(--accent); font-weight: 700; font-size: .875rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.eyebrow-light, .heading-light, .intro-light { color: #fff !important; }
.eyebrow-light { color: var(--accent) !important; }
.intro-light { opacity: .85; }

/* ============== BUTTONS ============== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.75rem; border-radius: var(--radius-btn); font-weight: 600; font-size: 1rem; border: 2px solid transparent; transition: all var(--transition); text-decoration: none; min-height: 48px; min-width: 48px; }
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--cta-bg); color: var(--cta-text); border-color: var(--cta-bg); box-shadow: 0 2px 6px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.05); text-shadow: 0 1px 1px rgba(0,0,0,.18); font-weight: 700; }
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 4px 14px rgba(0,0,0,.28); }
/* Safety net — if the cta vars somehow render very dark on dark, force a visible state */
@media (prefers-contrast: more) {
  .btn-primary { outline: 2px solid var(--cta-text); outline-offset: 2px; }
}
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.btn-ghost { background: transparent; color: var(--primary); }
.btn-ghost-light { color: #fff; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-xl { padding: 1.15rem 2.75rem; font-size: 1.125rem; }
.btn-block { width: 100%; }

/* ============== HEADER ============== */
.topbar { background: var(--primary); color: #fff; font-size: .875rem; padding: .4rem 0; }
.topbar-inner { display: flex; justify-content: flex-end; gap: 2rem; flex-wrap: wrap; }
.topbar-item { color: #fff; }
.topbar-item:hover { opacity: .85; color: #fff; }

.site-header { background: var(--header-bg); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
.header-translucent { background: rgba(255,255,255,.95); backdrop-filter: blur(8px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: .85rem 0; min-height: 64px; flex-wrap: nowrap; }

/* Brand: logo icon + wordmark text */
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--header-text); flex: 0 1 auto; min-width: 0; max-width: 62%; position: relative; }
.brand:hover { text-decoration: none; color: var(--header-text); }
.brand-mark {
  width: 60px; height: 60px; object-fit: contain; flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.10)) drop-shadow(0 6px 14px color-mix(in srgb, var(--color-primary) 22%, transparent));
  transition: transform .35s cubic-bezier(.22,.9,.33,1), filter .35s ease;
  position: relative; z-index: 1;
}
.brand:hover .brand-mark { transform: scale(1.08) rotate(-3deg); filter: drop-shadow(0 4px 8px rgba(0,0,0,.14)) drop-shadow(0 10px 22px color-mix(in srgb, var(--color-primary) 38%, transparent)); }
/* Optional radial glow halo behind the mark on hover for a premium feel. */
.brand::before {
  content: ""; position: absolute; left: -6px; top: 50%; transform: translateY(-50%) scale(.6);
  width: 76px; height: 76px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-primary) 30%, transparent) 0%, transparent 65%);
  opacity: 0; transition: opacity .4s ease, transform .5s cubic-bezier(.22,.9,.33,1); pointer-events: none; z-index: 0;
}
.brand:hover::before { opacity: 1; transform: translateY(-50%) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .brand-mark, .brand::before { transition: none !important; }
  .brand:hover .brand-mark { transform: none; }
}
/* Brand text — full name ALWAYS visible. Wraps to 2 balanced lines for long names,
   font-size shrinks via length-class. Never truncated with ellipsis. */
.brand-text { font-family: var(--font-display, var(--font-heading, inherit)); font-weight: 800; line-height: 1.05; color: var(--header-text); letter-spacing: -.01em; word-break: normal; overflow-wrap: break-word; white-space: normal; display: inline-block; max-width: 100%; }
.brand-line-2 { display: inline; }
/* Length-aware sizing using clamp() so name fits on tiny phones too.
   Only the very-short class keeps a single line; everything else may wrap. */
.brand.brand-len-s  .brand-text { font-size: clamp(1.0rem, 2.2vw, 1.20rem); white-space: nowrap; }
.brand.brand-len-m  .brand-text { font-size: clamp(0.90rem, 1.9vw, 1.10rem); }
.brand.brand-len-m  .brand-line-2 { display: block; }
.brand.brand-len-l  .brand-text { font-size: clamp(0.80rem, 1.6vw, 1.00rem); }
.brand.brand-len-l  .brand-line-2 { display: block; }
.brand.brand-len-xl .brand-text { font-size: clamp(0.72rem, 1.3vw, 0.92rem); line-height: 1.0; }
.brand.brand-len-xl .brand-line-2 { display: block; }
.brand-compact .brand-text { font-size: clamp(0.85rem, 1.7vw, 1.0rem); }
@media (max-width: 520px) {
  .brand { max-width: 72%; gap: .45rem; }
  .brand-mark {
    width: 52px; height: 52px;
    /* Stronger shadow on phones to pop against various backgrounds */
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.16)) drop-shadow(0 10px 20px color-mix(in srgb, var(--color-primary) 32%, transparent));
    /* Subtle, slow breathing pulse — only on mobile, only when motion is allowed */
    animation: brand-mark-breathe 4.6s ease-in-out infinite;
  }
  .brand.brand-len-s  .brand-text { font-size: 1.05rem; }
  .brand.brand-len-m  .brand-text { font-size: .95rem; }
  .brand.brand-len-l  .brand-text { font-size: .85rem; }
  .brand.brand-len-xl .brand-text { font-size: .76rem; }
}
@keyframes brand-mark-breathe {
  0%, 100% { transform: scale(1) rotate(0); }
  50%      { transform: scale(1.05) rotate(-1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-mark { animation: none !important; }
}

/* Nav */
.primary-nav { display: flex; align-items: center; flex: 1 1 auto; justify-content: center; }
.primary-nav .nav-list { display: flex; gap: 1.5rem; list-style: none; padding: 0; margin: 0; flex-wrap: nowrap; }
.primary-nav .nav-list a { color: var(--header-text); font-weight: 500; padding: .5rem 0; font-size: .95rem; white-space: nowrap; }
.primary-nav .nav-list a:hover, .primary-nav .nav-list a[aria-current="page"] { color: var(--primary); text-decoration: none; }
.nav-center { justify-content: center; }
.nav-side { flex: 0 1 auto; }
.nav-side .nav-list { gap: 1.25rem; }

/* CTA cluster */
.header-cta { display: flex; align-items: center; gap: .65rem; flex: 0 0 auto; }
.phone-link { color: var(--header-text); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; font-size: .95rem; }

/* Hamburger — hidden on desktop */
.nav-toggle { display: none; background: transparent; border: 0; padding: .5rem; width: 40px; height: 40px; flex-direction: column; justify-content: space-between; align-items: stretch; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--header-text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.primary-nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.primary-nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.primary-nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-only { display: none; }
.header-cta-mobile { display: none; }

/* Stacked / centered variants */
.header-top { display: flex; justify-content: space-between; align-items: center; padding: .85rem 0; gap: 1rem; flex-wrap: wrap; }
.header-meta { display: flex; align-items: center; gap: 1rem; }
.nav-below { border-top: 1px solid var(--border); }
.nav-below .nav-list { justify-content: center; padding: .75rem 0; }
.header-centered-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.header-centered-inner .brand { justify-self: center; max-width: 100%; }
.header-centered-inner .nav-side-left { justify-content: flex-end; }
.header-centered-inner .nav-side-right { justify-content: flex-start; }

.announce-bar { background: var(--accent); color: var(--text); padding: .5rem 0; text-align: center; font-size: .95rem; }
.announce-bar a { color: var(--text); font-weight: 600; }

/* Mobile breakpoint: collapse nav to hamburger */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .primary-nav { position: static; }
  .primary-nav .nav-list { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--header-bg); border-top: 1px solid var(--border); padding: .75rem 1rem 1rem; gap: 0; box-shadow: var(--shadow-md); margin: 0; z-index: 99; }
  .primary-nav.open .nav-list { display: flex; }
  .primary-nav .nav-list li { border-bottom: 1px solid var(--border); }
  .primary-nav .nav-list li:last-child { border-bottom: 0; }
  .primary-nav .nav-list a { display: block; padding: .9rem 0; }
  .header-cta .phone-text { display: none; }
  .header-cta .btn:not(.btn-sm) { padding: .55rem .9rem; font-size: .85rem; }

  /* Centered header on mobile — brand left, hamburger + phone right */
  .header-centered-inner { grid-template-columns: auto 1fr auto; }
  .header-centered-inner .nav-side { display: none; }
  .header-centered-inner .header-cta-mobile { display: inline-flex; align-items: center; gap: .5rem; }
  .header-centered-inner .mobile-only { display: block; }
  .header-centered-inner .mobile-only .nav-list { display: none; }
  .header-centered-inner .primary-nav.open .nav-list { display: flex; position: absolute; top: 100%; left: 0; right: 0; }

  /* Stacked — keep logo top, nav collapses */
  .nav-below { border-top: 0; }
  .nav-below .nav-list { padding: 0; }
}
@media (max-width: 560px) {
  .header-inner { padding: .6rem 0; gap: .5rem; min-height: 56px; }
  .header-cta { gap: .4rem; }
  .header-cta .btn-sm { padding: .45rem .75rem; font-size: .82rem; }
  .phone-link { font-size: .88rem; }
}

/* ============== HERO ============== */
.hero { padding: clamp(3rem, 8vw, 6rem) 0; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--gap-lg); align-items: center; }
.hero-v1 .hero-inner, .hero-v3 .hero-inner, .hero-v5 .hero-inner { grid-template-columns: 1fr; text-align: center; }
.hero-centered, .hero-minimal { text-align: center; }
.hero-centered .hero-content, .hero-minimal .hero-content { max-width: 860px; margin: 0 auto; }
.hero-eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .875rem; margin-bottom: 1rem; }
.hero-eyebrow-light { color: #fff; opacity: .9; }
.hero-headline { font-size: clamp(2.25rem, 5.5vw, 4rem); line-height: 1.1; margin-bottom: 1rem; }
.hero-headline-xl { font-size: clamp(2.75rem, 7vw, 5.5rem); }
.hero-headline-light { color: #fff; }
.hero-subhead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-light); margin-bottom: 1.5rem; max-width: 60ch; }
.hero-centered .hero-subhead, .hero-minimal .hero-subhead { margin-left: auto; margin-right: auto; }
.hero-subhead-light { color: #fff; opacity: .92; }
.hero-subhead-lg { font-size: 1.25rem; }
.hero-bullets { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .5rem; }
.hero-bullets li { display: flex; align-items: flex-start; gap: .5rem; font-size: 1rem; }
.hero-bullets-light li { color: #fff; }
.check { color: var(--success); font-weight: 800; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.hero-centered .hero-ctas, .hero-minimal .hero-ctas { justify-content: center; }
.hero-trust { font-size: .9rem; color: var(--text-light); margin-top: 1rem; }
.hero-bg { position: relative; color: #fff; min-height: 640px; display: flex; align-items: center; background-size: cover; background-position: center; }
.hero-reviews-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--surface); padding: .5rem 1rem; border-radius: 999px; font-size: .95rem; margin-bottom: 1rem; }
.hero-reviews-badge .stars { color: var(--warning); letter-spacing: .15em; }
.hero-stats-strip { background: var(--primary); color: #fff; padding: 2rem 0; margin-top: 3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--accent); }
.stat-label { font-size: .9rem; opacity: .9; margin-top: .25rem; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Hero v6 / v7: Mesh-gradient + glassmorphism ===== */
.hero-mesh { position: relative; overflow: hidden; padding: clamp(4rem, 9vw, 7rem) 0; isolation: isolate; }
.hero-mesh-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at top left, color-mix(in srgb, var(--primary) 14%, var(--bg)) 0%, var(--bg) 55%);
  overflow: hidden;
}
.hero-mesh-bg-bold {
  background:
    radial-gradient(ellipse at 10% 10%, color-mix(in srgb, var(--primary) 65%, #0f172a) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, color-mix(in srgb, var(--accent) 55%, #0f172a) 0%, transparent 60%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 55%, #1a1330) 0%, color-mix(in srgb, var(--secondary) 70%, #1a1330) 100%);
  color: #fff;
}
.mesh-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  will-change: transform;
  animation: mesh-orb-drift 18s ease-in-out infinite;
}
.mesh-orb-1 { width: 420px; height: 420px; background: var(--primary); top: -120px; left: -80px; animation-delay: 0s; }
.mesh-orb-2 { width: 380px; height: 380px; background: var(--accent); bottom: -140px; right: -100px; animation-delay: -6s; }
.mesh-orb-3 { width: 300px; height: 300px; background: var(--secondary); top: 40%; left: 55%; opacity: .35; animation-delay: -12s; }
.mesh-orb-4 { width: 240px; height: 240px; background: color-mix(in srgb, var(--accent) 70%, #fff); top: 12%; right: 22%; opacity: .35; animation-delay: -3s; }
@keyframes mesh-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, 30px) scale(1.05); }
  66%      { transform: translate(-30px, 50px) scale(.98); }
}
.mesh-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--text) 7%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--text) 7%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-mesh-bg-bold .mesh-grid {
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
}
.mesh-grain {
  position: absolute; inset: 0; opacity: .35; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .14 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero-mesh .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .hero-mesh .hero-inner { grid-template-columns: 1fr; } }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: color-mix(in srgb, var(--primary) 12%, var(--bg));
  color: var(--primary); padding: .35rem .9rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
}
.hero-mesh-bg-bold + .container .eyebrow-pill,
.hero-glass-card .eyebrow-pill {
  background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.hero-bullets-tight li { padding: .15rem 0; }
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
  content: ""; position: absolute; inset: -2px; border-radius: inherit; padding: 2px;
  background: linear-gradient(120deg, transparent 30%, color-mix(in srgb, var(--accent) 80%, #fff) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.btn-glow:hover::after { opacity: 1; animation: btn-glow-sweep 1.6s linear infinite; }
@keyframes btn-glow-sweep { from { background-position: 0 0; } to { background-position: 200% 0; } }
.hero-spotlight { display: flex; justify-content: center; }
.spotlight-card {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 80px -20px color-mix(in srgb, var(--primary) 35%, rgba(0,0,0,.35)),
              0 8px 24px -10px rgba(0,0,0,.18);
  transform: rotate(-2deg);
  transition: transform .5s cubic-bezier(.22,.9,.33,1);
  background: var(--surface);
}
.spotlight-card:hover { transform: rotate(0deg) scale(1.02); }
.spotlight-card img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.spotlight-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(255,255,255,.95); color: var(--text);
  padding: .65rem 1rem; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; line-height: 1.1;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.spotlight-badge strong { font-size: 1.4rem; color: var(--primary); }
.spotlight-badge span { font-size: .75rem; color: var(--text-light); margin-top: 2px; }
.hero-glass-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  max-width: 760px; margin: 0 auto;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.45);
}
.hero-glass-card .hero-headline,
.hero-glass-card .hero-subhead { color: #fff; }
.hero-glass-card .hero-subhead { color: rgba(255,255,255,.85); }
.hero-glass-card .hero-trust { color: rgba(255,255,255,.7); }
@media (prefers-reduced-motion: reduce) {
  .mesh-orb { animation: none; }
}

.hero-form { background: var(--bg); border: 1px solid var(--border); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-form .form-title { font-size: 1.5rem; margin-bottom: .25rem; }
.hero-form .form-sub { font-size: .95rem; color: var(--text-light); margin-bottom: 1.25rem; }

/* ============== LEAD FORM ============== */
.lead-form label { display: block; margin-bottom: .85rem; }
.lead-form label > span { display: block; font-weight: 600; margin-bottom: .25rem; font-size: .95rem; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--border); border-radius: var(--radius); font: inherit; background: var(--bg); color: var(--text); min-height: 48px; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,0,0,.05); }
.lead-form .form-note { font-size: .8rem; color: var(--text-light); text-align: center; margin-top: .75rem; }

/* ============== CARDS ============== */
.svc-card, .why-card, .review-card, .review-card-lg, .review-dark-card, .review-masonry-card, .feature-box, .icon-grid-item { background: var(--bg); border: 1px solid var(--border); padding: 2rem 1.5rem; border-radius: var(--radius); transition: all var(--transition); }
.svc-card:hover, .why-card:hover, .feature-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.svc-card-image { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); }
.svc-card-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.svc-card-body { padding: 1.5rem; }
.svc-icon, .why-icon { font-size: 2.25rem; margin-bottom: 1rem; color: var(--accent); }
.svc-link { color: var(--link); font-weight: 600; display: inline-flex; align-items: center; gap: .25rem; margin-top: 1rem; }

/* ============== ABOUT / STATS ============== */
/* ============== STAT BADGES (polished, animated) ============== */
.stats-badges { display: grid; gap: 1.25rem; margin: 2.25rem 0; list-style: none; padding: 0; }
.stats-badges-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stats-badges-row { grid-auto-flow: column; grid-auto-columns: minmax(200px, 1fr); overflow-x: auto; scrollbar-width: thin; padding-bottom: .5rem; }
@media (max-width: 720px) { .stats-badges-row { grid-auto-flow: row; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); grid-auto-columns: auto; overflow: visible; } }
.stats-badges-inline { grid-auto-flow: column; grid-auto-columns: minmax(140px, 1fr); gap: .85rem; margin: 1.5rem 0; }
@media (max-width: 600px) { .stats-badges-inline { grid-auto-flow: row; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); grid-auto-columns: auto; } }

.stat-badge {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: .45rem;
  padding: 1.35rem 1.1rem;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  isolation: isolate;
}
.stat-badge::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent) 0%, transparent 60%);
  z-index: -1; opacity: .7; transition: opacity .35s ease;
}
.stats-badges-gradient .stat-badge {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 60%, transparent), color-mix(in srgb, var(--secondary) 60%, transparent)) border-box;
}
.stats-badges-solid .stat-badge { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border: none; }
.stats-badges-solid .stat-badge-label,
.stats-badges-solid .stat-badge-value { color: #fff; }
.stats-badges-solid .stat-badge-icon { background: rgba(255,255,255,.18); color: #fff; }
.stats-badges-outline .stat-badge { background: var(--surface); border: 1px solid var(--border); }

.stat-badge:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.1); border-color: color-mix(in srgb, var(--primary) 55%, var(--border)); }
.stat-badge:hover::before { opacity: 1; }

.stat-badge-glow {
  position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; z-index: -1;
  background: conic-gradient(from 0deg, transparent 0deg, color-mix(in srgb, var(--primary) 55%, transparent) 120deg, transparent 240deg);
  filter: blur(14px); opacity: 0; transition: opacity .4s ease;
}
.stat-badge:hover .stat-badge-glow { opacity: .65; animation: sb-spin 6s linear infinite; }
@keyframes sb-spin { to { transform: rotate(360deg); } }

.stat-badge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary) 18%, transparent);
  transition: transform .35s ease;
}
.stat-badge:hover .stat-badge-icon { transform: scale(1.08) rotate(-4deg); }
.stat-badge-value {
  font-family: var(--font-heading, inherit);
  display: block; font-size: clamp(1.7rem, 3vw, 2.25rem); font-weight: 800; line-height: 1;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
}
.stats-badges-solid .stat-badge-value { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.stat-badge-label { font-size: .82rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }

/* Accent color hues per index — subtle variation so adjacent badges feel distinct */
.stat-badge.sb-accent-0 .stat-badge-icon { background: color-mix(in srgb, var(--primary) 12%, transparent); color: var(--primary); }
.stat-badge.sb-accent-1 .stat-badge-icon { background: color-mix(in srgb, var(--secondary) 14%, transparent); color: var(--secondary); }
.stat-badge.sb-accent-2 .stat-badge-icon { background: color-mix(in srgb, var(--accent, var(--primary)) 14%, transparent); color: var(--accent, var(--primary)); }
.stat-badge.sb-accent-3 .stat-badge-icon { background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.stat-badge.sb-accent-4 .stat-badge-icon { background: color-mix(in srgb, var(--warning, #d97706) 14%, transparent); color: var(--warning, #d97706); }

/* Outline button variant that reads well on dark hero backgrounds */
.btn-on-dark { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn-on-dark:hover { background: rgba(255,255,255,.22); border-color: #fff; color: #fff; }

.big-quote { font-size: 1.5rem; padding: 2rem; border-left: 4px solid var(--accent); background: var(--surface); border-radius: var(--radius); margin-bottom: 2rem; font-style: italic; }
.big-quote footer { font-size: 1rem; margin-top: 1rem; color: var(--text-light); font-style: normal; }

/* ============== SERVICES LIST ============== */
.services-numbered { list-style: none; padding: 0; counter-reset: none; }
.svc-num-item { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.svc-num { font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.services-minimal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.svc-pill { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); color: var(--text); }
.svc-pill:hover { background: var(--primary); color: #fff; text-decoration: none; }
.services-tabs .tabs-container { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tab-btn { background: var(--surface); border: 1px solid var(--border); padding: .75rem 1.25rem; border-radius: var(--radius-btn); color: var(--text); }
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.tab-panel { background: var(--surface); padding: 2rem; border-radius: var(--radius); }
.zigzag-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: center; margin-bottom: 4rem; }
.zigzag-row.reverse { direction: rtl; }
.zigzag-row.reverse > * { direction: ltr; }
.zigzag-row img { border-radius: var(--radius); }
@media (max-width: 900px) {
  .zigzag-row { grid-template-columns: 1fr; direction: ltr; }
}

/* ============== WHY US ============== */
.why-us-v1 { background: var(--primary); color: #fff; }
.why-us-v1 .why-row { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; padding: 1.5rem; background: rgba(255,255,255,.08); border-radius: var(--radius); }
.why-us-v1 .why-row h3 { color: #fff; }
.why-us-v1 .why-row p { color: rgba(255,255,255,.85); }
.why-row-num { font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.why-us-list-col { list-style: none; padding: 0; }
.why-li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.features-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.feature-icon-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
@media (max-width: 900px) { .features-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features-4 { grid-template-columns: 1fr; } }
.icons-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.icon-box { width: 56px; height: 56px; border-radius: var(--radius); background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }

/* ============== INLINE SVG ICON SYSTEM ============== */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; color: inherit; transition: color .2s ease, transform .2s ease; }
.icon-stars { display: inline-flex; gap: 2px; color: var(--warning); vertical-align: middle; }
.icon-accent { color: var(--accent); }
.icon-primary { color: var(--primary); }
.icon-success { color: var(--success); }
.icon-white { color: #fff; }
.icon-muted { color: var(--text-light); }
.btn .icon { width: 1.1em; height: 1.1em; }
a:hover > .icon, button:hover > .icon { transform: translateX(2px); }
.icon-badge { box-shadow: 0 4px 14px rgba(0,0,0,.08); transition: transform .25s ease, box-shadow .25s ease; }
.icon-badge:hover, *:hover > .icon-badge { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.icon-feature-box { width: 64px; height: 64px; border-radius: var(--radius); background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; box-shadow: 0 6px 18px rgba(0,0,0,.10); }
.icon-feature-box .icon { width: 28px; height: 28px; }
.icon-inline { width: 1em; height: 1em; margin-right: .4em; vertical-align: -0.125em; }
.check-icon-row { display: flex; align-items: flex-start; gap: .7rem; padding: .3rem 0; }
.check-icon-row .icon { color: var(--success); margin-top: .2em; }
.stat-icon { color: var(--primary); margin: 0 auto .5rem; display: block; }

/* Map embed section */
.map-section { background: var(--surface); padding: calc(var(--section-py) * .8) 0; }
.map-embed-wrap { position: relative; width: 100%; padding-bottom: 45%; max-height: 520px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.1); border: 1px solid var(--border); }
.map-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(1.05); }
.map-caption-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 2rem; }
@media (max-width: 800px) { .map-caption-grid { grid-template-columns: 1fr; } .map-embed-wrap { padding-bottom: 75%; } }
.map-contact-card { display: grid; grid-template-columns: auto 1fr; gap: .75rem 1rem; padding: 1.25rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); margin-top: 1rem; }
.map-contact-card .icon { color: var(--primary); margin-top: .15rem; }
.map-contact-card dt { font-weight: 700; font-size: .85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .04em; margin-top: .1rem; display: contents; }
.map-contact-card dd { margin: 0; }

/* Hours list (map section + widget) */
.hours-list { list-style: none; padding: 0; margin: .5rem 0 0; font-size: .9rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .1rem .75rem; }
.hours-list li { display: flex; justify-content: space-between; gap: .5rem; padding: .15rem 0; color: var(--text-light); }
.hours-list li strong { color: var(--text); font-weight: 600; font-size: .88rem; }
.hours-list li.is-today { background: color-mix(in srgb, var(--primary) 8%, transparent); color: var(--text); padding: .2rem .5rem; border-radius: 6px; margin: 0 -.5rem; }
.hours-list li.is-today strong { color: var(--primary); }
@media (max-width: 500px) { .hours-list { grid-template-columns: 1fr; } }

/* Open-now status */
.hours-status { display: inline-flex; align-items: center; gap: .4rem; padding: .15rem .55rem; border-radius: 999px; font-size: .78rem; font-weight: 700; margin-left: .5rem; vertical-align: middle; }
.hours-status-dot { width: 8px; height: 8px; border-radius: 50%; }
.hours-status.is-open { background: color-mix(in srgb, var(--success) 12%, transparent); color: var(--success); }
.hours-status.is-open .hours-status-dot { background: var(--success); box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 20%, transparent); animation: pulse-dot 2s ease-out infinite; }
.hours-status.is-closed { background: color-mix(in srgb, #dc2626 10%, transparent); color: #dc2626; }
.hours-status.is-closed .hours-status-dot { background: #dc2626; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--success) 40%, transparent); } 70% { box-shadow: 0 0 0 8px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

/* Today pill in hours table */
.today-pill { display: inline-block; background: var(--primary); color: #fff; padding: .1rem .5rem; border-radius: 999px; font-size: .65rem; font-weight: 700; margin-left: .4rem; vertical-align: middle; text-transform: uppercase; letter-spacing: .05em; }
.hours-table tr.is-today td { background: color-mix(in srgb, var(--primary) 6%, transparent); }
.directions-btn { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; padding: .6rem 1rem; background: var(--primary); color: #fff; border-radius: var(--radius); font-weight: 600; }
.directions-btn:hover { background: var(--secondary); text-decoration: none; }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); }
.comparison-table th, .comparison-table td { padding: 1rem; border-bottom: 1px solid var(--border); text-align: left; }
.comparison-table th { background: var(--surface); font-weight: 700; }
.comparison-table tr td:first-child { font-weight: 600; }
.check { color: var(--success); font-size: 1.25rem; }
.cross { color: var(--error); font-size: 1.25rem; }

/* ============== TESTIMONIALS ============== */
.review-stars { color: var(--warning); letter-spacing: .1em; margin-bottom: .5rem; font-size: 1.1rem; }
.review-card blockquote, .review-card-lg blockquote, .review-dark-card blockquote { margin: .5rem 0 1rem; font-size: 1rem; }
.review-card blockquote p, .review-dark-card blockquote p { margin: 0; }
.review-card footer, .review-card-lg footer, .review-dark-card footer { font-size: .95rem; color: var(--text-light); border-top: 1px solid var(--border); padding-top: .75rem; }
.testimonials-v4 { background: var(--primary); color: #fff; }
.review-dark-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.review-dark-card footer { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.12); }
.review-scroller { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.review-track { display: flex; gap: 1.5rem; padding: 1rem 0; }
.review-track > * { flex: 0 0 min(360px, 80vw); }
.masonry-cols { column-count: 3; column-gap: 1.5rem; }
.masonry-cols > * { break-inside: avoid; margin-bottom: 1.5rem; }
@media (max-width: 900px) { .masonry-cols { column-count: 2; } }
@media (max-width: 600px) { .masonry-cols { column-count: 1; } }
.big-review { font-size: 1.35rem; line-height: 1.55; padding: 2rem; border-left: 4px solid var(--accent); background: var(--surface); border-radius: var(--radius); font-style: italic; }
.big-review footer { margin-top: 1rem; font-size: 1rem; color: var(--text-light); font-style: normal; }
.aggregate-rating { background: var(--surface); padding: 1rem 1.5rem; border-radius: var(--radius); display: inline-block; margin: 1rem 0; }
.stars-big { color: var(--warning); font-size: 1.5rem; letter-spacing: .15em; }

.quote-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.quote-wall-item { margin: 0; padding: 1.5rem; background: var(--surface); border-radius: var(--radius); }
.quote-wall-item blockquote { margin: 0 0 .75rem; font-style: italic; }
.quote-wall-item figcaption { font-size: .9rem; color: var(--text-light); font-weight: 600; }

/* ============== REVIEW SLIDERS (6 VARIANTS) ============== */
.review-card-v2 { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; position: relative; transition: transform .3s ease, box-shadow .3s ease; height: 100%; display: flex; flex-direction: column; }
.review-card-v2:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.08); }
.review-quote-mark { position: absolute; top: 1rem; right: 1.25rem; color: var(--primary); opacity: .18; }
.review-card-v2 .review-stars { margin: .25rem 0 .75rem; }
.review-card-v2 blockquote { margin: 0 0 1.25rem; flex: 1; }
.review-card-v2 blockquote p { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--text); }
.review-byline { border-top: 1px solid var(--border); padding-top: .85rem; font-size: .82rem; color: var(--text-light); }
.review-byline strong { color: var(--text); font-size: .9rem; font-weight: 700; }
.review-byline span { color: var(--text-light); }
.review-author-row { display: flex; align-items: center; gap: .6rem; flex-wrap: nowrap; min-width: 0; }
.review-avatar { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.12); display: block; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-author-meta { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; gap: .4rem; flex-wrap: nowrap; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.review-author-meta > * { white-space: nowrap; flex: 0 0 auto; }
.review-author-meta > strong { flex: 0 1 auto; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.review-author-meta > span { overflow: hidden; text-overflow: ellipsis; min-width: 0; max-width: 120px; }
.review-sep { color: var(--text-light); opacity: .6; margin: 0 .1rem; flex: 0 0 auto; }
.verified-badge { display: inline-flex; align-items: center; gap: .2rem; padding: .12rem .5rem; background: color-mix(in srgb, var(--success) 12%, transparent); color: var(--success); border-radius: 999px; font-size: .7rem; font-weight: 700; white-space: nowrap; flex: 0 0 auto; }
.verified-badge .icon-inline { width: 10px; height: 10px; }
/* Mobile: hide city on very small screens so name + date + verified still fit */
@media (max-width: 420px) { .review-author-meta > span.review-city { display: none; } }

/* Slider wrap — shared */
.slider-wrap { position: relative; padding: 0 1rem; }
.slider-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 1rem 0 2rem; scrollbar-width: none; }
.slider-track::-webkit-scrollbar { display: none; }
.slider-snap { scroll-snap-type: x mandatory; }
.slider-slide { flex: 0 0 auto; scroll-snap-align: start; display: flex; }
.slide-1-3 { width: calc((100% - 3rem) / 3); min-width: 300px; }
.slide-1-2 { width: calc((100% - 1.5rem) / 2); min-width: 320px; }
.slide-center { width: 70%; min-width: 320px; }
@media (max-width: 900px) { .slide-1-3, .slide-1-2 { width: min(85%, 400px); min-width: 260px; } }
@media (max-width: 600px) { .slide-center, .slide-1-3, .slide-1-2 { width: 88%; min-width: 240px; } }

/* Slider controls */
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; background: var(--bg); border: 1px solid var(--border); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.1); color: var(--primary); transition: all .2s ease; }
.slider-btn:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.08); }
.slider-btn.slider-prev { left: -8px; }
.slider-btn.slider-next { right: -8px; }
.icon-flip { transform: scaleX(-1); }
@media (max-width: 700px) { .slider-btn { width: 38px; height: 38px; } .slider-btn.slider-prev { left: 4px; } .slider-btn.slider-next { right: 4px; } }

/* Dots */
.slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: 0; padding: 0; cursor: pointer; transition: all .25s ease; }
.slider-dot.active { background: var(--primary); transform: scale(1.35); }

/* Center-focus variant scaling */
.slider-center-focus .slider-track { padding-left: 15%; padding-right: 15%; }
.slider-center-focus .review-card-v2 { transform: scale(.92); opacity: .6; transition: all .4s ease; }
.slider-center-focus .slider-slide.is-center .review-card-v2 { transform: scale(1); opacity: 1; }
@media (max-width: 900px) { .slider-center-focus .slider-track { padding-left: 6%; padding-right: 6%; } }

/* Fade variant */
.slider-fade { max-width: 700px; margin: 0 auto; min-height: 280px; position: relative; }
.slider-fade .slider-track { position: relative; display: block; padding: 0; overflow: hidden; min-height: 280px; }
.slider-fade .slide-fade { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; pointer-events: none; display: flex; }
.slider-fade .slide-fade.active { opacity: 1; pointer-events: auto; position: relative; }
.slider-fade .review-card-v2 { width: 100%; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.slider-controls .slider-btn { position: static; transform: none; }
.slider-controls .slider-btn:hover { transform: scale(1.08); }

/* Thumbs (variant 6) — dot strip with mini previews */
.slider-with-thumbs .slider-thumb-strip { display: flex; gap: .35rem; margin-top: .75rem; justify-content: center; }
.slider-with-thumbs .slider-dot { width: 28px; height: 4px; border-radius: 2px; }
.slider-with-thumbs .slider-dot.active { transform: scaleY(2); }

/* Marquee (auto-scrolling) */
.marquee-wrap { overflow: hidden; padding: 1rem 0 2rem; }
.marquee-row { overflow: hidden; mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%); }
.marquee-row + .marquee-row { margin-top: 1rem; }
.marquee-track { display: flex; gap: 1.5rem; width: max-content; animation: marquee-scroll 40s linear infinite; }
.marquee-right .marquee-track { animation-direction: reverse; animation-duration: 50s; }
.marquee-row.is-paused .marquee-track { animation-play-state: paused; }
.marquee-slide { flex: 0 0 320px; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============== CTA ============== */
.cta-section { background: var(--surface); padding: 4rem 0; }
.cta-v1 { text-align: center; }
.cta-heading-xl { font-size: clamp(2rem, 5vw, 3.5rem); }
.cta-subhead-lg { font-size: 1.25rem; max-width: 700px; margin: 0 auto 2rem; }
.cta-buttons, .cta-buttons-center { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-buttons-center { justify-content: center; }
.cta-col { padding: 2rem; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); text-align: center; }
.cta-col-alt { background: var(--primary); color: #fff; }
.cta-col-alt h3 { color: #fff; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-banner-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; background: var(--primary); color: #fff; padding: 2rem; border-radius: var(--radius); }
.cta-banner-icon { font-size: 3rem; }
.cta-banner-body h2 { color: #fff; margin-bottom: .5rem; }
@media (max-width: 900px) { .cta-banner-inner { grid-template-columns: 1fr; text-align: center; } }
.cta-trust-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.cta-trust-list li { padding: .25rem 0; color: var(--text-light); }
.cta-v5 { background: var(--primary); color: #fff; text-align: center; }

/* ============== BLOG ============== */
.blog-page-header { text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem) 0 1.5rem; }
.blog-toolbar { display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; align-items: center; padding: 1.25rem 1rem; margin: 0 auto 1.5rem; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.blog-search { position: relative; }
.blog-search-icon { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); color: var(--text-light); pointer-events: none; }
.blog-search input { width: 100%; padding: .75rem 1rem .75rem 2.65rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: .95rem; background: var(--bg); color: var(--text); }
.blog-search input:focus { border-color: var(--primary); outline: 2px solid color-mix(in srgb, var(--primary) 20%, transparent); outline-offset: 1px; }
.blog-filters { display: flex; gap: .4rem; flex-wrap: wrap; }
.blog-filter { padding: .45rem .95rem; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .15s ease; white-space: nowrap; }
.blog-filter:hover { border-color: var(--primary); color: var(--primary); }
.blog-filter.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.blog-sort select { padding: .6rem .85rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); color: var(--text); font-size: .9rem; cursor: pointer; }
@media (max-width: 900px) { .blog-toolbar { grid-template-columns: 1fr; } .blog-filters { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .25rem; flex-wrap: nowrap; } }

.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.1); }
.blog-card-image-link { display: block; position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-category-pill { position: absolute; top: .85rem; left: .85rem; background: var(--primary); color: #fff; padding: .3rem .7rem; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.blog-card-body { padding: 1.25rem 1.35rem 1.35rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.blog-meta { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.blog-card-title { margin: 0; font-size: 1.15rem; line-height: 1.3; }
.blog-card-title a { color: var(--text); text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { margin: 0; color: var(--text-light); font-size: .92rem; line-height: 1.55; flex: 1; }
.blog-author-row { display: flex; align-items: center; gap: .65rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.blog-author-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; }
.blog-author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-author-meta { display: flex; flex-direction: column; line-height: 1.2; font-size: .8rem; flex: 1; min-width: 0; }
.blog-author-meta strong { color: var(--text); font-weight: 600; font-size: .82rem; }
.blog-author-meta span { color: var(--text-light); }
.blog-card-link { font-weight: 600; color: var(--primary); font-size: .85rem; white-space: nowrap; text-decoration: none; }

/* Magazine — big featured card */
.blog-featured { margin-bottom: 2rem; }
.blog-card-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; }
.blog-card-feature .blog-card-image-link { aspect-ratio: auto; height: 100%; min-height: 340px; }
.blog-card-feature .blog-card-body { padding: 2rem; }
.blog-card-feature .blog-card-title { font-size: 1.75rem; }
@media (max-width: 800px) { .blog-card-feature { grid-template-columns: 1fr; } .blog-card-feature .blog-card-image-link { aspect-ratio: 16/10; min-height: auto; } .blog-card-feature .blog-card-body { padding: 1.25rem; } .blog-card-feature .blog-card-title { font-size: 1.25rem; } }

.blog-grid { display: grid; gap: 1.5rem; }
.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .blog-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid-3 { grid-template-columns: 1fr; } }

/* List layout */
.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-list-item { display: grid; grid-template-columns: 300px 1fr; gap: 1.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s ease; }
.blog-list-item:hover { box-shadow: 0 10px 28px rgba(0,0,0,.08); }
.blog-list-image { display: block; aspect-ratio: 4/3; overflow: hidden; }
.blog-list-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-list-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .65rem; justify-content: center; }
.blog-list-body h3 { margin: 0; font-size: 1.25rem; }
.blog-list-body h3 a { color: var(--text); text-decoration: none; }
.blog-list-body h3 a:hover { color: var(--primary); }
.blog-list-body p { margin: 0; color: var(--text-light); }
@media (max-width: 760px) { .blog-list-item { grid-template-columns: 1fr; } .blog-list-image { aspect-ratio: 16/9; } }

/* Mosaic layout */
.blog-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; grid-auto-rows: min-content; }
.mosaic-cell { grid-column: span 4; }
.mosaic-cell.mosaic-0 { grid-column: span 8; grid-row: span 2; }
.mosaic-cell.mosaic-3 { grid-column: span 6; }
.mosaic-cell.mosaic-4 { grid-column: span 6; }
@media (max-width: 900px) { .mosaic-cell, .mosaic-cell.mosaic-0, .mosaic-cell.mosaic-3, .mosaic-cell.mosaic-4 { grid-column: span 12; grid-row: auto; } }

.blog-empty[hidden] { display: none; }

/* Blog post page */
.blog-post-hero { position: relative; height: 480px; overflow: hidden; background: #111; }
.blog-post-hero-image { position: absolute; inset: 0; }
.blog-post-hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.blog-post-hero-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: 2.5rem; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); }
@media (max-width: 700px) { .blog-post-hero { height: 360px; } .blog-post-hero-overlay h1 { font-size: 1.6rem !important; } }
.blog-post-prose { padding-top: 2.5rem; padding-bottom: 3rem; max-width: 780px; }
.blog-post-lead { font-size: 1.2rem; line-height: 1.55; color: var(--text-light); margin: 0 0 1.75rem; font-weight: 400; }
.blog-author-byline { display: flex; align-items: center; gap: .85rem; padding: .85rem 1rem; background: var(--surface); border-radius: var(--radius); margin: 0 0 2rem; }
.blog-author-byline .blog-author-avatar { width: 48px; height: 48px; }
.blog-author-byline .blog-author-meta { gap: .1rem; }
.blog-author-byline .blog-author-meta strong { font-size: .95rem; }
.blog-author-byline .blog-author-meta span { font-size: .82rem; }

/* ============== FOOTER ============== */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 4rem 0 0; }
.site-footer a { color: var(--footer-text); }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-grid-7 { display: grid; grid-template-columns: 1.6fr repeat(6, 1fr); gap: 2rem; }
.footer-grid-5 { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2rem; }
.footer-grid-4 { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .5rem; font-size: .95rem; }
.footer-tagline { font-size: .95rem; opacity: .85; margin: 1rem 0; }
.footer-contact { margin: .25rem 0; font-size: .95rem; }
.site-footer address { font-style: normal; font-size: .9rem; opacity: .8; line-height: 1.55; margin-top: .75rem; }
.footer-brand-col img { filter: brightness(0) invert(1); max-height: 54px; width: auto; }
.footer-bottom { margin-top: 3rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; opacity: .75; }
.footer-bottom p { margin: 0; }
.footer-nap { margin-top: .5rem !important; }
.credentials-list li { opacity: .9; }
.footer-cta-band { background: var(--primary); color: #fff; padding: 3rem 0; text-align: center; margin: -4rem 0 3rem; }
.footer-cta-band h2 { color: #fff; }
.footer-cta-inner p { margin-bottom: 1.5rem; opacity: .9; }

@media (max-width: 900px) {
  .footer-grid-7 { grid-template-columns: 1fr 1fr; }
  .footer-grid-5, .footer-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid-7, .footer-grid-5, .footer-grid-4 { grid-template-columns: 1fr; }
}

/* ============== STICKY CTA (MOBILE) ============== */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: var(--bg); border-top: 1px solid var(--border); padding: .5rem; box-shadow: 0 -4px 12px rgba(0,0,0,.1); }
.mobile-sticky-cta .btn { flex: 1; min-height: 48px; }
.mobile-sticky-split { display: flex; gap: .5rem; }
@media (max-width: 900px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ============== FLOATING SIDE ============== */
.floating-side-btns { position: fixed; right: 1rem; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; gap: .75rem; }
.floating-side-btns a { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-lg); transition: transform var(--transition); }
.floating-side-btns a:hover { transform: scale(1.1); text-decoration: none; }
@media (max-width: 900px) { .floating-side-btns { display: none; } }

/* ============== SCROLL REVEAL BASE ============== */
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
[data-anim="scale-in"] { transform: scale(.96); }
[data-anim="scale-in"].is-visible { transform: scale(1); }
[data-anim="fade-right"] { transform: translateX(-20px); }
[data-anim="fade-right"].is-visible { transform: translateX(0); }
[data-anim="fade-left"] { transform: translateX(20px); }
[data-anim="fade-left"].is-visible { transform: translateX(0); }
[data-anim="stagger"] > * { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
[data-anim="stagger"].is-visible > * { opacity: 1; transform: translateY(0); }
[data-anim="stagger"].is-visible > *:nth-child(1) { transition-delay: .05s; }
[data-anim="stagger"].is-visible > *:nth-child(2) { transition-delay: .12s; }
[data-anim="stagger"].is-visible > *:nth-child(3) { transition-delay: .19s; }
[data-anim="stagger"].is-visible > *:nth-child(4) { transition-delay: .26s; }
[data-anim="stagger"].is-visible > *:nth-child(5) { transition-delay: .33s; }
[data-anim="stagger"].is-visible > *:nth-child(6) { transition-delay: .40s; }
[data-anim="stagger"].is-visible > *:nth-child(7) { transition-delay: .47s; }
[data-anim="stagger"].is-visible > *:nth-child(8) { transition-delay: .54s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll, [data-anim="stagger"] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============== FAQ ============== */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 1.25rem 0; cursor: pointer; font-weight: 600; font-size: 1.075rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); flex-shrink: 0; transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.25rem; color: var(--text-light); line-height: 1.65; }

/* ============== BREADCRUMBS ============== */
.breadcrumbs { padding: 1rem 0; font-size: .875rem; background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; }
.breadcrumbs li:not(:last-child)::after { content: '›'; margin-left: .35rem; opacity: .5; }
.breadcrumbs a { color: var(--link); }
.breadcrumbs [aria-current="page"] { color: var(--text-light); }

/* ============== PROSE (content pages) ============== */
.prose { max-width: 820px; margin: 0 auto; font-size: 1.0625rem; line-height: 1.75; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: .5rem; }
.prose blockquote { border-left: 4px solid var(--accent); padding: .5rem 0 .5rem 1.25rem; font-style: italic; color: var(--text-light); margin: 1.5rem 0; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ============== PAGE HEADER ============== */
.page-header { position: relative; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: 4rem 0 3rem; text-align: center; overflow: hidden; }
.page-header h1 { color: #fff; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,.92); font-size: 1.125rem; max-width: 700px; margin: 0 auto; }
.page-header .eyebrow { color: rgba(255,255,255,.85); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; margin-bottom: .75rem; display: inline-block; }
.page-header-lead { font-size: 1.15rem; line-height: 1.55; max-width: 780px; }

/* Hero-style page header with image + animated gradient overlay */
.page-header-hero { padding: 5.5rem 0 4.5rem; background: #0f172a; }
.page-header-hero[data-hero-image] { --page-hero-image: url('/assets/images/service-3.jpg'); }
.page-header-hero[data-hero-image="city"]     { --page-hero-image: url('/assets/images/service-2.jpg'); }
.page-header-hero[data-hero-image="services"] { --page-hero-image: url('/assets/images/service-4.jpg'); }
.page-header-hero[data-hero-image="about"]    { --page-hero-image: url('/assets/images/team.jpg'); }
.page-header-hero[data-hero-image="faq"]      { --page-hero-image: url('/assets/images/service-5.jpg'); }
.page-header-hero[data-hero-image="contact"]  { --page-hero-image: url('/assets/images/service-6.jpg'); }
.page-header-hero[data-hero-image="book"]     { --page-hero-image: url('/assets/images/service-7.jpg'); }
.page-header-hero[data-hero-image="process"]  { --page-hero-image: url('/assets/images/service-8.jpg'); }
.page-header-hero[data-hero-image="reviews"]  { --page-hero-image: url('/assets/images/service-9.jpg'); }
.page-header-hero[data-hero-image="blog"]     { --page-hero-image: url('/assets/images/service-10.jpg'); }
.page-header-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(135deg, color-mix(in srgb, var(--primary) 72%, #0f172a 28%) 0%, color-mix(in srgb, var(--secondary) 60%, #0f172a 40%) 100%), var(--page-hero-image, none);
  background-size: cover; background-position: center;
  background-blend-mode: multiply;
  opacity: .95;
  z-index: 0;
}
.page-header-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1200px 400px at 15% 20%, color-mix(in srgb, var(--primary) 35%, transparent), transparent 70%),
    radial-gradient(900px 300px at 85% 80%, color-mix(in srgb, var(--secondary) 35%, transparent), transparent 70%);
  pointer-events: none;
  animation: hero-float 18s ease-in-out infinite alternate;
}
.page-header-hero > .container { position: relative; z-index: 1; }
@keyframes hero-float { 0% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-30px, 20px, 0); } 100% { transform: translate3d(30px,-20px,0); } }

.page-header-stats { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.75rem; flex-wrap: wrap; }
.phs-item { background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); padding: .75rem 1.25rem; border-radius: 14px; text-align: center; min-width: 120px; }
.phs-item strong { display: block; font-size: 1.55rem; font-weight: 800; color: #fff; line-height: 1; }
.phs-item span { font-size: .78rem; color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .08em; margin-top: .3rem; display: block; }

/* City cards (service-areas index) */
.city-grid { gap: 1.25rem; }
.city-card { display: flex; flex-direction: column; gap: .75rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.3rem; text-decoration: none; color: var(--text); transition: all .3s ease; position: relative; overflow: hidden; }
.city-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--primary), var(--secondary)); transform: scaleY(0); transform-origin: top; transition: transform .3s ease; }
.city-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.1); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.city-card:hover::before { transform: scaleY(1); }
.city-card-head { display: flex; gap: .7rem; align-items: flex-start; }
.city-pin { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px; background: color-mix(in srgb, var(--primary) 12%, transparent); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.city-card-location { flex: 1; min-width: 0; }
.city-card-location h3 { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.25; }
.city-distance { font-size: .78rem; color: var(--text-light); font-weight: 600; letter-spacing: .02em; }
.city-card-desc { margin: 0; font-size: .9rem; line-height: 1.55; color: var(--text-light); flex: 1; }
.city-card .svc-link { margin-top: .2rem; color: var(--primary); font-weight: 700; font-size: .88rem; }

/* ============== LIVE EFFECTS — keep the site feeling alive ============== */

/* Zoom-in reveal */
[data-anim="zoom-in"] { transform: scale(.88); }
[data-anim="zoom-in"].is-visible { transform: scale(1); }
[data-anim="fade-up"] { transform: translateY(30px); }
[data-anim="fade-up"].is-visible { transform: translateY(0); }
.reveal-on-scroll { transition-delay: calc(var(--delay, 0) * 1ms); }

/* Animated site-wide gradient background bubbles — subtle, non-intrusive */
.hero, .cta-section, .page-header-hero, .about-banner {
  position: relative; overflow: hidden;
}
.hero::after,
.cta-section::after,
.about-banner::after {
  content: ''; position: absolute; inset: -60px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(520px 420px at 10% 20%, color-mix(in srgb, var(--primary) 22%, transparent), transparent 70%),
    radial-gradient(620px 480px at 90% 90%, color-mix(in srgb, var(--secondary) 20%, transparent), transparent 70%),
    radial-gradient(400px 320px at 70% 20%, color-mix(in srgb, var(--accent, var(--primary)) 15%, transparent), transparent 80%);
  filter: blur(20px);
  animation: bg-drift 22s ease-in-out infinite alternate;
  opacity: .6;
}
.hero > *, .cta-section > *, .about-banner > *, .page-header-hero > * { position: relative; z-index: 1; }
@keyframes bg-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-40px, 30px, 0) scale(1.07); }
  100% { transform: translate3d(40px, -20px, 0) scale(.95); }
}

/* Floating decorative shapes — inject via ::before on key sections */
.section-shape-host { position: relative; overflow: hidden; isolation: isolate; }
.section-shape-host::before {
  content: ''; position: absolute; width: 340px; height: 340px; right: -80px; top: -80px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--primary) 22%, transparent), transparent 75%);
  border-radius: 50%; z-index: -1; filter: blur(8px);
  animation: shape-bob 14s ease-in-out infinite alternate;
}
.section-shape-host::after {
  content: ''; position: absolute; width: 240px; height: 240px; left: -60px; bottom: -60px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--secondary) 20%, transparent), transparent 75%);
  border-radius: 50%; z-index: -1; filter: blur(6px);
  animation: shape-bob 18s ease-in-out infinite alternate-reverse;
}
@keyframes shape-bob {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, -20px) rotate(20deg); }
}

/* Animated gradient text for marquee headlines */
.gradient-text, .hero h1, .cta-section h2, .about-banner h2 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradient-flow 8s ease-in-out infinite alternate;
}
@keyframes gradient-flow { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.cta-section h2, .about-banner h2 { -webkit-text-fill-color: currentColor; background: none; animation: none; }

/* Shiny divider underline for section headings */
.section-head h2 { position: relative; display: inline-block; padding-bottom: .4rem; }
.section-head h2::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: translateX(-50%);
  border-radius: 2px;
  animation: shine-underline 3s ease-in-out infinite alternate;
}
@keyframes shine-underline {
  0%   { width: 40px; opacity: .7; }
  100% { width: 96px; opacity: 1; }
}

/* Glow hover for primary buttons */
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: filter .3s ease;
}
.btn-primary:hover::before { filter: brightness(1.1) saturate(1.1); }
.btn-primary::after {
  content: ''; position: absolute; inset: -2px; border-radius: inherit; z-index: -2;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  filter: blur(14px); opacity: 0; transition: opacity .35s ease;
}
.btn-primary:hover::after { opacity: .7; }

/* Shimmer sweep on hover — buttons + CTA cards */
.btn-primary, .cta-section, .feature-card {
  position: relative; overflow: hidden;
}
.btn-primary .btn-shimmer,
.btn-primary::before {
  /* shimmer created via ::before above */
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

/* Underline-in slide-in for nav links */
.primary-nav .nav-list a { position: relative; }
.primary-nav .nav-list a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.primary-nav .nav-list a:hover::after,
.primary-nav .nav-list a.is-current::after { transform: scaleX(1); }

/* Subtle float on service cards + team cards — now with conic-gradient halo
   that animates in on hover for a premium "alive" feel. */
.svc-card, .svc-card-image, .team-card, .feature-card, .why-card {
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .3s ease;
  isolation: isolate;
}
.svc-card::before, .team-card::before, .feature-card::before, .why-card::before {
  content: ""; position: absolute; inset: -1.5px; border-radius: inherit;
  background: conic-gradient(from var(--card-angle, 0deg),
              transparent 0deg,
              color-mix(in srgb, var(--primary) 60%, transparent) 70deg,
              color-mix(in srgb, var(--accent) 70%, transparent) 130deg,
              transparent 200deg);
  z-index: -1; opacity: 0; transition: opacity .4s ease;
  animation: card-halo-spin 6s linear infinite paused;
}
.svc-card:hover::before, .team-card:hover::before, .feature-card:hover::before, .why-card:hover::before {
  opacity: 1; animation-play-state: running;
}
@property --card-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes card-halo-spin { to { --card-angle: 360deg; } }
.svc-card:hover, .svc-card-image:hover, .team-card:hover, .feature-card:hover, .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}
@media (prefers-reduced-motion: reduce) {
  .svc-card::before, .team-card::before, .feature-card::before, .why-card::before { animation: none; }
}

/* Animated underline for big section headings — "alive" hero of every section. */
section h2 { position: relative; }
section h2.section-title-decorated::after,
.section-title::after {
  content: ""; display: block; width: 64px; height: 4px; margin-top: .8rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transform-origin: left;
  animation: title-underline-grow .9s cubic-bezier(.22,.9,.33,1) both;
}
@keyframes title-underline-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Magnetic button effect — enhanced by JS listener below */
.btn-magnetic { transition: transform .25s ease; will-change: transform; }

/* Tilt on hero images + service images */
.hero picture img, .svc-card-image img {
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.svc-card-image:hover img { transform: scale(1.05); }

/* Subtle ripple on click (buttons) */
@keyframes btn-ripple {
  0% { transform: scale(0); opacity: .5; }
  100% { transform: scale(3.5); opacity: 0; }
}
.ripple-fx {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.6); pointer-events: none;
  animation: btn-ripple .7s ease-out;
}

/* Reduce all effects for users who want less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero::after, .cta-section::after, .about-banner::after, .page-header-hero::after { display: none; }
}

/* ============== UTILITIES ============== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============== TABLES ============== */
.hours-table { width: 100%; max-width: 500px; border-collapse: collapse; margin: 1.5rem 0; }
.hours-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); }
.hours-table tr td:first-child { font-weight: 600; }
.hours-table tr td:last-child { text-align: right; color: var(--text-light); }

/* ============== MAP EMBED ============== */
.map-embed { position: relative; padding-bottom: 50%; height: 0; overflow: hidden; border-radius: var(--radius); margin: 1.5rem 0; }
.map-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ====================================================================== */
/* =============== PREMIUM LIVE EFFECTS (added pass 2) ================== */
/* Aurora ribbons, sparkle particles, spotlight cursor, shimmer headings,
   section wave dividers, animated gradient buttons, subtle lighting. */
/* ====================================================================== */

/* --- AURORA RIBBONS for mesh hero + any .has-aurora surface --- */
.has-aurora, .hero-mesh { position: relative; isolation: isolate; }
.has-aurora::before, .hero-mesh::before {
  content: ""; position: absolute; inset: -10% -5%;
  background:
    conic-gradient(from 120deg at 30% 20%,
      color-mix(in srgb, var(--primary) 60%, transparent) 0deg,
      transparent 80deg,
      color-mix(in srgb, var(--accent) 55%, transparent) 160deg,
      transparent 240deg,
      color-mix(in srgb, var(--secondary) 50%, transparent) 320deg,
      transparent 360deg);
  filter: blur(80px) saturate(1.35);
  opacity: .45; z-index: -2; pointer-events: none;
  animation: aurora-drift 26s linear infinite;
  mix-blend-mode: screen;
}
@keyframes aurora-drift {
  0%   { transform: rotate(0deg)   scale(1);   }
  50%  { transform: rotate(180deg) scale(1.15);}
  100% { transform: rotate(360deg) scale(1);   }
}
.hero-mesh-bg-bold.has-aurora::before { opacity: .65; }

/* --- SPARKLE PARTICLES (DOM injected via JS) --- */
.sparkle-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.sparkle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, color-mix(in srgb, var(--accent) 85%, #fff) 55%, transparent 70%);
  box-shadow: 0 0 8px 2px color-mix(in srgb, var(--accent) 70%, #fff);
  opacity: 0; will-change: transform, opacity;
  animation: sparkle-float var(--dur,8s) ease-in-out var(--delay,0s) infinite;
}
.sparkle.s-lg { width: 6px; height: 6px; box-shadow: 0 0 14px 3px color-mix(in srgb, var(--primary) 60%, #fff); }
.sparkle.s-sm { width: 3px; height: 3px; }
@keyframes sparkle-float {
  0%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.6); }
  15%      { opacity: 1; transform: translate3d(8px,-12px,0) scale(1); }
  50%      { opacity: .6; transform: translate3d(-6px,-40px,0) scale(1.1); }
  85%      { opacity: .2; transform: translate3d(12px,-70px,0) scale(.8); }
}
@media (prefers-reduced-motion: reduce) { .sparkle { animation: none !important; opacity: 0 !important; } }

/* --- GLOBAL SPOTLIGHT CURSOR FOLLOW --- */
/* A soft radial highlight tracks the pointer across the page. Subtle enough
   to add "life" without being distracting. Disabled on touch / reduced motion. */
.cursor-spotlight {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--primary) 16%, transparent) 0%,
    color-mix(in srgb, var(--accent)  10%, transparent) 35%,
    transparent 68%);
  transform: translate3d(-50%,-50%,0);
  pointer-events: none; z-index: 5;
  mix-blend-mode: screen;
  filter: blur(8px);
  opacity: 0; transition: opacity .5s ease;
  will-change: transform;
}
.cursor-spotlight.is-active { opacity: 1; }
@media (hover: none), (prefers-reduced-motion: reduce) { .cursor-spotlight { display: none !important; } }

/* --- SHIMMER LIGHT-SWEEP on hero headlines + key section titles --- */
.shimmer-head, .hero h1, .section-title, section h2.shimmer-head {
  position: relative; background-clip: padding-box;
}
.shimmer-head::after, .hero h1::after, section.shimmer-section h2::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,.55) 50%,
    transparent 60%,
    transparent 100%);
  background-size: 250% 100%;
  background-position: 200% 0;
  mix-blend-mode: overlay;
  animation: shimmer-sweep 5.5s ease-in-out infinite;
  animation-delay: 1.2s;
  border-radius: inherit;
}
@keyframes shimmer-sweep {
  0%   { background-position: 200% 0; opacity: 0; }
  20%  { opacity: 1; }
  60%  { background-position: -80% 0; opacity: .7; }
  100% { background-position: -80% 0; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .shimmer-head::after, .hero h1::after, section.shimmer-section h2::after { animation: none; opacity: 0; } }

/* --- ANIMATED SECTION WAVE DIVIDER --- */
.section-wave { display: block; width: 100%; height: 80px; margin: 0; line-height: 0; }
.section-wave svg { display: block; width: 100%; height: 100%; }
.section-wave .wave-path-1 { animation: wave-drift 14s ease-in-out infinite;      opacity: .85; }
.section-wave .wave-path-2 { animation: wave-drift 18s ease-in-out infinite reverse; opacity: .55; }
.section-wave .wave-path-3 { animation: wave-drift 22s ease-in-out infinite;      opacity: .35; }
@keyframes wave-drift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-28px); }
}
@media (prefers-reduced-motion: reduce) { .section-wave [class^="wave-path"] { animation: none; } }

/* --- LIGHT-RAY overlay (subtle "god-rays" on hero) --- */
.has-lightray { position: relative; }
.has-lightray::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 90% at 80% -20%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 60%),
    radial-gradient(ellipse 40% 70% at 10% -10%, color-mix(in srgb, var(--primary) 20%, transparent), transparent 60%);
  opacity: .55; mix-blend-mode: screen;
  animation: lightray-pulse 9s ease-in-out infinite;
}
@keyframes lightray-pulse {
  0%, 100% { opacity: .45; }
  50%      { opacity: .75; }
}

/* --- ANIMATED GRADIENT BORDER on primary CTAs --- */
.btn-primary.btn-border-flow, .cta-primary.btn-border-flow {
  position: relative; isolation: isolate;
}
.btn-primary.btn-border-flow::before, .cta-primary.btn-border-flow::before {
  content: ""; position: absolute; inset: -2px; border-radius: inherit; padding: 2px;
  background: conic-gradient(from var(--ang,0deg),
    color-mix(in srgb, var(--primary) 85%, #fff),
    color-mix(in srgb, var(--accent) 85%, #fff),
    color-mix(in srgb, var(--secondary) 85%, #fff),
    color-mix(in srgb, var(--primary) 85%, #fff));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: border-flow 5s linear infinite;
  z-index: -1; opacity: .9;
}
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes border-flow { to { --ang: 360deg; } }

/* --- Table of contents --- */
.toc { scroll-margin-top: 90px; }
.toc a:hover { color: var(--primary); text-decoration: underline; }
article h2[id], article h3[id] { scroll-margin-top: 90px; }
article h2[id]::before { content: ""; display: block; height: 80px; margin-top: -80px; visibility: hidden; pointer-events: none; }


/* ============== KEY FACTS BOX (GEO / AI-extraction block) ============== */
.key-facts {
  margin: 2rem auto; max-width: 860px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary) 4%, var(--surface)) 0%,
    color-mix(in srgb, var(--accent) 6%, var(--surface)) 100%);
  border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
  border-left: 5px solid var(--primary);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 30px -18px color-mix(in srgb, var(--primary) 35%, transparent);
}
.key-facts-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap;
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
  padding-bottom: .6rem; margin-bottom: .9rem;
}
.key-facts-title {
  font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
}
.key-facts-updated { font-size: .78rem; color: var(--text-light); }
.key-facts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .85rem 1.5rem; margin: 0;
}
.key-facts-grid > div { display: flex; flex-direction: column; gap: .1rem; }
.key-facts-grid dt {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-light);
}
.key-facts-grid dd {
  margin: 0; font-size: .98rem; font-weight: 500; color: var(--text);
  line-height: 1.35;
}
.key-facts-grid dd a { color: var(--primary); text-decoration: none; font-weight: 600; }
.key-facts-grid dd a:hover { text-decoration: underline; }
.key-facts-subtle { color: var(--text-light); font-weight: 400; font-size: .92em; }
@media (max-width: 560px) {
  .key-facts { padding: 1rem 1.15rem; margin: 1.25rem 0; }
  .key-facts-grid { grid-template-columns: 1fr 1fr; gap: .7rem 1rem; }
}

