/* ==========================================================================
   Eco Cleaning Services - Design System
   Sourced from Claude Design handoff (v2 home + House Cleaning detail).
   Single source of truth for the migrated site.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --green: #8CC63F;
  --green-600: #7AB832;
  --green-700: #5E9A1F;
  --green-900: #2F4A18;
  --cream: #F5F1E6;
  --cream-2: #EDE7D6;
  --ivory: #FDFCF8;
  --ink: #1C2118;
  --ink-2: #3A4235;
  --muted: #6B7564;
  --line: #E5DFD0;
  --white: #fff;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 2px rgba(28,33,24,.04), 0 2px 8px rgba(28,33,24,.04);
  --shadow: 0 4px 16px rgba(28,33,24,.06), 0 20px 48px rgba(28,33,24,.08);
  --shadow-lg: 0 20px 60px rgba(28,33,24,.12);

  --max: 1240px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  line-height: 1.5; font-size: 16px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(40px, 5.4vw, 78px); font-weight: 500; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 3.6vw, 50px); font-weight: 500; letter-spacing: -0.028em; }
h3 { font-size: 20px; font-weight: 600; }
p { margin: 0; color: var(--ink-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-700); font-weight: 600;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--green-700); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 200;
  background: var(--ink); color: var(--ivory); padding: 10px 16px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }
:focus-visible { outline: 3px solid var(--green-700); outline-offset: 2px; border-radius: 4px; }
.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;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--green-900); box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 8px 20px rgba(140,198,63,.3); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { background: var(--white); border-color: var(--ink); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-sm { padding: 10px 16px; font-size: 14px; }

.floating-call {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom)); z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green); color: var(--white);
  box-shadow: 0 8px 24px rgba(28,33,24,.22), 0 2px 8px rgba(28,33,24,.12);
}
.floating-call svg { width: 24px; height: 24px; stroke: currentColor; }
.floating-call:hover, .floating-call:focus-visible { background: var(--green-600); }
@media (max-width: 1000px) {
  body:has(.quote-bar) .floating-call { bottom: calc(86px + env(safe-area-inset-bottom)); }
}

/* ---------- Navbar ---------- */
.nav { position: fixed; top: 20px; left: 0; right: 0; z-index: 50; }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 10px 14px 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  /* Higher opacity + lighter blur: a fixed, full-width backdrop-filter is the most
     expensive thing to repaint every scroll frame. Lighter radius ~halves the cost. */
  background: rgba(253,252,248,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(28,33,24,.06); border-radius: 999px;
  box-shadow: 0 6px 24px rgba(28,33,24,.06);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-inner { background: rgba(253,252,248,.97); }
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center; color: var(--green-900); flex: 0 0 auto;
}
.brand-name { font-size: 15px; letter-spacing: -0.01em; }
.brand-name small { display: block; font-size: 10px; letter-spacing: 0.14em; font-weight: 500; color: var(--muted); text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.nav-phone svg { display: inline; vertical-align: -3px; margin-right: 5px; color: var(--green-700); }
.nav-cta .btn { padding: 10px 18px; font-size: 14px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); place-items: center; color: var(--ink); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: rgba(28,33,24,.45);
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px);
  background: var(--ivory); padding: 24px; transform: translateX(100%);
  transition: transform .28s ease; display: flex; flex-direction: column; gap: 6px;
  box-shadow: -10px 0 40px rgba(28,33,24,.18);
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-menu a { padding: 13px 12px; border-radius: 12px; font-size: 16px; font-weight: 500; color: var(--ink-2); }
.mobile-menu a:hover, .mobile-menu a:focus-visible { background: var(--cream); color: var(--ink); }
.mobile-menu .btn { margin-top: 14px; }
.mobile-menu .mm-phone { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--ink-2); padding: 12px; }

@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: grid; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 100vh; padding: 120px 0 40px;
  color: var(--ivory); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #1b2a10; }
.hero-bg img.hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
/* Self-hosted background video: desktop only, object-fit cover, pointer-events off.
   Promoted to its own GPU compositor layer so scroll only translates it. */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none; border: 0;
  transform: translateZ(0); will-change: transform; backface-visibility: hidden;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,14,8,.5) 0%, rgba(10,14,8,.25) 45%, rgba(10,14,8,.85) 100%),
    radial-gradient(1200px 600px at 20% 10%, rgba(140,198,63,.15), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  width: 100%;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end;
}
.hero h1 { color: var(--ivory); max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--green); font-weight: 500; }
.hero-sub { color: rgba(253,252,248,.86); font-size: 17px; max-width: 48ch; margin-top: 22px; }
.hero-loc {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: rgba(253,252,248,.9); margin-bottom: 24px;
}
.hero-loc .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(140,198,63,.25); }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: rgba(253,252,248,.92); font-size: 13px; font-weight: 500;
}
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } .hero-video { display: none !important; } }

