@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/manrope.woff2") format("woff2");
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-serif.woff2") format("woff2");
}
:root {
  --navy: #123047;
  --navy-deep: #0C2233;
  --warm: #FAF8F4;
  --mist: #DCECEF;
  --lake: #2A6B75;
  --white: #FFFFFF;
  --ink: #18232B;
  --muted: #52616A;
  --line: rgba(18, 48, 71, 0.12);
  --shadow: 0 16px 40px rgba(18, 48, 71, 0.07);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1240px;
  --pad: 20px;
  --space-section-y: clamp(3.5rem, 10vw, 4.5rem);
  --space-section-y-compact: clamp(2.75rem, 6vw, 4rem);
  --space-grid: clamp(1.5rem, 3vw, 3.5rem);
  --section: var(--space-section-y);
  --header-h: 64px;
  --media-radius: var(--radius-lg);
  --media-bg: var(--mist);
  --media-hero: 4 / 5;
  --media-split: 4 / 3;
  --media-card: 3 / 2;
  --media-banner: 16 / 9;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  position: relative;
  background: var(--warm);
  color: var(--ink);
  font-family: Manrope, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: -0.03em; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 16px; top: -48px; z-index: 80;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  min-width: 0;
}
main, section, header, footer,
.hero-grid, .svc-grid, .included-grid, .about-grid,
.faq-grid, .steps, .footer-grid {
  min-width: 0;
  max-width: 100%;
}
.hero-grid > *,
.svc-grid > *,
.included-grid > *,
.about-grid > *,
.footer-grid > * {
  min-width: 0;
  max-width: 100%;
}
#home, #home-cleaning, #standard-cleaning, #deep-cleaning, #move-cleaning, #included, #how, #areas, #about, #faq, #quote, #commercial {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.kicker {
  margin: 0 0 12px;
  color: var(--lake);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.svc-card.featured .kicker { color: rgba(255, 255, 255, 0.82); }
.display {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
}

/* Shared media system — the only image-size source */
.media {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: var(--media-bg);
  align-self: start;
}
.media::before {
  content: "";
  display: block;
  width: 100%;
}
.media img,
.media picture,
.media video,
.media picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}
.media-hero {
  aspect-ratio: 4 / 5;
  max-height: 480px;
}
.media-hero::before { padding-top: 125%; }
.media-split {
  aspect-ratio: 4 / 3;
  max-height: 360px;
}
.media-split::before { padding-top: 75%; }
.media-card {
  aspect-ratio: 3 / 2;
  max-height: 240px;
}
.media-card::before { padding-top: 66.666%; }
.media-banner {
  aspect-ratio: 16 / 9;
  max-height: 260px;
}
.media-banner::before { padding-top: 56.25%; }
#home .media img { object-position: center 52%; }
#commercial .media img { object-position: center 28%; }
#included .media img { object-position: center 42%; }
#areas .media img { object-position: center center; }
#about .media img { object-position: center 58%; }

@media (min-width: 768px) {
  .media-hero { max-height: 560px; }
  .media-split { max-height: 420px; }
}

@media (min-width: 1024px) {
  :root { --space-section-y: clamp(5.5rem, 7vw, 7rem); }
  .media-hero { max-height: 620px; }
  .media-split { max-height: 460px; }
  .media-card { max-height: 280px; }
  .media-banner { max-height: 420px; }
}

