:root {
  --pine: #163d2a;
  --pine-2: #234936;
  --leaf: #6f8a3e;
  --clay: #b86b38;
  --gold: #d7a344;
  --cream: #f4f1e8;
  --paper: #fffaf0;
  --ink: #17211b;
  --muted: #5b665f;
  --line: rgba(23, 33, 27, 0.14);
  --shadow: 0 22px 60px rgba(22, 61, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  background: rgba(244, 241, 232, 0.94);
  border-bottom: 1px solid rgba(22, 61, 42, 0.14);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

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

.brand img {
  height: 66px;
  object-fit: contain;
  object-position: left center;
  width: clamp(250px, 30vw, 390px);
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.nav-links a:hover {
  border-color: var(--gold);
}

.header-phone {
  border: 1px solid var(--pine);
  border-radius: 6px;
  color: var(--pine);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  white-space: nowrap;
}

.hero {
  min-height: 88vh;
  overflow: hidden;
  padding-top: 88px;
  position: relative;
}

.hero picture,
.hero img,
.hero-scrim {
  inset: 0;
  position: absolute;
}

.hero img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 34, 26, 0.86) 0%, rgba(18, 34, 26, 0.66) 38%, rgba(18, 34, 26, 0.16) 72%),
    linear-gradient(0deg, rgba(18, 34, 26, 0.52) 0%, rgba(18, 34, 26, 0) 42%);
}

.hero-content {
  color: #fffaf0;
  max-width: 760px;
  padding: clamp(128px, 20vh, 188px) clamp(20px, 6vw, 76px) 170px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

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

h1 {
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
}

.button.primary {
  background: var(--gold);
  color: #1f2518;
}

.button.secondary {
  border: 1px solid rgba(255, 250, 240, 0.72);
  color: #fffaf0;
}

.hero-stats {
  align-items: stretch;
  background: rgba(244, 241, 232, 0.96);
  bottom: 0;
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: clamp(20px, 6vw, 76px);
  max-width: 650px;
  position: absolute;
  right: clamp(20px, 6vw, 76px);
  z-index: 2;
}

.hero-stats span {
  border-right: 1px solid var(--line);
  font-size: 14px;
  padding: 20px;
}

.hero-stats span:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 20px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 86px clamp(20px, 4vw, 42px);
}

.section-band {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.intro-grid,
.process-grid,
.quote-section {
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.intro p,
.quote-copy p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 720px;
}

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

.service-card {
  background: #fffef9;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 26px;
  box-shadow: 0 10px 34px rgba(22, 61, 42, 0.08);
}

.service-icon {
  color: var(--clay);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 54px;
}

.service-card p,
.steps span {
  color: var(--muted);
}

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

.steps li {
  background: #fffef9;
  border-left: 5px solid var(--leaf);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  padding: 24px;
}

.steps strong {
  font-size: 20px;
}

.quote-section {
  align-items: start;
}

.quote-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.quote-direct a {
  color: var(--pine);
  font-weight: 900;
}

.quote-form {
  background: var(--pine);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fffaf0;
  display: grid;
  gap: 17px;
  padding: clamp(22px, 4vw, 34px);
}

.quote-form label {
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: #fffef9;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.hide-field {
  left: -9999px;
  position: absolute;
}

.form-button {
  border: 0;
  cursor: pointer;
  margin-top: 2px;
}

.form-note {
  color: rgba(255, 250, 240, 0.82);
  font-size: 14px;
  min-height: 21px;
}

.site-footer {
  align-items: center;
  background: #101914;
  color: rgba(255, 250, 240, 0.78);
  display: flex;
  font-size: 14px;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 54px);
}

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

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

  .intro-grid,
  .process-grid,
  .quote-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 50px;
    width: clamp(176px, 48vw, 210px);
  }

  .header-phone {
    font-size: 12px;
    padding: 9px 10px;
  }

  .hero {
    background: #12221a;
    min-height: 0;
    padding-top: 66px;
  }

  .hero picture {
    display: block;
    height: 260px;
    inset: auto;
    position: relative;
  }

  .hero img {
    height: 100%;
    object-position: center center;
    position: relative;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(18, 34, 26, 0.55), rgba(18, 34, 26, 0.08));
    height: 260px;
    inset: 66px 0 auto;
  }

  .hero-content {
    background: linear-gradient(180deg, #12221a 0%, #172d21 100%);
    padding: 32px 20px 280px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    left: 20px;
    right: 20px;
  }

  .hero-stats span {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 13px 16px;
  }

  .hero-stats span:last-child {
    border-bottom: 0;
  }

  .section-inner {
    padding: 64px 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .service-icon {
    margin-bottom: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