/* Booking card */
.book {
  background: rgba(253,252,248,.98);
  backdrop-filter: blur(8px); border-radius: var(--radius-lg);
  padding: 24px; color: var(--ink);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.5);
}
.book-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.book-head h2, .book-head h3 { font-size: 17px; }
.book-head .save { font-size: 12px; color: var(--green-700); font-weight: 600; background: #F0F8E1; padding: 4px 10px; border-radius: 999px; }
.field { margin-bottom: 10px; }
.field label { display: block; font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }
.input, .select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--ivory);
  font-family: inherit; font-size: 14px; color: var(--ink);
  transition: border .15s, box-shadow .15s;
}
.input:focus, .select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(140,198,63,.2); }
.input.is-error, .select.is-error { border-color: #d3492f; box-shadow: 0 0 0 3px rgba(211,73,47,.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.book .btn { width: 100%; padding: 14px; margin-top: 8px; }
.book-foot { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 12px; color: var(--muted); justify-content: center; }
/* Honeypot - visually hidden but present for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-msg { margin-top: 12px; font-size: 13px; padding: 10px 12px; border-radius: 10px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #F0F8E1; color: var(--green-900); border: 1px solid rgba(140,198,63,.4); }
.form-msg.err { background: #fdecea; color: #8a2a18; border: 1px solid rgba(211,73,47,.35); }

/* ---------- Sections ---------- */
section { padding: 120px 0; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; font-size: 17px; color: var(--muted); }

/* ---------- What We Offer ---------- */
.offer { background: var(--cream); }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.offer-card {
  background: var(--ivory); border-radius: var(--radius-lg);
  padding: 8px 8px 24px; border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-img { aspect-ratio: 4/3; border-radius: 22px; overflow: hidden; background: var(--cream-2); position: relative; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; }
.offer-body { padding: 18px 16px 0; }
.offer-card h3 { font-size: 17px; letter-spacing: -0.01em; }
.offer-card p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.offer-foot { text-align: center; margin-top: 44px; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Difference standards ---------- */
.difference { background: var(--ivory); padding: 84px 0; }
.difference-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.difference-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; min-height: 174px;
  display: flex; align-items: flex-start; gap: 16px;
}
.difference-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: #EAF4D8; border: 1px solid rgba(94,154,31,.22);
  display: grid; place-items: center; color: var(--green-700);
  flex: 0 0 auto;
}
.difference-icon svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.difference-copy { min-width: 0; }
.difference-card h3 { font-size: 17px; line-height: 1.25; letter-spacing: 0; }
.difference-card p { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
@media (max-width: 980px) { .difference-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .difference { padding: 68px 0; }
  .difference-grid { grid-template-columns: 1fr; }
  .difference-card { min-height: 0; flex-direction: column; gap: 12px; padding: 20px; }
}

/* ---------- Wide image band ---------- */
.band { height: 440px; position: relative; overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.5)); }
.band-quote {
  position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%);
  color: var(--ivory); text-align: center; font-weight: 500;
  font-size: clamp(22px, 2.4vw, 34px); letter-spacing: -0.02em;
  max-width: 24ch; z-index: 2;
}
.band-quote span { color: var(--green); }

/* ---------- Eco-friendly services list ---------- */
.services { background: var(--ivory); position: relative; overflow: hidden; }
.services::before { content: ""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(140,198,63,.1), transparent 70%); }
.services-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; position: relative; }
.services-hero-img { aspect-ratio: 3/2; border-radius: var(--radius-xl); overflow: hidden; background: #E8DFCD; position: sticky; top: 100px; }
.services-hero-img img { width: 100%; height: 100%; object-fit: contain; }
.services-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.srv {
  padding: 22px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid transparent;
  display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: center;
  transition: background .2s, border .2s; cursor: pointer;
}
.srv:hover, .srv:focus-within { background: var(--ivory); border-color: var(--green); }
.srv-num { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--green-700); font-weight: 600; font-size: 13px; border: 1px solid var(--line); }
.srv h3 { font-size: 18px; }
.srv p { font-size: 14px; color: var(--muted); margin-top: 2px; }
.srv-arrow { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); transition: transform .2s, background .2s, border .2s; }
.srv:hover .srv-arrow { transform: rotate(-45deg); background: var(--green); border-color: var(--green); }
@media (max-width: 900px) { .services-layout { grid-template-columns: 1fr; } .services-hero-img { position: relative; top: 0; } }

/* ---------- More than cleaning + stats ---------- */
.more { background: var(--cream); padding-bottom: 0; }
.more-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.more-img { aspect-ratio: 4/3; border-radius: var(--radius-xl); overflow: hidden; }
.more-img img { width: 100%; height: 100%; object-fit: cover; }
.more h2 em { font-style: normal; color: var(--green-700); }
.more-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.stats { background: var(--green); margin-top: 100px; padding: 48px 0; color: var(--green-900); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 8px 20px; text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(47,74,24,.15); }
.stat b { display: block; font-size: clamp(36px, 4.6vw, 56px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--green-900); }
.stat span { font-size: 13px; color: var(--green-900); opacity: .75; margin-top: 8px; display: block; font-weight: 500; }
@media (max-width: 900px) { .more-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; } }

