:root {
  --green: #263b18;
  --green2: #3f5d20;
  --lime: #8aa348;
  --sand: #eee9dd;
  --ink: #171916;
  --line: #d2d0c6;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #faf9f5;
  font-family: "DM Sans", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.topbar {
  height: 86px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #eee;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  letter-spacing: 0.7px;
}
.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
  border-radius: 3px;
}
.footer-logo {
  background: #fff;
}
.brand small {
  display: block;
  font: 600 9px "DM Sans";
  letter-spacing: 2.2px;
  color: #747b76;
  margin-top: 4px;
}
.topbar nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 14px 20px;
}
.phone-link {
  color: var(--green2);
  font-weight: 700;
}
.menu {
  display: none;
  background: none;
  border: 0;
  font: 700 13px "DM Sans";
}
.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px clamp(22px, 7vw, 110px);
  background: url("assets/full-front-yard.jpeg") center 58% / cover;
  color: #fff;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 23, 17, 0.94) 0%,
    rgba(9, 23, 17, 0.75) 50%,
    rgba(9, 23, 17, 0.12) 100%
  );
}
.hero-copy {
  position: relative;
  max-width: 800px;
}
.eyebrow {
  font: 700 12px "DM Sans";
  letter-spacing: 2.7px;
  color: var(--lime);
  margin: 0 0 18px;
}
.eyebrow.dark {
  color: #52704b;
}
.hero h1,
.section-head h2,
.intro h2,
.work h2,
.band h2,
.quote h2 {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0;
}
.hero h1 {
  font-size: clamp(58px, 8vw, 112px);
  letter-spacing: -2px;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero-lead {
  font-size: 19px;
  line-height: 1.7;
  max-width: 650px;
  color: #e7ece8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 17px 25px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font: 700 14px "DM Sans";
}
.primary {
  background: var(--lime);
  color: #152318;
}
.ghost {
  border-color: #afbab3;
  color: #fff;
}
.light {
  background: #fff;
  color: var(--green);
}
.trust-row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 45px;
  font-size: 13px;
  color: #d9e0db;
}
.hero-card {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 0;
  background: var(--lime);
  color: var(--green);
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  min-width: 310px;
}
.hero-card strong {
  font: 700 21px Oswald;
  text-transform: uppercase;
}
.hero-card span {
  font-size: 13px;
  margin: 6px 0 17px;
}
.hero-card a {
  font-weight: 700;
  font-size: 13px;
}
.wrap {
  max-width: 1240px;
  margin: auto;
  padding-left: 28px;
  padding-right: 28px;
}
.intro {
  padding-top: 110px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.intro h2,
.section-head h2,
.quote h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.intro > p,
.quote > div > p {
  font-size: 18px;
  line-height: 1.75;
  color: #5a625d;
}
.services {
  padding-top: 95px;
  padding-bottom: 120px;
}
.section-head {
  margin-bottom: 45px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-grid article {
  min-height: 280px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.25s;
}
.service-grid article:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(24, 44, 35, 0.08);
}
.service-grid .featured {
  background: var(--green);
  color: #fff;
}
.service-grid span {
  color: #7b8e81;
  font-size: 12px;
}
.service-grid h3 {
  font: 600 28px Oswald;
  text-transform: uppercase;
  margin: 55px 0 12px;
}
.service-grid p {
  color: #68716b;
  line-height: 1.6;
  margin: 0;
}
.service-grid .featured p {
  color: #cbd6cf;
}
.projects {
  padding-top: 10px;
  padding-bottom: 120px;
}
.project-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}
.project-head h2 {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
}
.project-head > p {
  color: #5a625d;
  line-height: 1.7;
  margin: 0;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 340px;
  gap: 14px;
}
.project-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--green);
}
.project-grid .project-wide {
  grid-column: span 2;
}
.project-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.project-grid figure:hover img {
  transform: scale(1.035);
}
.project-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 13px;
  background: rgba(23, 25, 22, 0.88);
  color: #fff;
  font: 600 13px "DM Sans";
}
.work {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 650px;
  background: var(--green);
  color: #fff;
}
.work-image {
  background: url("assets/rock-turf-planting.jpeg") center/cover;
}
.work-copy {
  padding: clamp(55px, 8vw, 120px);
  align-self: center;
}
.work h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.work p {
  line-height: 1.7;
  color: #c9d4ce;
}
.work ul {
  padding: 0;
  list-style: none;
  margin: 30px 0;
}
.work li {
  padding: 15px 0;
  border-bottom: 1px solid #405349;
}
.work li:before {
  content: "✓";
  color: var(--lime);
  margin-right: 13px;
}
.text-link {
  font-weight: 700;
  color: var(--lime);
}
.process {
  padding-top: 110px;
  padding-bottom: 120px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.steps b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #8c988f;
  border-radius: 50%;
  font-family: Oswald;
}
.steps h3 {
  font: 600 23px Oswald;
  text-transform: uppercase;
  margin: 40px 0 12px;
}
.steps p {
  line-height: 1.6;
  color: #68716b;
}
.band {
  padding: 90px 25px;
  text-align: center;
  background: var(--lime);
  color: var(--green);
}
.band p {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}
.band h2 {
  font-size: clamp(46px, 7vw, 82px);
  margin-bottom: 30px;
}
.quote {
  padding-top: 110px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.quote-note {
  margin-top: 38px;
  padding: 20px;
  border-left: 4px solid var(--lime);
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #f0eee7;
}
.quote-note span {
  color: #657068;
  font-size: 14px;
}
.quote-note a {
  color: var(--green2);
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
}
footer a[href^="mailto:"] {
  color: #c9d4ce;
  text-decoration: underline;
}
.estimate-form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 22px 55px rgba(22, 39, 30, 0.09);
}
.estimate-form label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d3d5d0;
  background: #fafaf8;
  padding: 15px;
  font: 15px "DM Sans";
  border-radius: 0;
}
.estimate-form textarea {
  resize: vertical;
}
.estimate-form .honey {
  position: absolute;
  left: -9999px;
}
.full {
  width: 100%;
  border: 0;
}
.form-help {
  font-size: 13px;
  margin: 14px 0 0;
  color: #657068;
}
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--sand);
}
.thanks-card {
  width: min(620px, 100%);
  padding: clamp(35px, 7vw, 70px);
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(22, 39, 30, 0.12);
}
.thanks-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 25px;
}
.thanks-card h1 {
  margin: 0 0 18px;
  font:
    700 clamp(54px, 10vw, 82px) Oswald,
    sans-serif;
  text-transform: uppercase;
}
.thanks-card > p:not(.eyebrow) {
  color: #5a625d;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 470px;
}
footer {
  padding: 48px clamp(22px, 5vw, 76px);
  background: #101c16;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
}
footer > p {
  font-size: 13px;
  color: #9eaaa3;
}
footer > p:last-child {
  text-align: right;
}
.mobile-call {
  display: none;
}
@media (max-width: 850px) {
  .topbar {
    height: 72px;
  }
  .topbar nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .brand-logo {
    width: 48px;
    height: 48px;
  }
  .hero {
    min-height: 720px;
    padding-top: 70px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-card {
    left: 22px;
    right: 22px;
    min-width: 0;
  }
  .hero-shade {
    background: linear-gradient(rgba(9, 23, 17, 0.88), rgba(9, 23, 17, 0.55));
  }
  .intro,
  .quote,
  .work {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .intro {
    padding-top: 75px;
    padding-bottom: 70px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    min-height: 230px;
  }
  .service-grid h3 {
    margin-top: 35px;
  }
  .project-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }
  .project-grid .project-wide {
    grid-column: span 2;
  }
  .work-image {
    min-height: 420px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .quote {
    padding-top: 75px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer > p:last-child {
    text-align: left;
  }
  body {
    padding-bottom: 68px;
  }
  .mobile-call {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--lime);
    color: var(--green);
    box-shadow: 0 -8px 25px rgba(15, 28, 21, 0.18);
    font-size: 14px;
  }
  .mobile-call strong {
    font-size: 17px;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 49px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 285px;
  }
  .project-grid .project-wide {
    grid-column: auto;
  }
  .trust-row {
    gap: 9px;
    flex-direction: column;
  }
  .hero-card {
    padding: 20px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .work-image {
    min-height: 300px;
  }
  .work-copy,
  .estimate-form {
    padding: 30px 24px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
