:root {
  --pine: #13261b;
  --moss: #1f3d2a;
  --fern: #2f5d3e;
  --sage: #9db59a;
  --lime: #c9f269;
  --lime-deep: #a9d63f;
  --clay: #d0673a;
  --paper: #f2f0e6;
  --oat: #e6e1cf;
  --ink: #0f1d14;
  --muted: #5f6b60;
  --line: rgba(19, 38, 27, .13);
  --line-light: rgba(242, 240, 230, .16);

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Hanken Grotesk", system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --gutter: clamp(16px, 4vw, 52px);
  --sec: clamp(84px, 11vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 clamp(16px, 1.05vw, 17.5px)/1.6 var(--f-body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--f-display); font-variation-settings: "SOFT" 100; font-weight: 600; letter-spacing: -.02em; }
em { font-family: var(--f-display); font-style: italic; font-weight: 400; font-variation-settings: "SOFT" 100; }
::selection { background: var(--lime); color: var(--pine); }
:focus-visible { outline: 2px solid var(--lime-deep); outline-offset: 3px; }
.skip { position: fixed; top: -60px; left: 12px; z-index: 100; padding: 10px 16px; border-radius: 99px; background: var(--lime); color: var(--pine); }
.skip:focus { top: 12px; }
.wrap { width: min(1280px, 100%); margin-inline: auto; padding-inline: var(--gutter); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; padding: 1em 1.55em; border-radius: 999px; border: 1.5px solid transparent; font-weight: 700; font-size: .96rem; text-decoration: none; cursor: pointer; white-space: nowrap; transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .35s var(--ease); }
.btn:active { transform: scale(.97); }
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-sm { padding: .7em 1.15em; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-lime { background: var(--lime); color: var(--pine); box-shadow: 0 10px 26px -12px rgba(169, 214, 63, .8); }
.btn-lime:hover { background: #d8ff7c; transform: translateY(-2px); }
.btn-ghost { border-color: var(--line-light); color: var(--paper); }
.btn-ghost:hover { border-color: var(--paper); }
.btn-dark { background: var(--pine); color: var(--paper); }
.btn-dark:hover { background: var(--moss); transform: translateY(-2px); }

/* storm bar + nav */
.storm { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px var(--gutter); background: var(--clay); color: #fff6ef; font-size: .84rem; }
.storm p { margin: 0; }
.storm a { font-weight: 700; text-decoration: none; white-space: nowrap; }
.bolt { display: inline-block; animation: flick 3.2s infinite; }
@keyframes flick { 0%, 88%, 100% { opacity: 1; } 90%, 94% { opacity: .2; } }

.nav { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; gap: 28px; padding: 14px var(--gutter); background: rgba(19, 38, 27, .92); color: var(--paper); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); transition: padding .4s var(--ease), box-shadow .4s; }
.nav.is-stuck { padding-block: 10px; box-shadow: 0 12px 30px -20px rgba(0,0,0,.6); }
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none; color: var(--paper); }
.logo-mark { width: 40px; height: 40px; flex: none; color: var(--paper); }
.logo-word { display: flex; flex-direction: column; white-space: nowrap; font: 600 1.45rem/.95 var(--f-display); font-variation-settings: "SOFT" 100; letter-spacing: -.02em; }
.logo-word em { color: var(--lime); }
.logo-word small { margin-top: 4px; font: 700 .58rem/1 var(--f-body); letter-spacing: .26em; text-transform: uppercase; color: var(--sage); }
.nav-links { display: flex; gap: 26px; }
.nav-links a { position: relative; text-decoration: none; font-weight: 500; font-size: .94rem; opacity: .9; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; border-radius: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.nav-links a:hover::after, .nav-links a.is-current::after { transform: scaleX(1); }
.burger { display: none; position: relative; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-light); background: none; cursor: pointer; }
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: var(--paper); transition: transform .45s var(--ease); }
.burger span:first-child { top: 17px; } .burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.drawer { position: fixed; inset: 0; z-index: 35; display: flex; flex-direction: column; gap: 14px; padding: 140px var(--gutter) 40px; background: var(--pine); color: var(--paper); opacity: 0; transition: opacity .4s var(--ease); }
.drawer.is-open { opacity: 1; }
.drawer nav { display: flex; flex-direction: column; margin-bottom: auto; }
.drawer nav a { padding: 10px 0; border-bottom: 1px solid var(--line-light); font: 600 2.2rem/1.1 var(--f-display); text-decoration: none; }
.drawer-phone { text-align: center; font-weight: 700; color: var(--lime); }

/* shared */
.up { opacity: 0; transform: translateY(28px); animation: up 1.1s var(--ease) var(--d, 0s) forwards; }
@keyframes up { to { opacity: 1; transform: none; } }
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform 1.1s var(--ease); transition-delay: var(--rd, 0s); }
[data-reveal].in { opacity: 1; transform: none; }
.kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--fern); }
.kicker::before { content: ""; width: 22px; height: 8px; background: repeating-linear-gradient(90deg, currentColor 0 3px, transparent 3px 6px); }
.head { max-width: 820px; margin-bottom: clamp(40px, 5vw, 64px); }
.head-center { margin-inline: auto; text-align: center; }
.head-light .kicker, .trees .kicker, .estimate .kicker { color: var(--lime); }
h2 { font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: .98; color: var(--pine); }
h2 em { color: var(--fern); }
.lede { max-width: 34em; margin: 22px 0 0; color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.14rem); }