/* ---------- Before / After (large) ---------- */
.ba { background: var(--ivory); }
.ba-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.ba-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ba-slider { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-xl); overflow: hidden; user-select: none; cursor: ew-resize; background: #222; box-shadow: var(--shadow); touch-action: none; }
.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--white); box-shadow: 0 0 0 1px rgba(0,0,0,.2); }
.ba-handle::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.ba-handle::after { content: "\21C6"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 18px; color: var(--ink); font-weight: 700; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-label { position: absolute; top: 16px; padding: 6px 12px; background: rgba(0,0,0,.5); color: var(--white); border-radius: 999px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; backdrop-filter: blur(8px); }
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; background: var(--green); color: var(--green-900); }
.ba-side h2 em { font-style: normal; color: var(--green-700); }
.ba-review { margin-top: 32px; padding: 24px; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); }
.ba-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.ba-stars svg { fill: #F5B400; }
.ba-review p { font-size: 15px; color: var(--ink-2); font-style: italic; }
.ba-review .who { margin-top: 14px; display: flex; align-items: center; gap: 10px; }
.ba-review .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: var(--green-900); display: grid; place-items: center; font-weight: 600; font-size: 13px; }
.ba-review .who b { font-size: 14px; }
.ba-review .who span { font-size: 12px; color: var(--muted); display: block; }
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ba-gallery { grid-template-columns: 1fr; } }

/* ---------- Find us on ---------- */
.findus { background: var(--cream); padding: 80px 0; }
.findus-inner { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
.findus h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.findus-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.socialchip { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--ivory); border: 1px solid var(--line); border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform .2s, border .2s; }
.socialchip:hover { border-color: var(--ink); transform: translateY(-2px); }
.socialchip.nextdoor { background: var(--green); border-color: var(--green); color: var(--green-900); }
.socialchip.google b { background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (max-width: 700px) { .findus-inner { grid-template-columns: 1fr; text-align: center; } }

/* ---------- Service area / map ---------- */
.map { background: var(--ivory); padding: 100px 0; }
.map-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: stretch; }
.map-side h2 em { font-style: normal; color: var(--green-700); }
.area-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.area-list li { font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; font-weight: 500; }
.area-list li a { display: flex; align-items: center; gap: 8px; }
.area-list li a:hover { color: var(--green-700); }
.area-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
.area-note { margin-top: 24px; padding: 16px 18px; background: var(--cream); border-radius: 14px; border: 1px solid var(--line); display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-2); }
.area-note svg { color: var(--green-700); flex: 0 0 auto; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 500px; position: relative; border: 1px solid var(--line); background: #E5EFDE; }
.map-overlay { position: absolute; top: 24px; left: 24px; z-index: 2; background: var(--ivory); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); max-width: 260px; }
.map-overlay h3 { font-size: 16px; margin-bottom: 4px; }
.map-overlay p { font-size: 13px; color: var(--muted); }
.map-pin { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--green); border: 3px solid var(--ivory); box-shadow: 0 0 0 6px rgba(140,198,63,.25), 0 4px 12px rgba(0,0,0,.15); }
.map-svg { position: absolute; inset: 0; }
@media (max-width: 900px) { .map-layout { grid-template-columns: 1fr; } .map-wrap { height: 360px; } }

/* ---------- Final CTA ---------- */
.finalcta { background: var(--cream); padding-bottom: 140px; }
.finalcta-inner { background: var(--ivory); border-radius: var(--radius-xl); padding: 64px; position: relative; overflow: hidden; border: 1px solid var(--line); display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.finalcta h2 em { font-style: normal; color: var(--green-700); }
.finalcta-form { display: flex; flex-direction: column; gap: 10px; }
.finalcta-note { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted); margin-top: 12px; }
.finalcta-note .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.deco-leaf-1, .deco-leaf-2 { position: absolute; pointer-events: none; }
.deco-leaf-1 { left: -80px; bottom: -80px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(140,198,63,.2), transparent 60%); border-radius: 50%; }
.deco-leaf-2 { right: -60px; top: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(140,198,63,.12), transparent 60%); border-radius: 50%; }
@media (max-width: 900px) { .finalcta-inner { grid-template-columns: 1fr; padding: 40px 28px; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(253,252,248,.72); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand .brand-name { color: var(--ivory); }
.footer-brand .brand-name small { color: rgba(253,252,248,.5); }
.footer-brand p { font-size: 13px; margin-top: 14px; color: rgba(253,252,248,.6); max-width: 32ch; }
.footer h4 { color: var(--ivory); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(253,252,248,.7); }
.footer ul a:hover { color: var(--green); }
.footer-cta .input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: var(--ivory); }
.footer-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(253,252,248,.5); flex-wrap: wrap; gap: 12px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: background .2s; color: rgba(253,252,248,.7); }
.footer-social a:hover { background: var(--green); color: var(--green-900); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Inner page: compact banner + content + sticky sidebar
   (House Cleaning detail + service / area / about / contact / blog)
   ========================================================= */
.banner { background: var(--cream); padding: 150px 0 56px; border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .cur { color: var(--ink); font-weight: 500; }
.banner h1 { font-size: clamp(28px, 3.8vw, 50px); font-weight: 500; letter-spacing: -0.028em; max-width: 22ch; }
.banner h1 em { font-style: normal; color: var(--green-700); }
.banner-sub { font-size: 15px; color: var(--muted); max-width: 60ch; margin-top: 14px; line-height: 1.65; }
.banner-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.meta-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: var(--ink-2); }
.meta-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.banner-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }

