:root {
  --ink: #172019;
  --muted: #5c675c;
  --leaf: #274a33;
  --clay: #b86d3b;
  --cream: #f5f0e6;
  --paper: #fffdf7;
  --line: rgba(23, 32, 25, 0.16);
  --shadow: 0 18px 48px rgba(20, 31, 24, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
a { color: inherit; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 18, 12, 0.72), rgba(10, 18, 12, 0));
}
.brand, .nav, .footer nav { display: flex; align-items: center; gap: 16px; }
.brand { text-decoration: none; font-weight: 800; letter-spacing: 0; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.52);
  background: rgba(255,255,255,0.14);
  font-size: 0.9rem;
}
.nav a, .footer a { text-decoration: none; font-weight: 700; font-size: 0.92rem; }
.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #142117;
}
.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-shade {
  background: linear-gradient(90deg, rgba(7, 13, 9, 0.84) 0%, rgba(7, 13, 9, 0.54) 42%, rgba(7, 13, 9, 0.18) 100%),
              linear-gradient(0deg, rgba(7, 13, 9, 0.52), rgba(7, 13, 9, 0));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 84px;
  color: #fff;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--clay);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 11ch;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
  margin-bottom: 0;
}
h3 { font-size: 1.1rem; margin-bottom: 10px; }
.hero-copy { max-width: 620px; font-size: 1.14rem; color: rgba(255,255,255,0.88); }
.hero-actions, .quote-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button, .contact-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary { background: var(--clay); color: #fff; }
.button.secondary { border-color: rgba(255,255,255,0.52); color: #fff; background: rgba(255,255,255,0.08); }
.section-inner { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.band { background: var(--cream); }
.intro, .services, .process { padding: clamp(64px, 8vw, 110px) 0; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}
.two-col > p { color: var(--muted); font-size: 1.06rem; margin: 34px 0 0; }
.section-heading { margin-bottom: 34px; max-width: 740px; }
.section-heading.compact { max-width: 680px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 32px rgba(20, 31, 24, 0.07);
}
.service-number { color: var(--clay); font-weight: 800; font-size: 0.82rem; }
.service-card p, .project-tile p, .process p, .quote-wrap p { color: var(--muted); }
.work-band { padding: clamp(64px, 8vw, 110px) 0; background: var(--leaf); color: #fff; }
.work-band .eyebrow { color: #e2a06d; }
.work-band .project-tile p { color: rgba(255,255,255,0.82); }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.project-tile {
  min-height: 280px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: var(--shadow);
}
.curb { background: linear-gradient(145deg, #6f8f54, #223b2c); }
.lawn { background: linear-gradient(145deg, #a76a3b, #2a422f); }
.install { background: linear-gradient(145deg, #365d4a, #162a1f); }
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--cream);
  color: var(--leaf);
  font-weight: 900;
}
.quote-band { padding: clamp(64px, 7vw, 96px) 0; background: #eadfce; }
.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 36px;
  align-items: center;
}
.quote-actions { margin-top: 0; flex-direction: column; }
.contact-link {
  width: 100%;
  justify-content: flex-start;
  border-color: rgba(23, 32, 25, 0.22);
  background: var(--paper);
  color: var(--ink);
}
.footer {
  min-height: 90px;
  padding: 24px clamp(18px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #101810;
  color: #fff;
  font-weight: 800;
}
.legal-page h1 { color: var(--leaf); }
@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  .nav { gap: 12px; }
  .two-col, .quote-wrap { grid-template-columns: 1fr; }
  .service-grid, .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-content { padding-bottom: 64px; }
}
@media (max-width: 620px) {
  .site-header { padding: 14px 18px; }
  .brand span:last-child { display: none; }
  .nav a { font-size: 0.86rem; }
  .hero { min-height: 88vh; }
  h1 { font-size: 3rem; }
  .hero-actions, .quote-actions { flex-direction: column; align-items: stretch; }
  .service-grid, .project-grid { grid-template-columns: 1fr; }
  .service-card, .project-tile { min-height: 220px; }
  .footer { flex-direction: column; align-items: flex-start; }
}
