:root {
  --ink: #16221b;
  --muted: #5a6a60;
  --line: #d8e0d8;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --green: #1f5b3f;
  --green-dark: #123729;
  --gold: #e0a52d;
  --rust: #b95a32;
  --blue: #275c72;
  --shadow: 0 18px 48px rgba(18, 55, 41, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.top-strip {
  padding: 9px 18px;
  color: #f8fbf6;
  background: var(--green-dark);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 10px 25px rgba(31, 91, 63, 0.22);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #33483b;
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  color: #211707;
  background: var(--gold);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(224, 165, 45, 0.28);
  white-space: nowrap;
  cursor: pointer;
}

.button:hover {
  filter: brightness(0.98);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button.dark {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(31, 91, 63, 0.24);
}

.hero {
  min-height: calc(100vh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(245, 241, 232, 0.98) 0%, rgba(245, 241, 232, 0.88) 48%, rgba(245, 241, 232, 0.42) 100%),
    url("https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1800&q=82") center/cover;
  border-bottom: 1px solid var(--line);
}

.hero.slim {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr);
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(31, 91, 63, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  margin: 18px 0;
  font-size: clamp(42px, 6.5vw, 84px);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 50px);
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: #34483b;
  font-size: clamp(18px, 2vw, 22px);
}

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

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 28px;
}

.proof {
  min-height: 92px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(216, 224, 216, 0.92);
  border-radius: 8px;
}

.proof strong {
  display: block;
  font-size: 21px;
}

.proof span {
  color: var(--muted);
  font-size: 13px;
}

.estimate-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.estimate-panel h2 {
  margin-bottom: 6px;
  font-size: 25px;
}

.estimate-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

label {
  color: #33483b;
  font-size: 13px;
  font-weight: 850;
}

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

textarea {
  min-height: 96px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  display: none;
  margin-top: 12px;
  padding: 12px;
  color: var(--green-dark);
  background: #edf7ef;
  border: 1px solid #b8d6bf;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.section {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 64px);
}

.section.white {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section.dark {
  color: #fff;
  background: var(--green-dark);
}

.section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.section-head p,
.wide-text {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section.dark .section-head p,
.section.dark .wide-text {
  color: #c7d7cd;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--green-dark);
  background: #edf7ef;
  border-radius: 8px;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.photo-panel {
  min-height: 430px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 55, 41, 0.08), rgba(18, 55, 41, 0.2)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1300&q=82") center/cover;
  box-shadow: var(--shadow);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-area-list li {
  padding: 14px;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 850;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(28px, 4vw, 44px) clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--green);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-band p {
  margin: 0;
  color: #dfeae2;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 30px clamp(18px, 5vw, 64px);
  color: #dbe8df;
  background: #0d261c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer a {
  display: block;
  margin-top: 6px;
  color: #fff;
}

.disclaimer {
  margin-top: 24px;
  padding-top: 18px;
  color: #abc2b3;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.sticky-call {
  display: none;
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 20;
}

.sticky-call .button {
  width: 100%;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .proof-row,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .top-strip {
    padding-inline: 12px;
    font-size: 12px;
  }

  .site-header {
    padding: 12px;
  }

  .brand span {
    display: none;
  }

  .header-actions .button.secondary {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-row,
  .service-area-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: block;
    padding-bottom: 78px;
  }

  .cta-band .button {
    width: 100%;
    margin-top: 16px;
  }

  .sticky-call {
    display: block;
  }
}
