/* the-chimney-sweep-spot-inc - auto-generated stylesheet */
:root {
  --primary: #320B52;
  --secondary: #5A1F82;
  --accent: #F4C95D;
  --bg: #FFFFFF;
  --surface: #F4EEF8;
  --text: #320B52;
  --text-light: #513071;
  --cta-bg: #5A1F82;
  --cta-text: #FFFFFF;
  --header-bg: #FFFFFF;
  --header-text: #320B52;
  --footer-bg: #320B52;
  --footer-text: #E7D8F0;
  --link: #5A1F82;
  --success: #2E8B57;
  --warning: #C08B1F;
  --error: #B33A3A;
  --border: #DBCBE6;

  --radius: 0.71rem;
  --radius-btn: 0.25rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 5px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 10px rgba(0,0,0,.12);

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

  --container-max: 1200px;
  --section-py: 99px;
  --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.67; 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.008em; 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 lockup — /assets/logo-mark.png is the FULL wide brand asset
 * (icon + company wordmark + city subline) shipped in its natural aspect
 * ratio (~16:9). We render it as a single wide image, no separate text
 * span. The lockup is the visual anchor of the page so we let it run
 * BIG across the available width. */
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--header-text); flex: 1 1 auto; min-width: 0; max-width: 460px; position: relative; padding: 6px 0; }
.brand:hover { text-decoration: none; color: var(--header-text); }
.brand-mark {
  width: 100%; max-width: 460px; height: auto; max-height: 96px; object-fit: contain; flex: 0 1 auto; display: block;
  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.03); 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)); }
/* Hide any leftover .brand-text span from older variants — the lockup
 * already includes the company name so a second copy looks broken. */
.brand-text, .brand-line-2 { display: none !important; }
/* Variants tag the brand differently — keep all of them aligned to the
 * SAME big-lockup behavior so every header looks consistent. */