/* Utility + header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: var(--header-h);
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  width: 100%;
  height: var(--header-h);
  padding-left: max(10px, env(safe-area-inset-left));
  padding-right: max(10px, env(safe-area-inset-right));
  gap: 12px;
}
.site-header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  margin: 0;
  height: 100%;
  z-index: 1;
}
.site-header .logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  object-position: left center;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 160px;
}
.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
}
.nav-desktop a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.nav-desktop a:hover { color: var(--lake); }
.header-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
  z-index: 1;
}
.nav-phone,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-phone {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.nav-cta {
  padding: 0 18px;
  background: var(--navy);
  color: #fff !important;
  border: 1.5px solid var(--navy);
}
@media (hover: hover) {
  .nav-phone:hover { background: var(--mist); color: var(--navy); }
  .nav-cta:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff !important; }
}
.nav-toggle {
  display: flex;
  margin-left: auto;
  width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; align-items: center; justify-content: center;
  flex: 0 0 44px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 1.5px; background: var(--navy); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--warm);
  padding: 24px 20px 32px;
  flex-direction: column;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 20px;
  line-height: 1.3;
  padding: 14px 0;
  color: var(--navy);
  min-height: 44px;
}
.nav-drawer a[href="#quote"] {
  margin-top: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
}
html.nav-open, body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn-navy { background: var(--navy); color: #fff; }
@media (hover: hover) {
  .btn-navy:hover { background: var(--navy-deep); }
  .btn-ghost:hover { background: var(--navy); color: #fff; }
}
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.actions .btn { width: 100%; }

/* Hero */
.hero {
  padding: 16px 0 var(--space-section-y-compact);
  min-height: auto;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  width: 100%;
  max-width: 100%;
  padding: 0 0 8px;
  text-align: left;
}
.hero h1 {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  font-size: 34px;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero-below {
  text-align: left;
}
.hero-lead {
  max-width: 36rem;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.hero .actions {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.hero .actions .btn {
  width: auto;
}
.hero-proof {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

#commercial .split-copy .btn { margin-top: 24px; }

/* Services */
.services {
  background: var(--mist);
  padding: var(--space-section-y) 0 var(--space-grid);
}
.services + .services {
  padding-top: var(--space-grid);
}
.section-head { max-width: 620px; margin-bottom: var(--space-grid); }
.section-head h2 {
  font-size: clamp(32px, 3vw, 44px);
  color: var(--navy);
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 18px; }
.svc-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
}
.svc-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.svc-card.featured p,
.svc-card.featured .learn,
.svc-card.featured li { color: rgba(255,255,255,0.86); }
.svc-card h3 {
  font-size: 26px;
  color: var(--navy);
  margin: 10px 0 10px;
}
.svc-card.featured h3 { color: #fff; }
.svc-card p { color: var(--muted); margin-bottom: 16px; }
.svc-card ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.svc-card li {
  position: relative;
  padding-left: 16px;
  margin: 6px 0;
  font-size: 14px;
  color: var(--muted);
}
.svc-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lake);
}
.svc-card.featured li::before { background: #fff; }
.icon-dot {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--mist);
  display: grid; place-items: center;
  color: var(--navy);
  font-size: 18px;
}
.svc-card.featured .icon-dot { background: rgba(255,255,255,0.12); color: #fff; }
.learn {
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mid-cta { text-align: center; margin-top: var(--space-grid); }

/* Included */
.included { padding: var(--section) 0; }
.included-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.check-list { list-style: none; margin: 16px 0 0; padding: 0; }
.check-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--lake);
}
.split-copy { max-width: 36.25rem; }
.split-copy > .display {
  font-size: clamp(32px, 3vw, 44px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.split-copy > p { color: var(--muted); }
.split-copy > p + .btn { margin-top: 24px; }
.support-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--mist);
}
.support-note strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
}
.support-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* How it works */
.how { background: var(--warm); padding: var(--space-section-y) 0; }
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step;
}
.step {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.step strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 18px;
}
.step p { color: var(--muted); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 28px;
  color: var(--lake);
}

/* Areas */
.areas {
  background: var(--mist);
  padding: var(--section) 0;
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.city-list a,
.city-list span {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
/* About */
.about {
  padding-block: var(--space-section-y);
}
.about-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2rem);
}
.about-copy {
  max-width: 36.25rem;
  min-width: 0;
}
.about-copy > .display {
  font-size: clamp(32px, 3vw, 44px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.about-lede {
  margin: 0;
  color: var(--muted);
}
.about-approach {
  margin-top: 22px;
}
.about-approach-label {
  margin: 0 0 10px;
  color: var(--lake);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-approach ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-approach li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}
.about-approach li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 0.48em;
  border-radius: 50%;
  background: var(--lake);
}
.about-trust {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.about-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  margin-top: 2px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}
.about-more:hover { color: var(--lake); }
.about-more:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: 3px;
  border-radius: 6px;
}

/* FAQ */
.faq { padding: var(--space-section-y) 0; }
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--navy);
}
.faq-item h3 {
  display: inline;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--navy);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.faq-item a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* Inline quote section */
.quote-inline {
  background: var(--mist);
  padding: var(--space-section-y-compact) 0;
}
.quote-inline-card {
  display: grid;
  gap: 20px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}