.page-body { padding: 64px 0 100px; }
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.content-col { min-width: 0; }
.content-section { padding: 0 0 56px; border-bottom: 1px solid var(--line); margin-bottom: 56px; }
.content-section:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.content-section h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 500; letter-spacing: -0.022em; margin-bottom: 18px; }
.content-section h2 em { font-style: normal; color: var(--green-700); }
.content-section h3 { font-size: 18px; margin: 24px 0 10px; }
.content-section p { font-size: 15px; color: var(--ink-2); line-height: 1.75; }
.content-section p + p { margin-top: 12px; }
.content-section ul.prose-list { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.content-section ul.prose-list li { font-size: 15px; color: var(--ink-2); display: block; position: relative; padding-left: 26px; line-height: 1.6; text-align: left; }
.content-section ul.prose-list li::before { content: ""; flex: 0 0 16px; height: 16px; margin-top: 3px; border-radius: 50%; background: var(--green); background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 7 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L2.8 5.2L6 1.5' stroke='%232F4A18' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.content-section ul.prose-list li::before { position: absolute; left: 0; top: 6px; width: 16px; margin-top: 0; }
.content-section ul.prose-list li strong { display: inline; }
/* Mobile: stack each step to one column so the bold label flows with its
   description instead of being squeezed into a narrow flex-item column. */
@media (max-width: 640px) {
  .content-section ul.prose-list li { display: block; position: relative; padding-left: 26px; }
  .content-section ul.prose-list li::before { position: absolute; left: 0; top: 6px; width: 16px; margin-top: 0; }
  .content-section ul.prose-list li strong { display: inline; }
}

.inline-img { width: 100%; aspect-ratio: 16/7; border-radius: var(--radius-lg); overflow: hidden; margin: 28px 0; }
.inline-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.inline-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.inline-img-pair .img-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.inline-img-pair .img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.reason-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); transition: border-color .2s, box-shadow .2s; }
.reason-card:hover { border-color: var(--green); box-shadow: 0 0 0 3px rgba(140,198,63,.1); }
.reason-card h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; }
.reason-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.reason-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg,#F0F8E1,#E2F4C2); display: grid; place-items: center; color: var(--green-700); margin-bottom: 12px; }
@media (max-width: 640px) { .reason-grid { grid-template-columns: 1fr; } }

/* Accordion rooms */
.rooms { display: flex; flex-direction: column; gap: 8px; }
.room-row { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--ivory); }
.room-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; cursor: pointer; background: none; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink); text-align: left; transition: background .15s; }
.room-toggle:hover { background: var(--cream); }
.room-toggle .rt-left { display: flex; align-items: center; gap: 12px; }
.room-toggle .rt-icon { width: 32px; height: 32px; border-radius: 9px; background: var(--cream); display: grid; place-items: center; color: var(--green-700); border: 1px solid var(--line); flex: 0 0 auto; }
.room-toggle .rt-chevron { transition: transform .25s; color: var(--muted); }
.room-row.open .rt-chevron { transform: rotate(180deg); }
.room-body { display: none; padding: 0 18px 18px; }
.room-row.open .room-body { display: block; }
.room-body p { font-size: 14px; color: var(--ink-2); line-height: 1.7; padding-top: 4px; }

