@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #20251d;
  --forest: #253927;
  --moss: #66794a;
  --leaf: #91a861;
  --clay: #b9673f;
  --sand: #efe7d6;
  --paper: #f7f3ea;
  --surface: #fffdf8;
  --line: #d8cfbc;
  --muted: #706a5e;
  --white: #ffffff;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6vw, 6.4rem);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: .98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 78px);
  background: rgba(247, 243, 234, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 2px 18px 2px 18px;
  background: var(--forest);
  color: var(--white);
  letter-spacing: .04em;
}

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

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .8rem;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 820;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--surface);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(330px, 1fr);
  gap: clamp(32px, 7vw, 108px);
  align-items: center;
  min-height: 720px;
  padding: clamp(54px, 8vw, 120px) clamp(18px, 5vw, 88px) clamp(42px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(247,243,234,.98), rgba(247,243,234,.76)),
    linear-gradient(135deg, #e9dcc6, #9dae74 65%, #253927);
}

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

.lead,
.page-hero p,
.terrain-copy p,
.project-grid p,
.service-matrix p,
.build-notes p,
.project-board p,
.operation p,
.crew-grid p,
.contact-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  background: var(--forest);
  color: var(--white);
}

.btn.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--forest);
}

.site-plan {
  position: relative;
  min-height: 520px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 2px 44px 2px 44px;
  background: var(--surface);
  box-shadow: 0 34px 90px rgba(37, 57, 39, .18);
}

.site-plan img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 2px 30px 2px 30px;
}

.plan-note {
  position: absolute;
  max-width: 230px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius);
  background: rgba(32, 37, 29, .86);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.plan-note span,
.project-grid span,
.project-board span,
.crew-grid span,
.material-ledger span,
.operation-panel span,
.terrain-card span,
.service-matrix span {
  display: block;
  margin-bottom: 8px;
  color: #dfb088;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-note strong {
  display: block;
  line-height: 1.2;
}

.note-one {
  left: 26px;
  bottom: 42px;
}

.note-two {
  right: 26px;
  top: 42px;
}

.scope-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 88px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.scope-strip a {
  min-height: 160px;
  padding: 22px;
  background: var(--surface);
}

.scope-strip span,
.scope-strip strong,
.scope-strip small {
  display: block;
}

.scope-strip span {
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 950;
}

.scope-strip small {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: clamp(70px, 9vw, 122px) clamp(18px, 5vw, 88px);
}

.terrain-section,
.operation {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
}

.terrain-card,
.operation-panel {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 2px 36px 2px 36px;
  background:
    linear-gradient(135deg, rgba(37,57,39,.94), rgba(102,121,74,.82)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
  color: var(--white);
}

.terrain-card strong,
.operation-panel strong {
  max-width: 360px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .98;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 14px;
  border-radius: 14px 2px 14px 2px;
  background: var(--leaf);
}

.project-preview {
  background: var(--surface);
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.project-grid,
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-grid article,
.crew-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.project-grid article {
  display: grid;
  gap: 16px;
}

.project-surface,
.region-map {
  overflow: hidden;
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(135deg, #66794a, #efe7d6);
  background-size: 42px 42px, 42px 42px, auto;
}

.project-surface img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.project-surface.terrace {
  background:
    linear-gradient(90deg, rgba(32,37,29,.14) 1px, transparent 1px),
    linear-gradient(rgba(32,37,29,.14) 1px, transparent 1px),
    linear-gradient(135deg, #d2c3a7, #efe7d6 52%, #91a861);
  background-size: 34px 34px, 34px 34px, auto;
}

.project-surface.driveway {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 2px, transparent 2px 38px),
    linear-gradient(135deg, #716f65, #b6aa92 58%, #253927);
}

.project-surface.planting {
  background:
    radial-gradient(circle at 22% 28%, #91a861 0 8%, transparent 9%),
    radial-gradient(circle at 62% 44%, #66794a 0 11%, transparent 12%),
    radial-gradient(circle at 78% 24%, #b9673f 0 6%, transparent 7%),
    linear-gradient(135deg, #efe7d6, #cfc5ae);
}

.project-surface.timber {
  background:
    repeating-linear-gradient(90deg, #9a724e 0 18px, #7e5a3d 18px 22px),
    linear-gradient(135deg, #66794a, #efe7d6);
}

.project-surface.wall {
  background:
    repeating-linear-gradient(0deg, rgba(32,37,29,.18) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(32,37,29,.18) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #b8ad99, #efe7d6);
}

.material-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--forest);
  color: var(--white);
}

.material-ledger div {
  padding: 30px clamp(18px, 4vw, 42px);
  border-left: 1px solid rgba(255,255,255,.14);
}

.material-ledger strong {
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(54px, 7vw, 82px) clamp(18px, 5vw, 88px);
  padding: 32px;
  background: var(--ink);
  color: var(--white);
}

.cta-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
}

.page-hero {
  padding: clamp(66px, 9vw, 124px) clamp(18px, 5vw, 88px);
  background:
    linear-gradient(135deg, rgba(37,57,39,.08), transparent 56%),
    var(--paper);
}

.page-hero p {
  max-width: 780px;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 88px);
  border: 1px solid var(--line);
  background: var(--line);
}

.service-matrix article {
  min-height: 330px;
  padding: 28px;
  background: var(--surface);
}

.service-matrix h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.build-notes {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
}

.build-notes ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.build-notes li {
  padding: 22px;
  background: var(--surface);
}

.build-notes strong {
  display: block;
  margin-bottom: 4px;
}

.project-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 88px) clamp(62px, 8vw, 112px);
}

.project-board article {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.project-board article.large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, .9fr) 1fr;
}

.project-board .project-surface {
  min-height: 220px;
}

.project-board .large .project-surface {
  min-height: 360px;
}

.operation {
  background: var(--surface);
}

.crew-grid {
  padding: 0 clamp(18px, 5vw, 88px) clamp(64px, 8vw, 110px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(260px, .55fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 0 clamp(18px, 5vw, 88px) clamp(64px, 8vw, 112px);
}

.form-card,
.contact-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.form-card {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 820;
}

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

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(145,168,97,.25);
  border-color: var(--leaf);
}

.region-map {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-top: 20px;
  color: var(--forest);
  text-align: center;
}

.region-map span,
.region-map strong {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 78px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1020px) {
  .hero,
  .terrain-section,
  .operation,
  .build-notes,
  .contact-layout,
  .split-hero {
    grid-template-columns: 1fr;
  }

  .scope-strip,
  .project-grid,
  .service-matrix,
  .material-ledger,
  .crew-grid,
  .project-board {
    grid-template-columns: 1fr;
  }

  .project-board article,
  .project-board article.large {
    grid-template-columns: 1fr;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .site-plan {
    min-height: auto;
  }

  .site-plan img {
    min-height: 300px;
  }

  .plan-note {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

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

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }
}
