:root {
  --ink: #162019;
  --muted: #5f6b63;
  --green: #284b37;
  --green-dark: #1d3829;
  --tan: #b68a56;
  --cream: #f4f1ea;
  --white: #ffffff;
  --line: #dfe4df;
  --shadow: 0 20px 60px rgba(22, 32, 25, .12);
}

* { 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(--white);
  line-height: 1.6;
}
a { color: inherit; }
img, svg { display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(223,228,223,.8);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 750; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; color: var(--green); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-weight: 600; color: #344038; }
.site-nav a:hover { color: var(--green); }
.nav-cta { border: 1px solid var(--green); padding: 9px 15px; border-radius: 999px; }
.menu-toggle { display: none; }

.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 12% 16%, rgba(182,138,86,.16), transparent 30%),
    linear-gradient(180deg, #fbfcfa 0%, #ffffff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 68px; align-items: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); margin-bottom: 24px; max-width: 780px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); margin-bottom: 22px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.hero-text { font-size: 1.15rem; max-width: 680px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 28px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}
.button.primary { background: var(--green); color: var(--white); }
.button.primary:hover { background: var(--green-dark); }
.button.secondary { border: 1px solid var(--line); background: var(--white); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: .93rem; }
.trust-row span::before { content: "•"; color: var(--tan); margin-right: 8px; }

.hero-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}
.trail-art { position: relative; height: 320px; overflow: hidden; background: linear-gradient(#dae6dc 0 55%, #809a81 55% 100%); }
.sun { position: absolute; width: 78px; height: 78px; border-radius: 50%; background: #f3d3a6; right: 54px; top: 48px; }
.ridge { position: absolute; left: -8%; width: 116%; border-radius: 50% 50% 0 0; }
.ridge-one { height: 170px; bottom: 56px; background: #5f7a65; transform: rotate(2deg); }
.ridge-two { height: 125px; bottom: 0; background: #314f3a; transform: rotate(-3deg); }
.path {
  position: absolute;
  width: 120px;
  height: 300px;
  bottom: -130px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  border-radius: 50%;
  background: #cfb58e;
  clip-path: polygon(45% 0, 60% 0, 100% 100%, 0 100%);
}
.acorn { position: absolute; left: 50%; top: 134px; transform: translateX(-50%); color: #7c4f2e; font-size: 28px; }
.card-copy { padding: 28px 30px 32px; }
.card-copy h2 { font-size: 2rem; margin-bottom: 10px; }
.card-copy p { color: rgba(255,255,255,.78); }
.card-kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 800; }

.section { padding: 96px 0; }
.section-muted { background: var(--cream); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.body-copy { color: var(--muted); font-size: 1.07rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.service-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(22,32,25,.08);
  border-radius: 20px;
}
.service-card p { color: var(--muted); }
.number { display: inline-block; margin-bottom: 34px; color: var(--tan); font-weight: 800; }

.process-list { list-style: none; padding: 0; margin: 44px 0 0; border-top: 1px solid var(--line); }
.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li > span { font-size: 1.4rem; font-weight: 800; color: var(--tan); }
.process-list p { margin: 0; color: var(--muted); }

.value-section { background: var(--green); color: white; }
.value-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; }
.value-section .eyebrow { color: #d9bd94; }
.value-list { display: grid; gap: 18px; }
.value-list div { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.value-list strong { display: block; font-size: 1.1rem; margin-bottom: 6px; }
.value-list span { color: rgba(255,255,255,.72); }

.contact-section { background: #f8faf7; }
.contact-card {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 64px;
  align-items: center;
  padding: 50px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(22,32,25,.07);
}
.contact-card p { color: var(--muted); }
.contact-actions { display: grid; gap: 18px; }
.contact-actions p { margin: 0; }

.site-footer { padding: 30px 0; border-top: 1px solid var(--line); }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-wrap p { margin: 0; color: var(--muted); font-size: .9rem; }

@media (max-width: 820px) {
  .hero { padding-top: 56px; }
  .hero-grid, .split, .value-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .cards { grid-template-columns: 1fr; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 76px 20px auto 20px;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
  }
  .contact-card { padding: 30px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 2.65rem; }
  .section { padding: 72px 0; }
  .trail-art { height: 260px; }
  .contact-card { padding: 24px; }
}