.brand-lockup { max-width: 460px; }
.brand-lockup .brand-mark { max-width: 460px; max-height: 100px; }
.brand-compact { max-width: 380px; }
.brand-compact .brand-mark { max-width: 380px; max-height: 80px; }
@media (max-width: 1100px) {
  .brand, .brand-lockup { max-width: 380px; }
  .brand-mark, .brand-lockup .brand-mark { max-width: 380px; max-height: 84px; }
}
@media (max-width: 900px) {
  .brand, .brand-lockup { max-width: 320px; }
  .brand-mark, .brand-lockup .brand-mark { max-width: 320px; max-height: 72px; }
  .brand-compact { max-width: 280px; }
  .brand-compact .brand-mark { max-width: 280px; max-height: 64px; }
}
@media (max-width: 520px) {
  .brand, .brand-lockup { max-width: 240px; }
  .brand-mark, .brand-lockup .brand-mark { max-width: 240px; max-height: 60px; }
  .brand-compact { max-width: 220px; }
  .brand-compact .brand-mark { max-width: 220px; max-height: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-mark { transition: none !important; }
  .brand:hover .brand-mark { transform: none; }
}

/* 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; }
.form-success { padding: 1.75rem 1.5rem; border-radius: var(--radius); background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(34,197,94,.04)); border: 1.5px solid rgba(34,197,94,.35); color: var(--text); text-align: center; }
.form-success h3 { color: #15803d; margin: 0 0 .5rem; }
.form-error { margin: .75rem 0 1rem; padding: .9rem 1.05rem; border-radius: 12px; background: linear-gradient(135deg, rgba(239,68,68,.12), rgba(239,68,68,.04)); border: 1.5px solid rgba(239,68,68,.45); color: #991b1b; font-size: .95rem; line-height: 1.45; }
.form-error a { color: #991b1b; font-weight: 700; text-decoration: underline; margin-left: .25rem; }

/* ============== THANK-YOU PAGE ============== */
.ty-hero { position: relative; padding: 4.5rem 0 3.5rem; background: linear-gradient(135deg, var(--primary) 0%, color-mix(in oklab, var(--primary) 75%, #000 25%) 100%); color: #fff; overflow: hidden; isolation: isolate; }
.ty-hero::before { content: ''; position: absolute; inset: -40% -10% auto auto; width: 70%; height: 200%; background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%); pointer-events: none; z-index: -1; }
.ty-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ty-check { width: 96px; height: 96px; margin: 0 auto 1.4rem; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); animation: tyPop .6s cubic-bezier(.5,1.6,.5,1) both; }
@keyframes tyPop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
.ty-eyebrow { letter-spacing: .14em; font-size: .8rem; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,.85); margin: 0 0 .75rem; }
.ty-h1 { font-size: clamp(1.85rem, 4.2vw, 2.85rem); line-height: 1.15; font-weight: 800; margin: 0 0 1rem; color: #fff; }
.ty-lead { font-size: clamp(1.05rem, 1.8vw, 1.18rem); line-height: 1.55; color: rgba(255,255,255,.92); margin: 0 0 1.4rem; }
.ty-confirm { display: inline-flex; gap: .55rem; align-items: baseline; padding: .55rem 1.05rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; margin-bottom: 1.4rem; }
.ty-confirm-lbl { font-size: .85rem; opacity: .85; }
.ty-confirm-id { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 1.05rem; letter-spacing: .06em; color: #fff; }
.ty-cta-row { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; margin-top: .25rem; }
.ty-cta-row .btn { min-width: 190px; }
.ty-cta-row .btn-outline { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.55); }
.ty-cta-row .btn-outline:hover { background: rgba(255,255,255,.2); }

.ty-next { padding: 4rem 0 3rem; background: var(--bg); }
.ty-timeline { list-style: none; padding: 0; margin: 2rem auto 0; max-width: 780px; display: grid; gap: 1.25rem; }
.ty-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.1rem; padding: 1.5rem 1.5rem 1.5rem 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.ty-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; }
.ty-step h3 { margin: .15rem 0 .35rem; font-size: 1.18rem; color: var(--text); }
.ty-step p { margin: 0; color: var(--text-light); line-height: 1.55; }

.ty-card-row { padding: 3rem 0; background: var(--surface); }
.ty-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.ty-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.5rem; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.ty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ty-card-icon { width: 56px; height: 56px; margin: 0 auto 1rem; background: color-mix(in oklab, var(--primary) 12%, transparent); color: var(--primary); border-radius: 16px; display: grid; place-items: center; }
.ty-card h3 { margin: 0 0 .65rem; font-size: 1.15rem; color: var(--text); }
.ty-card p { margin: 0 0 .85rem; color: var(--text-light); font-size: .95rem; line-height: 1.5; }
.ty-card .btn { margin-top: .25rem; }
.ty-card .ty-hours { width: 100%; font-size: .9rem; }
.ty-card .ty-hours td { padding: .25rem .25rem; }
.ty-card .ty-email-link { color: var(--link); display: inline-flex; align-items: center; gap: .35rem; font-size: .92rem; word-break: break-all; }

.ty-services { padding: 3.5rem 0; background: var(--bg); }
.ty-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: .75rem; max-width: 960px; margin: 1.5rem auto 0; }
.ty-service-link { display: flex; align-items: center; gap: .85rem; padding: .9rem 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--text); text-decoration: none; transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.ty-service-link:hover { background: color-mix(in oklab, var(--primary) 8%, var(--surface)); border-color: var(--primary); transform: translateX(4px); }
.ty-service-icon { color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; }
.ty-service-name { flex: 1 1 auto; font-weight: 600; }
.ty-service-arrow { color: var(--primary); font-weight: 700; transition: transform var(--transition); }
.ty-service-link:hover .ty-service-arrow { transform: translateX(4px); }
.ty-services-cta { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

.ty-trust { padding: 2.5rem 0; background: var(--surface); border-top: 1px solid var(--border); }
.ty-trust-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.ty-stars { font-size: 1.4rem; color: #f59e0b; letter-spacing: .15em; margin-bottom: .5rem; }
.ty-trust-text { color: var(--text-light); font-size: .98rem; line-height: 1.55; margin: 0; }

@media (max-width: 640px) {
  .ty-hero { padding: 3rem 0 2.5rem; }
  .ty-step { grid-template-columns: 44px 1fr; padding: 1.2rem 1.1rem; gap: .85rem; }
  .ty-step-num { width: 36px; height: 36px; font-size: 1rem; }
  .ty-cta-row .btn { width: 100%; min-width: 0; }
}

/* ============== 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
 * IMPORTANT: min-width: 0 is CRITICAL. Without it, the slider-track's intrinsic
 * content width (all slides laid out in a flex row) forces this wrapper to
 * stretch, which blows out the parent grid column and leaks content off the
 * right edge of the viewport. This was a real bug on the testimonials v5
 * "thumbs" variant where the slider lives in a grid-2-split cell. */
.slider-wrap { position: relative; padding: 0 1rem; min-width: 0; max-width: 100%; }
.slider-track { display: flex; gap: 1.5rem; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 1rem 0 2rem; scrollbar-width: none; min-width: 0; width: 100%; }
.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; min-width: 0; }
.slider-slide > * { max-width: 100%; min-width: 0; }
.slide-1-3 { width: calc((100% - 3rem) / 3); min-width: min(300px, 100%); }
.slide-1-2 { width: calc((100% - 1.5rem) / 2); min-width: min(320px, 100%); }
.slide-center { width: 70%; min-width: min(320px, 100%); }
@media (max-width: 900px) { .slide-1-3, .slide-1-2 { width: min(85%, 400px); min-width: min(260px, 100%); } }
@media (max-width: 600px) { .slide-center, .slide-1-3, .slide-1-2 { width: 88%; min-width: min(240px, 100%); } }

/* Every direct child of any common grid layout must establish a min-width:0
 * context so flex/overflow children inside don't blow out the column.
 * This is the single most important CSS-safety rule in this file. */
.grid-2 > *, .grid-2-split > *, .grid-3 > *,
.hero-inner > *, .hero-mesh .hero-inner > *,
.header-centered-inner > *, .section-head > * { min-width: 0; }

/* Prevent ALL direct children of main/section from horizontally overflowing
 * the viewport. Images, iframes, code blocks, and tables get an extra guard. */
main, main > section { max-width: 100vw; overflow-x: clip; }
main img, main iframe, main video, main table { max-width: 100%; }
/* Tables inside blog posts occasionally have wide content — make them scroll
 * inside their own container instead of pushing the whole page. */
article table { display: block; max-width: 100%; overflow-x: auto; }

/* 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; }

/* City + share enhancements (Apr 2026 blog upgrade) */
.blog-card-city {
  position: absolute; bottom: .75rem; left: .75rem; z-index: 2;
  background: rgba(0,0,0,.72); color: #fff; padding: .3rem .65rem;
  border-radius: 999px; font-size: .72rem; font-weight: 600;
  letter-spacing: .02em; backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); display: inline-flex; align-items: center; gap: .25rem;
}
.blog-post-hero-pills { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.blog-city-pill {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.18); color: #fff; padding: .35rem .8rem;
  border-radius: 999px; font-size: .78rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.blog-share-row { margin-left: auto; display: flex; gap: .4rem; }
.blog-share-btn {
  width: 36px; height: 36px; display: inline-flex; align-items: center;
  justify-content: center; border-radius: 50%; background: var(--bg);
  border: 1px solid var(--border); color: var(--text); text-decoration: none;
  font-weight: 700; font-size: .9rem; transition: all .2s ease;
}
.blog-share-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* Secondary city filter chip bar */
.blog-city-bar {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  margin: 0 auto 1.5rem; padding: .85rem 1rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, var(--surface)), var(--surface));
  border-radius: var(--radius); border: 1px solid var(--border);
}
.blog-city-bar-label { font-size: .82rem; color: var(--text-light); font-weight: 600; margin-right: .25rem; }
.blog-city-chip {
  padding: .35rem .8rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: all .15s ease; white-space: nowrap;
}
.blog-city-chip:hover { border-color: var(--primary); color: var(--primary); }
.blog-city-chip.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Polish blog post prose */
.blog-post-prose h2 {
  margin-top: 2.4rem; margin-bottom: .9rem; font-size: 1.6rem; line-height: 1.25;
  color: var(--text); padding-bottom: .35rem;
  border-bottom: 2px solid color-mix(in srgb, var(--primary) 18%, transparent);
}
.blog-post-prose h3 { margin-top: 1.6rem; margin-bottom: .6rem; font-size: 1.25rem; }
.blog-post-prose ul, .blog-post-prose ol { padding-left: 1.4rem; line-height: 1.7; }
.blog-post-prose li { margin: .35rem 0; }
.blog-post-prose blockquote {
  border-left: 4px solid var(--primary); padding: .85rem 1.2rem; margin: 1.6rem 0;
  background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-light); font-style: italic;
}
.blog-post-prose a {
  color: var(--primary); text-decoration: underline; text-decoration-thickness: 1.5px;
  text-underline-offset: 2px; transition: color .15s ease;
}
.blog-post-prose a:hover { color: color-mix(in srgb, var(--primary) 80%, #000); text-decoration-thickness: 2.5px; }
.blog-post-prose img { border-radius: var(--radius); margin: 1.4rem 0; max-width: 100%; height: auto; box-shadow: var(--shadow-sm); }
@media (max-width: 700px) {
  .blog-author-byline { flex-wrap: wrap; }
  .blog-share-row { width: 100%; margin-left: 0; padding-top: .75rem; border-top: 1px solid var(--border); }
}

/* ============== 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 logo — logo-light.svg is ALREADY rendered with white text and the
 * AI-generated symbol on transparent bg. Applying brightness(0) invert(1)
 * here turned the whole asset into a white blob (bug reported). We keep
 * the logo as-is. If a site ships a dark-only logo, swap logo-light.svg
 * instead of filter-hacking it at runtime. */
.footer-brand-col img { max-height: 60px; width: auto; max-width: 260px; object-fit: contain; object-position: left center; }
.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 — 20 mobile-only variants ============== */
/* Shared base: every variant root has class .mob-cta. Each variant gets a
 * .mob-cta-vN modifier; per-variant rules layer on top. The bar:
 *   1) is HIDDEN on desktop (≥ 901px) entirely,
 *   2) starts hidden on mobile (display:none) until JS adds .is-shown after
 *      the user begins scrolling — handled in main.js via .show-on-scroll.
 *   3) Reserves bottom-padding on body so the bar never overlaps content. */
.mob-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; }
.mob-cta a, .mob-cta button { text-decoration: none; }
@media (max-width: 900px) {
  .mob-cta.is-shown { display: flex; }
  body { padding-bottom: 76px; }
}
@keyframes mc-pulse { 0%,100%{box-shadow:0 0 0 0 var(--primary)} 70%{box-shadow:0 0 0 12px transparent} }
@keyframes mc-marq  { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* v0 — classic split */
.mob-cta-v0 { display: none; gap: .5rem; padding: .5rem; background: var(--bg); border-top: 1px solid var(--border); box-shadow: 0 -6px 18px rgba(0,0,0,.10); }
.mob-cta-v0 .mc-btn { flex:1; min-height:48px; display:inline-flex; align-items:center; justify-content:center; gap:.4rem; border-radius:999px; font-weight:700; }
.mob-cta-v0 .mc-call { background: var(--bg); color: var(--primary); border: 2px solid var(--primary); }
.mob-cta-v0 .mc-book { background: var(--primary); color: var(--cta-text,#fff); }

/* v1 — wide quote + call icon */
.mob-cta-v1 { display: none; gap: .5rem; padding: .5rem; background: var(--bg); border-top: 1px solid var(--border); box-shadow: 0 -6px 18px rgba(0,0,0,.10); align-items:center; }
.mob-cta-v1 .mc-icon-only { width:52px; height:52px; border-radius:50%; background:var(--primary); color:#fff; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.mob-cta-v1 .mc-wide-primary { flex:1; min-height:52px; padding:0 1rem; border-radius:14px; background:linear-gradient(135deg,var(--primary),var(--accent)); color:#fff; display:flex; align-items:center; justify-content:space-between; font-weight:800; }
.mob-cta-v1 .mc-arrow { font-size:1.3rem; }

/* v2 — three-action dock */
.mob-cta-v2 { display: none; gap: 0; padding: .25rem 0; background: var(--bg); border-top: 1px solid var(--border); box-shadow: 0 -6px 18px rgba(0,0,0,.10); }
.mob-cta-v2 .mc-dock { flex:1; min-height:60px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.15rem; color:var(--text); font-size:.7rem; font-weight:600; }
.mob-cta-v2 .mc-dock-icn { width:36px; height:36px; border-radius:50%; background:var(--surface); display:inline-flex; align-items:center; justify-content:center; }
.mob-cta-v2 .mc-dock-primary .mc-dock-icn { background:var(--primary); color:#fff; }
.mob-cta-v2 .mc-dock-primary { color:var(--primary); }

/* v3 — glassy floating pill */
.mob-cta-v3 { display: none; padding: .75rem; }
.mob-cta-v3 .mc-glass { display:flex; gap:.5rem; padding:.45rem; background:rgba(255,255,255,.78); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px); border-radius:999px; box-shadow:0 8px 24px rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.6); }
.mob-cta-v3 .mc-pill { flex:1; min-height:44px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; gap:.4rem; font-weight:700; }
.mob-cta-v3 .mc-pill-ghost { background:transparent; color:var(--primary); border:1.5px solid var(--primary); }
.mob-cta-v3 .mc-pill-fill { background:var(--primary); color:#fff; }

/* v4 — gradient marquee ribbon */
.mob-cta-v4 { display: none; flex-direction:column; gap:0; background:linear-gradient(135deg,var(--primary),var(--accent)); color:#fff; }
.mob-cta-v4 .mc-marquee { display:block; overflow:hidden; white-space:nowrap; padding:.3rem 0; font-size:.78rem; opacity:.95; animation: mc-marq 18s linear infinite; }
.mob-cta-v4 .mc-row { display:flex; gap:.5rem; padding:.5rem; background:rgba(0,0,0,.18); }
.mob-cta-v4 .mc-btn-soft { flex:1; min-height:46px; display:inline-flex; align-items:center; justify-content:center; gap:.4rem; background:rgba(255,255,255,.18); color:#fff; border-radius:10px; font-weight:700; }
.mob-cta-v4 .mc-btn-bold { flex:0 0 110px; min-height:46px; display:inline-flex; align-items:center; justify-content:center; background:#fff; color:var(--primary); border-radius:10px; font-weight:800; }

/* v5 — notch-cut center FAB */
.mob-cta-v5 { display: none; align-items:flex-end; gap:0; height:74px; pointer-events:none; }
.mob-cta-v5 > * { pointer-events:auto; }
.mob-cta-v5 .mc-half { flex:1; height:60px; background:var(--bg); border-top:1px solid var(--border); display:inline-flex; align-items:center; justify-content:center; gap:.4rem; color:var(--primary); font-weight:700; box-shadow:0 -6px 14px rgba(0,0,0,.10); }
.mob-cta-v5 .mc-half-l { border-top-right-radius:30px; }
.mob-cta-v5 .mc-half-r { border-top-left-radius:30px; }
.mob-cta-v5 .mc-notch-fab { width:64px; height:64px; border-radius:50%; background:var(--primary); color:#fff; display:inline-flex; align-items:center; justify-content:center; box-shadow:0 8px 20px rgba(0,0,0,.25); margin:0 -8px; transform:translateY(-6px); }

/* v6 — pull-up handle */
.mob-cta-v6 { display: none; flex-direction:column; background:var(--bg); border-top:1px solid var(--border); box-shadow:0 -6px 18px rgba(0,0,0,.10); }
.mob-cta-v6 .mc-handle { display:flex; align-items:center; justify-content:center; gap:.5rem; padding:.5rem; min-height:40px; background:transparent; border:0; color:var(--primary); font-weight:700; cursor:pointer; }
.mob-cta-v6 .mc-handle-grip { width:42px; height:4px; border-radius:2px; background:var(--border); display:inline-block; }
.mob-cta-v6 .mc-pull-body { display:flex; flex-direction:column; gap:.5rem; padding:0 .5rem .5rem; }
.mob-cta-v6 .mc-pull-body .mc-btn { min-height:48px; display:inline-flex; align-items:center; justify-content:center; gap:.4rem; border-radius:999px; font-weight:700; }
.mob-cta-v6 .mc-call { background:var(--bg); color:var(--primary); border:2px solid var(--primary); }
.mob-cta-v6 .mc-book { background:var(--primary); color:#fff; }
.mob-cta-v6[data-mc-pullup="open"] .mc-pull-body { display:flex; }
.mob-cta-v6[data-mc-pullup="open"] .mc-handle .mc-handle-grip { transform:rotate(180deg); }

/* v7 — brutalist hard-shadow */
.mob-cta-v7 { display: none; gap: .5rem; padding: .6rem; background:#000; }
.mob-cta-v7 .mc-brut { flex:1; min-height:54px; display:inline-flex; align-items:center; justify-content:center; gap:.4rem; border-radius:0; border:2px solid #000; font-weight:900; letter-spacing:.04em; box-shadow:4px 4px 0 #000; }
.mob-cta-v7 .mc-brut-call { background:#fff; color:#000; }
.mob-cta-v7 .mc-brut-book { background:var(--accent); color:#000; }

/* v8 — open-now live badge */
.mob-cta-v8 { display: none; gap:.5rem; padding:.5rem; background:var(--bg); border-top:1px solid var(--border); align-items:center; box-shadow:0 -6px 18px rgba(0,0,0,.10); }
.mob-cta-v8 .mc-live { display:inline-flex; align-items:center; gap:.4rem; padding:.35rem .6rem; background:#dcfce7; color:#166534; border-radius:999px; font-weight:700; font-size:.78rem; }
.mob-cta-v8 .mc-pulse { width:8px; height:8px; border-radius:50%; background:#16a34a; animation:mc-pulse 1.6s infinite; }
.mob-cta-v8 .mc-mini-call { width:46px; height:46px; border-radius:50%; background:var(--primary); color:#fff; display:inline-flex; align-items:center; justify-content:center; }
.mob-cta-v8 .mc-cta-wide { flex:1; min-height:46px; padding:0 .8rem; border-radius:10px; background:var(--accent); color:#000; display:flex; align-items:center; justify-content:center; font-weight:800; }

/* v9 — outlined dual + divider */
.mob-cta-v9 { display: none; gap:0; padding:.4rem; background:var(--bg); border-top:1px solid var(--border); align-items:stretch; }
.mob-cta-v9 .mc-outline { flex:1; min-height:48px; display:inline-flex; align-items:center; justify-content:center; gap:.4rem; border:2px solid var(--primary); color:var(--primary); border-radius:0; font-weight:700; }
.mob-cta-v9 .mc-outline:first-of-type { border-radius:8px 0 0 8px; border-right:0; }
.mob-cta-v9 .mc-outline-fill { background:var(--primary); color:#fff; border-radius:0 8px 8px 0; border-left:0; }
.mob-cta-v9 .mc-div { width:1px; background:var(--primary); }

/* v10 — talk to a real person */
.mob-cta-v10 { display: none; gap:.5rem; padding:.5rem; background:var(--bg); border-top:1px solid var(--border); box-shadow:0 -6px 18px rgba(0,0,0,.10); }
.mob-cta-v10 .mc-talk { flex:1; min-height:56px; padding:.4rem .8rem; display:flex; flex-direction:column; justify-content:center; background:linear-gradient(135deg,var(--primary),var(--accent)); color:#fff; border-radius:12px; font-size:.78rem; }
.mob-cta-v10 .mc-talk strong { font-size:.95rem; }
.mob-cta-v10 .mc-icon-card { width:56px; height:56px; border-radius:12px; background:var(--surface); color:var(--primary); display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--border); }

/* v11 — avatar reply card */
.mob-cta-v11 { display: none; gap:.5rem; padding:.5rem; background:var(--bg); border-top:1px solid var(--border); align-items:center; }
.mob-cta-v11 .mc-av img { width:40px; height:40px; border-radius:50%; object-fit:cover; }
.mob-cta-v11 .mc-name { display:flex; flex-direction:column; flex:1; min-width:0; font-size:.78rem; line-height:1.2; }
.mob-cta-v11 .mc-name strong { font-size:.85rem; color:var(--text); }
.mob-cta-v11 .mc-name small { color:var(--text-light); }
.mob-cta-v11 .mc-i { width:44px; height:44px; border-radius:50%; background:var(--surface); color:var(--primary); display:inline-flex; align-items:center; justify-content:center; }
.mob-cta-v11 .mc-i-pri { background:var(--primary); color:#fff; }

/* v12 — slanted gradient slabs */
.mob-cta-v12 { display: none; gap:0; padding:0; }
.mob-cta-v12 .mc-skew { flex:1; min-height:54px; display:flex; align-items:center; justify-content:center; font-weight:800; transform:skewX(-10deg); color:#fff; }
.mob-cta-v12 .mc-skew span { transform:skewX(10deg); display:inline-flex; align-items:center; gap:.4rem; }
.mob-cta-v12 .mc-skew-l { background:linear-gradient(135deg,var(--primary),#222); margin-left:-12px; padding-right:8px; clip-path:polygon(12px 0, 100% 0, 100% 100%, 0 100%); }
.mob-cta-v12 .mc-skew-r { background:linear-gradient(135deg,var(--accent),var(--primary)); margin-right:-12px; padding-left:8px; clip-path:polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%); }

/* v13 — segmented capsule */
.mob-cta-v13 { display: none; padding:.55rem; justify-content:center; }
.mob-cta-v13 .mc-seg { display:flex; gap:0; background:var(--surface); border:1px solid var(--border); border-radius:999px; padding:.25rem; box-shadow:0 4px 14px rgba(0,0,0,.08); width:100%; max-width:420px; }
.mob-cta-v13 .mc-seg-item { flex:1; min-height:42px; display:inline-flex; align-items:center; justify-content:center; gap:.3rem; border-radius:999px; color:var(--text); font-weight:700; }
.mob-cta-v13 .mc-seg-active { background:var(--primary); color:#fff; }

/* v14 — minimal text-only */
.mob-cta-v14 { display: none; gap:.5rem; padding:.85rem; align-items:center; justify-content:center; background:var(--bg); border-top:1px solid var(--border); font-weight:700; }
.mob-cta-v14 .mc-text { color:var(--text); border-bottom:2px solid var(--border); padding-bottom:2px; }
.mob-cta-v14 .mc-text-strong { color:var(--primary); border-bottom-color:var(--primary); }

/* v15 — emergency 24/7 bolt */
.mob-cta-v15 { display: none; gap:.5rem; padding:.5rem; background:linear-gradient(135deg,#dc2626,#7f1d1d); color:#fff; align-items:center; }
.mob-cta-v15 .mc-247 { font-weight:900; font-size:.85rem; padding:.3rem .55rem; border-radius:6px; background:rgba(255,255,255,.18); }
.mob-cta-v15 .mc-bolt { flex:1; min-height:50px; display:inline-flex; align-items:center; justify-content:center; gap:.5rem; background:#fff; color:#dc2626; border-radius:10px; font-weight:800; }
.mob-cta-v15 .mc-bolt-icn { font-size:1.3rem; animation:mc-pulse 1.4s infinite; color:#dc2626; border-radius:50%; }

/* v16 — chat bubbles peek */
.mob-cta-v16 { display: none; gap:.6rem; padding:.5rem .75rem; background:transparent; align-items:flex-end; pointer-events:none; }
.mob-cta-v16 > * { pointer-events:auto; }
.mob-cta-v16 .mc-bub { flex:1; min-height:50px; padding:.5rem .9rem; border-radius:18px; display:inline-flex; align-items:center; justify-content:center; gap:.4rem; background:#fff; color:var(--text); font-weight:700; box-shadow:0 6px 18px rgba(0,0,0,.18); position:relative; }
.mob-cta-v16 .mc-bub-r { background:var(--primary); color:#fff; }
.mob-cta-v16 .mc-bub-tail { position:absolute; bottom:-6px; left:24px; width:14px; height:14px; background:inherit; transform:rotate(45deg); border-radius:0 0 4px 0; }
.mob-cta-v16 .mc-bub-r .mc-bub-tail { left:auto; right:24px; }

/* v17 — jumbo book + rating strip */
.mob-cta-v17 { display: none; flex-direction:column; gap:0; background:var(--bg); border-top:1px solid var(--border); box-shadow:0 -6px 18px rgba(0,0,0,.10); }
.mob-cta-v17 .mc-rate { background:var(--surface); padding:.3rem .6rem; font-size:.78rem; color:var(--text-light); text-align:center; letter-spacing:.06em; color:#f59e0b; font-weight:700; }
.mob-cta-v17 .mc-rate small { color:var(--text-light); font-weight:500; margin-left:.3rem; }
.mob-cta-v17 .mc-jumbo { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:60px; padding:.6rem; background:var(--primary); color:#fff; font-weight:800; font-size:1.05rem; }
.mob-cta-v17 .mc-jumbo-sub { font-size:.78rem; opacity:.85; font-weight:500; }

/* v18 — dock with central FAB */
.mob-cta-v18 { display: none; gap:0; padding:0 .5rem; align-items:flex-end; height:74px; pointer-events:none; background:var(--bg); border-top:1px solid var(--border); }
.mob-cta-v18 > * { pointer-events:auto; }
.mob-cta-v18 .mc-pill-l, .mob-cta-v18 .mc-pill-r { flex:1; min-height:50px; display:inline-flex; align-items:center; justify-content:center; gap:.3rem; color:var(--primary); font-weight:700; }
.mob-cta-v18 .mc-center { width:60px; height:60px; border-radius:50%; background:var(--primary); color:#fff; display:inline-flex; align-items:center; justify-content:center; box-shadow:0 8px 22px rgba(0,0,0,.25); margin:0 .4rem; transform:translateY(-10px); border:4px solid var(--bg); }

/* v19 — accordion contact row */
.mob-cta-v19 { display: none; flex-direction:column; gap:0; background:var(--bg); border-top:1px solid var(--border); box-shadow:0 -6px 18px rgba(0,0,0,.10); }
.mob-cta-v19 .mc-accordion-bar { display:flex; align-items:center; justify-content:space-between; padding:.6rem 1rem; min-height:44px; border:0; background:var(--primary); color:#fff; font-weight:700; cursor:pointer; }
.mob-cta-v19 .mc-acc-caret { transition:transform .25s; }
.mob-cta-v19[data-mc-accordion="open"] .mc-acc-caret { transform:rotate(180deg); }
.mob-cta-v19 .mc-accordion-body { display:flex; flex-direction:column; }
.mob-cta-v19 .mc-row-item { padding:.7rem 1rem; min-height:48px; display:inline-flex; align-items:center; gap:.5rem; color:var(--text); border-bottom:1px solid var(--border); }
.mob-cta-v19 .mc-row-item-pri { background:var(--surface); color:var(--primary); font-weight:700; border-bottom:0; }

/* Mobile activation — every variant becomes flex/visible only ≤ 900px AND
 * after .is-shown is set by main.js */
@media (max-width: 900px) {
  .mob-cta-v0.is-shown,  .mob-cta-v1.is-shown,  .mob-cta-v2.is-shown,
  .mob-cta-v3.is-shown,  .mob-cta-v4.is-shown,  .mob-cta-v5.is-shown,
  .mob-cta-v6.is-shown,  .mob-cta-v7.is-shown,  .mob-cta-v8.is-shown,
  .mob-cta-v9.is-shown,  .mob-cta-v10.is-shown, .mob-cta-v11.is-shown,
  .mob-cta-v12.is-shown, .mob-cta-v13.is-shown, .mob-cta-v14.is-shown,
  .mob-cta-v15.is-shown, .mob-cta-v16.is-shown, .mob-cta-v17.is-shown,
  .mob-cta-v18.is-shown, .mob-cta-v19.is-shown { display: flex; }
  .mob-cta-v4.is-shown, .mob-cta-v6.is-shown, .mob-cta-v17.is-shown,
  .mob-cta-v19.is-shown { display: flex; flex-direction: column; }
}
@media (min-width: 901px) { .mob-cta { display: none !important; } }

/* ============== FLOATING SIDE — 20 desktop variants ============== */
/* Shared: every variant root = .fc + .fc-vN. Hidden on mobile (≤ 900px)
 * because the mobile sticky bar already handles that breakpoint. */
.fc { position: fixed; right: 1rem; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; gap: .75rem; }
.fc a, .fc button { text-decoration: none; }
@media (max-width: 900px) { .fc { display: none !important; } }
@media (max-width: 900px) { .fc-show-mobile { display: flex !important; } }
@keyframes fc-pulse  { 0%,100%{box-shadow:0 0 0 0 rgba(0,0,0,.25)} 70%{box-shadow:0 0 0 14px transparent} }
@keyframes fc-spin   { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes fc-breath { 0%,100%{transform:scale(1);opacity:.55} 50%{transform:scale(1.4);opacity:0} }
@keyframes fc-wiggle { 0%,90%,100%{transform:rotate(0)} 92%{transform:rotate(-12deg)} 94%{transform:rotate(10deg)} 96%{transform:rotate(-6deg)} 98%{transform:rotate(4deg)} }
@keyframes fc-float  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.fc-fab, .fc-sq, .fc-blob, .fc-cap-l, .fc-cap-r, .fc-petal, .fc-main, .fc-tab,
.fc-diamond, .fc-mini-dot, .fc-top, .fc-hex, .fc-doc, .fc-ring, .fc-mag,
.fc-tag, .fc-breath, .fc-tinycall, .fc-tilt, .fc-ribbon, .fc-wiggle, .fc-card-flat a {
  display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: transform .22s ease, box-shadow .22s ease;
}

/* v0 — pulsing pair */
.fc-v0 .fc-fab { width:56px; height:56px; border-radius:50%; background:var(--primary); box-shadow:0 8px 22px rgba(0,0,0,.25); }
.fc-v0 .fc-fab-pulse { animation: fc-pulse 2s infinite; }
.fc-v0 .fc-fab-accent { background:var(--accent); color:#fff; }
.fc-v0 .fc-fab:hover { transform: scale(1.08); }

/* v1 — three squircles */
.fc-v1 .fc-sq { width:56px; height:56px; border-radius:18px; background:var(--surface); color:var(--primary); border:1px solid var(--border); box-shadow:0 6px 18px rgba(0,0,0,.10); }
.fc-v1 .fc-sq-pri { background:var(--primary); color:#fff; border-color:var(--primary); }
.fc-v1 .fc-sq:hover { transform: translateY(-2px); }

/* v2 — big chat blob */
.fc-v2 .fc-blob { width:auto; height:64px; border-radius:32px 32px 32px 8px; background:var(--primary); padding:0 .9rem; gap:.5rem; box-shadow:0 12px 26px rgba(0,0,0,.25); }
.fc-v2 .fc-blob-icn { width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.18); display:inline-flex; align-items:center; justify-content:center; }
.fc-v2 .fc-blob-lbl { font-weight:700; max-width:0; overflow:hidden; white-space:nowrap; opacity:0; transition: max-width .35s ease, opacity .25s ease; }
.fc-v2 .fc-blob:hover .fc-blob-lbl, .fc-v2 .fc-blob:focus-visible .fc-blob-lbl { max-width:240px; opacity:1; }

/* v3 — horizontal capsule */
.fc-v3 { right: 1rem; bottom: 1.25rem; top: auto; transform: none; }
.fc-v3 .fc-cap { display:flex; gap:0; padding:.3rem; background:var(--bg); border:1px solid var(--border); border-radius:999px; box-shadow:0 10px 26px rgba(0,0,0,.18); }
.fc-v3 .fc-cap-l, .fc-v3 .fc-cap-r { padding:.55rem 1rem; border-radius:999px; gap:.35rem; font-weight:700; min-width:88px; }
.fc-v3 .fc-cap-l { background:var(--surface); color:var(--primary); }
.fc-v3 .fc-cap-r { background:var(--primary); color:#fff; margin-left:.25rem; }

/* v4 — pinwheel reveal */
.fc-v4 { right: 1.25rem; bottom: 1.25rem; top: auto; transform: none; }
.fc-v4 .fc-main { width:60px; height:60px; border-radius:50%; background:var(--primary); border:0; cursor:pointer; box-shadow:0 10px 24px rgba(0,0,0,.25); }
.fc-v4 .fc-petals { position:absolute; bottom:0; right:0; width:60px; height:60px; pointer-events:none; }
.fc-v4 .fc-petal { position:absolute; bottom:0; right:0; width:48px; height:48px; border-radius:50%; background:var(--accent); color:#fff; opacity:0; transform: translate(0,0) scale(.4); transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s; pointer-events:none; }
.fc-v4[data-fc-pinwheel="open"] .fc-petals { pointer-events:auto; }
.fc-v4[data-fc-pinwheel="open"] .fc-petal { opacity:1; transform: translate(calc(var(--p) * -22px - 4px), calc(var(--p) * -22px - 4px)) scale(1); pointer-events:auto; }
.fc-v4[data-fc-pinwheel="open"] .fc-petal[style*="--p:1"] { transform: translate(-72px, -8px) scale(1); }
.fc-v4[data-fc-pinwheel="open"] .fc-petal[style*="--p:2"] { transform: translate(-58px, -58px) scale(1); }
.fc-v4[data-fc-pinwheel="open"] .fc-petal[style*="--p:3"] { transform: translate(-8px, -72px) scale(1); }

/* v5 — left rotated tab */
.fc-v5 { left: 0; right: auto; top: 50%; transform: translateY(-50%); }
.fc-v5 .fc-tab { writing-mode: vertical-rl; transform: rotate(180deg); padding:.85rem .55rem; background:var(--primary); color:#fff; border-radius:0 8px 8px 0; font-weight:700; letter-spacing:.05em; box-shadow:0 8px 22px rgba(0,0,0,.18); }

/* v6 — diamond + dot */
.fc-v6 { gap:.5rem; align-items:center; }
.fc-v6 .fc-diamond { width:64px; height:64px; background:var(--primary); transform:rotate(45deg); border-radius:14px; box-shadow:0 10px 24px rgba(0,0,0,.22); }
.fc-v6 .fc-diamond-i { transform:rotate(-45deg); display:inline-flex; }
.fc-v6 .fc-mini-dot { width:14px; height:14px; border-radius:50%; background:var(--accent); box-shadow:0 4px 10px rgba(0,0,0,.2); }

/* v7 — top + call cluster */
.fc-v7 { right:1rem; bottom:1.25rem; top:auto; transform:none; gap:.6rem; }
.fc-v7 .fc-top { width:44px; height:44px; border-radius:12px; background:var(--surface); color:var(--primary); border:1px solid var(--border); cursor:pointer; font-size:1.1rem; }
.fc-v7 .fc-fab { width:56px; height:56px; border-radius:50%; background:var(--primary); box-shadow:0 8px 22px rgba(0,0,0,.25); }
.fc-v7 .fc-fab-pulse { animation: fc-pulse 2s infinite; }

/* v8 — hexagon honeycomb */
.fc-v8 .fc-hex { width:60px; height:54px; background:var(--primary); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); }
.fc-v8 .fc-hex-pri { background:var(--accent); }
.fc-v8 .fc-hex:hover { transform: translateX(-4px); }

/* v9 — center desktop dock (overrides fixed pos) */
.fc-v9 { right:auto; left:50%; bottom:1.25rem; top:auto; transform:translateX(-50%); flex-direction:row; gap:.6rem; padding:.55rem; background:rgba(255,255,255,.92); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px); border:1px solid var(--border); border-radius:999px; box-shadow:0 12px 28px rgba(0,0,0,.18); }
.fc-v9 .fc-doc { padding:.5rem 1rem; border-radius:999px; gap:.4rem; color:var(--primary); font-weight:700; background:var(--surface); }
.fc-v9 .fc-doc-pri { background:var(--primary); color:#fff; }

/* v10 — rotating ring FAB */
.fc-v10 .fc-ring { position:relative; width:64px; height:64px; border-radius:50%; background:var(--primary); box-shadow:0 8px 22px rgba(0,0,0,.25); }
.fc-v10 .fc-ring-bg { position:absolute; inset:-4px; border-radius:50%; background: conic-gradient(from 0deg, var(--accent), var(--primary), var(--accent)); animation: fc-spin 6s linear infinite; z-index:-1; opacity:.7; }

/* v11 — magnetic pair */
.fc-v11 .fc-mag { width:58px; height:58px; border-radius:18px; background:var(--surface); color:var(--primary); border:1px solid var(--border); box-shadow:0 6px 18px rgba(0,0,0,.10); }
.fc-v11 .fc-mag-pri { background:var(--primary); color:#fff; border-color:var(--primary); }
.fc-v11 .fc-mag:hover { transform: translate(-4px, -4px) rotate(-3deg); }

/* v12 — receipt-tag card */
.fc-v12 .fc-tag { padding:.6rem .8rem; gap:.4rem; background:var(--bg); border:1px solid var(--border); border-radius:14px 4px 14px 14px; box-shadow:0 8px 22px rgba(0,0,0,.16); cursor:pointer; color:var(--primary); font-weight:700; }
.fc-v12 .fc-tag-icn { width:30px; height:30px; border-radius:50%; background:var(--surface); display:inline-flex; align-items:center; justify-content:center; }
.fc-v12 .fc-card-body { display:flex; flex-direction:column; gap:.4rem; padding:.7rem; background:var(--bg); border:1px solid var(--border); border-radius:12px; box-shadow:0 10px 24px rgba(0,0,0,.16); margin-top:.4rem; min-width:220px; }
.fc-v12 .fc-card-body strong { color:var(--text); }
.fc-v12 .fc-card-body a { color:var(--primary); display:inline-flex; align-items:center; gap:.4rem; }
.fc-v12 .fc-card-pri { background:var(--primary); color:#fff !important; padding:.4rem .55rem; border-radius:8px; }
.fc-v12[data-fc-card="open"] .fc-card-body { display:flex; }

/* v13 — breathing twin glows */
.fc-v13 .fc-breath { position:relative; width:58px; height:58px; border-radius:50%; background:var(--primary); }
.fc-v13 .fc-breath-pri { background:var(--accent); }
.fc-v13 .fc-breath-glow { position:absolute; inset:0; border-radius:50%; background:inherit; animation: fc-breath 1.8s infinite ease-out; z-index:-1; }

/* v14 — left logo sticker */
.fc-v14 { left:0; right:auto; top:35%; transform:none; gap:.4rem; align-items:center; }
.fc-v14 .fc-sticker { width:54px; height:54px; border-radius:0 18px 18px 0; background:var(--bg); border:1px solid var(--border); border-left:0; display:inline-flex; align-items:center; justify-content:center; box-shadow:0 6px 14px rgba(0,0,0,.10); }
.fc-v14 .fc-tinycall { width:44px; height:44px; border-radius:0 50% 50% 0; background:var(--primary); border-left:0; }

/* v15 — tilt-shift squircles */
.fc-v15 .fc-tilt { width:56px; height:56px; border-radius:18px; background:var(--surface); color:var(--primary); border:1px solid var(--border); box-shadow:0 8px 0 0 var(--border); }
.fc-v15 .fc-tilt-pri { background:var(--primary); color:#fff; border-color:var(--primary); box-shadow:0 8px 0 0 rgba(0,0,0,.25); }
.fc-v15 .fc-tilt:hover { transform: translateY(2px); box-shadow:0 4px 0 0 var(--border); }
.fc-v15 .fc-tilt-pri:hover { box-shadow:0 4px 0 0 rgba(0,0,0,.25); }

/* v16 — ribbon quote tag */
.fc-v16 { right:0; top:30%; transform:none; }
.fc-v16 .fc-ribbon { padding:.7rem 1.1rem .7rem .8rem; background:linear-gradient(135deg,var(--accent),var(--primary)); color:#fff; font-weight:800; clip-path: polygon(8px 50%, 0 0, 100% 0, 100% 100%, 0 100%); border-radius:0 8px 8px 0; box-shadow:0 8px 22px rgba(0,0,0,.18); }

/* v17 — vibrating call FAB */
.fc-v17 .fc-wiggle { width:56px; height:56px; border-radius:50%; background:var(--primary); animation: fc-wiggle 4s infinite; }
.fc-v17 .fc-fab { width:56px; height:56px; border-radius:50%; background:var(--accent); }

/* v18 — rating chip on FAB */
.fc-v18 .fc-rate-chip { padding:.2rem .5rem; background:#f59e0b; color:#fff; font-weight:800; font-size:.78rem; border-radius:8px; align-self:center; box-shadow:0 4px 10px rgba(0,0,0,.15); }
.fc-v18 .fc-fab { width:56px; height:56px; border-radius:50%; background:var(--primary); animation: fc-pulse 2s infinite; }

/* v19 — phone-number card */
.fc-v19 { right:1rem; bottom:1.25rem; top:auto; transform:none; }
.fc-v19 .fc-card-flat { background:var(--bg); border:1px solid var(--border); border-radius:14px; padding:.75rem 1rem; box-shadow:0 10px 24px rgba(0,0,0,.18); display:flex; flex-direction:column; gap:.25rem; min-width:200px; align-items:center; text-align:center; }
.fc-v19 .fc-card-flat small { color:var(--text-light); font-size:.78rem; }
.fc-v19 .fc-card-phone { color:var(--primary); font-weight:900; font-size:1.15rem; letter-spacing:.02em; }
.fc-v19 .fc-card-book { background:var(--primary); color:#fff; padding:.5rem .9rem; border-radius:999px; font-weight:700; }

/* ============== 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 — OPT-IN only via .gradient-text class.
 * BUG FIXED (Apr 2026): this rule previously targeted .hero h1 unconditionally,
 * applying background-clip:text + -webkit-text-fill-color:transparent to every
 * hero headline. When primary/secondary palette colours were close to each
 * other (or when background-clip:text had any rendering hiccup), the H1 rendered
 * as a SOLID FILLED RECTANGLE with transparent glyphs — users saw a coloured
 * block instead of the headline. Now scoped to .gradient-text only, so we never
 * silently hide headlines. Hero/CTA/about headings now use the solid foreground
 * colour from the theme (WCAG-safe). Variants that want the gradient effect can
 * opt in explicitly by adding the .gradient-text class.
 */
.gradient-text {
  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%; } }

/* 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; }
}


/* ============================================================
   APR 2026 — NEW SECTION VARIANTS (hero v8/v9, services v6/v7,
   about v6/v7, why-us v6/v7, testimonials v6/v7, cta v6/v7,
   header v6/v7, footer v3/v4). Each block is self-contained so
   the variants are visually distinct from the original 6 per
   section. Reuses --primary / --accent / --surface / --bg from
   the active palette so every site still gets its unique look.
   ============================================================ */

/* --- Hero v8: Magazine cover --- */
.hero-magazine { padding: clamp(3.5rem, 8vw, 7rem) 0; background: linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--primary) 4%, var(--bg)) 100%); }
.hero-magazine .hero-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--gap-lg); align-items: center; }
.mag-meta { display: flex; align-items: center; gap: .85rem; color: var(--text-light); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; margin-bottom: .85rem; }
.mag-num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--primary); letter-spacing: -.02em; }
.mag-bar { display: inline-block; width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 4px; }
.hero-headline-mag { font-size: clamp(2.25rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -.025em; margin-bottom: 1rem; }
.hero-mag-photo { position: relative; }
.hero-mag-photo picture, .hero-mag-photo img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-mag-tag { position: absolute; left: -1.25rem; bottom: 1.5rem; background: var(--primary); color: #fff; padding: .85rem 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; align-items: flex-start; }
.hero-mag-tag strong { font-size: 1.4rem; line-height: 1; }
.hero-mag-tag span { font-size: .78rem; opacity: .85; }
@media (max-width: 900px) { .hero-magazine .hero-inner { grid-template-columns: 1fr; } .hero-mag-photo picture, .hero-mag-photo img { height: 360px; } }

/* --- Hero v9: Ticker bar + quote-card --- */
.hero-ticker { padding-top: 0; }
.hero-ticker-bar { background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--primary) 80%, var(--accent))); color: #fff; overflow: hidden; padding: .65rem 0; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.hero-ticker-track { display: inline-flex; gap: 2.5rem; white-space: nowrap; animation: ticker-scroll 38s linear infinite; padding-left: 100%; }
.hero-ticker-item { font-weight: 600; font-size: .92rem; letter-spacing: .02em; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hero-ticker .hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--gap-lg); align-items: center; }
.hero-quote-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: .75rem; }
.hero-quote-card h2 { font-size: 1.4rem; margin-bottom: .25rem; }
.hero-quote-card p { color: var(--text-light); font-size: .95rem; }
.hero-quote-card .btn-block { width: 100%; justify-content: center; }
.hero-quote-trust { font-size: .78rem; color: var(--text-light); text-align: center; margin: 0; }
@media (max-width: 900px) { .hero-ticker .hero-inner { grid-template-columns: 1fr; } }

/* --- Services v6: Bento grid --- */
.services-bento .bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: 1rem; }
.bento-tile { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; position: relative; }
.bento-tile:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-lg); text-decoration: none; }
.bento-tile-0 { grid-column: span 2; grid-row: span 2; }
.bento-tile-0 picture { width: 100%; height: 60%; }
.bento-tile-0 picture img { width: 100%; height: 100%; object-fit: cover; }
.bento-tile-1 { grid-column: span 2; }
.bento-tile-2, .bento-tile-3, .bento-tile-4, .bento-tile-5 { grid-column: span 1; }
.bento-tile-body { padding: 1.1rem 1.25rem; }
.bento-icon { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, transparent), color-mix(in srgb, var(--accent) 18%, transparent)); color: var(--primary); margin-bottom: .6rem; }
.bento-tile-body h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.bento-tile-body p { font-size: .9rem; color: var(--text-light); margin-bottom: .35rem; }
.bento-arrow { color: var(--primary); font-weight: 800; }
@media (max-width: 900px) { .services-bento .bento-grid { grid-template-columns: 1fr 1fr; } .bento-tile-0 { grid-column: span 2; grid-row: span 1; } }

/* --- Services v7: Carousel --- */
.svc-carousel-wrap { overflow: hidden; padding: 1rem 0 2rem; }
.svc-carousel-track { display: flex; gap: 1.25rem; padding: 0 clamp(1rem, 3vw, 2rem); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; padding-bottom: 1rem; }
.svc-carousel-track::-webkit-scrollbar { height: 8px; }
.svc-carousel-track::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.svc-carousel-card { flex: 0 0 320px; scroll-snap-align: start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.svc-carousel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-carousel-card picture, .svc-carousel-card img { width: 100%; height: 180px; object-fit: cover; }
.svc-carousel-body { padding: 1.1rem; }
.svc-carousel-body h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.svc-carousel-body p { font-size: .88rem; color: var(--text-light); margin-bottom: .6rem; }

/* --- About v6: Timeline --- */
.about-tl { list-style: none; padding: 0; margin: 1rem 0 2rem; position: relative; }
.about-tl::before { content: ""; position: absolute; left: 7px; top: .5rem; bottom: .5rem; width: 2px; background: linear-gradient(180deg, var(--primary), var(--accent)); }
.about-tl-item { position: relative; padding-left: 2.5rem; margin-bottom: 1.4rem; display: flex; flex-direction: column; gap: .15rem; }
.about-tl-dot { position: absolute; left: 0; top: .35rem; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent); }
.about-tl-year { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--primary); letter-spacing: -.01em; }
.about-tl-label { color: var(--text); font-weight: 500; }

/* --- About v7: Stats panel --- */
.about-stats-panel { background: linear-gradient(160deg, var(--primary), color-mix(in srgb, var(--primary) 70%, var(--accent))); color: #fff; padding: 2rem 1.75rem; border-radius: calc(var(--radius) * 1.4); box-shadow: var(--shadow-lg); }
.about-stats-panel h3 { color: #fff; margin-bottom: 1rem; font-size: 1.25rem; opacity: .92; letter-spacing: .04em; text-transform: uppercase; }
.about-stats-list { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.about-stats-list li { display: flex; flex-direction: column; }
.about-stats-list strong { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 900; line-height: 1; }
.about-stats-list span { font-size: .85rem; opacity: .85; margin-top: .25rem; }
.about-stats-note { font-size: .82rem; opacity: .8; border-top: 1px solid rgba(255,255,255,.18); padding-top: .85rem; margin: 0; }

/* --- Why Us v6: Big numbers --- */
.bignum-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; margin-top: 1rem; }
.bignum-card { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: transform .25s ease, border-color .25s ease; }
.bignum-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.bignum-num { font-family: var(--font-heading); font-size: 3.4rem; font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; min-width: 70px; }
.bignum-body h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.bignum-body p { color: var(--text-light); font-size: .92rem; }
@media (max-width: 700px) { .bignum-grid { grid-template-columns: 1fr; } }

/* --- Why Us v7: Ribbon tiles --- */
.ribbon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1rem; }
.ribbon-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.25rem 1.25rem; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.ribbon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ribbon-flag { position: absolute; top: 0; right: 0; width: 50px; height: 50px; display: inline-flex; align-items: flex-start; justify-content: flex-end; padding: 6px 8px 0 0; color: #fff; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--accent)); clip-path: polygon(0 0, 100% 0, 100% 100%); font-size: .85rem; }
.ribbon-icon { width: 44px; height: 44px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 12%, transparent); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: .75rem; }
.ribbon-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.ribbon-card p { color: var(--text-light); font-size: .92rem; }
@media (max-width: 900px) { .ribbon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ribbon-grid { grid-template-columns: 1fr; } }

/* --- Testimonials v6: Masonry --- */
.masonry-reviews { columns: 3; column-gap: 1.25rem; margin-top: 1rem; }
.masonry-cell { break-inside: avoid; margin-bottom: 1.25rem; }
@media (max-width: 1100px) { .masonry-reviews { columns: 2; } }
@media (max-width: 700px) { .masonry-reviews { columns: 1; } }

/* --- Testimonials v7: Spotlight --- */
.spotlight-review { background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 8%, var(--surface)), var(--surface)); border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.4); padding: 2.5rem 2rem; max-width: 900px; margin: 1rem auto 2rem; text-align: center; position: relative; box-shadow: var(--shadow-md); }
.spotlight-quote-mark { color: var(--primary); opacity: .35; margin-bottom: .5rem; }
.spotlight-review blockquote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2.4vw, 1.8rem); line-height: 1.4; color: var(--text); margin: 0 0 1.25rem; }
.spotlight-review figcaption { display: flex; justify-content: center; margin-bottom: 1rem; }
.spotlight-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.spotlight-mini { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; }
.spotlight-mini p { font-size: .88rem; color: var(--text-light); margin: .5rem 0; line-height: 1.5; }
@media (max-width: 1100px) { .spotlight-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .spotlight-row { grid-template-columns: 1fr; } }

/* --- CTA v6: Phone-circle --- */
.cta-phonecircle { background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 6%, var(--bg)), var(--bg)); }
.cta-phonecircle-wrap { text-align: center; max-width: 720px; margin: 0 auto; }
.phonecircle { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; box-shadow: 0 16px 40px color-mix(in srgb, var(--primary) 35%, transparent); margin: 0 auto 1.5rem; transition: transform .25s ease; }
.phonecircle:hover { transform: scale(1.05); text-decoration: none; }
.phonecircle-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid color-mix(in srgb, var(--primary) 70%, transparent); animation: phone-pulse 2.2s ease-out infinite; pointer-events: none; }
.phonecircle-pulse-2 { animation-delay: 1.1s; }
@keyframes phone-pulse { 0% { transform: scale(.95); opacity: .9; } 100% { transform: scale(1.7); opacity: 0; } }

/* --- CTA v7: Diagonal ribbon --- */
.cta-ribbon { padding-top: 0; }
.cta-ribbon-bar { background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 70%, var(--primary))); color: #fff; font-weight: 700; padding: .65rem 0; overflow: hidden; transform: rotate(-1deg); margin: -.5rem 0 2rem; box-shadow: var(--shadow-md); }
.cta-ribbon-inner { white-space: nowrap; animation: ticker-scroll 32s linear infinite; padding-left: 100%; letter-spacing: .03em; }
.cta-ribbon-body { text-align: center; }
.cta-ribbon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem; max-width: 880px; margin-left: auto; margin-right: auto; }
.cta-ribbon-tile { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: 1.75rem 1.25rem; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: all .25s ease; }
.cta-ribbon-tile:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-lg); text-decoration: none; }
.cta-ribbon-tile-primary { background: linear-gradient(160deg, var(--primary), color-mix(in srgb, var(--primary) 70%, var(--accent))); color: #fff; border-color: transparent; }
.cta-ribbon-tile strong { font-family: var(--font-heading); font-size: 1.5rem; }
.cta-ribbon-tile span { font-size: .88rem; opacity: .85; }
@media (max-width: 700px) { .cta-ribbon-grid { grid-template-columns: 1fr; } }

/* --- Header v6: Centered logo --- */
.header-centered { background: var(--header-bg); border-bottom: 1px solid var(--border); }
.header-centered-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.25rem; padding: 1rem 0; }
.header-centered .nav-left .nav-list { justify-content: flex-end; }
.header-centered .nav-right .nav-list { justify-content: flex-start; }
.header-centered .brand { justify-self: center; }
.header-centered-cta-row { background: color-mix(in srgb, var(--primary) 6%, var(--surface)); border-top: 1px solid var(--border); }
.header-centered-cta-row .container { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; padding-top: .5rem; padding-bottom: .5rem; font-size: .9rem; }
.header-centered-cta-row .header-phone { color: var(--text); font-weight: 700; display: inline-flex; align-items: center; gap: .35rem; text-decoration: none; }
@media (max-width: 900px) { .header-centered-inner { grid-template-columns: auto 1fr auto; } .header-centered .nav-left, .header-centered .nav-right { display: none; } }

/* --- Header v7: Rail --- */
.header-rail { background: var(--header-bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-rail-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .65rem 0; min-height: 64px; }
.header-rail-actions { display: flex; align-items: center; gap: .5rem; }
.header-rail-phone { display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .85rem; border: 1px solid var(--border); border-radius: 999px; color: var(--text); text-decoration: none; font-weight: 700; font-size: .88rem; transition: all .2s ease; }
.header-rail-phone:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.primary-nav-rail { background: var(--surface); border-bottom: 1px solid var(--border); }
.primary-nav-rail .nav-list { padding: .5rem 0; max-width: var(--container-max); margin: 0 auto; padding-left: clamp(1rem, 3vw, 2rem); padding-right: clamp(1rem, 3vw, 2rem); justify-content: center; gap: 1.5rem; font-size: .9rem; }
@media (max-width: 900px) { .primary-nav-rail { display: none; } }

/* --- Footer v3: Newsletter strip --- */
.footer-newsletter-band { background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 65%, var(--accent))); color: #fff; padding: 2rem 0; }
.footer-newsletter-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem; }
.footer-newsletter-inner h3 { color: #fff; margin-bottom: .25rem; font-size: 1.4rem; }
.footer-newsletter-inner p { color: rgba(255,255,255,.85); margin: 0; font-size: .92rem; }
.footer-newsletter-form { display: flex; gap: .5rem; }
.footer-newsletter-form input { padding: .75rem 1rem; border-radius: var(--radius-btn); border: 0; min-width: 280px; font: inherit; }
.footer-newsletter-form .btn { white-space: nowrap; }
.footer-grid-4 { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-top: 3rem; padding-bottom: 1.5rem; }
@media (max-width: 900px) { .footer-newsletter-inner { grid-template-columns: 1fr; } .footer-newsletter-form { flex-direction: column; } .footer-newsletter-form input { min-width: 0; width: 100%; } .footer-grid-4 { grid-template-columns: 1fr 1fr; } }

/* --- Footer v4: Pre-footer CTA + minimal footer --- */
.footer-prefooter-cta { background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, var(--accent))); color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.footer-prefooter-cta h2 { color: #fff; margin-bottom: .35rem; }
.footer-prefooter-cta p { color: rgba(255,255,255,.85); margin: 0; }
.footer-prefooter-inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; }
.footer-prefooter-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer-mini-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; padding-top: 2rem; padding-bottom: 2rem; align-items: start; }
.footer-mini-grid address { font-style: normal; color: var(--footer-text); opacity: .8; font-size: .9rem; margin-top: .5rem; }
.footer-mini-nav { display: flex; flex-wrap: wrap; gap: .85rem 1.25rem; align-content: flex-start; }
.footer-mini-nav a { color: var(--footer-text); opacity: .85; text-decoration: none; font-size: .92rem; }
.footer-mini-nav a:hover { opacity: 1; text-decoration: underline; }
@media (max-width: 700px) { .footer-prefooter-inner { grid-template-columns: 1fr; } .footer-mini-grid { grid-template-columns: 1fr; } }

/* ============================================================== */
/* BOOKING PAGE — 10 distinct variants (.bk-v0 … .bk-v9)          */
/* ============================================================== */
.bk { padding: clamp(2rem, 5vw, 4rem) 0; }
.bk .bk-fld, .bk label { display: block; margin-bottom: .9rem; }
.bk .bk-fld span, .bk label > span { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; color: var(--text); }
.bk input[type=text], .bk input[type=tel], .bk input[type=email], .bk input[type=date], .bk select, .bk textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 2px solid var(--border); background: var(--bg);
  font: inherit; color: var(--text); transition: border-color .15s ease, box-shadow .15s ease;
}
.bk input:focus, .bk select:focus, .bk textarea:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 15%, transparent); }
.bk .bk-fine { font-size: .8rem; color: var(--text-light); margin: .9rem 0 0; line-height: 1.5; }
.bk .bk-fine a { color: var(--primary); }
.bk .bk-trust { display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; padding: .9rem 1.1rem; background: color-mix(in srgb, var(--primary) 5%, var(--bg)); border-radius: 12px; margin-bottom: 1.5rem; font-size:.92rem; }
.bk .bk-trust-stars { color: #f5b700; letter-spacing: 2px; font-weight: 700; }
.bk .bk-trust-dot { color: var(--text-light); }
.bk .honeypot { position:absolute !important; left:-9999px !important; opacity:0 !important; width:0 !important; height:0 !important; pointer-events:none !important; }
.bk .btn-block { width: 100%; }

/* ---- v0 — 3-Step Wizard --------------------------------------- */
.bk-v0 .container { max-width: 760px; }
.bk-v0-form { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 1.5rem; box-shadow: 0 8px 30px color-mix(in srgb, var(--primary) 8%, transparent); }
.bk-v0 .bk-stepper { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0 0 1.75rem; padding: 0; gap: .25rem; position: relative; }
.bk-v0 .bk-stepper::before { content:''; position:absolute; top: 18px; left: 16%; right: 16%; height: 2px; background: var(--border); z-index: 0; }
.bk-v0 .bk-step { display: flex; flex-direction: column; align-items: center; gap: .35rem; position: relative; z-index: 1; }
.bk-v0 .bk-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display:flex; align-items:center; justify-content:center; font-weight: 700; color: var(--text-light); transition: all .25s ease; }
.bk-v0 .bk-step.is-active .bk-step-num, .bk-v0 .bk-step.is-done .bk-step-num { background: var(--primary); color: var(--cta-text,#fff); border-color: var(--primary); transform: scale(1.05); }
.bk-v0 .bk-step.is-done .bk-step-num::before { content: '✓'; }
.bk-v0 .bk-step.is-done .bk-step-num span { display: none; }
.bk-v0 .bk-step-lbl { font-size: .8rem; color: var(--text-light); font-weight: 600; text-align:center; }
.bk-v0 .bk-step.is-active .bk-step-lbl { color: var(--primary); }
.bk-v0 .bk-pane { display: none; border: 0; padding: 0; margin: 0; }
.bk-v0 .bk-pane.is-active { display: block; animation: bk-fade .3s ease; }
.bk-v0 .bk-pane legend { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; padding: 0; color: var(--text); }
.bk-v0 .bk-nav { margin-top: 1.25rem; }
.bk-v0 .bk-nav-split { display: flex; gap: .75rem; justify-content: space-between; }
.bk-v0 .bk-nav-split .btn-outline { flex: 0 0 auto; }
.bk-v0 .bk-nav-split .btn-primary { flex: 1; }
.bk-v0 .bk-summary { background: color-mix(in srgb, var(--primary) 5%, var(--bg)); border: 1px dashed color-mix(in srgb, var(--primary) 30%, var(--border)); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1rem; }
.bk-v0 .bk-summary dt { font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; margin-top: .65rem; }
.bk-v0 .bk-summary dt:first-child { margin-top: 0; }
.bk-v0 .bk-summary dd { margin: .15rem 0 0; font-weight: 600; color: var(--text); }
@keyframes bk-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- v1 — 60-Second Compact Card ------------------------------ */
.bk-v1-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; align-items: start; max-width: 980px; }
.bk-v1-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; box-shadow: 0 12px 40px color-mix(in srgb, var(--primary) 10%, transparent); position: relative; overflow: hidden; }
.bk-v1-card::before { content:''; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.bk-v1-card-head { margin-bottom: 1.25rem; }
.bk-v1-badge { display: inline-block; background: color-mix(in srgb, var(--accent) 18%, var(--bg)); color: color-mix(in srgb, var(--primary) 90%, #000); padding: .25rem .7rem; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .65rem; }
.bk-v1-card-head h2 { margin: 0 0 .3rem; font-size: clamp(1.4rem, 2.5vw, 1.7rem); }
.bk-v1-card-head p { margin: 0; color: var(--text-light); }
.bk-v1-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.bk-v1-grid label { margin-bottom: 0; }
.bk-v1-full { grid-column: 1 / -1; }
.bk-v1-cta { margin-top: 1rem; width: 100%; padding: 1rem 1.25rem; border-radius: 14px; border: 0; background: var(--primary); color: var(--cta-text,#fff); font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.bk-v1-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 35%, transparent); }
.bk-v1-or { text-align: center; color: var(--text-light); margin: .85rem 0 .35rem; font-size: .85rem; position: relative; }
.bk-v1-or::before, .bk-v1-or::after { content:''; position: absolute; top: 50%; width: calc(50% - 24px); height: 1px; background: var(--border); }
.bk-v1-or::before { left: 0; } .bk-v1-or::after { right: 0; }
.bk-v1-call { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1rem; border-radius: 12px; border: 2px solid var(--primary); color: var(--primary); text-decoration: none; font-weight: 700; }
.bk-v1-call:hover { background: var(--primary); color: var(--cta-text,#fff); }
.bk-v1-side { padding: 1.25rem 1.5rem; background: color-mix(in srgb, var(--primary) 4%, var(--bg)); border-radius: 16px; border: 1px solid var(--border); }
.bk-v1-perks { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .65rem; }
.bk-v1-perks li { display: flex; align-items: center; gap: .55rem; color: var(--text); font-size: .92rem; }
.bk-v1-perks svg { color: var(--primary); flex: 0 0 auto; }
@media (max-width: 800px) { .bk-v1-wrap { grid-template-columns: 1fr; } .bk-v1-grid { grid-template-columns: 1fr; } }

/* ---- v2 — Calendar + Time Slots -------------------------------- */
.bk-v2 .container { max-width: 1080px; }
.bk-v2-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 1.5rem; box-shadow: 0 6px 24px rgba(0,0,0,.05); }
.bk-v2-cal { padding-right: 1.5rem; border-right: 1px solid var(--border); }
.bk-v2-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.bk-v2-cal-head h2 { margin: 0; font-size: 1.2rem; }
.bk-v2-mo-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); cursor: pointer; font-size: 1.2rem; line-height: 1; color: var(--text); }
.bk-v2-mo-btn:hover { background: color-mix(in srgb, var(--primary) 8%, var(--bg)); border-color: var(--primary); }
.bk-v2-dows { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; margin-bottom: .35rem; }
.bk-v2-dows span { text-align: center; font-size: .72rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }
.bk-v2-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; }
.bk-v2-day { aspect-ratio: 1; border: 1px solid var(--border); background: var(--bg); border-radius: 8px; cursor: pointer; font-weight: 600; color: var(--text); transition: all .15s ease; font-size: .92rem; }
.bk-v2-day:hover:not(:disabled) { background: color-mix(in srgb, var(--primary) 12%, var(--bg)); border-color: var(--primary); }
.bk-v2-day.is-selected { background: var(--primary); color: var(--cta-text,#fff); border-color: var(--primary); }
.bk-v2-day.is-today { box-shadow: inset 0 0 0 2px var(--accent); }
.bk-v2-day:disabled { opacity: .25; cursor: not-allowed; background: transparent; border-color: transparent; }
.bk-v2-day.is-blank { visibility: hidden; }
.bk-v2-side-h { margin: 0 0 .35rem; font-size: 1.1rem; }
.bk-v2-side-sub { margin: 0 0 1rem; color: var(--text-light); font-size: .9rem; }
.bk-v2-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(95px, 1fr)); gap: .4rem; margin-bottom: 1.25rem; }
.bk-v2-slot { padding: .6rem .35rem; border-radius: 10px; border: 1px solid var(--border); background: var(--bg); cursor: pointer; font-weight: 600; font-size: .88rem; color: var(--text); transition: all .15s ease; }
.bk-v2-slot:hover { border-color: var(--primary); color: var(--primary); }
.bk-v2-slot.is-selected { background: var(--primary); border-color: var(--primary); color: var(--cta-text,#fff); }
.bk-v2-fields { display: grid; gap: .65rem; margin-bottom: 1rem; }
.bk-v2-fields label { margin: 0; }
@media (max-width: 800px) { .bk-v2-grid { grid-template-columns: 1fr; padding: 1rem; } .bk-v2-cal { padding-right: 0; border-right: 0; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; } }

/* ---- v3 — Conversational Chat-Bot ----------------------------- */
.bk-v3-wrap { max-width: 640px; }
.bk-v3-chat { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.bk-v3-head { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem; background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, var(--accent))); color: #fff; }
.bk-v3-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.2); display:inline-flex; align-items:center; justify-content:center; font-weight: 800; }
.bk-v3-head strong { display: block; font-size: 1rem; }
.bk-v3-status { font-size: .8rem; opacity: .85; }
.bk-v3-stream { padding: 1.25rem; min-height: 280px; max-height: 420px; overflow-y: auto; background: color-mix(in srgb, var(--primary) 3%, var(--bg)); display: flex; flex-direction: column; gap: .65rem; }
.bk-v3-msg { display: flex; }
.bk-v3-msg-bot { justify-content: flex-start; }
.bk-v3-msg-user { justify-content: flex-end; }
.bk-v3-msg span { max-width: 78%; padding: .65rem .9rem; border-radius: 18px; font-size: .95rem; line-height: 1.45; animation: bk-msg-in .2s ease; }
.bk-v3-msg-bot span { background: var(--bg); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 4px; }
.bk-v3-msg-user span { background: var(--primary); color: var(--cta-text,#fff); border-bottom-right-radius: 4px; }
@keyframes bk-msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.bk-v3-input-area { padding: .85rem 1rem; border-top: 1px solid var(--border); background: var(--bg); display: flex; align-items: center; gap: .5rem; min-height: 70px; }
.bk-v3-step { display: none; flex: 1; align-items: center; gap: .5rem; }
.bk-v3-step.is-active { display: flex; }
.bk-v3-step input, .bk-v3-step select { flex: 1; }
.bk-v3-send, .bk-v3-confirm { padding: .75rem 1.1rem; border-radius: 12px; border: 0; background: var(--primary); color: var(--cta-text,#fff); font-weight: 700; cursor: pointer; white-space: nowrap; }
.bk-v3-confirm { width: 100%; padding: .9rem; font-size: 1.05rem; }
.bk-v3-send:hover, .bk-v3-confirm:hover { background: color-mix(in srgb, var(--primary) 88%, #000); }

/* ---- v4 — Split-Screen Hero + Form ---------------------------- */
.bk-v4 { padding: 0; }
.bk-v4-shell { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(620px, 85vh, 880px); }
.bk-v4-hero { position: relative; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, #000) 0%, color-mix(in srgb, var(--secondary) 80%, #000) 100%), url('/assets/images/hero.jpg'); background-size: cover; background-position: center; }
.bk-v4-hero-overlay { padding: clamp(2rem, 5vw, 4rem); color: #fff; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; gap: 1rem; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 60%); }
.bk-v4-hero-eyebrow { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; opacity: .9; margin: 0; }
.bk-v4-hero-h { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0; color:#fff; line-height: 1.15; }
.bk-v4-hero-bullets { list-style: none; margin: .5rem 0; padding: 0; display: grid; gap: .55rem; }
.bk-v4-hero-bullets li { display: flex; align-items: center; gap: .55rem; font-size: 1rem; }
.bk-v4-hero-bullets svg { flex: 0 0 auto; }
.bk-v4-hero-stars { color: #f5b700; font-size: 1.05rem; letter-spacing: 2px; }
.bk-v4-hero-stars span { color: rgba(255,255,255,.85); font-size: .85rem; letter-spacing: 0; margin-left: .35rem; }
.bk-v4-pane { padding: clamp(2rem, 5vw, 4rem); display: flex; align-items: center; background: var(--bg); }
.bk-v4-pane-inner { width: 100%; max-width: 460px; margin: 0 auto; }
.bk-v4-pane-inner h2 { font-size: clamp(1.5rem, 2.5vw, 1.9rem); margin: .35rem 0 .35rem; }
.bk-v4-sub { color: var(--text-light); margin: 0 0 1.25rem; }
.bk-v4-form label { margin-bottom: .65rem; }
.bk-v4-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.bk-v4-row label { margin-bottom: 0; }
.bk-v4-altcall { text-align: center; margin-top: .85rem; color: var(--text-light); }
.bk-v4-altcall a { color: var(--primary); font-weight: 700; }
@media (max-width: 900px) { .bk-v4-shell { grid-template-columns: 1fr; min-height: 0; } .bk-v4-hero { min-height: 320px; } .bk-v4-row { grid-template-columns: 1fr; } }

/* ---- v5 — Service Tile Picker → Form -------------------------- */
.bk-v5-form { background: var(--bg); border-radius: 18px; }
.bk-v5-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .85rem; margin-bottom: 2rem; }
.bk-v5-tile { position: relative; padding: 1.25rem 1rem; background: var(--bg); border: 2px solid var(--border); border-radius: 14px; cursor: pointer; text-align: center; transition: all .2s ease; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.bk-v5-tile input { position: absolute; opacity: 0; pointer-events: none; }
.bk-v5-tile:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px color-mix(in srgb, var(--primary) 15%, transparent); }
.bk-v5-tile-icon { font-size: 2rem; line-height: 1; }
.bk-v5-tile-name { font-weight: 700; font-size: .92rem; color: var(--text); }
.bk-v5-tile-check { position: absolute; top: .5rem; right: .5rem; width: 22px; height: 22px; border-radius: 50%; background: var(--primary); color: var(--cta-text,#fff); font-size: .75rem; display:flex; align-items:center; justify-content:center; opacity: 0; transition: opacity .2s ease; }
.bk-v5-tile:has(input:checked) { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, var(--bg)); }
.bk-v5-tile:has(input:checked) .bk-v5-tile-check { opacity: 1; }
.bk-v5-form-fields { border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; background: color-mix(in srgb, var(--primary) 3%, var(--bg)); }
.bk-v5-form-fields legend { font-weight: 700; padding: 0 .5rem; color: var(--primary); }
.bk-v5-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.bk-v5-row label { margin-bottom: .65rem; }
@media (max-width: 700px) { .bk-v5-row { grid-template-columns: 1fr; } }

/* ---- v6 — Estimator → Booking --------------------------------- */
.bk-v6-wrap { max-width: 1000px; }
.bk-v6-form { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
.bk-v6-est { background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 92%, #000), color-mix(in srgb, var(--secondary) 80%, #000)); color: #fff; padding: 2rem; border-radius: 18px; position: sticky; top: 1rem; box-shadow: 0 12px 36px color-mix(in srgb, var(--primary) 30%, transparent); }
.bk-v6-est-h { color: #fff; margin: 0 0 .5rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.bk-v6-price { display: flex; align-items: baseline; gap: .35rem; margin: 0 0 .35rem; }
.bk-v6-price-from { font-size: .85rem; opacity: .75; }
.bk-v6-price-num { font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.bk-v6-price-note { font-size: .85rem; opacity: .85; line-height: 1.5; margin: 0 0 1.25rem; }
.bk-v6-incl { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.bk-v6-incl li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.bk-v6-incl svg { color: var(--accent); flex: 0 0 auto; }
.bk-v6-fields { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 1.75rem; }
.bk-v6-fields h3 { margin: 0 0 1rem; font-size: 1.05rem; }
.bk-v6-fields h3:not(:first-child) { margin-top: 1rem; }
.bk-v6-fld { margin-bottom: .85rem; }
.bk-v6-rule { border: 0; border-top: 1px dashed var(--border); margin: 1.5rem 0 1rem; }
@media (max-width: 800px) { .bk-v6-form { grid-template-columns: 1fr; } .bk-v6-est { position: static; } }

/* ---- v7 — Tabs (Online / Phone / Text) ------------------------ */
.bk-v7 .container { max-width: 760px; }
.bk-v7-tabs { display: flex; gap: .25rem; padding: .35rem; background: color-mix(in srgb, var(--primary) 6%, var(--bg)); border-radius: 16px; margin-bottom: 1.5rem; }
.bk-v7-tab { flex: 1; padding: .85rem 1rem; border: 0; background: transparent; cursor: pointer; border-radius: 12px; font-weight: 700; color: var(--text-light); display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-size: .95rem; transition: all .2s ease; }
.bk-v7-tab.is-active { background: var(--bg); color: var(--primary); box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.bk-v7-panels { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 1.75rem; }
.bk-v7-panel { display: none; animation: bk-fade .25s ease; }
.bk-v7-panel.is-active { display: block; }
.bk-v7-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.bk-v7-row label { margin-bottom: .65rem; }
.bk-v7-channel { text-align: center; padding: 1.5rem 1rem; }
.bk-v7-channel-icn { color: var(--primary); margin-bottom: .85rem; }
.bk-v7-channel h2 { margin: 0 0 .5rem; font-size: 1.4rem; }
.bk-v7-channel p { color: var(--text-light); margin: 0 auto 1.25rem; max-width: 420px; }
.bk-v7-channel-cta { display: inline-flex; align-items: center; gap: .35rem; padding: 1rem 1.5rem; background: var(--primary); color: var(--cta-text,#fff); text-decoration: none; border-radius: 14px; font-weight: 800; font-size: 1.2rem; transition: transform .15s ease, box-shadow .15s ease; }
.bk-v7-channel-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 40%, transparent); }
.bk-v7-channel-note { font-size: .85rem; color: var(--text-light); margin-top: 1rem !important; }
@media (max-width: 600px) { .bk-v7-row { grid-template-columns: 1fr; } .bk-v7-tab span { display: none; } .bk-v7-tab { padding: .85rem; } }

/* ---- v8 — Floating Glass Overlay ------------------------------ */
.bk-v8 { position: relative; padding: clamp(3rem, 8vw, 6rem) 0; min-height: 720px; overflow: hidden; }
.bk-v8-bg { position: absolute; inset: 0; z-index: 0; }
.bk-v8-bg-image { position: absolute; inset: 0; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 90%, #000), color-mix(in srgb, var(--secondary) 80%, #000)), url('/assets/images/hero.jpg'); background-size: cover; background-position: center; filter: blur(2px) saturate(1.1); }
.bk-v8-bg-tint { position: absolute; inset: 0; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 60%, transparent), rgba(0,0,0,.45)); }
.bk-v8-wrap { position: relative; z-index: 1; max-width: 720px; }
.bk-v8-glass { background: rgba(255,255,255,.78); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); border: 1px solid rgba(255,255,255,.5); border-radius: 24px; padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.bk-v8-h { margin: .35rem 0 .35rem; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--text); }
.bk-v8-lead { color: var(--text-light); margin: 0 0 1.5rem; }
.bk-v8 .bk-v8-form input, .bk-v8 .bk-v8-form select, .bk-v8 .bk-v8-form textarea { background: rgba(255,255,255,.7); }
.bk-v8-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.bk-v8-row label { margin-bottom: .65rem; }
.bk-v8-cta { width: 100%; padding: 1rem; border-radius: 14px; border: 0; background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, var(--accent))); color: var(--cta-text,#fff); font-weight: 800; font-size: 1.05rem; cursor: pointer; margin-top: .5rem; }
.bk-v8-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px color-mix(in srgb, var(--primary) 50%, transparent); }
.bk-v8-foot { display: flex; align-items: center; justify-content: center; gap: .35rem; margin-top: 1rem; color: var(--text-light); font-size: .92rem; }
.bk-v8-foot a { color: var(--primary); font-weight: 800; text-decoration: none; }
@media (max-width: 700px) { .bk-v8-row { grid-template-columns: 1fr; } }

/* ---- v9 — Vertical Accordion ---------------------------------- */
.bk-v9-wrap { max-width: 720px; }
.bk-v9-form { display: grid; gap: .75rem; }
.bk-v9-step { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.bk-v9-step[open] { border-color: var(--primary); box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 12%, transparent); }
.bk-v9-step.is-done { border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); background: color-mix(in srgb, var(--primary) 4%, var(--bg)); }
.bk-v9-step summary { padding: 1rem 1.25rem; cursor: pointer; display: flex; align-items: center; gap: .85rem; list-style: none; font-weight: 700; }
.bk-v9-step summary::-webkit-details-marker { display: none; }
.bk-v9-num { width: 32px; height: 32px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 12%, var(--bg)); color: var(--primary); display:inline-flex; align-items:center; justify-content:center; font-weight: 800; flex: 0 0 auto; font-size: .92rem; }
.bk-v9-step.is-done .bk-v9-num { background: var(--primary); color: var(--cta-text,#fff); }
.bk-v9-step.is-done .bk-v9-num::before { content: '✓'; }
.bk-v9-step.is-done .bk-v9-num span, .bk-v9-step.is-done .bk-v9-num text { display: none; }
.bk-v9-lbl { flex: 1; }
.bk-v9-chev { color: var(--text-light); transition: transform .2s ease; }
.bk-v9-step[open] .bk-v9-chev { transform: rotate(180deg); }
.bk-v9-body { padding: 0 1.25rem 1.25rem; display: grid; gap: .75rem; }
.bk-v9-next { margin-top: .5rem; }
.bk-v9-submit { margin-top: .5rem; }

/* Page-header compact (used by several variants) */
.page-header-compact { padding: clamp(2.25rem, 5vw, 3.25rem) 0 1.5rem; background: color-mix(in srgb, var(--primary) 4%, var(--bg)); }
.page-header-compact h1 { margin: .25rem 0 .35rem; font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.page-header-compact .page-header-lead { color: var(--text-light); margin: 0; }
