:root {
  --ink: #14242b;
  --ink-soft: #3a4d55;
  --navy: #0b2c33;
  --teal: #0e4f56;
  --aqua: #1a8a9a;
  --bright: #3cb8c4;
  --foam: #e7f4f5;
  --paper: #f6f1e8;
  --card: #fffdf8;
  --line: #d9d0c2;
  --good: #1f7a4d;
  --warn: #9a5b12;
  --shadow: 0 18px 40px rgba(20, 36, 43, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--aqua); }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.serif { font-family: "Fraunces", Georgia, serif; font-optical-sizing: auto; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; color: inherit; }
.logo svg { height: 36px; width: auto; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.phone { font-size: 14px; font-weight: 600; color: var(--teal); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 0; cursor: pointer;
  border-radius: 999px; padding: 13px 22px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: #0b3f45; color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-light { background: #fff; color: var(--teal); }
.menu-toggle {
  display: none; background: none; border: 0; font: inherit; cursor: pointer;
}

.hero {
  padding: 72px 0 36px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--foam); color: var(--teal);
  border-radius: 999px; padding: 6px 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  margin-bottom: 16px;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; letter-spacing: -0.03em; line-height: 1.12; }
h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 18px; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 24px; }
.lede { font-size: 20px; color: var(--ink-soft); max-width: 38ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.fine { font-size: 14px; color: var(--ink-soft); }
.hero-card {
  background: var(--navy); color: #e8f4f5; border-radius: 28px;
  padding: 28px; box-shadow: var(--shadow);
}
.hero-card h3 { color: #fff; margin-bottom: 8px; }
.hero-card p { color: #c5dde1; font-size: 15px; margin-bottom: 18px; }
.price-row { display: flex; gap: 10px; margin-bottom: 16px; }
.price-pill {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 14px;
}
.price-pill b { display: block; font-size: 22px; color: #fff; font-family: "Fraunces", serif; }
.price-pill span { font-size: 12px; color: #9ec4cb; }
.hero-photo {
  margin-top: 18px; border-radius: 18px; overflow: hidden; height: 170px;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 18px; }
.muted { color: var(--ink-soft); }

.problem-grid, .steps, .benefits, .compare, .cities {
  display: grid; gap: 18px;
}
.problem-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.stat { font-family: "Fraunces", serif; font-size: 34px; color: var(--teal); display: block; margin-bottom: 6px; }

.steps { grid-template-columns: repeat(3, 1fr); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--foam); color: var(--teal);
  display: grid; place-items: center; font-weight: 700; margin-bottom: 14px;
}

.benefits { grid-template-columns: 1.2fr 1fr; align-items: center; }
.benefit-photo { border-radius: 24px; overflow: hidden; min-height: 360px; }
.benefit-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist li::before { content: ""; width: 10px; height: 10px; margin-top: 7px; border-radius: 50%; background: var(--aqua); flex: 0 0 auto; }

.bill {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}
.calc {
  background: #fff; border-radius: 24px; padding: 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
label { display: block; font-size: 14px; font-weight: 600; margin: 14px 0 6px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; font: inherit; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--bright); border-color: var(--aqua); }
.range-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-soft); }
.estimate {
  background: var(--navy); color: #fff; border-radius: 20px; padding: 22px; margin-top: 18px;
}
.estimate strong { font-family: "Fraunces", serif; font-size: 42px; display: block; }
.estimate small { color: #b7d3d8; display: block; margin-top: 8px; }

table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--foam); font-size: 14px; }
td:nth-child(3) { color: var(--teal); font-weight: 600; }

.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq details p { margin-top: 10px; color: var(--ink-soft); }

.cta-band {
  background: var(--navy); color: #fff; border-radius: 28px; padding: 48px;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta-band p { color: #c5dde1; margin-top: 8px; }

.site-footer {
  border-top: 1px solid var(--line); padding: 40px 0 28px; margin-top: 20px;
  color: var(--ink-soft); font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.footer-grid a { display: block; color: var(--ink-soft); margin: 6px 0; }
.page-hero { padding: 56px 0 20px; }
.page-hero p { max-width: 60ch; color: var(--ink-soft); margin-top: 12px; font-size: 19px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.notice {
  background: var(--foam); border-radius: 14px; padding: 14px 16px; font-size: 14px; margin-top: 12px;
}
.zip-result { min-height: 28px; margin-top: 8px; font-size: 14px; font-weight: 600; }
.zip-result.yes { color: var(--good); }
.zip-result.no { color: var(--warn); }

@media (max-width: 880px) {
  .hero-grid, .benefits, .bill, .problem-grid, .steps, .footer-grid, .form-grid, .cta-band {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper); padding: 18px 20px 24px; border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .header-inner { min-height: 64px; }
  .hero { padding-top: 36px; }
  .cta-band { padding: 28px; }
}