/* Included checklist cards */
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-col { padding: 18px 20px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.check-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.check-col h4 svg { color: var(--green-700); }
.check-col ul { display: flex; flex-direction: column; gap: 7px; list-style: none; padding: 0; margin: 0; }
.check-col li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--ink-2); line-height: 1.45; }
.check-col li::before { content: ""; flex: 0 0 15px; height: 15px; margin-top: 1px; border-radius: 50%; background: var(--green); background-image: url("data:image/svg+xml,%3Csvg width='7' height='7' viewBox='0 0 7 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L2.8 5.2L6 1.5' stroke='%232F4A18' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.add-on-note { margin-top: 16px; padding: 14px 16px; background: linear-gradient(135deg, #F0F8E1, #E8F4C8); border: 1px solid rgba(140,198,63,.3); border-radius: var(--radius); font-size: 13px; color: var(--green-900); display: flex; gap: 10px; align-items: flex-start; }
.add-on-note svg { flex: 0 0 auto; margin-top: 1px; color: var(--green-700); }
@media (max-width: 640px) { .check-cols { grid-template-columns: 1fr; } }

/* BA mini row */
.ba-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.ba-mini { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ba-slider-mini { position: relative; aspect-ratio: 4/3; user-select: none; cursor: ew-resize; touch-action: none; }
.ba-slider-mini .ba-im { position: absolute; inset: 0; }
.ba-slider-mini .ba-im img { width: 100%; height: 100%; object-fit: cover; }
.ba-slider-mini .ba-aft { clip-path: inset(0 0 0 50%); }
.ba-slider-mini .ba-hdl { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--white); }
.ba-slider-mini .ba-hdl::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 32px; height: 32px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.25); }
.ba-slider-mini .ba-hdl::after { content: "\21C6"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 12px; font-weight: 700; color: var(--ink); }
.ba-slider-mini .ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-slider-mini .ba-lbl { position: absolute; top: 10px; padding: 4px 9px; border-radius: 999px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.ba-lbl.bf { left: 10px; background: rgba(0,0,0,.55); color: var(--white); }
.ba-lbl.af { right: 10px; background: var(--green); color: var(--green-900); }
.ba-cap { padding: 9px 12px; background: var(--cream); font-size: 12px; font-weight: 500; color: var(--muted); }
@media (max-width: 760px) { .ba-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ba-row { grid-template-columns: 1fr; } }

/* Sidebar */
.sidebar { position: sticky; top: 96px; }
.sidebar-book { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.sidebar-book-head { margin-bottom: 18px; }
.sidebar-book-head h2, .sidebar-book-head h3 { font-size: 17px; font-weight: 600; }
.sidebar-book-head p { font-size: 13px; color: var(--muted); margin-top: 4px; }
.sidebar-book .btn { width: 100%; padding: 13px; margin-top: 6px; }
.sidebar-foot { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; display: flex; align-items: center; gap: 6px; justify-content: center; }
.sidebar-trust { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.trust-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-2); padding: 10px 12px; background: var(--cream); border: 1px solid var(--line); border-radius: 10px; }
.trust-row svg { color: var(--green-700); flex: 0 0 auto; }
.sidebar-reviews { margin-top: 16px; }
.review-card { padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); margin-bottom: 10px; }
.review-card:last-child { margin-bottom: 0; }
.stars { display: flex; gap: 2px; margin-bottom: 6px; }
.stars svg { fill: #F5B400; }
.review-card p { font-size: 12px; color: var(--ink-2); font-style: italic; line-height: 1.55; }
.review-who { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.review-ava { width: 28px; height: 28px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-size: 10px; font-weight: 700; color: var(--green-900); flex: 0 0 auto; }
.review-who b { font-size: 11px; font-weight: 600; }
.review-who span { font-size: 10px; color: var(--muted); }
@media (max-width: 1000px) { .page-layout { grid-template-columns: 1fr; } .sidebar { position: relative; top: 0; order: -1; } }

/* Service cards grid (services hub) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 8px 8px 22px; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card .offer-img { aspect-ratio: 16/10; }
.svc-card-body { padding: 18px 16px 0; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-size: 18px; }
.svc-card p { font-size: 14px; color: var(--muted); margin-top: 8px; flex: 1; }
.svc-card .svc-link { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* Blog list */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .post-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--cream-2); }
.post-card .post-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.post-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .post-date { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.post-card h3 { font-size: 18px; margin: 8px 0 0; line-height: 1.25; }
.post-card p { font-size: 14px; color: var(--muted); margin-top: 10px; flex: 1; }
.post-card .svc-link { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--green-700); }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

