:root {
  --green-950: #062f20;
  --green-900: #083f29;
  --green-800: #0b4f32;
  --green-700: #12633e;
  --green-600: #1f7a4b;
  --green-100: #eaf5ee;
  --yellow: #f6cf28;
  --yellow-soft: #ffe875;
  --white: #ffffff;
  --cream: #f8faf7;
  --ink: #142119;
  --muted: #617068;
  --line: #dbe6de;
  --shadow: 0 24px 60px rgba(6, 47, 32, .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;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 14px; background: var(--yellow); color: var(--green-950); transform: translateY(-150%); border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 82px;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { background: rgba(6,47,32,.94); box-shadow: 0 10px 30px rgba(0,0,0,.13); backdrop-filter: blur(14px); height: 70px; }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items:center; justify-content:center; min-width:92px; height:100%; color:var(--white); }
.brand img { width:auto; height:68px; object-fit:contain; filter:drop-shadow(0 3px 5px rgba(0,0,0,.2)); transition:height .25s ease; }
.site-header.scrolled .brand img { height:58px; }
.brand-main { font-size: 2rem; font-weight: 1000; letter-spacing: -.08em; text-transform: uppercase; text-shadow: 2px 2px 0 var(--green-700); }
.brand-sub { font-size: 1.34rem; font-weight: 1000; letter-spacing: .17em; margin-left: 24px; color: var(--yellow); text-transform: uppercase; }
.site-nav { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.site-nav a { color: rgba(255,255,255,.86); font-size: .93rem; font-weight: 750; }
.site-nav a:hover { color: var(--yellow); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: white; margin: 6px 0; transition: .2s ease; }

.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 0 26px; border-radius: 999px; background: var(--yellow); color: var(--green-950); font-weight: 900; border: 2px solid var(--yellow); box-shadow: 0 12px 28px rgba(246,207,40,.2); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(246,207,40,.26); background: var(--yellow-soft); }
.btn-small { min-height: 44px; padding-inline: 20px; font-size: .9rem; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); box-shadow: none; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-wide { width: 100%; border: 0; }

.hero { position: relative; min-height: 820px; padding: 160px 0 120px; background: radial-gradient(circle at 73% 22%, #1b7f4b 0, #0d5c38 28%, var(--green-950) 70%); color: white; overflow: hidden; }
.hero::before { content:""; position:absolute; inset:0; opacity:.13; background-image: linear-gradient(120deg, transparent 0 47%, rgba(255,255,255,.08) 47% 48%, transparent 48% 100%); background-size: 46px 46px; }
.hero-glow { position:absolute; border-radius:50%; filter:blur(5px); opacity:.3; }
.hero-glow-one { width:420px; height:420px; background:#2fa664; top:-180px; left:-130px; }
.hero-glow-two { width:340px; height:340px; background:#f6cf28; right:-180px; bottom:60px; opacity:.09; }
.hero-grid { position:relative; display:grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items:center; z-index:2; }
.eyebrow { display:inline-block; color: var(--yellow); font-weight:900; text-transform:uppercase; letter-spacing:.13em; font-size:.78rem; margin-bottom:18px; }
.eyebrow.dark { color: var(--green-700); }
.hero h1 { margin:0; font-size: clamp(3.5rem, 7vw, 6.7rem); line-height:.87; letter-spacing:-.07em; text-transform:uppercase; font-weight:1000; }
.hero h1 span { display:inline-block; color:var(--yellow); }
.hero-lead { max-width:620px; margin:28px 0 30px; font-size:1.14rem; color:rgba(255,255,255,.8); }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; }
.hero-facts { display:flex; gap:30px; margin-top:42px; padding-top:28px; border-top:1px solid rgba(255,255,255,.16); }
.hero-facts div { display:flex; flex-direction:column; }
.hero-facts strong { font-size:1.05rem; color:white; }
.hero-facts span { font-size:.78rem; color:rgba(255,255,255,.62); }

.hero-visual { position:relative; height:560px; border-radius:46% 46% 24px 24px; overflow:hidden; background:linear-gradient(#87ccef 0 42%, #70a651 42% 55%, #366f38 55%); box-shadow:0 42px 90px rgba(0,0,0,.26); border:8px solid rgba(255,255,255,.09); isolation:isolate; }
.sun { position:absolute; width:90px; height:90px; border-radius:50%; background:#ffe17b; top:62px; right:80px; box-shadow:0 0 60px #ffefaa; }
.cloud { position:absolute; width:120px; height:30px; border-radius:60px; background:rgba(255,255,255,.76); }
.cloud::before, .cloud::after { content:""; position:absolute; border-radius:50%; background:inherit; }
.cloud::before { width:46px; height:46px; left:24px; top:-21px; }
.cloud::after { width:58px; height:58px; right:18px; top:-31px; }
.cloud-a { top:94px; left:48px; transform:scale(.75); }
.cloud-b { top:154px; right:25px; transform:scale(.55); opacity:.55; }
.hills { position:absolute; left:-10%; width:120%; border-radius:50% 50% 0 0; }
.hill-back { height:220px; bottom:190px; background:#4c8748; transform:rotate(-3deg); }
.hill-front { height:240px; bottom:130px; background:#286636; transform:rotate(5deg); }
.grass-tall { position:absolute; inset:auto 0 0; height:225px; background: repeating-linear-gradient(78deg, #386d31 0 3px, #538b3e 3px 6px, #2c612b 6px 9px); clip-path:polygon(0 18%, 4% 3%, 7% 19%, 11% 0, 14% 24%, 17% 7%, 20% 25%, 23% 3%, 26% 18%, 30% 0, 33% 22%, 36% 5%, 40% 25%, 44% 1%, 48% 22%, 52% 5%, 55% 20%, 59% 0, 64% 23%, 68% 5%, 72% 21%, 76% 0, 81% 22%, 85% 4%, 89% 20%, 94% 1%, 100% 18%, 100% 100%, 0 100%); z-index:4; }
.cut-lane { position:absolute; width:58%; height:240px; background:linear-gradient(90deg,#62a24b,#83bc5e); bottom:-44px; left:15%; transform:perspective(420px) rotateX(55deg) rotateZ(-4deg); border-radius:50%; z-index:5; opacity:.9; }
.mower { position:absolute; width:255px; height:155px; right:40px; bottom:88px; z-index:7; filter:drop-shadow(0 18px 12px rgba(0,0,0,.3)); }
.mower-body { position:absolute; width:150px; height:65px; left:52px; bottom:35px; border-radius:18px 24px 12px 10px; background:linear-gradient(#e74231,#b91f17); }
.mower-hood { position:absolute; width:90px; height:52px; left:142px; bottom:44px; border-radius:12px 30px 10px 10px; background:#f4f2e9; border-bottom:10px solid #cf3426; }
.mower-seat { position:absolute; width:58px; height:58px; left:69px; bottom:94px; background:#17231d; border-radius:10px 18px 4px 4px; transform:skew(-8deg); }
.wheel { position:absolute; border-radius:50%; background:#111; border:8px solid #252525; box-shadow:inset 0 0 0 4px #666; }
.wheel-large { width:72px; height:72px; left:52px; bottom:7px; }
.wheel-small { width:50px; height:50px; right:8px; bottom:18px; }
.visual-badge { position:absolute; top:24px; left:24px; z-index:8; background:rgba(6,47,32,.86); backdrop-filter:blur(8px); padding:18px 22px; border-radius:18px; display:flex; flex-direction:column; text-transform:uppercase; line-height:1.05; font-weight:900; box-shadow:0 15px 35px rgba(0,0,0,.2); }
.visual-badge strong { color:var(--yellow); font-size:1.32rem; }
.hero-wave { position:absolute; inset:auto 0 -1px; height:70px; background:var(--cream); clip-path:polygon(0 72%, 12% 48%, 24% 66%, 39% 31%, 53% 61%, 68% 34%, 82% 58%, 100% 24%, 100% 100%, 0 100%); z-index:3; }

.trust-strip { background:var(--cream); padding:16px 0 30px; }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.trust-grid div { display:flex; align-items:center; justify-content:center; gap:10px; font-weight:800; font-size:.92rem; }
.check { display:grid; place-items:center; width:26px; height:26px; border-radius:50%; background:var(--yellow); color:var(--green-950); }

.section { padding:110px 0; }
.section-heading { max-width:760px; margin-bottom:48px; }
.section-heading h2, .about-copy h2, .price-copy h2, .contact-copy h2 { margin:0 0 18px; font-size:clamp(2.3rem,4vw,4rem); line-height:1.02; letter-spacing:-.05em; font-weight:950; }
.section-heading p, .about-copy > p, .price-copy > p, .contact-copy > p { color:var(--muted); font-size:1.05rem; max-width:700px; }
.cards { display:grid; gap:24px; }
.three-cols { grid-template-columns:repeat(3,1fr); }
.service-card { position:relative; background:white; border:1px solid var(--line); border-radius:var(--radius); padding:34px; min-height:350px; box-shadow:0 10px 40px rgba(6,47,32,.05); transition:transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform:translateY(-7px); box-shadow:var(--shadow); }
.service-card.featured { background:var(--green-800); color:white; border-color:var(--green-800); transform:translateY(-14px); }
.service-card.featured:hover { transform:translateY(-20px); }
.card-label { position:absolute; top:18px; right:18px; border-radius:999px; background:var(--yellow); color:var(--green-950); padding:5px 10px; font-weight:900; font-size:.68rem; text-transform:uppercase; letter-spacing:.08em; }
.icon-wrap { width:68px; height:68px; border-radius:20px; display:grid; place-items:center; background:var(--green-100); margin-bottom:26px; }
.icon-wrap svg { width:42px; height:42px; fill:none; stroke:var(--green-700); stroke-width:3; stroke-linecap:round; stroke-linejoin:round; }
.featured .icon-wrap { background:rgba(255,255,255,.12); }
.featured .icon-wrap svg { stroke:var(--yellow); }
.service-card h3 { font-size:1.45rem; margin:0 0 10px; }
.service-card p { color:var(--muted); margin-bottom:28px; }
.featured p { color:rgba(255,255,255,.72); }
.service-card a { font-weight:900; color:var(--green-700); }
.featured a { color:var(--yellow); }
.service-card a span { transition:margin .2s ease; }
.service-card a:hover span { margin-left:6px; }

.section-dark { position:relative; background:var(--green-950); color:white; overflow:hidden; }
.section-dark::before { content:""; position:absolute; width:520px; height:520px; border:80px solid rgba(255,255,255,.025); border-radius:50%; right:-190px; top:-180px; }
.split-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:2; }
.before-after { display:grid; grid-template-columns:1fr 1fr; gap:12px; height:450px; }
.ba { position:relative; border-radius:28px; overflow:hidden; box-shadow:0 30px 60px rgba(0,0,0,.22); }
.ba::before { content:""; position:absolute; inset:0; }
.ba-before { background:linear-gradient(#8bc5da 0 39%, #446c35 39% 50%, #5d7b2f 50%); }
.ba-before::before { background:repeating-linear-gradient(83deg, transparent 0 12px, rgba(255,227,103,.4) 12px 18px); clip-path:polygon(0 42%,7% 16%,11% 45%,18% 5%,22% 49%,31% 14%,37% 42%,44% 4%,50% 46%,60% 12%,66% 47%,74% 2%,81% 45%,90% 10%,100% 42%,100% 100%,0 100%); }
.ba-after { background:linear-gradient(#91cce2 0 39%, #4d7b3f 39% 50%, #60a448 50%); }
.ba-after::before { background:repeating-linear-gradient(170deg, rgba(255,255,255,.03) 0 20px, rgba(22,86,38,.12) 20px 40px); }
.ba span { position:absolute; left:16px; bottom:16px; padding:7px 12px; background:rgba(6,47,32,.82); border-radius:999px; font-size:.76rem; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.quote-card { width:86%; margin:-50px auto 0; position:relative; z-index:3; background:var(--yellow); color:var(--green-950); padding:24px 28px; border-radius:20px; box-shadow:0 20px 40px rgba(0,0,0,.2); display:flex; flex-direction:column; transform:rotate(-2deg); }
.quote-card strong { font-size:1.25rem; }
.quote-card span { font-size:.86rem; font-weight:700; }
.about-copy .eyebrow { margin-bottom:12px; }
.about-copy > p { color:rgba(255,255,255,.68); }
.benefit-list { margin-top:34px; display:grid; gap:18px; }
.benefit-list > div { display:grid; grid-template-columns:48px 1fr; gap:18px; align-items:start; padding-top:18px; border-top:1px solid rgba(255,255,255,.12); }
.benefit-list span { display:grid; place-items:center; width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.08); color:var(--yellow); font-weight:900; }
.benefit-list p { margin:0; color:rgba(255,255,255,.62); }
.benefit-list strong { display:block; color:white; margin-bottom:2px; }

.price-section { background:white; }
.price-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.price-note { margin-top:32px; border-left:5px solid var(--yellow); background:var(--green-100); padding:18px 20px; border-radius:0 14px 14px 0; display:flex; flex-direction:column; }
.price-note span { color:var(--muted); }
.calculator, .contact-form { background:var(--cream); border:1px solid var(--line); padding:34px; border-radius:var(--radius); box-shadow:var(--shadow); }
.form-row { display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.form-row label { font-size:.84rem; font-weight:850; color:var(--green-950); }
.form-row input, .form-row select, .form-row textarea { width:100%; border:1px solid #cad9cf; border-radius:12px; background:white; padding:13px 14px; outline:none; transition:border .2s ease, box-shadow .2s ease; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color:var(--green-600); box-shadow:0 0 0 4px rgba(31,122,75,.1); }
.estimate-box { background:var(--green-900); color:white; border-radius:18px; padding:24px; display:flex; flex-direction:column; margin:24px 0; }
.estimate-box span { font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.65); font-weight:800; }
.estimate-box strong { font-size:2.7rem; line-height:1.1; color:var(--yellow); margin:5px 0; }
.estimate-box small { color:rgba(255,255,255,.62); }

.process-section { background:var(--cream); }
.process-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.process-item { position:relative; padding:28px 28px 28px 74px; background:white; border:1px solid var(--line); border-radius:20px; }
.process-item > span { position:absolute; left:24px; top:26px; display:grid; place-items:center; width:34px; height:34px; border-radius:50%; background:var(--yellow); color:var(--green-950); font-weight:950; }
.process-item h3 { margin:0 0 6px; }
.process-item p { margin:0; color:var(--muted); }

.contact-section { padding:110px 0; background:linear-gradient(135deg,var(--green-800),var(--green-950)); color:white; }
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:start; }
.contact-copy > p { color:rgba(255,255,255,.7); }
.contact-options { display:grid; gap:12px; margin-top:34px; }
.contact-options a { display:flex; flex-direction:column; padding:18px 20px; border:1px solid rgba(255,255,255,.15); border-radius:16px; background:rgba(255,255,255,.06); }
.contact-options a:hover { background:rgba(255,255,255,.1); }
.contact-options span { color:var(--yellow); font-size:.76rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }
.contact-options strong { font-size:1.15rem; }
.contact-form { color:var(--ink); background:white; }
.two-fields { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.consent { display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:.8rem; margin:5px 0 18px; }
.consent input { margin-top:4px; accent-color:var(--green-700); }
.form-hint { margin:12px 0 0; color:var(--muted); font-size:.72rem; text-align:center; }

.site-footer { background:#031d14; color:white; padding:70px 0 20px; }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:44px; }
.footer-brand { margin-bottom:18px; }
.footer-grid p { color:rgba(255,255,255,.55); max-width:310px; }
.footer-grid > div { display:flex; flex-direction:column; align-items:flex-start; gap:8px; }
.footer-grid strong { margin-bottom:8px; color:var(--yellow); }
.footer-grid a, .footer-grid span { color:rgba(255,255,255,.68); font-size:.9rem; }
.footer-grid a:hover { color:white; }
.footer-bottom { margin-top:48px; padding-top:18px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; color:rgba(255,255,255,.45); font-size:.8rem; }
.floating-call { position:fixed; right:18px; bottom:18px; z-index:950; width:58px; height:58px; display:none; place-items:center; border-radius:50%; background:var(--yellow); color:var(--green-950); font-size:1.45rem; box-shadow:0 15px 35px rgba(0,0,0,.25); }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

.legal-page { min-height:100vh; padding:140px 0 80px; background:var(--cream); }
.legal-page h1 { font-size:clamp(2.6rem,6vw,4.8rem); line-height:1; margin-bottom:30px; }
.legal-card { background:white; border:1px solid var(--line); border-radius:24px; padding:36px; box-shadow:var(--shadow); max-width:850px; }
.legal-card h2 { margin-top:30px; }
.legal-card .placeholder { background:#fff4c5; border-left:4px solid var(--yellow); padding:12px 14px; }

@media (max-width: 980px) {
  .header-cta { display:none; }
  .nav-toggle { display:block; }
  .site-nav { position:fixed; inset:70px 18px auto; margin:0; padding:18px; background:rgba(6,47,32,.98); border:1px solid rgba(255,255,255,.12); border-radius:18px; flex-direction:column; align-items:stretch; transform:translateY(-20px); opacity:0; pointer-events:none; transition:.2s ease; }
  .site-nav.open { transform:translateY(0); opacity:1; pointer-events:auto; }
  .site-nav a { padding:10px 8px; }
  .hero { min-height:auto; padding-top:130px; }
  .hero-grid, .split-grid, .price-grid, .contact-grid { grid-template-columns:1fr; }
  .hero-grid { gap:48px; }
  .hero-visual { height:520px; }
  .three-cols { grid-template-columns:1fr 1fr; }
  .service-card.featured { transform:none; }
  .service-card.featured:hover { transform:translateY(-7px); }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .split-grid, .price-grid, .contact-grid { gap:48px; }
  .footer-grid { grid-template-columns:1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2; }
}

@media (max-width: 680px) {
  .container { width:min(100% - 28px, 1180px); }
  .site-header { height:70px; }
  .brand img, .site-header.scrolled .brand img { height:56px; }
  .hero { padding:112px 0 90px; }
  .hero h1 { font-size:clamp(3rem,15vw,4.5rem); }
  .hero-lead { font-size:1rem; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; }
  .hero-facts { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .hero-facts div:last-child { grid-column:1/-1; }
  .hero-visual { height:420px; border-radius:34px 34px 20px 20px; }
  .mower { transform:scale(.72); transform-origin:bottom right; right:12px; bottom:72px; }
  .visual-badge { top:15px; left:15px; padding:14px 16px; }
  .trust-grid, .three-cols, .process-grid, .footer-grid { grid-template-columns:1fr; }
  .trust-grid div { justify-content:flex-start; }
  .section { padding:78px 0; }
  .section-heading { margin-bottom:32px; }
  .service-card { min-height:auto; padding:26px; }
  .before-after { height:350px; }
  .quote-card { width:94%; }
  .calculator, .contact-form { padding:22px; }
  .two-fields { grid-template-columns:1fr; gap:0; }
  .footer-grid > div:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; gap:10px; }
  .floating-call { display:grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition-duration:.01ms !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; }
  .reveal { opacity:1; transform:none; }
}
