:root {
  --ink: #17211b;
  --muted: #5c6b62;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --line: #dce3d8;
  --green: #1d6b4a;
  --green-dark: #124632;
  --gold: #b97a1c;
  --blue: #315a7d;
  --soft: #eef4eb;
  --warning: #fff6df;
  --shadow: 0 18px 45px rgba(35, 49, 39, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  z-index: 10;
}
.skip-link:focus { top: 1rem; }
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { max-width: 780px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(251, 252, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: .86rem;
}
nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
  padding: .55rem .75rem;
  border-radius: 7px;
}
nav a:hover, .nav-cta {
  color: var(--ink);
  background: var(--soft);
}
.hero {
  padding: 76px 0 44px;
  background: linear-gradient(115deg, rgba(29,107,74,.13), rgba(49,90,125,.1));
  border-bottom: 1px solid var(--line);
}
.compact-hero { padding: 72px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: center;
}
.hero-grid > *, .two-col > *, .estimate-grid > *, .footer-grid > *, .link-grid > *, .location-grid > * {
  min-width: 0;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--green);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
}
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 {
  max-width: 860px;
  font-size: 4.5rem;
  overflow-wrap: anywhere;
}
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.05rem; margin-bottom: .55rem; }
p { margin: 0 0 1rem; }
.hero-lede {
  max-width: 780px;
  margin: 1.1rem 0 0;
  color: #344339;
  font-size: 1.25rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: .8rem 1rem;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
}
.primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
}
.primary:hover { background: var(--green-dark); }
.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}
.full { width: 100%; }
.cost-panel, .side-box, .lead-form, .card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.cost-panel {
  padding: 1.35rem;
}
.cost-panel span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}
.cost-panel strong {
  display: block;
  margin: .35rem 0 .65rem;
  font-size: 2.55rem;
  line-height: 1.08;
  color: var(--green-dark);
  overflow-wrap: normal;
  word-break: normal;
}
.section { padding: 64px 0; }
.section.alt { background: var(--soft); border-block: 1px solid var(--line); }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 2rem;
  align-items: start;
}
.side-box {
  padding: 1.25rem;
  position: sticky;
  top: 88px;
}
.side-box a {
  color: var(--green-dark);
  font-weight: 800;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card {
  padding: 1.15rem;
  box-shadow: none;
}
.card p { color: var(--muted); margin: 0; }
.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
th, td {
  padding: .9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  color: var(--green-dark);
  background: #f3f7f0;
  font-size: .9rem;
}
tr:last-child td { border-bottom: 0; }
.check-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin: .55rem 0;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--gold);
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.pill-row span {
  padding: .5rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-weight: 750;
}
.link-grid, .location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.link-grid a, .location-grid a {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  min-height: 86px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}
.link-grid.compact a { min-height: 68px; }
.link-grid a:hover, .location-grid a:hover {
  border-color: var(--green);
}
.link-grid span, .location-grid span {
  color: var(--muted);
  font-size: .92rem;
}
.city-list {
  columns: 3;
  column-gap: 2rem;
}
.city-list a {
  display: block;
  break-inside: avoid;
  color: var(--green-dark);
  font-weight: 800;
  padding: .25rem 0;
}
.faq-list {
  display: grid;
  gap: .75rem;
}
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}
summary {
  cursor: pointer;
  font-weight: 850;
}
details p { color: var(--muted); margin: .8rem 0 0; }
.estimate-band {
  padding: 64px 0;
  background: #1d2c23;
  color: white;
}
.estimate-band .eyebrow { color: #9ad2b4; }
.estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}
.estimate-band p { color: rgba(255,255,255,.78); }
.estimate-band .check-list li::before { background: #9ad2b4; }
.lead-form {
  padding: 1rem;
  color: var(--ink);
  box-shadow: none;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
label {
  display: grid;
  gap: .35rem;
  color: var(--ink);
  font-weight: 800;
  font-size: .92rem;
}
.wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd5c8;
  border-radius: 7px;
  padding: .76rem .8rem;
  font: inherit;
  color: var(--ink);
  background: white;
}
textarea { resize: vertical; }
.hidden-field {
  display: none;
}
.consent {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: .55rem;
  margin: .9rem 0;
  color: var(--muted);
  font-weight: 650;
}
.consent input {
  width: auto;
  margin-top: .25rem;
}
.form-note {
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: .86rem;
}
.site-footer {
  padding: 42px 0;
  background: #111a15;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 2rem;
}
.footer-grid h2 {
  font-size: .9rem;
  text-transform: uppercase;
  color: #9ad2b4;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  margin: .35rem 0;
}
.footer-grid p, .fine-print {
  color: rgba(255,255,255,.68);
  font-size: .92rem;
}
.footer-brand { margin-bottom: 1rem; }
@media (max-width: 860px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: .75rem 0; }
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.48rem; }
  .hero-lede { font-size: 1.05rem; }
  .cost-panel strong { font-size: 2rem; }
  nav { justify-content: flex-start; }
  nav a { padding: .45rem .55rem; }
  .hero { padding: 48px 0 34px; }
  .hero-grid, .two-col, .estimate-grid, .footer-grid { grid-template-columns: 1fr; }
  .side-box { position: static; }
  .cards, .link-grid, .location-grid { grid-template-columns: 1fr; }
  .city-list { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
}