:root {
  --ink: #1d2931;
  --muted: #667782;
  --line: #d9e5e3;
  --mint: #dff4eb;
  --teal: #18766f;
  --teal-dark: #0d524d;
  --gold: #f2c14e;
  --cream: #fbfaf4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(21, 52, 57, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid rgba(24, 118, 111, 0.15);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 850;
}

.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 0.78rem; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  color: #274248;
  text-decoration: none;
}

.nav-cta, .button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--teal);
  color: white !important;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary, .nav-cta {
  background: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 244, 0.97) 0%, rgba(251, 250, 244, 0.78) 38%, rgba(251, 250, 244, 0.12) 72%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 80px clamp(18px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(2.55rem, 6vw, 5.8rem); line-height: 0.97; letter-spacing: 0; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.03; letter-spacing: 0; }
h3 { margin-bottom: 8px; font-size: 1.12rem; }

.hero-copy {
  max-width: 620px;
  color: #40545a;
  font-size: 1.2rem;
}

.zip-card, .quote-form, .inline-zip {
  background: white;
  border: 1px solid rgba(24, 118, 111, 0.16);
  box-shadow: var(--shadow);
}

.zip-card {
  max-width: 540px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 8px;
}

.zip-card label, .quote-form label {
  display: grid;
  gap: 7px;
  color: #31484d;
  font-size: 0.92rem;
  font-weight: 800;
}

.zip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 10px;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d8d6;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.zip-result {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 3vw, 38px);
  background: white;
}

.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { margin-top: 6px; color: var(--muted); font-size: 0.93rem; }

.proof-marquee {
  overflow: hidden;
  background: #123d3a;
  color: white;
}

.proof-marquee div {
  display: flex;
  width: max-content;
  animation: proof-drift 28s linear infinite;
}

.proof-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.proof-marquee span::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 22px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes proof-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-34%); }
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.reverse { grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.03fr); }

.feature-grid, .card-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.feature-grid article, .card, .area-grid article, .quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: white;
}

.feature-grid p, .card p, .area-grid p, .quote-card p { color: var(--muted); margin-bottom: 0; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 6px;
}

.stat-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.stat-row strong {
  display: block;
  color: var(--teal-dark);
  font-size: 2.15rem;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.four { grid-template-columns: repeat(4, 1fr); }
.three { grid-template-columns: repeat(3, 1fr); }

.card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.area-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--mint);
}

.area-band > div { max-width: 820px; }
.area-band h2 { margin-bottom: 8px; }

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff3c9;
}

.page-hero {
  padding: clamp(66px, 10vw, 128px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #eef8f2, var(--cream));
}

.page-hero.compact h1 {
  max-width: 960px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.4fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-row p { margin: 0; color: var(--muted); }
.service-number { color: var(--teal); font-weight: 900; }
.service-row h2 { margin: 4px 0 0; font-size: clamp(1.45rem, 2.5vw, 2.2rem); }

.detail-band {
  background: #f4f7ee;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.area-grid h2 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.inline-zip {
  display: grid;
  grid-template-columns: minmax(130px, 190px) auto;
  gap: 10px;
  align-items: center;
  min-width: min(100%, 480px);
  padding: 14px;
  border-radius: 8px;
}

.inline-zip .zip-result {
  grid-column: 1 / -1;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-section {
  background: #f4f7ee;
}

.quote-card p {
  color: #31484d;
  font-size: 1.15rem;
}

.quote-card strong {
  display: block;
  margin-top: 20px;
  color: var(--teal-dark);
}

.feature-quote {
  background: var(--teal-dark);
}

.feature-quote p, .feature-quote strong {
  color: white;
}

.process-section {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: var(--gold);
  color: #463500;
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.local-cards {
  background: white;
}

.faq-section {
  background: #eef8f2;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.faq-grid article {
  border-top: 3px solid var(--teal);
  border-radius: 0 0 8px 8px;
  padding: 24px;
  background: white;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: #f2c14e;
}

.final-cta > div {
  max-width: 800px;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #463500;
  font-size: 1.1rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  min-height: calc(100vh - 73px);
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #eef8f2 0%, #fbfaf4 58%, #fff 100%);
}

.quote-copy h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.quote-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 8px;
}

.quote-form h2 { margin-bottom: 4px; font-size: 1.7rem; }
.quote-form textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 0.86rem; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #123d3a;
  color: white;
}

.site-footer p, .site-footer a {
  display: block;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .trust-strip, .four, .three, .area-grid, .review-grid, .process-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .reverse, .quote-layout { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .area-band, .final-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero { min-height: 690px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(251, 250, 244, 0.97) 0%, rgba(251, 250, 244, 0.78) 58%, rgba(251, 250, 244, 0.18) 100%); }
  .hero-content { padding-top: 48px; }
  .zip-row, .feature-grid, .trust-strip, .four, .three, .area-grid, .review-grid, .process-grid, .faq-grid, .inline-zip, .stat-row { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.8rem); }
  h2 { font-size: clamp(1.9rem, 10vw, 2.75rem); }
  .site-footer { flex-direction: column; }
}
