:root {
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
  --ink: #111827;
  --muted: #4B5563;
  --primary: #24264F;
  --primary-dark: #171936;
  --secondary: #6365A7;
  --accent: #1D4E38;
  --cream: #F7F7FC;
  --line: rgba(36, 38, 79, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-size: 16px; line-height: 1.7; color: var(--muted); background: #fff; overflow-x: hidden; }
body.has-mobile-call { padding-bottom: 72px; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(39px, 8vw, 78px); }
h2 { font-size: clamp(31px, 5.6vw, 52px); }
h3, h4 { font-size: clamp(22px, 3vw, 28px); }
main h3::after, main h4::after { content: ''; display: block; width: 48px; height: 3px; margin: 12px 0 14px; background: var(--accent); }
p, li, a, button, input, textarea { font-size: 16px; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; background: var(--primary); color: #fff; border-left: 5px solid var(--accent); font-family: Arial, Helvetica, sans-serif; font-weight: 900; }
.desktop-nav { display: none !important; }
.desktop-phone { display: none !important; }
.mobile-menu-button { display: inline-flex !important; width: 48px; height: 48px; align-items: center; justify-content: center; background: var(--primary); color: #fff; border: 0; }
.hamburger-line { width: 22px; height: 2px; background: currentColor; position: relative; }
.hamburger-line::before, .hamburger-line::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor; }
.hamburger-line::before { top: -7px; }
.hamburger-line::after { top: 7px; }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; padding: 18px 20px 24px; }
.mobile-menu.is-open { display: grid; gap: 12px; }
.mobile-menu a { color: var(--ink); font-weight: 800; padding: 10px 0; }
.mobile-menu .mobile-menu-phone { margin-top: 4px; text-align: center; color: #fff; background: var(--primary); padding: 14px 16px; white-space: nowrap; }

.btn-call, .btn-secondary { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px; font-weight: 900; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; white-space: nowrap; border-radius: 0; }
.btn-call { color: #fff !important; background: var(--accent); box-shadow: 0 0 0 0 rgba(255,255,255,.58); animation: pulseGlow 2.2s infinite; }
.btn-call:hover { transform: translateY(-2px); background: #143d2b; color: #fff !important; }
.btn-secondary { color: #fff !important; border: 1px solid rgba(255,255,255,.65); }
.btn-secondary:hover { background: #fff; color: var(--primary) !important; }

.hero { position: relative; min-height: 100svh; display: grid; place-items: center; padding: 122px 0 70px; color: #fff; overflow: hidden; background: linear-gradient(rgba(14,15,34,.70), rgba(14,15,34,.82)), url('../images/hero-kitchen.jpg') center/cover no-repeat; }
.hero::before { content: ''; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.2); left: -190px; top: 80px; transform: rotate(18deg); animation: floatSlow 9s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; width: 420px; height: 420px; right: -150px; bottom: 30px; background: radial-gradient(circle, rgba(99,101,167,.42), transparent 66%); }
.hero-content { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; margin-bottom: 16px; background: rgba(29,78,56,.14); color: #EAF8F1; border: 1px solid rgba(177,231,207,.34); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 900; }
.section-badge { display: inline-flex; margin-bottom: 14px; padding: 7px 12px; color: #fff; background: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900; }
.hero h1, .hero p { color: #fff; }
.hero .lead { max-width: 820px; margin: 18px auto 0; font-size: clamp(18px, 2.3vw, 22px); color: #EEF1FF; }
.stars { margin-top: 19px; color: #D7B85A; font-size: 26px; letter-spacing: .15em; }
.trust-icons { margin: 18px auto 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 13px; }
.trust-icons img { width: auto; height: 48px; max-width: 92px; object-fit: contain; background: rgba(255,255,255,.96); padding: 7px 9px; }
.hero-cta { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero-note { margin-top: 22px; color: #F7F8FF; font-weight: 800; }

.section { padding: 84px 0; position: relative; }
.section.alt { background: var(--cream); }
.section.dark { background: var(--primary-dark); color: #EEF1FF; overflow: hidden; }
.section.dark h2, .section.dark h3, .section.dark h4, .section.dark p, .section.dark li { color: #fff; }
.section.dark .muted { color: #D8DBF7; }
.heading-line { display: block; width: 82px; height: 4px; margin-top: 17px; background: var(--accent); }
.section-head { max-width: 820px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .heading-line { margin-left: auto; margin-right: auto; }
.lead-text { font-size: 18px; color: #374151; }
.dark .lead-text { color: #E6E8FF; }

.split { display: grid; gap: 28px; align-items: center; }
.split-text { min-width: 0; }
.split-image { min-width: 0; position: relative; }
.split-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; box-shadow: 18px 18px 0 rgba(99,101,167,.15); }
.glass-card { background: rgba(255,255,255,.88); border: 1px solid var(--line); padding: 26px; box-shadow: 0 24px 80px rgba(36,38,79,.09); }
.dark .glass-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }

.review-shell { position: relative; }
.review-track { display: grid; grid-auto-flow: column; grid-auto-columns: 88%; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 0 18px; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); padding: 26px; min-height: 238px; box-shadow: 0 22px 60px rgba(36,38,79,.08); }
.review-card .stars-small { color: #D7B85A; letter-spacing: .1em; margin-bottom: 14px; }
.review-name { color: var(--ink); font-weight: 900; margin-bottom: 8px; }
.review-controls { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.review-controls button { width: 50px; height: 50px; border: 1px solid var(--line); background: var(--primary); color: #fff; font-size: 24px; }

.service-grid { display: grid; gap: 22px; }
.service-card { background: #fff; border: 1px solid var(--line); padding: 26px; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 70px rgba(36,38,79,.12); }
.service-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--accent); }
.icon-box { width: 58px; height: 58px; margin-bottom: 16px; display: grid; place-items: center; color: var(--primary); background: #F1F2FF; }
.icon-box svg { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: square; stroke-linejoin: miter; }
.service-card ul, .issue-list { padding-left: 20px; }
.service-card li + li, .issue-list li + li { margin-top: 10px; }
.service-card strong, .issue-list strong { color: var(--ink); }

.choice-grid { display: grid; gap: 20px; }
.choice-card { padding: 24px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); }
.choice-card h3 { color: #fff; }
.choice-card p { color: #E6E8FF; }

.zip-strip { display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); padding: 28px; }
.zip-list { color: var(--ink); font-weight: 800; }
.faq-grid { display: grid; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); padding: 24px; }
.faq-item h3 { margin-bottom: 8px; }
.cta-panel { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: 44px 26px; text-align: center; }
.cta-panel::before { content: ''; position: absolute; width: 360px; height: 360px; left: -120px; top: -140px; background: radial-gradient(circle, rgba(255,255,255,.20), transparent 65%); }
.cta-panel h2, .cta-panel p { color: #fff; position: relative; }
.cta-panel .btn-call { margin-top: 18px; }

.footer { background: #0F1026; color: #D8DBF7; padding: 56px 0 30px; font-size: 14px; }
.footer a { color: #fff; }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer-grid { display: grid; gap: 28px; }
.footer h3 { color: #fff; font-size: 22px; margin-bottom: 12px; }
.footer p, .footer li, .footer a { font-size: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.disclaimer { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: #C9CDEE; font-size: 14px; }

.mobile-sticky-call { display: none !important; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; transform: translateY(100%); opacity: 0; transition: transform .28s ease, opacity .28s ease; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); background: rgba(15,16,38,.96); }
.mobile-sticky-call a { width: 100%; min-height: 52px; color: #fff !important; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 900; white-space: nowrap; }

@media (max-width: 767px) {
  h1 { font-size: clamp(39px, 11vw, 55px); }
  h2 { font-size: clamp(31px, 9vw, 39px); }
  .section { padding: 64px 0; }
  .hero { padding-top: 106px; }
  .hero-cta .btn-secondary { display: none; }
  .mobile-sticky-call.is-visible { display: block !important; transform: translateY(0); opacity: 1; }
}

@media (min-width: 768px) {
  body.has-mobile-call { padding-bottom: 0; }
  .desktop-nav { display: flex !important; align-items: center; gap: 22px; }
  .desktop-nav a { color: var(--ink); font-weight: 800; }
  .desktop-phone { display: inline-flex !important; color: #fff !important; background: var(--primary); padding: 12px 16px; font-weight: 900; white-space: nowrap; }
  .mobile-menu-button, .mobile-menu, .mobile-sticky-call { display: none !important; }
  .split { grid-template-columns: minmax(0, 70%) minmax(260px, 30%); }
  .split.reverse { grid-template-columns: minmax(260px, 30%) minmax(0, 70%); }
  .split.reverse .split-image { order: 1; }
  .split.reverse .split-text { order: 2; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .review-track { grid-auto-columns: calc((100% - 48px) / 3); }
  .footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
}

@media (min-width: 1180px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.50); }
  70% { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(24px) rotate(18deg); }
}