.quote-inline-card h2 {
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
}
.quote-inline-copy p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  max-width: 38rem;
}
.quote-inline-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.quote-inline-call {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.quote-inline-call a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field label, .check-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.field { margin-top: 16px; }
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  font-size: 16px;
  color: var(--ink);
}
.field textarea { min-height: 104px; resize: vertical; }
.field input.is-invalid,
.field textarea.is-invalid,
.check input.is-invalid + .check-text {
  border-color: #8B2E2E;
}
.field-error {
  margin: 6px 0 0;
  color: #8B2E2E;
  font-size: 13px;
}
.opt { font-weight: 400; color: var(--muted); }
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  cursor: pointer;
}
.check input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: var(--navy);
}
.check-text { font-size: 14px; line-height: 1.45; color: var(--ink); }
.quote-call {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.quote-call a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

html.quote-open, body.quote-open { overflow: hidden; }
body.quote-open { position: fixed; width: 100%; }
.quote-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.quote-dialog[hidden] { display: none; }
.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 34, 51, 0.52);
}
.quote-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--warm);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.quote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: calc(8px + env(safe-area-inset-top)) 12px 8px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}
.quote-top-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.quote-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.quote-close::before,
.quote-close::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 21px;
  height: 1.5px;
  background: var(--navy);
}
.quote-close::before { transform: rotate(45deg); }
.quote-close::after { transform: rotate(-45deg); }
.quote-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.quote-scroll {
  flex: 1;
  overflow: auto;
  padding: 20px 20px 12px;
  -webkit-overflow-scrolling: touch;
}
.quote-heading {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 8px;
}
.quote-lead {
  color: var(--muted);
  margin: 0 0 8px;
  font-size: 16px;
}
.quote-more-link {
  display: inline-block;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  min-height: 44px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-row .field { margin-top: 16px; }
.quote-reassure {
  margin: 2px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.quote-error {
  margin: 14px 20px 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  color: #8B2E2E;
  border: 1px solid rgba(139, 46, 46, 0.28);
  font-size: 14px;
}
.quote-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 20px calc(16px + env(safe-area-inset-bottom) + var(--quote-vv-offset, 0px));
  border-top: 1px solid var(--line);
  background: var(--warm);
}
.quote-bottom .btn { width: 100%; touch-action: manipulation; }
.quote-bottom .quote-call { margin-top: 2px; text-align: center; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.quote-launcher { display: none; }

@media (min-width: 1024px) {
  .quote-panel {
    width: 460px;
    max-width: 460px;
    height: 100%;
    max-height: 100%;
  }
  .quote-top { padding-top: 12px; }
  .quote-launcher {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
  }
  .quote-launcher.is-raised { bottom: 88px; }
  html.quote-open .quote-launcher { display: none; }
  .quote-launcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px 0 14px;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: var(--shadow);
    cursor: pointer;
  }
  .quote-launcher-btn svg { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-panel,
  .quote-backdrop { transition: none; }
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 72px 0 28px;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.site-footer a { color: inherit; }
.site-footer a:hover { color: #fff; }
.footer-heading {
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-line { height: 1px; background: rgba(255,255,255,0.14); margin: 28px 0 16px; }
.legal { font-size: 13px; display: flex; justify-content: space-between; gap: 16px; }
.scroll-dock { display: none; }

@media (min-width: 1024px) {
  :root { --pad: clamp(32px, 3.5vw, 48px); }
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }
  .about-copy {
    max-width: 37.5rem;
  }
}

@media (min-width: 992px) {
  .site-header .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
  }
  .site-header .logo {
    justify-self: start;
  }
  .site-header .logo img {
    height: 56px;
    max-width: 200px;
  }
  .header-actions {
    display: inline-flex;
    justify-self: end;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nav-desktop a,
  .nav-trigger { padding-left: 8px; padding-right: 8px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root { --pad: 40px; }
}

@media (min-width: 992px) {
  :root { --header-h: 76px; }
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-drawer, .nav-drawer.open { display: none !important; }
  .actions { flex-direction: row; align-items: center; }
  .actions .btn { width: auto; }
  .hero {
    padding-top: 12px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--space-grid);
    align-items: center;
  }
  .hero-copy {
    max-width: none;
    padding: 0;
    text-align: left;
  }
  .hero h1 {
    max-width: 620px;
    font-size: clamp(34px, 3.4vw, 50px);
  }
  .hero-lead {
    max-width: 36rem;
    font-size: 18px;
  }
  .hero .actions {
    justify-content: flex-start;
  }
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }
  .included-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-grid);
    align-items: center;
  }
  #included .included-grid { align-items: start; }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1fr 1fr;
    gap: 32px;
  }
  .quote-inline-card {
    grid-template-columns: minmax(0, 1.35fr) auto;
    align-items: center;
    gap: 48px;
  }
  .quote-inline-action { align-items: flex-start; }
}

