/* Evergreen Edge Landscaping — minimalist, modern nature aesthetic */
:root{
  --bg: #f7f6f0;
  --bg2:#f1f3ef;
  --surface:#ffffff;
  --surface2:#f8faf8;
  --text:#0f1a14;
  --muted:#56685e;
  --border:#e3e1d6;

  --accent:#2f6f4e;     /* evergreen */
  --accent2:#b56a3a;    /* clay */
  --accentSoft:#e5f1ea; /* soft evergreen tint */

  --shadow: 0 16px 40px rgba(15,26,20,.08);
  --shadow2: 0 10px 28px rgba(15,26,20,.08);

  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;

  --ease: cubic-bezier(.2,.8,.2,1);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto;height:auto;
  padding:10px 12px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow2);
  z-index:1000;
}

.topbar{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter: blur(10px);
  background: rgba(247,246,240,.72);
  border-bottom:1px solid rgba(227,225,214,.7);
}
.topbar.isElevated{
  background: rgba(247,246,240,.9);
  box-shadow: 0 10px 30px rgba(15,26,20,.06);
}
.topbar__inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand__mark{
  width:34px;height:34px;
  border-radius:12px;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(135deg, var(--accent) 0%, #1f4b35 100%);
  box-shadow: 0 12px 22px rgba(47,111,78,.18);
  border:1px solid rgba(255,255,255,.7);
}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__name{font-weight:720; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__link{
  font-size:14px;
  color:var(--muted);
  padding:10px 8px;
  border-radius:10px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__link:hover{
  background: rgba(47,111,78,.08);
  color: var(--text);
}
.nav__cta{margin-left:6px}

.navToggle{
  display:none;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:14px;
  width:46px;height:46px;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(15,26,20,.06);
}
.navToggle__bars{
  width:18px;height:12px;
  display:block;
  margin:0 auto;
  position:relative;
}
.navToggle__bars::before,
.navToggle__bars::after{
  content:"";
  position:absolute; left:0; right:0;
  height:2px;
  background:var(--text);
  border-radius:10px;
  transition: transform .2s var(--ease), top .2s var(--ease), opacity .2s var(--ease);
}
.navToggle__bars::before{top:1px}
.navToggle__bars::after{top:9px}
.navToggle[aria-expanded="true"] .navToggle__bars::before{top:5px; transform: rotate(45deg)}
.navToggle[aria-expanded="true"] .navToggle__bars::after{top:5px; transform: rotate(-45deg)}

.section{
  padding: 84px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(229,241,234,.65) 0%, rgba(255,255,255,.6) 100%);
  border-top:1px solid rgba(227,225,214,.8);
  border-bottom:1px solid rgba(227,225,214,.8);
}

.sectionHead{
  max-width: 760px;
  margin-bottom: 26px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
}
.kicker::before{
  content:"";
  width:10px;height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  box-shadow: 0 10px 18px rgba(47,111,78,.16);
}
.h1{font-size: clamp(38px, 5vw, 56px); line-height:1.02; margin:12px 0 10px}
.h2{font-size: clamp(28px, 3.2vw, 38px); line-height:1.08; margin:12px 0 8px}
.h3{font-size: 18px; margin:0 0 10px}
.lead{font-size: 16px; line-height: 1.6; color: var(--muted); margin:0 0 22px}
.sub{color:var(--muted); line-height:1.65; margin: 0}
.p{color:var(--muted); line-height:1.7; margin:0 0 14px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor:pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #245a40 100%);
  box-shadow: 0 16px 30px rgba(47,111,78,.22);
}
.btn--primary:hover{box-shadow: 0 18px 36px rgba(47,111,78,.28)}
.btn--ghost{
  background: rgba(255,255,255,.7);
  border-color: rgba(227,225,214,.9);
  color: var(--text);
}
.btn--ghost:hover{background: rgba(255,255,255,.95)}
.btn--small{padding:10px 12px; border-radius:12px}
.btn--full{width:100%}

.hero{
  position:relative;
  padding: 92px 0 64px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}
.hero__fade{
  position:absolute;
  inset:-240px -200px auto -200px;
  height:520px;
  background:
    radial-gradient(40% 40% at 20% 20%, rgba(47,111,78,.18) 0%, rgba(47,111,78,0) 70%),
    radial-gradient(34% 34% at 80% 30%, rgba(181,106,58,.14) 0%, rgba(181,106,58,0) 70%),
    radial-gradient(30% 30% at 60% 80%, rgba(47,111,78,.10) 0%, rgba(47,111,78,0) 70%);
  pointer-events:none;
  filter: blur(0px);
}
.hero__copy{padding-top:10px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 18px}
.hero__trust{display:flex; flex-wrap:wrap; gap:10px; margin-top: 10px}
.pill{
  font-size: 13px;
  color: var(--text);
  background: rgba(255,255,255,.7);
  border:1px solid rgba(227,225,214,.9);
  padding: 10px 12px;
  border-radius: 999px;
}

.hero__visual{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:stretch;
}
.heroCard{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(227,225,214,.9);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard__img{
  height: 240px;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(135deg, rgba(47,111,78,.55) 0%, rgba(181,106,58,.35) 50%, rgba(15,26,20,.18) 100%);
  position:relative;
}
.heroCard__img::after{
  content:"";
  position:absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}
.heroCard__meta{
  padding: 14px 16px 16px;
}
.heroCard__title{font-weight: 720}
.heroCard__sub{color: var(--muted); font-size: 13px; margin-top: 4px}

.heroStats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(227,225,214,.9);
  border-radius: var(--radius);
  padding: 12px 12px;
}
.stat__num{font-weight: 820; letter-spacing:.2px}
.stat__label{font-size: 12px; color: var(--muted); margin-top: 2px}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(227,225,214,.9);
  border-radius: var(--radius2);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 34px rgba(15,26,20,.06);
}
.card__icon{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(47,111,78,.10);
  border: 1px solid rgba(47,111,78,.18);
  color: var(--accent);
  margin-bottom: 12px;
}
.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.noteRow{margin-top: 14px}
.note{
  background: rgba(229,241,234,.7);
  border: 1px solid rgba(47,111,78,.16);
  color: var(--text);
  border-radius: var(--radius2);
  padding: 14px 16px;
  line-height: 1.6;
}

.workGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.workCard{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(227,225,214,.9);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 14px 34px rgba(15,26,20,.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.workCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(15,26,20,.10);
}
.workCard__img{
  height: 190px;
  background-size: cover;
  background-position: center;
}
.workCard__img--one{
  background-image:
    radial-gradient(60% 60% at 30% 20%, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(135deg, rgba(47,111,78,.55) 0%, rgba(15,26,20,.12) 100%);
}
.workCard__img--two{
  background-image:
    radial-gradient(60% 60% at 30% 20%, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(135deg, rgba(181,106,58,.45) 0%, rgba(47,111,78,.28) 55%, rgba(15,26,20,.12) 100%);
}
.workCard__img--three{
  background-image:
    radial-gradient(60% 60% at 30% 20%, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(135deg, rgba(15,26,20,.22) 0%, rgba(47,111,78,.35) 65%, rgba(181,106,58,.22) 100%);
}
.workCard__body{padding: 14px 14px 16px}
.workCard__title{font-weight: 740}
.workCard__meta{color: var(--muted); font-size: 13px; margin-top: 4px}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(227,225,214,.9);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(15,26,20,.06);
}
.step__num{
  font-weight: 850;
  color: var(--accent);
  letter-spacing: .12em;
  font-size: 12px;
}
.step__title{font-weight: 760; margin-top: 10px}
.step__text{color: var(--muted); line-height:1.65; margin-top: 8px; font-size: 14px}

.quote{
  margin:0;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(227,225,214,.9);
  border-radius: var(--radius2);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 34px rgba(15,26,20,.06);
}
.quote blockquote{margin:0; color: var(--text); line-height:1.7}
.quote figcaption{margin-top: 12px; color: var(--muted); font-size: 13px}

.contact{
  background:
    radial-gradient(40% 40% at 15% 10%, rgba(47,111,78,.12) 0%, rgba(47,111,78,0) 70%),
    radial-gradient(38% 38% at 85% 20%, rgba(181,106,58,.10) 0%, rgba(181,106,58,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,.8) 100%);
}
.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contactCard{
  background: rgba(255,255,255,.82);
  border:1px solid rgba(227,225,214,.9);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(15,26,20,.06);
  margin-top: 18px;
}
.contactCard__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 12px 0;
  border-top:1px solid rgba(227,225,214,.8);
}
.contactCard__row:first-child{border-top:none}
.contactCard__label{color: var(--muted); font-size: 13px}
.contactCard__value{font-weight: 700}
.contactCard__value:hover{color: var(--accent)}

.micro{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  box-shadow: 0 10px 18px rgba(47,111,78,.18);
}

.form{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(227,225,214,.9);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.form__row{display:flex; flex-direction:column; gap:8px; margin-bottom: 12px}
.label{font-weight: 700; font-size: 13px}
.input{
  border: 1px solid rgba(227,225,214,.95);
  border-radius: 14px;
  padding: 12px 12px;
  font: inherit;
  background: rgba(255,255,255,.9);
  outline:none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus{
  border-color: rgba(47,111,78,.45);
  box-shadow: 0 0 0 4px rgba(47,111,78,.14);
}
.textarea{resize: vertical; min-height: 120px}
.fine{margin: 12px 2px 0; color: var(--muted); font-size: 12px; line-height:1.6}
.hidden{display:none}

.footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(227,225,214,.8);
  background: rgba(247,246,240,.65);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__brand{font-weight: 780}
.footer__muted{color: var(--muted); font-size: 13px}
.footer__link{color: var(--accent); font-weight: 700}
.footer__link:hover{text-decoration: underline}
.footer__sep{color: rgba(86,104,94,.45); padding: 0 8px}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; gap: 18px}
  .heroCard__img{height: 220px}
  .steps{grid-template-columns: repeat(2, 1fr)}
  .workGrid{grid-template-columns: 1fr; }
  .workCard__img{height: 210px}
  .contact__grid{grid-template-columns: 1fr}
}

@media (max-width: 760px){
  .navToggle{display:block}
  .nav{
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(227,225,214,.9);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
  }
  .nav.isOpen{display:flex}
  .nav__link{padding: 12px 12px}
  .nav__cta{margin-left:0}
  .grid3{grid-template-columns: 1fr}
  .heroStats{grid-template-columns: repeat(3, 1fr)}
}

@media (max-width: 420px){
  .topbar__inner{height: 68px}
  .hero{padding-top: 82px}
  .heroStats{grid-template-columns: 1fr}
}
