/* ============================================================
   NEW SEASONS LAWN CARE BRAND STYLESHEET
   ------------------------------------------------------------
   Palette pulled directly from the logo. Edit these variables
   to retune the whole site.
   ============================================================ */
:root {
  /* Logo greens */
  --green-950: #142d1c;   /* darkest, for dark sections and footer */
  --green-900: #1E4A2E;   /* wordmark green, headings on cream */
  --green-700: #2C6B3F;   /* primary CTA green */
  --green-500: #4E9D5B;   /* mid leaf green */
  --teal:      #2E9E71;   /* teal leaf */
  --sage:      #7CB474;   /* the sage from LAWN CARE in the logo */
  --lime:      #A5C94F;   /* lime leaf, accents and highlights */

  /* Neutrals from the logo's cream field */
  --cream:     #F7F3EA;   /* page background */
  --cream-2:   #EFE9DC;   /* deeper cream for alt sections */
  --paper:     #FFFFFF;
  --ink:       #1C2B21;
  --ink-soft:  #5A6B5E;
  --line:      #E3DED0;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 14px rgba(20, 45, 28, .07);
  --shadow-lift: 0 16px 40px rgba(20, 45, 28, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base (mobile-first) ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
img { display: block; }
a { color: var(--green-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-900); }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 22px; }
section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

h1, h2 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; color: var(--green-900); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 14px; }
h3 { font-size: 1.08rem; font-weight: 700; line-height: 1.3; }
h1 em, h2 em { font-style: italic; color: var(--green-500); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700;
  color: var(--green-700); margin-bottom: 16px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--lime); }
.sub { color: var(--ink-soft); max-width: 620px; font-size: 1.05rem; }
.center { text-align: center; }
.center .sub { margin: 0 auto 40px; }
.center .kicker::after { content: ""; width: 26px; height: 2px; background: var(--lime); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  font-family: var(--font-body); cursor: pointer; border: none;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s;
}
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-900); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-lime { background: var(--lime); color: var(--green-950); }
.btn-lime:hover { background: #b4d65c; color: var(--green-950); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; color: var(--green-900); border: 2px solid var(--green-700); }
.btn-ghost:hover { background: rgba(44,107,63,.08); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-block { display: flex; width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--green-950); color: rgba(255,255,255,.85);
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; padding: 8px 16px; font-weight: 600;
}
.announce strong { color: var(--lime); font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,243,234,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo img { height: 46px; width: auto; }
.logo .wordmark { line-height: 1.05; }
.logo .wordmark b {
  display: block; font-weight: 800; font-size: 1.02rem; color: var(--green-900); letter-spacing: .02em;
}
.logo .wordmark span {
  display: block; font-size: .62rem; font-weight: 700; letter-spacing: .34em; color: var(--sage); text-transform: uppercase;
}
.nav-links { display: none; list-style: none; gap: 30px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .95rem; position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--lime); transition: width .25s var(--ease);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active:not(.btn)::after { width: 100%; }
.nav-links .btn { padding: 11px 24px; font-size: .9rem; }
.nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; background: none; border: none; cursor: pointer; color: var(--green-900); }
.nav-toggle svg { width: 26px; height: 26px; }
@media (min-width: 900px) { .nav-links { display: flex; } .nav-toggle { display: none; } }
.mobile-menu { display: none; background: var(--cream); border-top: 1px solid var(--line); padding: 10px 22px 22px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 2px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes leaf-drift {
  0%, 100% { transform: rotate(24deg) translateY(0); }
  50% { transform: rotate(27deg) translateY(-14px); }
}
@keyframes leaf-drift-alt {
  0%, 100% { transform: rotate(-142deg) translateY(0); }
  50% { transform: rotate(-146deg) translateY(12px); }
}
.hero { position: relative; overflow: hidden; padding: 76px 0 88px; }
.hero .kicker { animation: hero-rise .7s var(--ease) both; }
.hero h1 { animation: hero-rise .7s var(--ease) .12s both; }
.hero .sub { animation: hero-rise .7s var(--ease) .24s both; }
.hero .hero-ctas { animation: hero-rise .7s var(--ease) .36s both; }
.hero .hero-proof { animation: hero-rise .7s var(--ease) .5s both; }
.hero-leaf.tl { animation: leaf-drift 9s ease-in-out infinite; }
.hero-leaf.br { animation: leaf-drift-alt 11s ease-in-out infinite; }
.hero .container { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.hero h1 { margin-bottom: 20px; }
.hero .sub { margin: 0 auto 34px; font-size: clamp(1.02rem, 2vw, 1.18rem); }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; align-items: center; }
@media (min-width: 620px) { .hero-ctas { flex-direction: row; justify-content: center; } .hero { padding: 108px 0 124px; } }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 38px; color: var(--ink-soft); font-size: .88rem; font-weight: 600; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { width: 16px; height: 16px; color: var(--green-500); }
.hero-leaf { position: absolute; z-index: 1; opacity: .5; pointer-events: none; }
.hero-leaf.tl { top: -40px; left: -50px; width: 240px; transform: rotate(24deg); }
.hero-leaf.br { bottom: -60px; right: -46px; width: 300px; transform: rotate(-142deg); opacity: .35; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--green-950); color: #fff; padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 16px; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--lime); }
.stat span { font-size: .82rem; opacity: .82; letter-spacing: .04em; }

/* ---------- Estimator ---------- */
.estimator-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.estimator-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 22px; max-width: 660px; margin: 0 auto; box-shadow: var(--shadow-lift);
}
@media (min-width: 640px) { .estimator-card { padding: 44px; } }
.est-steps { display: flex; gap: 8px; margin-bottom: 28px; }
.est-steps span {
  flex: 1; text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft); padding-top: 10px; position: relative;
}
.est-steps span::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 2px; background: var(--line); }
.est-steps span.done::before { background: var(--lime); }