/* Article (single blog post) */
.article { max-width: 760px; margin: 0 auto; }
.article h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 500; margin: 40px 0 14px; }
.article h3 { font-size: 20px; margin: 30px 0 10px; }
.article p { font-size: 16px; line-height: 1.8; color: var(--ink-2); margin: 0 0 16px; }
.article ul, .article ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); }
.article li { font-size: 16px; line-height: 1.75; margin-bottom: 8px; }
.article img { border-radius: var(--radius-lg); margin: 24px 0; }
.article a { color: var(--green-700); text-decoration: underline; }
.article blockquote { margin: 24px 0; padding: 18px 24px; border-left: 3px solid var(--green); background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* ---------- Scroll reveal ---------- */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   v3 additions: real logo, mega menu, mobile accordion,
   mobile quote modal, aligned service list, map embeds,
   scroll-perf (content-visibility), phone no-wrap.
   ========================================================= */

/* ---------- Real brand logo ---------- */
.brand { gap: 11px; }
.brand-logo { height: 40px; width: auto; display: block; flex: 0 0 auto; }
.brand-logo-foot { height: 48px; }
@media (max-width: 520px) { .brand-name small { display: none; } .brand-logo { height: 34px; } }

/* phone numbers never break mid-number */
a[href^="tel:"] { white-space: nowrap; }

/* ---------- Mega menu (desktop) ---------- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  font-family: inherit; line-height: 1; padding: 0;
}
.nav-trigger:hover, .nav-item:hover .nav-trigger, .nav-trigger[aria-expanded="true"] { color: var(--ink); }
.nav-chev { transition: transform .2s ease; color: var(--muted); }
.nav-item:hover .nav-chev, .nav-trigger[aria-expanded="true"] .nav-chev { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(860px, calc(100vw - 36px));
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  z-index: 40;
}
/* Invisible hover bridge spanning the 12px gap between trigger and panel,
   so moving the cursor from trigger to panel never drops :hover. */
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
#mega-areas { width: min(580px, calc(100vw - 36px)); }
.nav-item:hover > .mega, .nav-item:focus-within > .mega, .mega.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s;
}
.mega-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.mega-all { font-size: 13px; font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.mega-all svg { transition: transform .2s; }
.mega-all:hover svg { transform: translateX(3px); }
.mega-grid-svc { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mega-card { display: flex; gap: 12px; padding: 11px 12px; border-radius: 14px; transition: background .15s; align-items: flex-start; }
.mega-card:hover, .mega-card:focus-visible { background: var(--cream); }
.mega-card-ico { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg,#F0F8E1,#E2F4C2); display: grid; place-items: center; color: var(--green-700); flex: 0 0 auto; }
.mega-card-tx b { display: block; font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.mega-card-tx small { display: block; font-size: 12px; color: var(--muted); line-height: 1.45; margin-top: 2px; }
.mega-grid-area { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.mega-area { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--ink-2); transition: background .15s, color .15s; }
.mega-area:hover, .mega-area:focus-visible { background: var(--cream); color: var(--ink); }
.mega-area .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
.mega-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.mega-note svg { color: var(--green-700); flex: 0 0 auto; }
.mega-note a { color: var(--green-700); font-weight: 600; }
@media (max-width: 980px) { .nav-item, .mega { display: none !important; } }

/* ---------- Mobile drawer: accordion ---------- */
.mobile-menu-panel { overflow: hidden; }
.mm-scroll { display: flex; flex-direction: column; gap: 2px; overflow-y: auto; flex: 1 1 auto; margin: 0 -6px; padding: 0 6px; -webkit-overflow-scrolling: touch; }
.mm-acc { border-bottom: 0; }
.mm-acc-tog { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 12px; font-size: 16px; font-weight: 500; color: var(--ink-2); font-family: inherit; }
.mm-acc-tog .nav-chev { transition: transform .25s; color: var(--muted); }
.mm-acc-tog[aria-expanded="true"] { color: var(--ink); }
.mm-acc-tog[aria-expanded="true"] .nav-chev { transform: rotate(180deg); }
.mm-acc-body { display: none; flex-direction: column; padding: 0 0 10px 10px; }
.mm-acc-body.open { display: flex; }
.mm-acc-body a { padding: 9px 12px; font-size: 14px; border-radius: 10px; color: var(--ink-2); }
.mm-acc-body a:hover, .mm-acc-body a:focus-visible { background: var(--cream); color: var(--ink); }
.mm-sub-all { font-weight: 600; color: var(--green-700) !important; }

/* ---------- Mobile quote bar + modal (inner pages) ---------- */
.quote-bar { display: none; }
.quote-modal { display: none; position: fixed; inset: 0; z-index: 70; background: rgba(28,33,24,.5); align-items: flex-end; justify-content: center; }
.quote-modal.open { display: flex; }
.quote-modal[hidden] { display: none; }
.quote-modal-panel {
  width: 100%; max-width: 520px; background: var(--ivory);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 22px;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(100%); transition: transform .28s ease;
}
.quote-modal.open .quote-modal-panel { transform: translateY(0); }
.quote-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.quote-modal-head h3 { font-size: 18px; }
.quote-modal-head p { font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (min-width: 560px) {
  .quote-modal { align-items: center; }
  .quote-modal-panel { border-radius: var(--radius-lg); transform: translateY(20px) scale(.98); }
  .quote-modal.open .quote-modal-panel { transform: translateY(0) scale(1); }
}
@media (max-width: 1000px) {
  .sidebar-book { display: none; }   /* hide inline form on mobile; modal replaces it */
  .quote-bar {
    display: flex; gap: 10px; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    background: rgba(253,252,248,.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(28,33,24,.10);
  }
  .quote-bar-call { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; color: var(--ink-2); padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--ivory); }
  .quote-bar-call svg { color: var(--green-700); }
  .quote-bar .btn { flex: 1; }
  .page-body { padding-bottom: 116px; }
}

/* ---------- Aligned service list (replaces ragged prose lists) ---------- */
.svc-deflist { margin: 18px 0 0; display: flex; flex-direction: column; }
.svc-deflist-row { display: grid; grid-template-columns: 190px 1fr; gap: 6px 22px; padding: 13px 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.svc-deflist-row:first-child { padding-top: 0; }
.svc-deflist-row:last-child { border-bottom: 0; padding-bottom: 0; }
.svc-deflist dt { margin: 0; }
.svc-deflist dt a { font-size: 15px; font-weight: 600; color: var(--green-700); }
.svc-deflist dt a:hover { color: var(--green-900); text-decoration: underline; }
.svc-deflist dd { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 560px) { .svc-deflist-row { grid-template-columns: 1fr; gap: 3px; padding: 12px 0; } }

/* ---------- Google Maps embeds ---------- */
.map-embed { width: 100%; height: 100%; border: 0; display: block; }
.map-wrap .map-embed { position: absolute; inset: 0; }
.map-overlay { pointer-events: none; }
.map-overlay a, .map-overlay .btn { pointer-events: auto; }
.map-embed-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; background: var(--cream); }

/* ---------- Scroll performance: skip rendering offscreen sections ---------- */
.band, .findus, .finalcta, .footer { content-visibility: auto; }
.band { contain-intrinsic-size: auto 440px; }
.findus { contain-intrinsic-size: auto 240px; }
.finalcta { contain-intrinsic-size: auto 620px; }
.footer { contain-intrinsic-size: auto 600px; }

/* =========================================================
   v4 round3 (mobile review fixes):
   #1 mobile mega/drawer tidy   #2 single logo (markup)
   #3 mobile 1-col horizontal service cards
   #4 uniform centered CTA buttons   #5 contact strip 2-col
   #7 inline form -> floating button + modal (sidebar/cta button mode)
   ========================================================= */

/* ---------- #2 brand: logo is the sole identifier now ---------- */
.brand-logo { height: 44px; }
.footer-brand .brand { margin-bottom: 4px; }
@media (max-width: 520px) { .brand-logo { height: 38px; } }

/* ---------- #1 Mobile drawer: wider panel, every item on one line ---------- */
.mobile-menu-panel { width: min(88vw, 360px); }
.mm-acc-body { padding: 0 0 10px 4px; }
.mm-acc-body a, .mm-sub-all {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  padding: 9px 10px;
}
/* Separate the flat About/Blog/Contact links from the accordions above with
   spacing only. The boss asked for no horizontal lines in the mobile drawer,
   so the previous pseudo-element divider is gone; a little extra top margin
   keeps the two groups visually distinct without any rule. */
.mm-scroll > a:first-of-type { margin-top: 10px; }

/* ---------- #3 Service cards: mobile 1-col horizontal (image left, text right) ---------- */
@media (max-width: 600px) {
  .offer-grid, .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .offer-card, .svc-card {
    display: flex; flex-direction: row; align-items: center;
    padding: 10px; gap: 14px;
  }
  .offer-card .offer-img, .svc-card .offer-img {
    flex: 0 0 116px; width: 116px; aspect-ratio: 1 / 1; border-radius: 14px;
  }
  .offer-card .offer-body, .svc-card .svc-card-body {
    padding: 0; flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column;
  }
  .offer-card h3, .svc-card h3 { font-size: 16px; }
  .offer-card p, .svc-card p {
    font-size: 13px; margin-top: 4px; line-height: 1.45;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .svc-card .svc-link { margin-top: 8px; }
}

/* ---------- #4 Uniform, centered CTA buttons on mobile ---------- */
@media (max-width: 640px) {
  .banner-cta, .more-cta {
    flex-direction: column; align-items: stretch; width: 100%; gap: 10px;
  }
  .banner-cta .btn, .more-cta .btn {
    width: 100%; max-width: 360px; margin-left: auto; margin-right: auto;
    justify-content: center;
  }
  .banner-cta .btn-sm { padding: 13px 18px; font-size: 15px; }  /* match primary height */
  .services-list > .btn { align-self: stretch !important; max-width: 360px; margin-left: auto !important; margin-right: auto !important; }
  .offer-foot .btn { min-width: 220px; }
}

/* ---------- #5 Contact details strip: 2-col on mobile ---------- */
@media (max-width: 640px) {
  .contact-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact-cards .reason-card { padding: 14px 12px; }
  .contact-cards .reason-card .reason-icon { margin-bottom: 8px; }
  .contact-cards .reason-card h3 { font-size: 14px; }
  .contact-cards .reason-card p { font-size: 12px; line-height: 1.5; }
}

/* ---------- #7 Floating quote bar (centered) ---------- */
.quote-bar-inner { display: flex; gap: 10px; align-items: center; width: 100%; max-width: 460px; margin: 0 auto; }
.quote-bar-inner .btn { flex: 1; }
.quote-bar { justify-content: center; }

/* sidebar in button mode (service / area / about / flagship) */
.sidebar-book .quote-open { width: 100%; }
.sidebar-book .sidebar-call { width: 100%; margin-top: 8px; }
.sidebar-book .sidebar-foot { margin-top: 12px; }

/* cta-strip in button mode */
.finalcta-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.finalcta-micro { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-top: 2px; }
.finalcta-micro .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
@media (max-width: 900px) {
  .finalcta--cta .finalcta-inner { text-align: center; }
  .finalcta-cta { align-items: stretch; }
  .finalcta-cta .btn { width: 100%; max-width: 360px; margin: 0 auto; justify-content: center; }
  .finalcta-micro { justify-content: center; }
}

/* mobile: content first, then sidebar (was order:-1); clear the fixed quote bar */
@media (max-width: 1000px) {
  .sidebar { order: 0; }
  body:has(.quote-bar) .footer { padding-bottom: 96px; }
}

/* =========================================================
   v4 round4 (review fixes):
   R1 hero fallback fades once YT iframe loads (was permanently
      covering the video). R2 Find Us On chips: equal width,
      flex-centered. R3 home map "area contact": header row +
      phone/hours 2-col. R4 scroll-perf: blog post-cards get
      content-visibility so the 27-card list does not paint
      offscreen rows during scroll.
   ========================================================= */

/* ---------- R1 Hero: fade fallback when the background video is live ---------- */
.hero-bg .hero-video { z-index: 1; }
.hero-bg img.hero-fallback {
  z-index: 0;                  /* explicit so the video (z=1) wins paint order */
  transition: opacity .5s ease;
  will-change: opacity;
}
.hero-bg.has-video img.hero-fallback { opacity: 0; }
/* the gradient overlay (::after) is z-index:1 too; bump it above the video */
.hero-bg::after { z-index: 2; }
/* video stays under the dark gradient but above the fallback */
.hero-video { z-index: 1 !important; }
@media (max-width: 980px) {
  /* mobile: never load the iframe, keep fallback fully visible */
  .hero-bg.has-video img.hero-fallback { opacity: 1; }
}

/* ---------- R2 Find Us On: uniform pill widths, flex-centered ---------- */
.findus-inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.findus h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.findus-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; width: 100%; max-width: 900px;
}
.findus-chips .socialchip {
  /* equal target size: wide enough for the longest label without growing */
  min-width: 260px;
  padding: 14px 22px;
  justify-content: center;
  text-align: center;
  flex: 0 1 260px;
}
@media (max-width: 700px) {
  .findus-inner { grid-template-columns: 1fr; }
  .findus-chips { flex-direction: column; align-items: stretch; max-width: 360px; }
  .findus-chips .socialchip { min-width: 0; width: 100%; flex: 0 0 auto; }
}

/* ---------- R3 Home map area contact: header + 2-col phone/hours ---------- */
.area-contact {
  margin-top: 24px; padding: 18px 18px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 14px; color: var(--ink-2);
}
.area-contact-head {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink);
  text-align: center;
}
.area-contact-head svg { color: var(--green-700); flex: 0 0 auto; }
.area-contact-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  align-items: center;
}
.area-contact-col {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); min-width: 0;
}
.area-contact-col svg { color: var(--green-700); flex: 0 0 auto; }
.area-contact-col .acc-label { display: block; font-size: 11px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.area-contact-col .acc-value { display: block; font-size: 15px; color: var(--ink); font-weight: 600; line-height: 1.3; }
.area-contact-col a.acc-value { color: var(--ink); }
.area-contact-col a.acc-value:hover { color: var(--green-700); }
@media (max-width: 640px) {
  .area-contact-cols { grid-template-columns: 1fr; gap: 10px; }
  .area-contact-col { padding: 4px 0; }
}

/* ---------- R4 Blog list: skip rendering offscreen post-cards ----------
   The /blog/ page lists 27 articles; without containment, all 27 image
   decodes + layout boxes happen up-front and grind scrolling on mid-tier
   laptops. content-visibility:auto lets the browser skip work for cards
   below the fold and reuse it as they enter view. */
.post-grid .post-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

/* ---------- R4 Scroll-perf: drop non-nav backdrop-filters ----------
   A backdrop-filter forces the compositor to re-sample everything behind the
   element. Keep it on the one fixed, full-width nav pill (the floating-glass
   look is intentional there), but remove it everywhere else. These backgrounds
   are already 96-98% opaque, so dropping the blur is visually indistinguishable
   while removing a live compositing cost. .book sits directly over the
   autoplaying hero video, so its blur was being recomputed every video frame. */
.book { backdrop-filter: none; -webkit-backdrop-filter: none; }
.ba-label { backdrop-filter: none; -webkit-backdrop-filter: none; }
.quote-bar { backdrop-filter: none; -webkit-backdrop-filter: none; }

/* PSI accessibility and safe performance fixes 2026-06-01 */
.eyebrow { color: #466F1D; }
.eyebrow::before { background: #466F1D; }
.finalcta-inner .eyebrow { color: #466F1D; }
.finalcta-inner .eyebrow::before { background: #466F1D; }
.book-head .save { color: var(--green-900); }
.footer-brand p,
.footer ul a,
.footer-bottom { color: rgba(253,252,248,.84); }
.footer-brand .brand-name small { color: rgba(253,252,248,.82); }
.footer-social a { color: rgba(253,252,248,.84); }
.footer h4,
.footer .footer-heading { color: var(--ivory); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin: 0 0 18px; }
.footer-cta p { color: rgba(253,252,248,.84) !important; line-height: 1.9; }
.footer-cta p a { display: inline-block; padding: 6px 0; min-height: 24px; color: rgba(253,252,248,.92) !important; line-height: 1.4; }
.check-col h3.check-heading { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.check-col h3.check-heading svg { color: var(--green-700); }

/* ---------- FAQ Accordion ---------- */
.faq-section { margin-top: 48px; }
.faq-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border, #e2e0da); border-radius: 10px; background: var(--card, #fff); overflow: hidden; }
.faq-item summary.faq-q { padding: 18px 22px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--ink, #1a1a1a); transition: background .15s; }
.faq-item summary.faq-q::-webkit-details-marker { display: none; }
.faq-item summary.faq-q::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--accent, #8CC63F); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary.faq-q::after { content: '\2212'; }
.faq-item summary.faq-q:hover { background: rgba(140,198,63,.06); }
.faq-a { padding: 0 22px 20px; color: var(--muted, #555); font-size: 15px; line-height: 1.7; }
.faq-a p { margin: 0; }