:root {
  --ink: #17201d;
  --muted: #5d6964;
  --paper: #fbfaf5;
  --white: #ffffff;
  --green: #14614a;
  --green-dark: #0d4031;
  --mint: #dff1e8;
  --gold: #f5b84b;
  --clay: #c46a43;
  --line: #d8ddd5;
  --shadow: 0 24px 70px rgba(23, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 221, 213, 0.82);
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.trust-row,
.hero-actions,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--green);
}

.phone-link {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 7vw, 88px) clamp(20px, 4vw, 56px) 30px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.primary {
  color: var(--white);
  background: var(--green);
}

.primary:hover {
  background: var(--green-dark);
}

.secondary {
  color: var(--ink);
  background: var(--mint);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--green-dark);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.quote-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(230px, calc(100% - 44px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.quote-card-label,
.quote-card span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.quote-card strong {
  display: block;
  margin: 4px 0;
  color: var(--green);
  font-size: 2.4rem;
  line-height: 1;
}

.section,
.reviews-section {
  padding: clamp(58px, 9vw, 112px) clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

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

.service-card,
.pricing-grid article,
.reviews-grid figure,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  display: block;
  min-height: 220px;
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 97, 74, 0.42);
  box-shadow: 0 18px 42px rgba(23, 32, 29, 0.1);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--gold);
  font-weight: 900;
}

.service-card p,
.pricing-grid p,
.quote-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  padding: 0 clamp(20px, 4vw, 56px) clamp(58px, 8vw, 96px);
}

.photo-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 99px;
  background: var(--green);
}

.steps strong,
.steps span {
  grid-column: 2;
}

.steps span {
  color: var(--muted);
  line-height: 1.5;
}

.area-intro {
  color: var(--muted);
  line-height: 1.6;
}

.town-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.town-grid a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.town-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 97, 74, 0.42);
  box-shadow: 0 16px 36px rgba(23, 32, 29, 0.1);
}

.town-grid strong {
  color: var(--green-dark);
  font-weight: 800;
}

.source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.source-note a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing {
  background: #edf6ef;
}

.pricing-grid article {
  padding: 24px;
}

.pricing-grid span {
  color: var(--muted);
  font-weight: 800;
}

.pricing-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.pricing-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.reviews-grid figure {
  margin: 0;
  padding: 24px;
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--green-dark);
}

.quote-copy {
  position: sticky;
  top: 100px;
}

.quote-copy .eyebrow,
.quote-copy p {
  color: #cde7db;
}

.lead-value {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lead-value span {
  color: #dbeee6;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(245, 184, 75, 0.38);
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-page {
  max-width: 980px;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 4vw, 56px) 34px;
}

.success-page h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
}

.success-page p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.lead-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.lead-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.lead-table th,
.lead-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.lead-table th {
  color: var(--green-dark);
  background: var(--mint);
  font-size: 0.88rem;
}

.lead-table td {
  color: var(--muted);
  line-height: 1.45;
}

.empty-state {
  margin: 0;
  padding: 24px;
  color: var(--muted);
}

.success-page {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legal-page {
  max-width: 880px;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 4vw, 56px);
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
}

.site-footer nav {
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .service-grid,
  .pricing-grid,
  .reviews-grid,
  .town-grid {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .phone-link {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 330px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