.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
@media (min-width: 560px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 7px; color: var(--green-900); }
.hint { font-weight: 400; color: var(--ink-soft); font-size: .8rem; }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; padding: 14px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(78,157,91,.14);
}
textarea { resize: vertical; min-height: 130px; }
input[type="file"] { font-size: .9rem; color: var(--ink-soft); }

.choice-group { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
@media (min-width: 560px) {
  .choice-group.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .choice-group.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.choice-group input[type="radio"] { position: absolute; opacity: 0; }
.choice-group label.choice {
  border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-sm);
  padding: 13px 10px; text-align: center; cursor: pointer; font-weight: 700; font-size: .9rem;
  margin: 0; color: var(--ink); transition: all .2s var(--ease);
}
.choice small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .74rem; margin-top: 2px; }
.choice-group input[type="radio"]:checked + label.choice {
  border-color: var(--green-700); background: var(--green-700); color: #fff;
  transform: translateY(-1px); box-shadow: var(--shadow);
}
.choice-group input[type="radio"]:checked + label.choice small { color: rgba(255,255,255,.8); }
.choice-group input[type="radio"]:focus-visible + label.choice { box-shadow: 0 0 0 4px rgba(78,157,91,.3); }

/* Location picker (estimator step 1) */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 640px) { .loc-grid { grid-template-columns: repeat(4, 1fr); } }
.loc-btn {
  border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-sm);
  padding: 14px 10px; text-align: center; cursor: pointer; font-family: var(--font-body);
  transition: all .2s var(--ease);
}
.loc-btn b { display: block; font-size: .92rem; color: var(--ink); font-weight: 700; }
.loc-btn small { display: block; font-size: .74rem; color: var(--ink-soft); margin-top: 3px; font-weight: 500; }
.loc-btn:hover { border-color: var(--green-500); transform: translateY(-2px); box-shadow: var(--shadow); }
.loc-btn.selected { border-color: var(--green-700); background: var(--green-700); }
.loc-btn.selected b, .loc-btn.selected small { color: #fff; }
.loc-btn.selected small { color: rgba(255,255,255,.8); }
.loc-btn.outside b { color: var(--ink-soft); }
.loc-btn.outside.selected { background: var(--ink-soft); border-color: var(--ink-soft); }
.loc-btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(78,157,91,.3); }

.outside-msg {
  display: none; background: #FBF7EE; border: 1.5px solid var(--lime);
  border-radius: var(--radius-sm); padding: 18px 20px; margin-top: 16px;
  color: var(--ink); font-size: .95rem;
}
.outside-msg b { color: var(--green-900); }

.est-part { display: none; }
.est-part.open { display: block; }

/* Add-on checkboxes */
.addon-grid { display: grid; gap: 10px; }
@media (min-width: 640px) { .addon-grid { grid-template-columns: 1fr 1fr; } }
.addon {
  display: flex; align-items: center; gap: 11px; flex-wrap: wrap;
  border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-sm);
  padding: 12px 14px; cursor: pointer; margin: 0; font-weight: 600; font-size: .9rem;
  transition: all .2s var(--ease);
}
.addon:hover { border-color: var(--green-500); }
.addon.checked { border-color: var(--green-700); background: rgba(165,201,79,.12); }
.addon input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--green-700); flex: none; margin: 0;
}
.addon .addon-name { color: var(--ink); }
.addon .addon-price { margin-left: auto; font-weight: 800; color: var(--green-700); font-size: .88rem; white-space: nowrap; }
.addon .addon-tbd {
  flex-basis: 100%; font-weight: 500; color: var(--ink-soft); font-size: .74rem;
  padding-left: 29px; margin-top: -4px;
}

