:root {
  --green-900: #0c2818;
  --green-800: #12361f;
  --green-700: #1f5f38;
  --green-600: #2f7a4a;
  --green-100: #e7f4ea;
  --cream: #fbf8ef;
  --tan: #d8c9a4;
  --ink: #172018;
  --muted: #5e675f;
  --white: #ffffff;
  --line: rgba(23, 32, 24, 0.12);
  --shadow: 0 24px 60px rgba(12, 40, 24, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
code { background: rgba(31,95,56,.1); padding: .12rem .35rem; border-radius: 7px; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  background: var(--green-900);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 10px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,248,239,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(12,40,24,.06); }
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 1.25rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
}
.site-nav a {
  padding: .7rem .9rem;
  border-radius: 999px;
  color: rgba(23,32,24,.78);
}
.site-nav a:hover,
.site-nav a.active { background: var(--green-100); color: var(--green-900); }
.site-nav .nav-cta {
  background: var(--green-900);
  color: var(--white);
  margin-left: .25rem;
}
.site-nav .nav-cta:hover { background: var(--green-700); color: var(--white); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-900);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 82% 22%, rgba(47,122,74,.22), transparent 26rem),
    linear-gradient(135deg, var(--cream) 0%, #eef5e8 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -26% -10%;
  height: 240px;
  background: var(--green-900);
  border-radius: 50% 50% 0 0;
  opacity: .08;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.8rem); max-width: 10ch; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.hero-text {
  margin-top: 1.25rem;
  max-width: 610px;
  color: var(--muted);
  font-size: 1.15rem;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: .85rem 1.25rem;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(12,40,24,.12); }
.btn-primary { background: var(--green-900); color: var(--white); }
.btn-secondary { border-color: rgba(12,40,24,.16); background: rgba(255,255,255,.62); }
.btn-light { background: var(--white); color: var(--green-900); }
.full-width { width: 100%; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.5rem;
}
.trust-row span {
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  font-weight: 800;
  font-size: .9rem;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.8);
}
.hero-card-top { display: flex; align-items: center; gap: .5rem; color: var(--green-700); font-weight: 900; margin-bottom: 1.2rem; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #42b96f; box-shadow: 0 0 0 8px rgba(66,185,111,.16); }
.check-list, .feature-list { padding: 0; margin: 1.1rem 0; list-style: none; }
.check-list li, .feature-list li { margin: .8rem 0; padding-left: 1.8rem; position: relative; color: var(--muted); }
.check-list li::before, .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -.08rem;
  color: var(--green-700);
  font-weight: 900;
}
.text-link { color: var(--green-700); font-weight: 900; }
.text-link:hover { color: var(--green-900); }

.section { padding: 82px 0; }
.section-heading { max-width: 720px; margin-bottom: 2rem; }
.section-heading p:last-child { color: var(--muted); margin-top: .85rem; }
.cards { display: grid; gap: 1rem; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.card, .service-item, .contact-panel, .quote-form {
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 12px 34px rgba(12,40,24,.06);
}
.card .icon { font-size: 2rem; display: inline-block; margin-bottom: 1rem; }
.card p { color: var(--muted); margin-top: .75rem; }

.split-section { background: #edf5e8; }
.split-grid, .form-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.image-panel {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #dfeccf 0%, #92c47b 52%, #437a4a 100%);
  box-shadow: var(--shadow);
  position: relative;
}
.landscape-illustration { position: absolute; inset: 0; }
.sun { position: absolute; width: 86px; height: 86px; background: #f5cf70; border-radius: 50%; right: 16%; top: 15%; box-shadow: 0 0 0 18px rgba(245,207,112,.24); }
.hill { position: absolute; bottom: -72px; border-radius: 50% 50% 0 0; }
.h1 { width: 120%; height: 220px; left: -10%; background: #1f5f38; }
.h2 { width: 95%; height: 180px; right: -18%; background: #2f7a4a; bottom: -38px; }
.tree { position: absolute; bottom: 112px; width: 28px; height: 120px; background: #6b4a2b; border-radius: 20px; }
.tree::before { content: ""; position: absolute; width: 118px; height: 118px; border-radius: 50%; background: #174f2d; left: 50%; top: -70px; transform: translateX(-50%); }
.t1 { left: 22%; }
.t2 { left: 60%; transform: scale(.82); bottom: 92px; }
.split-copy p:not(.eyebrow) { color: var(--muted); margin-top: 1rem; }

.cta-section { padding-top: 40px; }
.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  border-radius: 30px;
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.cta-box .eyebrow { color: #bde3c4; }
.cta-box p:last-child { color: rgba(255,255,255,.78); margin-top: .75rem; }
.small-cta { padding-top: 0; }

.page-hero {
  padding: 72px 0 42px;
  background: linear-gradient(135deg, #f7f5ea 0%, #e6f2e3 100%);
}
.page-hero h1 { max-width: 12ch; }
.page-hero p:last-child { color: var(--muted); max-width: 720px; margin-top: 1rem; font-size: 1.08rem; }
.service-list { display: grid; gap: 1rem; }
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.service-item p { color: var(--muted); margin-top: .5rem; max-width: 740px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-card {
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 1rem;
  color: var(--white);
  font-weight: 900;
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(12,40,24,.76), transparent 70%),
    radial-gradient(circle at 30% 20%, rgba(245,207,112,.42), transparent 30%),
    linear-gradient(135deg, #9dc46f, #1f5f38);
  box-shadow: var(--shadow);
}
.gallery-card:nth-child(even) { background:
  linear-gradient(to top, rgba(12,40,24,.76), transparent 70%),
  radial-gradient(circle at 76% 20%, rgba(255,255,255,.32), transparent 25%),
  linear-gradient(135deg, #d7c79d, #2f7a4a);
}

.form-grid { align-items: start; grid-template-columns: 1.2fr .8fr; }
.quote-form { display: grid; gap: 1rem; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: grid; gap: .45rem; font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(23,32,24,.18);
  border-radius: 15px;
  padding: .95rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(47,122,74,.22); border-color: var(--green-700); }
.hidden-field { display: none; }
.form-note { color: var(--muted); font-size: .92rem; }
.contact-panel { position: sticky; top: 98px; }
.contact-panel p { color: var(--muted); margin: .75rem 0 1.2rem; }
.contact-method { display: grid; gap: .18rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.contact-method span { color: var(--muted); font-size: .86rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.contact-method a { font-weight: 900; color: var(--green-700); }

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--cream), #e6f2e3);
}
.thank-you-card {
  text-align: center;
  width: min(640px, 100%);
  background: var(--white);
  border-radius: 32px;
  padding: clamp(1.4rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}
.thank-you-card img { margin: 0 auto 1rem; }
.thank-you-card p:last-of-type { color: var(--muted); margin-top: 1rem; }

.site-footer { background: var(--green-900); color: rgba(255,255,255,.78); padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 2rem; }
.footer-brand { color: var(--white); margin-bottom: 1rem; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: 0; margin-bottom: .7rem; }
.site-footer a { color: rgba(255,255,255,.9); }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.2rem; font-size: .95rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: .75rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .split-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  h1 { max-width: 100%; }
  .three-col, .gallery-grid { grid-template-columns: 1fr; }
  .cta-box, .service-item { flex-direction: column; align-items: flex-start; }
  .form-row.two { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 56px 0; }
  .section { padding: 56px 0; }
  .hero-actions .btn { width: 100%; }
}
