:root {
  --deep: #071b13;
  --forest: #0e2a1d;
  --moss: #718a3b;
  --lime: #c7db72;
  --cream: #f4f0e6;
  --paper: #fffdf7;
  --ink: #18221b;
  --muted: #637067;
  --stone: #d8d8cc;
  --shadow: 0 18px 50px rgba(7, 27, 19, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  height: 88px; padding: 0 clamp(20px, 5vw, 76px); display: flex; align-items: center;
  justify-content: space-between; gap: 28px; background: rgba(255,253,247,.96);
  border-bottom: 1px solid rgba(24,34,27,.08); position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.brand-mark { width: 38px; height: 38px; fill: none; stroke: var(--moss); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.brand span { display: flex; flex-direction: column; gap: 2px; }
.brand b { font-size: 13px; letter-spacing: .13em; }
.brand small { font-size: 8px; letter-spacing: .31em; color: var(--moss); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a, .footer-links a { transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"], .footer-links a:hover { color: var(--moss); }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; cursor: pointer; font: 800 10px/1 Arial, sans-serif; text-transform: uppercase; letter-spacing: .13em; padding: 17px 20px; transition: transform .2s ease, background .2s ease; }
.header-cta, .button.primary { background: var(--forest); color: white; }
.header-cta:hover, .button.primary:hover { background: var(--moss); transform: translateY(-1px); }
.button.light { background: var(--lime); color: var(--deep); }
.button.outline { border: 1px solid currentColor; background: transparent; }
.mobile-toggle { display: none; border: 0; background: transparent; padding: 10px; color: var(--forest); }
.mobile-toggle svg { width: 26px; height: 26px; }
.mobile-nav { display: none; position: fixed; inset: 88px 0 auto; z-index: 19; background: var(--paper); padding: 22px; border-bottom: 1px solid var(--stone); box-shadow: var(--shadow); }
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 14px 8px; border-bottom: 1px solid var(--stone); font-weight: 700; }

.hero { min-height: 760px; display: grid; align-items: center; position: relative; color: white; background: linear-gradient(90deg, rgba(4,24,16,.86) 0%, rgba(4,24,16,.56) 48%, rgba(4,24,16,.08) 100%), url('../images/landscape-hero.webp') center/cover; }
.hero-content { width: min(720px, 90%); margin-left: clamp(24px, 8vw, 124px); padding: 90px 0; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 25px; font-size: 9px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; color: var(--moss); }
.eyebrow span { width: 33px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--lime); }
h1, h2, h3, blockquote { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
h1 { margin: 0; font-size: clamp(60px, 7.5vw, 108px); line-height: .92; letter-spacing: -.055em; }
h1 em, h2 em, h2 i { color: var(--lime); font-weight: 400; }
.hero-copy { max-width: 600px; margin: 30px 0; font: 17px/1.75 Georgia, serif; color: rgba(255,255,255,.76); }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.text-link { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 5px; }

.page-hero { padding: 115px clamp(24px, 8vw, 124px) 105px; background: var(--deep); color: white; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(199,219,114,.17); border-radius: 50%; right: -120px; top: -260px; }
.page-hero h1 { max-width: 950px; font-size: clamp(52px, 7vw, 92px); }
.page-hero p:not(.eyebrow) { max-width: 720px; font: 18px/1.7 Georgia, serif; color: rgba(255,255,255,.7); margin: 28px 0 0; }

.section { padding: 100px clamp(24px, 8vw, 124px); }
.section.cream { background: var(--cream); }
.section.dark { background: var(--deep); color: white; }
.section h2 { margin: 0; font-size: clamp(40px, 5vw, 68px); line-height: 1.04; letter-spacing: -.04em; }
.section-lead { max-width: 740px; margin: 26px 0 0; font: 17px/1.8 Georgia, serif; color: var(--muted); }
.dark .section-lead { color: rgba(255,255,255,.65); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.image-panel { min-height: 560px; background: url('../images/landscape-hero.webp') center/cover; box-shadow: var(--shadow); }
.image-panel.pavers { background-position: 79% center; }
.image-panel.planting { background-position: 18% center; }
.copy p { color: var(--muted); font: 16px/1.8 Georgia, serif; }
.copy .button { margin-top: 20px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.card { padding: 38px; border: 1px solid var(--stone); background: var(--paper); min-height: 280px; display: flex; flex-direction: column; }
.card.dark-card { background: var(--forest); color: white; border-color: var(--forest); }
.card-number { color: var(--moss); font-size: 10px; letter-spacing: .16em; font-weight: 800; }
.dark-card .card-number { color: var(--lime); }
.card h3 { font-size: 27px; margin: 38px 0 15px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.75; margin: 0 0 26px; }
.dark-card p { color: rgba(255,255,255,.68); }
.card a { margin-top: auto; color: var(--moss); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.dark-card a { color: var(--lime); }

.feature-list { margin: 35px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--stone); }
.feature-list li { padding: 24px 22px 24px 0; border-bottom: 1px solid var(--stone); color: var(--muted); line-height: 1.6; }
.feature-list li:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--stone); }
.feature-list strong { display: block; color: var(--ink); font: 20px/1.3 Georgia, serif; margin-bottom: 8px; }
.dark .feature-list { border-color: rgba(255,255,255,.18); }
.dark .feature-list li { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.62); }
.dark .feature-list strong { color: white; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 55px; border-top: 1px solid var(--stone); }
.step { padding: 28px 26px 10px 0; border-right: 1px solid var(--stone); }
.step + .step { padding-left: 26px; }
.step:last-child { border-right: 0; }
.step b { color: var(--moss); font-size: 9px; letter-spacing: .16em; }
.step h3 { font-size: 23px; margin: 15px 0 10px; }
.step p { font-size: 13px; line-height: 1.7; color: var(--muted); }

.cta-band { padding: 82px clamp(24px, 8vw, 124px); background: var(--forest); color: white; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.cta-band h2 { font-size: clamp(38px, 4vw, 58px); margin: 0; }
.cta-band p { color: rgba(255,255,255,.62); font: 16px/1.7 Georgia, serif; margin: 12px 0 0; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.direct-contact { display: flex; flex-direction: column; gap: 10px; margin: 32px 0; }
.direct-contact a { width: max-content; max-width: 100%; color: var(--moss); font: 21px/1.4 Georgia, serif; border-bottom: 1px solid rgba(113,138,59,.35); }
.service-area { border-left: 2px solid var(--lime); padding-left: 20px; display: grid; gap: 8px; }
.service-area span { color: var(--muted); font-size: 12px; line-height: 1.6; }
.estimate-form { background: var(--cream); padding: clamp(26px, 4vw, 46px); display: grid; gap: 20px; }
.estimate-form label { display: grid; gap: 9px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.estimate-form input, .estimate-form select, .estimate-form textarea { width: 100%; border: 0; border-bottom: 1px solid #aaa; background: transparent; padding: 12px 2px; color: var(--ink); font: 16px Arial, sans-serif; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hidden { position: absolute !important; left: -9999px !important; }

.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 55px; }
.project-tile { min-height: 460px; position: relative; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; color: white; background: linear-gradient(0deg, rgba(4,24,16,.84), transparent 62%), url('../images/landscape-hero.webp') center/cover; }
.project-tile:nth-child(2) { background-position: 82% center; }
.project-tile:nth-child(3) { background-position: 12% center; }
.project-tile:nth-child(4) { background-position: 65% center; }
.project-tile span { color: var(--lime); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.project-tile h3 { font-size: 29px; margin: 10px 0 0; }

.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 55px; }
.area-card { padding: 48px; background: var(--forest); color: white; min-height: 330px; display: flex; flex-direction: column; }
.area-card h3 { font-size: 33px; margin: 20px 0 15px; }
.area-card p { color: rgba(255,255,255,.65); line-height: 1.75; }
.area-card a { margin-top: auto; color: var(--lime); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }

.notice { max-width: 760px; margin: 0 auto; text-align: center; padding: 120px 24px; }
.notice h1 { color: var(--forest); font-size: clamp(48px, 7vw, 84px); }
.notice p { color: var(--muted); font: 18px/1.7 Georgia, serif; }

footer { background: #061810; color: white; padding: 55px clamp(24px, 5vw, 76px) 30px; }
.footer-main { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.footer-links div { display: grid; gap: 12px; align-content: start; }
.footer-links strong { color: var(--lime); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.72); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.43); font-size: 10px; }
.footer-brand { color: white; }

@media (max-width: 960px) {
  .desktop-nav, .site-header > .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .split, .contact-grid, .footer-main { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .image-panel { min-height: 480px; }
}

@media (max-width: 640px) {
  .site-header { height: 76px; padding: 0 18px; }
  .mobile-nav { top: 76px; }
  .brand span { display: none; }
  .footer-brand span { display: flex; }
  .hero { min-height: 680px; }
  .hero-content { margin-left: 24px; padding-right: 24px; }
  .page-hero, .section { padding-left: 24px; padding-right: 24px; }
  .cards, .areas, .project-grid, .steps, .feature-list, .form-row { grid-template-columns: 1fr; }
  .card { min-height: 245px; }
  .feature-list li:nth-child(even) { padding-left: 0; border-left: 0; }
  .step, .step + .step { border-right: 0; border-bottom: 1px solid var(--stone); padding-left: 0; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .header-cta, .button { transition: none; }
}