/* Final estimate summary */
.summary {
  text-align: left; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 6px 18px; margin: 18px 0 14px;
}
.summary-row {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .92rem;
}
.summary-row span:first-child { color: var(--ink-soft); font-weight: 600; flex: none; }
.summary-row span:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.summary-row:last-child { border-bottom: none; }
.summary-row.total { font-size: 1.05rem; }
.summary-row.total span { color: var(--green-900); font-weight: 800; }
.custom-msg { color: var(--ink); font-size: .97rem; max-width: 420px; margin: 10px auto 0; }
.landscaping-note { color: var(--green-700); font-weight: 700; font-size: .92rem; margin-top: 6px; }
.disclaimer { color: var(--ink-soft); font-size: .78rem; margin-top: 14px; line-height: 1.55; }

/* Interactive service-area map (Leaflet) */
.map-hint { margin-top: 24px; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--lime); }
.map-wrap {
  border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(165,201,79,.35);
  margin-top: 14px; background: rgba(255,255,255,.03);
  position: relative; z-index: 0; /* keep Leaflet layers under the sticky header */
}
#service-map { width: 100%; height: 460px; }
@media (max-width: 640px) { #service-map { height: 360px; } }
.map-city-label {
  background: var(--green-950); color: #fff; border: 1px solid var(--lime);
  border-radius: 8px; padding: 3px 9px; font-family: var(--font-body);
  font-weight: 700; font-size: .74rem; box-shadow: 0 2px 8px rgba(0,0,0,.25);
  white-space: nowrap;
}
.map-city-label small { display: block; font-weight: 600; color: var(--lime); font-size: .68rem; }
.map-city-label::before { display: none; }
.map-fallback {
  display: grid; place-items: center; height: 100%; padding: 30px;
  color: rgba(255,255,255,.7); text-align: center; font-size: .95rem;
}

/* Service card CTA link */
.card .card-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-weight: 700; font-size: .88rem; color: var(--green-700);
}
.card .card-cta .arrow { transition: transform .2s var(--ease); }
.card:hover .card-cta .arrow { transform: translateX(4px); }

.estimate-result { display: none; text-align: center; padding: 18px 0 8px; }
.estimate-result.show { display: block; }
.estimate-price { font-family: var(--font-display); font-size: 3.2rem; font-weight: 600; color: var(--green-700); line-height: 1; }
.estimate-price small { display: block; font-size: .95rem; font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); margin-top: 6px; }
.success-banner .estimate-price { margin: 10px 0 4px; }
.estimate-note { color: var(--ink-soft); font-size: .9rem; max-width: 400px; margin: 12px auto 0; }
.success-banner {
  background: #fff; border: 2px solid var(--green-500); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
}
.success-banner .badge {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--lime); display: grid; place-items: center; color: var(--green-950);
}
.success-banner .badge svg { width: 26px; height: 26px; }
.success-banner h3 { color: var(--green-900); font-size: 1.2rem; margin-bottom: 8px; }
.success-banner p { color: var(--ink-soft); font-size: .95rem; }
.error-msg { color: #B3261E; font-size: .85rem; margin-top: 6px; display: none; }
input.invalid, select.invalid, textarea.invalid { border-color: #B3261E; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 22px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--lime));
  opacity: 0; transition: opacity .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--cream);
  display: grid; place-items: center; margin-bottom: 16px; color: var(--green-700);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; color: var(--green-900); }
.card p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Compare table ---------- */
.compare { background: var(--cream-2); }
.compare-table {
  width: 100%; max-width: 780px; margin: 0 auto; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift);
  font-size: .92rem;
}
.compare-table th, .compare-table td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--line); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--green-900); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.compare-table thead th.us { background: var(--green-700); color: #fff; }
.compare-table td.us { background: rgba(165,201,79,.14); font-weight: 700; color: var(--green-700); }
.compare-table .no { color: #b0aa9a; }
@media (max-width: 560px) { .compare-table { font-size: .8rem; } .compare-table th, .compare-table td { padding: 12px 8px; } }

/* ---------- How it works ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 74px; margin-bottom: 34px; }
.step:last-child { margin-bottom: 0; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -4px;
  font-family: var(--font-display); font-size: 2.1rem; font-style: italic; color: var(--lime); font-weight: 600;
}
.step h3 { color: var(--green-900); margin-bottom: 4px; }
.step p { color: var(--ink-soft); font-size: .95rem; max-width: 520px; }
@media (min-width: 860px) {
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
  .step { padding-left: 0; padding-top: 58px; margin-bottom: 0; }
  .step::before { top: 0; }
}

/* ---------- Reviews ---------- */
.review-card { background: var(--paper); }
.stars { color: var(--lime); letter-spacing: 3px; margin-bottom: 12px; font-size: 1.05rem; }
.review-card blockquote { font-size: .97rem; color: var(--ink); font-style: italic; }
.review-card .who-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-card .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--green-500), var(--green-900));
  color: #fff; font-weight: 800; font-size: .85rem; display: grid; place-items: center;
  letter-spacing: .04em;
}
.review-card .who { font-weight: 700; font-size: .88rem; color: var(--green-900); }
.review-card .who small { color: var(--ink-soft); font-weight: 500; display: block; font-size: .8rem; }

