:root {
  --ink: #17201b;
  --muted: #59645d;
  --line: #d9ded8;
  --paper: #f7f5ef;
  --white: #ffffff;
  --clay: #b85838;
  --clay-dark: #873c27;
  --moss: #526d52;
  --cedar: #2f4438;
  --sky: #d7e7ed;
  --shadow: 0 18px 48px rgb(23 32 27 / 15%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 8px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 10px 28px rgb(23 32 27 / 12%);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 6px;
  color: var(--white);
  background: var(--cedar);
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
}

.nav-links a:hover,
.header-call:hover {
  color: var(--clay-dark);
}

.header-call {
  color: var(--cedar);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cedar);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(16 23 19 / 88%) 0%, rgb(16 23 19 / 70%) 39%, rgb(16 23 19 / 8%) 76%),
    linear-gradient(0deg, rgb(16 23 19 / 56%) 0%, rgb(16 23 19 / 0%) 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 72px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: var(--sky);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 8vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgb(255 255 255 / 86%);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

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

.button.primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 12px 24px rgb(0 0 0 / 16%);
}

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

.button.secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 12%);
}

.button.secondary:hover {
  background: rgb(255 255 255 / 20%);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 14px;
  max-width: 560px;
  margin: 0;
}

.hero-stats div {
  padding: 14px 16px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 8px;
  background: rgb(255 255 255 / 10%);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 16px;
  color: var(--cedar);
  background: var(--sky);
  font-weight: 800;
}

.trust-strip span {
  padding: 6px 10px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.process-copy h2,
.estimate-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:last-child,
.process-copy p:last-child,
.estimate-section > div p:last-child {
  color: var(--muted);
  font-size: 1rem;
}

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

.service-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgb(23 32 27 / 6%);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 52px;
  border-radius: 7px;
  background: rgb(82 109 82 / 12%);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--moss);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

.process-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 52px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.process-copy {
  position: sticky;
  top: 112px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 4px 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-list span {
  grid-row: span 2;
  color: var(--clay);
  font-weight: 800;
}

.process-list strong {
  font-size: 1.1rem;
}

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

.review-band {
  padding: 78px 16px;
  color: var(--white);
  background: var(--cedar);
  text-align: center;
}

.review-band blockquote {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
}

.review-band p {
  margin: 0;
  color: var(--sky);
  font-weight: 800;
}

.estimate-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: start;
}

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

.estimate-form label {
  display: grid;
  gap: 7px;
  color: var(--cedar);
  font-size: 0.86rem;
  font-weight: 800;
}

.estimate-form input,
.estimate-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

.estimate-form input:focus,
.estimate-form select:focus {
  outline: 3px solid rgb(184 88 56 / 22%);
  border-color: var(--clay);
}

.estimate-form button {
  width: 100%;
  margin-top: 4px;
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(16 23 19 / 90%) 0%, rgb(16 23 19 / 72%) 54%, rgb(16 23 19 / 28%) 100%),
      linear-gradient(0deg, rgb(16 23 19 / 62%) 0%, rgb(16 23 19 / 0%) 42%);
  }

  .section-heading,
  .service-grid,
  .process-section,
  .estimate-section {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    font-size: 0;
  }

  .header-call::after {
    content: "Call";
    font-size: 0.88rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

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

  .section {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .service-card {
    min-height: auto;
  }

  .icon {
    margin-bottom: 34px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .process-list span {
    grid-row: auto;
  }

  .estimate-form {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
    width: min(100% - 28px, 1180px);
  }
}