/* hero */
.hero { position: relative; overflow: hidden; background: var(--pine); color: var(--paper); isolation: isolate; padding: clamp(40px, 6vw, 90px) 0 clamp(110px, 12vw, 170px); }
.hero::before { /* mowing stripes */
  content: ""; position: absolute; inset: -20%; z-index: -1; opacity: .5;
  background: repeating-linear-gradient(115deg, rgba(47, 93, 62, .35) 0 90px, rgba(19, 38, 27, 0) 90px 180px);
  animation: mow 40s linear infinite;
}
@keyframes mow { to { transform: translateX(193px); } }
.hero-in { width: min(1360px, 100%); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.hero .kicker { color: var(--sage); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(201,242,105,.6); animation: pulse 2.4s infinite; }
.hero .kicker::before { display: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(201,242,105,0); } 100% { box-shadow: 0 0 0 0 rgba(201,242,105,0); } }
.hero-title { font-size: clamp(3.2rem, 7vw, 7rem); line-height: .9; font-weight: 600; letter-spacing: -.035em; }
.hero-title > span { display: block; }
.hl em { position: relative; color: var(--lime); z-index: 0; }
.hl em::after { content: ""; position: absolute; left: -.06em; right: -.08em; bottom: .08em; height: .22em; z-index: -1; background: var(--fern); border-radius: 4px; transform: scaleX(0); transform-origin: left; animation: sweep 1s var(--ease-io) 1.1s forwards; }
@keyframes sweep { to { transform: scaleX(1); } }
.hero-lede { max-width: 32em; margin: 28px 0 30px; color: rgba(242,240,230,.78); font-size: clamp(1.05rem, 1.3vw, 1.2rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.proof { display: flex; align-items: center; gap: 10px; margin-top: 30px; font-size: .92rem; color: rgba(242,240,230,.75); }
.proof b { color: var(--paper); }
.stars { width: 88px; height: 16px; flex: none; fill: var(--lime); }

.hero-art { position: relative; padding: 0 0 40px 30px; }
.arch { position: relative; aspect-ratio: 4 / 4.6; overflow: hidden; border-radius: 999px 999px 26px 26px; box-shadow: 0 40px 80px -40px rgba(0,0,0,.7); transition: transform .8s var(--ease); }
.arch img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); animation: settle 2.4s var(--ease) .3s forwards; }
@keyframes settle { to { transform: scale(1.02); } }
.chip { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 16px; background: var(--paper); color: var(--ink); box-shadow: 0 24px 50px -24px rgba(0,0,0,.6); font-size: .86rem; line-height: 1.3; }
.chip b { display: block; }
.chip small { color: var(--muted); }
.chip-visit { left: 0; bottom: 60px; animation: bob 6s ease-in-out infinite 1.8s; }
.chip-ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--lime); color: var(--pine); font-weight: 800; }
.chip-cert { right: -10px; top: 12%; background: var(--pine); color: var(--paper); border: 1px solid var(--line-light); animation: bob 7s ease-in-out infinite .6s; }
.chip-cert svg { width: 34px; height: 34px; color: var(--paper); }
.chip-cert small { color: var(--sage); }
@keyframes bob { 50% { transform: translateY(-9px); } }