/* ---------- Scroll progress line ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--green-700), var(--lime));
  z-index: 90; pointer-events: none;
}

/* ---------- Service area ---------- */
.area-section { background: var(--green-950); color: #fff; position: relative; overflow: hidden; }
.area-section h2 { color: #fff; }
.area-section .kicker { color: var(--lime); }
.area-section .sub { color: rgba(255,255,255,.78); }
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.area-chips span {
  background: rgba(255,255,255,.07); border: 1px solid rgba(165,201,79,.4);
  padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: background .2s, transform .2s var(--ease);
}
.area-chips span:hover { background: rgba(165,201,79,.16); transform: translateY(-2px); }
.area-note { font-size: .9rem; margin-top: 26px; color: rgba(255,255,255,.65); }
.area-note a { color: var(--lime); text-decoration: underline; }
.area-leaf { position: absolute; right: -70px; top: -50px; width: 280px; opacity: .1; transform: rotate(160deg); pointer-events: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0; margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  list-style: none; cursor: pointer; font-weight: 700; color: var(--green-900);
  padding: 18px 52px 18px 20px; position: relative; font-size: .98rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.5rem; color: var(--green-500); transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 20px 18px; color: var(--ink-soft); font-size: .93rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green-900), var(--green-700)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band .sub { color: rgba(255,255,255,.85); margin: 0 auto 30px; }
.cta-band .hero-ctas { margin-top: 0; }
.cta-leaf { position: absolute; left: -60px; bottom: -70px; width: 260px; opacity: .12; transform: rotate(40deg); pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: rgba(255,255,255,.72); padding: 56px 0 30px; font-size: .92rem; }
.footer-grid { display: grid; gap: 36px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr; } }
.site-footer .logo .wordmark b { color: #fff; }
.site-footer .logo .wordmark span { color: var(--sage); }
.site-footer p { margin-top: 14px; max-width: 380px; }
.site-footer h4 { color: var(--lime); margin-bottom: 14px; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; }
.site-footer a { color: rgba(255,255,255,.72); display: block; padding: 5px 0; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; text-align: center; font-size: .78rem; opacity: .6; }

/* ---------- Inner page hero ---------- */
.page-hero { padding: 64px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-hero .sub { margin: 14px auto 0; }
.page-hero .cta-note { margin-top: 18px; font-size: .95rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--green-950); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; box-shadow: 0 -6px 24px rgba(20,45,28,.25);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: .92rem; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
body.has-sticky-cta { padding-bottom: 76px; }
@media (min-width: 900px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
/* Icon micro-interaction */
.card .icon svg { transition: transform .3s var(--ease); }
.card:hover .icon svg { transform: rotate(-8deg) scale(1.12); }

/* Inline notes (landscaping etc.) */
.inline-note {
  margin-top: 10px; background: rgba(165,201,79,.14); border: 1.5px solid var(--lime);
  border-radius: var(--radius-sm); padding: 12px 15px; font-size: .86rem; color: var(--ink);
  animation: hero-rise .4s var(--ease) both;
}
.inline-note b { color: var(--green-900); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .area-chips span { transition: none; }
  .hero .kicker, .hero h1, .hero .sub, .hero .hero-ctas, .hero .hero-proof { animation: none; }
  .hero-leaf.tl, .hero-leaf.br { animation: none; }
  .inline-note { animation: none; }
}

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal .updated { font-size: .82rem; color: var(--ink-soft); margin-bottom: 28px; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--ink-soft); font-size: .95rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--ink); }

/* Footer legal links */
.footer-legal { display: flex; gap: 8px 22px; flex-wrap: wrap; justify-content: center; margin-bottom: 10px; }
.footer-legal a { display: inline; padding: 0; font-size: .82rem; }

/* ---------- Spacing & mobile consistency ---------- */
.section-tight { padding-top: 36px; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 640px) {
  section { padding: 52px 0; }
  .page-hero { padding: 48px 0 44px; }
  .announce { font-size: .68rem; line-height: 1.6; padding: 8px 14px; }
  .estimator-card { padding: 24px 16px; }
  .container { padding: 0 18px; }
  .grid { gap: 16px; }
  .footer-grid { gap: 28px; }
}

/* ---------- Utilities ---------- */
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 26px; } .mt-4 { margin-top: 40px; }
