:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5d6a64;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --field: #f3f1ea;
  --line: #ddd8cc;
  --pine: #1f5b46;
  --pine-dark: #12372c;
  --copper: #b66a3c;
  --gold: #e2b95b;
  --shadow: 0 22px 70px rgba(23, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(31, 91, 70, 0.08), transparent 38%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(221, 216, 204, 0.72);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--pine);
  color: #fff;
  font-weight: 900;
}

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

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.phone,
.button {
  text-decoration: none;
}

.phone {
  padding: 11px 14px;
  background: var(--pine-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 58px 0 72px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.actions,
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.primary,
button {
  background: var(--pine);
  color: #fff;
}

.secondary {
  background: #eadfcb;
  color: var(--pine-dark);
}

.proof span {
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  background:
    linear-gradient(rgba(18, 55, 44, 0.12), rgba(18, 55, 44, 0.24)),
    linear-gradient(145deg, #e7dfd0, #f8f4ea 42%, #bfcfc5);
  box-shadow: var(--shadow);
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 112px 28px auto auto;
  width: min(72%, 330px);
  aspect-ratio: 1 / 1.25;
  background:
    linear-gradient(90deg, rgba(31, 91, 70, 0.2), transparent 22%),
    linear-gradient(135deg, #f2f0e8 0 18%, #c96f3e 18% 20%, #f8f4ea 20% 48%, #1f5b46 48% 53%, #d9e0d8 53% 100%);
  border: 10px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(18, 55, 44, 0.2);
}

.service-panel::after {
  content: "";
  position: absolute;
  right: 58px;
  bottom: 128px;
  width: 150px;
  height: 46px;
  background: #17201d;
  box-shadow: -84px 44px 0 #b66a3c, -42px -60px 0 #e2b95b;
}

.status-row,
.service-panel h2,
.service-panel p,
.service-panel dl {
  position: relative;
  z-index: 1;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--pine-dark);
  font-size: 13px;
  font-weight: 900;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #28a765;
  border-radius: 999px;
}

.service-panel h2 {
  max-width: 9ch;
  margin-top: 242px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.service-panel p {
  max-width: 25ch;
  margin-top: 14px;
  color: var(--pine-dark);
  font-weight: 750;
  line-height: 1.45;
}

.service-panel dl {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.service-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
}

dt,
dd {
  margin: 0;
}

dt {
  color: var(--muted);
}

dd {
  font-weight: 900;
}

.service-strip,
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-strip article,
.reviews article {
  min-height: 250px;
  padding: 28px;
  background: var(--panel);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #eadfcb;
  color: var(--pine-dark);
  font-size: 12px;
  font-weight: 900;
}

.service-strip h2,
.split h2,
.estimate h2 {
  margin-top: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-strip p,
.split p,
.estimate p,
.reviews p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.split,
.estimate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: 88px 0;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 18px 20px;
  background: var(--panel);
  border-left: 5px solid var(--copper);
  box-shadow: 0 12px 32px rgba(23, 32, 29, 0.08);
  font-weight: 850;
}

.reviews {
  grid-template-columns: repeat(2, 1fr);
}

.reviews article {
  min-height: 210px;
}

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

.reviews strong {
  margin-top: 20px;
}

.reviews span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.estimate {
  align-items: center;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--field);
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .estimate,
  .service-strip,
  .reviews {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-panel {
    min-height: 500px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 48px;
  }

  .service-panel,
  .lead-form,
  .service-strip article,
  .reviews article {
    padding: 22px;
  }

  .service-panel::after {
    right: 34px;
  }
}