.grass { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(60px, 7vw, 90px); }
.grass path, .grass rect { fill: var(--paper); transform-box: fill-box; transform-origin: bottom; transform: scaleY(var(--g, 1)); }

/* stats */
.stats { padding: clamp(30px, 4vw, 50px) 0 clamp(60px, 7vw, 100px); }
.stats-in { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stats-in > div { padding: 20px 0 0; border-top: 2px solid var(--pine); }
.stats-in b { display: block; font: 600 clamp(2.4rem, 4.2vw, 3.8rem)/1 var(--f-display); font-variation-settings: "SOFT" 100; letter-spacing: -.03em; color: var(--pine); font-variant-numeric: tabular-nums; }
.stats-in span { font-size: .9rem; color: var(--muted); }

/* services */
.services { padding-bottom: var(--sec); }
.tabs { position: relative; display: flex; gap: 6px; margin-bottom: 26px; padding: 6px; border-radius: 999px; background: var(--oat); width: fit-content; max-width: 100%; overflow-x: auto; }
.tabs button { position: relative; z-index: 1; padding: .8em 1.4em; border: 0; border-radius: 999px; background: none; font-weight: 700; cursor: pointer; white-space: nowrap; transition: color .35s; }
.tabs button span { margin-right: 6px; font-size: .75rem; opacity: .55; }
.tabs button[aria-selected="true"] { color: var(--paper); }
.tab-ink { position: absolute; top: 6px; bottom: 6px; left: 0; border-radius: 999px; background: var(--pine); transition: transform .6s var(--ease), width .6s var(--ease); }
.panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 60px); align-items: center; animation: fadein .7s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(14px); } }
.panel-img { margin: 0; overflow: hidden; border-radius: 26px; aspect-ratio: 5 / 4; }
.panel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.panel:hover .panel-img img { transform: scale(1.04); }
.panel h3 { font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.02; color: var(--pine); }
.panel-lede { margin: 14px 0 22px; color: var(--muted); }
.svc-list { list-style: none; margin: 0; padding: 0; }
.svc-list li { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding: 16px 0; border-top: 1px solid var(--line); }
.svc-list li:last-child { border-bottom: 1px solid var(--line); }
.svc-list span { color: var(--muted); font-size: .92rem; }
.svc-list b { display: block; color: var(--ink); font-size: 1.05rem; }
.svc-list em { flex: none; padding: 4px 10px; border-radius: 99px; background: var(--lime); color: var(--pine); font: 700 .8rem/1.4 var(--f-body); font-style: normal; white-space: nowrap; }

/* plan builder */
.plan { position: relative; padding-block: var(--sec); background: var(--moss); color: var(--paper); overflow: hidden; }
.plan::before { content: ""; position: absolute; inset: 0; opacity: .35; background: repeating-linear-gradient(90deg, rgba(19,38,27,.5) 0 120px, transparent 120px 240px); }
.plan .wrap { position: relative; }
.plan h2 { color: var(--paper); }
.plan h2 em { color: var(--lime); }
.plan .lede { color: rgba(242,240,230,.72); }
.builder { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 18px; }
.b-form { display: grid; gap: 26px; padding: clamp(22px, 3vw, 40px); border-radius: 28px; background: var(--pine); border: 1px solid var(--line-light); }
.b-form fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
.b-form legend { margin-bottom: 12px; padding: 0; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); }
.seg { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.seg-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.seg input, .addon input, .needs input, .signs input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: block; height: 100%; padding: 14px; border-radius: 16px; border: 1.5px solid var(--line-light); text-align: center; font-weight: 600; cursor: pointer; transition: background .3s, border-color .3s, color .3s; }
.seg span small { display: block; margin-top: 3px; font-weight: 400; font-size: .8rem; opacity: .75; }
.seg span:hover { border-color: var(--sage); }
.seg input:checked + span { background: var(--lime); border-color: var(--lime); color: var(--pine); }
.seg input:focus-visible + span, .addon input:focus-visible + .box, .signs input:focus-visible + .box, .needs input:focus-visible + span { outline: 2px solid var(--lime); outline-offset: 2px; }
.addons { display: grid; gap: 8px; }
.addon { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 14px; border: 1.5px solid var(--line-light); cursor: pointer; transition: border-color .3s, background .3s; }
.addon:hover { border-color: var(--sage); }
.addon em { margin-left: auto; font: 700 .9rem var(--f-body); color: var(--lime); font-style: normal; }
.box { position: relative; flex: none; width: 22px; height: 22px; border-radius: 7px; border: 1.5px solid currentColor; opacity: .7; transition: background .3s, border-color .3s, opacity .3s; }
.box::after { content: ""; position: absolute; left: 6px; top: 3px; width: 6px; height: 11px; border-right: 2.5px solid var(--pine); border-bottom: 2.5px solid var(--pine); transform: rotate(45deg) scale(0); transition: transform .3s var(--ease); }
input:checked + .box { background: var(--lime); border-color: var(--lime); opacity: 1; }
input:checked + .box::after { transform: rotate(45deg) scale(1); }
.addon:has(input:checked) { background: rgba(201,242,105,.08); border-color: rgba(201,242,105,.5); }