@media (max-width: 991px) {
  :root { --header-h: 64px; }
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  .nav-desktop,
  .header-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; flex: 0 0 44px; }
  .nav-drawer {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--warm);
    padding: 24px 20px 32px;
    flex-direction: column;
  }
  .nav-drawer.open { display: flex; }
  .nav-drawer a {
    font-size: 20px;
    line-height: 1.3;
    padding: 14px 0;
    color: var(--navy);
    min-height: 44px;
  }
  .nav-drawer a[href="#quote"] {
    margin-top: 12px;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    text-align: center;
  }
  .hero { min-height: auto; }
  .hero-grid,
  .included-grid,
  .about-grid,
  .faq-grid,
  .svc-grid,
  .steps,
  .footer-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }
  .hero-grid { gap: 28px; min-height: 0; }
  .hero-copy { max-width: 100%; padding: 0 0 8px; }
  .hero h1 { max-width: 100%; font-size: 36px; line-height: 1.12; }
  .hero-lead { max-width: 100%; font-size: 16px; line-height: 1.55; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; max-width: 100%; }
  .hero-below { text-align: left; }
  .hero .actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .hero .actions .btn {
    width: auto;
    max-width: none;
  }
  .svc-card, .quote-card, .step {
    width: 100%;
    max-width: 100%;
  }
  .svc-card { padding: 22px; }
  .legal { flex-direction: column; }
  .scroll-dock {
    display: none;
    position: fixed;
    left: 12px; right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 30;
    width: auto;
    max-width: calc(100% - 24px);
    background: var(--navy);
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
  }
  html.is-scrolled .scroll-dock { display: flex; }
  html.quote-open .scroll-dock { display: none !important; }
  .dock-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
  }
  .dock-quote { background: #fff; color: var(--navy); }
}

@media (max-width: 1023px) {
  .quote-launcher { display: none !important; }
}

@media (min-width: 992px) and (max-width: 1023px) {
  html.is-scrolled .scroll-dock {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 30;
    background: var(--navy);
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
  }
  html.quote-open .scroll-dock { display: none !important; }
}

@media (max-width: 420px) {
  .hero .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .actions .btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  :root { --pad: 20px; }
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .wrap {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-grid { gap: 32px; }
  .section-head h2 { font-size: 30px; line-height: 1.15; }
  .svc-card:hover { transform: none; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 32px; }
}

@media (hover: none) {
  .svc-card:hover,
  .btn:hover,
  .nav-desktop a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Nav dropdowns — Residential / Commercial */
.nav-item { position: relative; display: flex; align-items: center; }

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  min-height: 44px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
}
.nav-trigger:focus-visible,
.drawer-trigger:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: 2px;
  border-radius: 8px;
}
.chev {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}
[aria-expanded="true"] .chev { transform: translateY(1px) rotate(-135deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 232px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 60;
}
.nav-menu[hidden] { display: none; }
.nav-desktop .nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
@media (hover: hover) {
  .nav-desktop .nav-menu a:hover { background: var(--mist); color: var(--navy); }
  .nav-trigger:hover { color: var(--lake); }
}
.nav-desktop .nav-menu a:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: -2px;
}
.nav-desktop .nav-menu .nav-menu-cta {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  font-weight: 600;
  color: var(--lake);
}
@media (hover: hover) {
  .nav-desktop .nav-menu .nav-menu-cta:hover { background: transparent; text-decoration: underline; }
}

.drawer-group { border-bottom: 1px solid var(--line); }
.drawer-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 0;
  min-height: 44px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.drawer-trigger .chev { width: 9px; height: 9px; flex: 0 0 auto; }
.drawer-panel { padding: 0 0 10px 14px; }
.drawer-panel[hidden] { display: none; }
.nav-drawer .drawer-panel a {
  display: block;
  padding: 11px 0;
  font-size: 17px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .chev { transition: none; }
}
