:root {
  --green-950: #0d2413;
  --green-850: #14371f;
  --green-700: #1d5a2e;
  --grass: #58a62d;
  --yellow: #ffd633;
  --gold: #dba829;
  --ink: #172018;
  --muted: #667064;
  --cream: #f7f5ed;
  --paper: #ffffff;
  --line: #dfe6d7;
  --shadow: 0 22px 50px rgba(18, 35, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.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: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(13, 36, 19, 0.9);
  color: var(--paper);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 800;
}

nav a,
.header-call {
  text-decoration: none;
}

.header-call {
  min-width: max-content;
  padding: 11px 16px;
  border-radius: 6px;
  background: var(--yellow);
  color: #11170d;
  font-weight: 900;
}

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

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 10, 0.92), rgba(6, 24, 10, 0.62) 41%, rgba(6, 24, 10, 0.08) 78%),
    linear-gradient(0deg, rgba(13, 36, 19, 0.92), rgba(13, 36, 19, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 90px;
  color: var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  background: var(--yellow);
  color: #11170d;
  box-shadow: 0 14px 28px rgba(255, 214, 51, 0.22);
}

.button.secondary {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.quick-quote,
.section-shell,
.photo-band,
.process,
.final-cta,
footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.quick-quote {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.4fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
  margin-top: -58px;
  position: relative;
  z-index: 3;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-quote h2,
.section-heading h2,
.photo-copy h2,
.split h2,
.process h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

label:nth-child(3),
form button {
  grid-column: 1 / -1;
}

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

textarea {
  resize: vertical;
}

.section-shell {
  padding-block: clamp(70px, 10vw, 122px);
}

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

.section-heading p:not(.section-kicker),
.photo-copy p,
.split p,
.final-cta p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

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

.service-grid article {
  min-height: 258px;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--yellow);
  font-weight: 950;
}

.service-grid h3,
.area-card h3,
.steps h3 {
  margin: 20px 0 10px;
  font-size: 1.22rem;
}

.service-grid p,
.steps p,
.faq p,
.area-card li {
  color: var(--muted);
  line-height: 1.6;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  background: var(--green-950);
  color: var(--paper);
  border-radius: 8px;
}

.photo-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0a170d;
}

figure.wide {
  grid-column: 1 / -1;
}

figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

figure:not(.wide) img {
  height: 210px;
}

figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
}

.area-card {
  border-left: 8px solid var(--yellow);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(18, 35, 20, 0.1);
}

.area-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.process {
  padding: clamp(56px, 8vw, 90px) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.steps div {
  padding: 24px;
  border-top: 6px solid var(--grass);
  background: var(--paper);
  border-radius: 8px;
}

.steps strong {
  color: var(--gold);
  font-size: 2.3rem;
  line-height: 1;
}

.faq {
  padding-top: 36px;
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 950;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  margin-bottom: 48px;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
}

.final-cta img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-weight: 800;
}

footer p {
  margin: 0;
  color: var(--ink);
}

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

  nav {
    display: none;
  }

  .quick-quote,
  .photo-band,
  .split,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .final-cta {
    justify-items: start;
  }
}

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

  .brand span {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 24, 10, 0.9), rgba(6, 24, 10, 0.58)),
      linear-gradient(0deg, rgba(13, 36, 19, 0.95), rgba(13, 36, 19, 0.08) 55%);
  }

  .hero-content {
    width: min(100% - 28px, 620px);
    margin-inline: 14px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.25rem);
  }

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

  .quick-quote {
    width: calc(100% - 24px);
    margin-top: -36px;
    padding: 20px;
  }

  form,
  .service-grid,
  .steps,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  label:nth-child(3),
  form button,
  figure.wide {
    grid-column: auto;
  }

  figure img,
  figure:not(.wide) img {
    height: 220px;
  }

  .section-shell,
  .photo-band,
  .process,
  .final-cta,
  footer {
    width: calc(100% - 24px);
  }

  .section-shell {
    padding-block: 58px;
  }

  .photo-band {
    padding: 22px;
  }

  .final-cta img {
    width: 92px;
    height: 92px;
  }
}