.b-out { display: flex; flex-direction: column; gap: 18px; padding: clamp(22px, 3vw, 36px); border-radius: 28px; background: var(--paper); color: var(--ink); }
.price span { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.price strong { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.price strong b { font: 600 clamp(3.4rem, 6vw, 5rem)/.9 var(--f-display); font-variation-settings: "SOFT" 100; letter-spacing: -.04em; color: var(--pine); font-variant-numeric: tabular-nums; }
.price strong small { color: var(--muted); font-size: 1rem; }
.price p { margin: 6px 0 0; font-weight: 600; color: var(--fern); }
.cal { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 5px; align-items: end; height: 150px; padding: 12px 0 0; border-top: 1px dashed var(--line); }
.cal-m { display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.cal-stack { display: flex; flex-direction: column-reverse; gap: 3px; width: 100%; }
.cal-stack i { display: block; height: 16px; border-radius: 4px; background: var(--fern); transform-origin: bottom; animation: grow .5s var(--ease) both; animation-delay: calc(var(--n) * 25ms); }
.cal-stack i.bi { background: var(--sage); }
.cal-stack i.extra { background: var(--lime); }
@keyframes grow { from { transform: scaleY(0); opacity: 0; } }
.cal-m span { font-size: .7rem; font-weight: 700; color: var(--muted); }
.cal-key { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: .8rem; color: var(--muted); }
.cal-key i { display: inline-block; width: 10px; height: 10px; margin-right: 6px; border-radius: 3px; vertical-align: -1px; }
.k-week { background: var(--fern); } .k-bi { background: var(--sage); } .k-extra { background: var(--lime); }
.b-note { margin: -6px 0 0; font-size: .78rem; color: var(--muted); }

/* trees */
.trees { padding-block: var(--sec); background: var(--pine); color: var(--paper); }
.trees h2 { color: var(--paper); }
.trees h2 em { color: var(--lime); }
.trees .lede { color: rgba(242,240,230,.72); }
.trees-in { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 90px); align-items: start; }
.season { display: inline-flex; flex-direction: column; margin-top: 28px; padding: 14px 20px; border-radius: 16px; border: 1.5px dashed rgba(208,103,58,.7); color: #f2b39a; }
.season b { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }
.season span { font: 600 1.4rem/1.2 var(--f-display); color: var(--paper); }
.trees-img { margin: 30px 0 0; max-width: 340px; overflow: hidden; border-radius: 999px 999px 24px 24px; aspect-ratio: 3 / 4; }
.trees-img img { width: 100%; height: 100%; object-fit: cover; }
.check { padding: clamp(22px, 3vw, 40px); border-radius: 28px; background: var(--moss); border: 1px solid var(--line-light); }
.signs { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 8px; }
.signs label { position: relative; display: flex; gap: 14px; padding: 14px 16px; border-radius: 16px; border: 1.5px solid var(--line-light); cursor: pointer; transition: border-color .3s, background .3s, transform .4s var(--ease); }
.signs label:hover { transform: translateX(4px); border-color: var(--sage); }
.signs .box { margin-top: 2px; color: var(--paper); }
.signs span:last-child { font-size: .9rem; color: rgba(242,240,230,.65); }
.signs b { display: block; color: var(--paper); font-size: 1rem; }
.signs label:has(input:checked) { border-color: rgba(201,242,105,.55); background: rgba(201,242,105,.06); }
.meter-bar { position: relative; height: 12px; border-radius: 99px; background: linear-gradient(90deg, var(--lime), #f0c14b 55%, var(--clay)); overflow: hidden; }
.meter-bar span { position: absolute; top: 0; bottom: 0; right: 0; left: 0%; background: rgba(19,38,27,.82); transition: left .8s var(--ease); }
.meter-read { margin: 18px 0 22px; }
.meter-read b { display: block; font: 600 1.8rem/1.1 var(--f-display); color: var(--lime); transition: color .4s; }
.meter-read b.mid { color: #f0c14b; }
.meter-read b.high { color: #f29a74; }
.meter-read p { margin: 6px 0 0; color: rgba(242,240,230,.75); min-height: 3.2em; }
.check .btn-dark { background: var(--paper); color: var(--pine); }
.check .btn-dark:hover { background: var(--lime); }

/* how */
.how { padding-block: clamp(70px, 9vw, 120px); background: var(--oat); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 3vw, 40px); counter-reset: s; }
.steps li { position: relative; padding-top: 70px; }
.steps span { position: absolute; top: 0; left: 0; font: 600 3.4rem/1 var(--f-display); color: transparent; -webkit-text-stroke: 1.5px var(--fern); }
.steps h3 { font-size: 1.6rem; color: var(--pine); margin-bottom: 8px; }
.steps p { margin: 0; color: var(--muted); }

/* work */
.work { padding-block: var(--sec) calc(var(--sec) * .6); overflow: hidden; }
.work-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 40px; }
.work-ctrl { display: flex; gap: 8px; }
.work-ctrl button { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); background: none; cursor: pointer; font-size: 1.1rem; transition: background .3s, color .3s; }
.work-ctrl button:hover { background: var(--pine); color: var(--paper); }
.strip { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 max(var(--gutter), calc((100vw - 1280px) / 2 + var(--gutter))) 16px; scrollbar-width: none; }
.strip::-webkit-scrollbar { display: none; }
.shot { position: relative; flex: 0 0 min(460px, 82vw); height: 420px; margin: 0; overflow: hidden; border-radius: 24px; scroll-snap-align: start; }
.shot-tall { flex-basis: min(320px, 70vw); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 12px 16px; border-radius: 14px; background: rgba(242,240,230,.94); font-size: .84rem; color: var(--muted); transform: translateY(8px); opacity: .92; transition: transform .5s var(--ease), opacity .5s; }
.shot figcaption b { display: block; color: var(--pine); font-size: .98rem; }
.shot:hover figcaption { transform: none; opacity: 1; }

/* reviews */
.reviews { padding-block: calc(var(--sec) * .6) var(--sec); }
.rev-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.rev { margin: 0; padding: 30px; border-radius: 24px; background: #fbfaf4; border: 1px solid var(--line); }
.rev .stars { fill: var(--lime-deep); }
.rev-feature { margin-top: 40px; background: var(--pine); color: var(--paper); border-color: var(--pine); }
.rev-feature .stars { fill: var(--lime); }
.rev blockquote { margin: 16px 0 22px; font: 400 1.25rem/1.4 var(--f-display); font-variation-settings: "SOFT" 100; }
.rev figcaption { display: flex; align-items: center; gap: 12px; font-size: .88rem; color: var(--muted); line-height: 1.3; }
.rev-feature figcaption { color: var(--sage); }
.rev figcaption b { display: block; color: var(--ink); }
.rev-feature figcaption b { color: var(--paper); }
.av { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--lime); color: var(--pine); font-weight: 800; font-size: .82rem; }

/* estimate */
.estimate { padding-block: var(--sec); background: var(--pine) url("img/crew.webp") center / cover; position: relative; color: var(--paper); isolation: isolate; }
.estimate::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(19,38,27,.96) 35%, rgba(19,38,27,.82)); }
.est-in { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 90px); align-items: start; }
.estimate h2 { color: var(--paper); }
.estimate h2 em { color: var(--lime); }
.estimate .lede { color: rgba(242,240,230,.75); }
.area { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; }
.area li { padding: 6px 12px; border-radius: 99px; border: 1px solid var(--line-light); font-size: .86rem; }
.est-contact { margin-top: 26px; font-weight: 700; }
.est-contact a { color: var(--lime); text-decoration: none; }
.est-form { position: relative; padding: clamp(22px, 3vw, 40px); border-radius: 28px; background: var(--paper); color: var(--ink); }
.ef-label { margin: 0 0 10px; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.needs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.needs label { position: relative; }
.needs span { display: inline-block; padding: .65em 1.1em; border-radius: 99px; border: 1.5px solid var(--line); font-weight: 600; cursor: pointer; transition: all .3s var(--ease); }
.needs input:checked + span { background: var(--pine); border-color: var(--pine); color: var(--lime); }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.f { position: relative; }
.f-wide { grid-column: 1 / -1; }
.f input, .f textarea { width: 100%; padding: 24px 14px 9px; border-radius: 14px; border: 1.5px solid var(--line); background: #fbfaf4; font: 500 1rem/1.3 var(--f-body); color: var(--ink); resize: vertical; transition: border-color .3s; }
.f input:focus, .f textarea:focus { outline: none; border-color: var(--fern); }
.f label { position: absolute; left: 15px; top: 16px; color: var(--muted); pointer-events: none; transform-origin: left; transition: transform .35s var(--ease), color .3s; }
.f input:focus + label, .f input:not(:placeholder-shown) + label, .f textarea:focus + label, .f textarea:not(:placeholder-shown) + label { transform: translateY(-10px) scale(.74); color: var(--fern); }
.f.bad input { border-color: var(--clay); }
.f-err { margin: 10px 0 0; color: var(--clay); font-weight: 600; font-size: .88rem; }
.f-done { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 8px; padding: 40px; border-radius: 28px; background: var(--paper); animation: fadein .6s var(--ease); }
.f-done svg { width: 72px; height: 72px; color: var(--pine); --canopy: var(--lime-deep); }
.f-done h3 { font-size: 2.4rem; color: var(--pine); }
.f-done p { margin: 0; color: var(--muted); }

/* footer */
.footer { background: var(--ink); color: rgba(242,240,230,.7); padding-top: clamp(56px, 7vw, 90px); overflow: hidden; }
.foot-in { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; }
.foot-in a:not(.logo), .foot-in p { display: block; margin: 0 0 8px; text-decoration: none; font-size: .94rem; }
.foot-in a:not(.logo):hover { color: var(--lime); }
.foot-blurb { margin-top: 18px !important; max-width: 26em; }
.f-h { font-size: .74rem !important; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px !important; }
.foot-word { margin: 40px 0 -.18em; text-align: center; white-space: nowrap; font: 600 clamp(4rem, 15vw, 15rem)/1 var(--f-display); font-variation-settings: "SOFT" 100; letter-spacing: -.04em; color: var(--moss); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; padding-block: 22px 30px; border-top: 1px solid var(--line-light); font-size: .82rem; position: relative; }
.foot-bottom p { margin: 0; }
.foot-bottom a { text-decoration: none; }
.mobile-cta { display: none; }

/* responsive */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero-in, .builder, .trees-in, .est-in, .panel { grid-template-columns: minmax(0, 1fr); }
  .hero-art { max-width: 520px; width: 100%; margin-inline: auto; }
  .stats-in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rev-grid { grid-template-columns: minmax(0, 1fr); }
  .rev-feature { margin-top: 0; }
}
@media (max-width: 640px) {
  .storm { font-size: .76rem; }
  .storm p b { display: none; }
  .nav-cta { display: none; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-art { padding-left: 10px; }
  .chip { font-size: .76rem; padding: 10px 12px; }
  .chip-cert { right: 0; }
  .seg { grid-template-columns: minmax(0, 1fr); }
  .seg-2 { grid-template-columns: minmax(0, 1fr); }
  .cal { gap: 3px; height: 130px; }
  .cal-stack i { height: 12px; }
  .cal-m span { font-size: .6rem; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .fields { grid-template-columns: minmax(0, 1fr); }
  .shot { height: 340px; }
  .work-head { align-items: start; flex-direction: column; }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .foot-in > div:first-child { grid-column: 1 / -1; }
  .svc-list li { flex-direction: column; gap: 8px; }
  .mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30; display: flex; justify-content: center; gap: 8px; padding: 16px; border-radius: 999px; background: var(--lime); color: var(--pine); font-weight: 800; text-decoration: none; box-shadow: 0 14px 30px -10px rgba(0,0,0,.45); transform: translateY(150%); transition: transform .5s var(--ease); }
  .mobile-cta.show { transform: none; }
  .footer { padding-bottom: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], .up { opacity: 1; transform: none; }
}
