/* ==========================================================================
   LIMB-IT TREE CO — main.css
   Editorial, considered, deliberately not generic.
   Palette: forest green #006732 · black · cream
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --green: #006732;
  --green-dark: #00471f;
  --green-deep: #002e14;
  --green-mist: #e6efe8;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --slate: #4b4f4d;
  --paper: #f6f3ec;
  --paper-warm: #efeadd;
  --line: #d8d3c5;
  --line-soft: #e8e3d4;
  --white: #ffffff;
  --gold: #f5b400;

  --shadow-sm: 0 1px 2px rgba(10,10,10,.06), 0 4px 12px rgba(10,10,10,.04);
  --shadow-md: 0 4px 14px rgba(10,10,10,.07), 0 24px 48px -16px rgba(10,10,10,.12);
  --shadow-lg: 0 18px 40px -10px rgba(0,71,31,.18), 0 40px 80px -20px rgba(10,10,10,.18);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.25rem);

  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-in: cubic-bezier(.6, 0, .8, .2);
  --ease-inout: cubic-bezier(.65, 0, .35, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, dialog { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font: inherit; color: inherit; }
dialog { border: 0; padding: 0; background: transparent; }
dialog::backdrop { background: rgba(0,15,7,.55); backdrop-filter: blur(6px); }

/* ---------- base ---------- */
html, body { background: var(--paper); }
body {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--gutter);
  margin-inline: auto;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--green); color: #fff; padding: .75rem 1rem; border-radius: 6px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

::selection { background: var(--green); color: #fff; }

/* ---------- type ---------- */
.h2, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw + .5rem, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 56;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: "";
  width: 1.5rem; height: 2px;
  background: currentColor;
}
.eyebrow--light { color: rgba(255,255,255,.85); }
.eyebrow--light::before { background: currentColor; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  gap: .8rem;
  justify-items: center;
}
.section-head--left { text-align: left; justify-items: start; margin-inline: 0; }
.section-lede {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 60ch;
  margin-top: .35rem;
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--green);
  --fg: #fff;
  --bd: var(--green);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.25rem;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bd);
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: -.005em;
  font-size: .98rem;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(0,71,31,.45); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.btn--lg { padding: 1.05rem 1.5rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary { --bg: var(--green); --fg: #fff; --bd: var(--green); }
.btn--primary:hover { --bg: var(--green-dark); --bd: var(--green-dark); }

.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: rgba(10,10,10,.18); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }

.btn--inverse { --bg: var(--paper); --fg: var(--ink); --bd: var(--paper); }
.btn--inverse:hover { --bg: #fff; --bd: #fff; }

.btn--ghost-inverse { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.4); }
.btn--ghost-inverse:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: .85rem 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(10,10,10,.07);
  transition: box-shadow .35s var(--ease-out), padding .35s var(--ease-out);

  --nav-fg: var(--ink);
  --nav-fg-soft: var(--ink-2);
  --nav-line: var(--line-soft);
  --nav-burger: var(--ink);
}
.nav[data-state="scrolled"] {
  box-shadow: 0 2px 16px rgba(10,10,10,.1);
  padding: .5rem 0;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--gutter);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
  transition: opacity .2s var(--ease-out);
}
.brand:hover { opacity: .82; }
.brand__mark {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 96;
  color: var(--ink);
}
.brand__limb { color: var(--green); }
.brand__it { color: var(--ink); }
.brand__leaf {
  width: 18px; height: 18px;
  margin: 0 1px 0 1px;
  transform: translateY(-2px);
}
.brand__sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .56rem;
  letter-spacing: .42em;
  color: var(--ink);
  padding-left: 2px;
}

.nav__links {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  font-weight: 500;
  font-size: .95rem;
}
.nav__links a {
  position: relative;
  padding: .4rem 0;
  color: var(--nav-fg-soft);
  transition: color .3s var(--ease-out);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover { color: var(--green); }
.nav__links a::after { background: var(--green); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: flex; align-items: center; gap: .85rem;
}
.nav__phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .95rem;
  color: var(--nav-fg);
  padding: .5rem .25rem;
  transition: color .3s var(--ease-out);
}
.nav__phone svg { width: 1.1em; height: 1.1em; color: var(--green); transition: color .3s var(--ease-out); }
.nav__phone:hover { color: var(--green); }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 12px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  background: transparent;
}
.nav__burger span {
  display: block; width: 20px; height: 2px; background: var(--nav-burger); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s, width .3s, background .3s var(--ease-out);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 49;
  padding: 6rem 1.5rem 2rem;
  transform: translateY(-100%);
  transition: transform .4s var(--ease-out);
  visibility: hidden;
}
.mobile-nav[data-open="true"] { transform: translateY(0); visibility: visible; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav__call { color: var(--green) !important; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(7rem, 12vh, 9rem) 0 clamp(3rem, 6vh, 5rem);
  overflow: hidden;
  color: #f3efe6;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(at 30% 40%, rgba(0,46,20,.45) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,.7) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .22;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 900px;
  padding-inline: 0;
  display: grid;
  gap: 1.5rem;
  margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  margin-right: var(--gutter);
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: .55rem .9rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  width: max-content;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 999px; background: #6cd07e;
  box-shadow: 0 0 0 3px rgba(108,208,126,.25);
  animation: pulse 2s var(--ease-inout) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(108,208,126,.25); }
  50% { box-shadow: 0 0 0 7px rgba(108,208,126,.0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 96;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.035em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__title-line { display: block; }
.hero__title-accent {
  display: block;
  margin-left: -0.10em;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, #b8e6c2 0%, #6cd07e 50%, #b8e6c2 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 60ch;
  margin-top: .4rem;
}

.hero__reviews { margin-top: 1rem; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.6);
}
.reviews-badge__g { width: 28px; height: 28px; flex: 0 0 28px; }
.reviews-badge__body { display: grid; gap: 2px; }
.reviews-badge__rating { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
.reviews-badge__stars { margin-left: -9px; }
.reviews-badge__stars svg { width: 96px; height: 18px; }
.reviews-badge__count { font-size: .8rem; color: var(--slate); }

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-top: 1.2rem;
}
.hero__ctas .btn--ghost { --fg: #fff; --bd: rgba(255,255,255,.45); background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.hero__ctas .btn--ghost:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }

.offer {
  margin-top: 1.4rem;
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .8rem 1rem .8rem .8rem;
  background: rgba(0,71,31,.55);
  border: 1px solid rgba(108,208,126,.4);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  max-width: max-content;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.12) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: offerShine 5s var(--ease-inout) 1.5s infinite;
}
@keyframes offerShine { to { transform: translateX(100%); } }
.offer__tag {
  background: var(--gold); color: var(--ink);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .55rem; border-radius: 8px;
  white-space: nowrap;
}
.offer__copy { color: #fff; font-size: .95rem; }
.offer__copy strong { font-weight: 600; }
.offer__note { color: rgba(255,255,255,.7); font-size: .85rem; }

.hero__scroll {
  position: absolute; bottom: 9rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  z-index: 3;
  padding: .55rem .9rem .55rem 1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out), background .2s var(--ease-out), transform .2s var(--ease-out);
}
.hero__scroll:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(0,0,0,.35); transform: translateX(-50%) translateY(-2px); }
.hero__scroll svg { width: .95rem; height: .95rem; animation: scrollHint 1.8s var(--ease-inout) infinite; }
@keyframes scrollHint { 0%,100%{transform:translateY(0);} 50%{transform:translateY(4px);} }
@media (max-width: 600px) {
  .hero__scroll { display: none; }
}

/* ==========================================================================
   HOW WE WORK
   ========================================================================== */
.how {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--paper);
  position: relative;
}
.how::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 56px; left: 12%; right: 12%;
  height: 1.5px;
  background-image: linear-gradient(90deg, var(--green) 50%, transparent 50%);
  background-size: 10px 1.5px;
  background-repeat: repeat-x;
  opacity: .35;
  z-index: 0;
}
.step {
  position: relative;
  padding: 0 1.25rem;
  z-index: 1;
}
.step + .step { border-left: 1px solid var(--line-soft); }
.step__num {
  width: 112px; height: 112px;
  display: grid; place-items: center;
  margin: 0 auto 1.25rem;
  position: relative;
}
.step__num span {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 96;
  font-size: 4.5rem;
  color: rgba(0,71,31,.07);
  letter-spacing: -.04em;
  line-height: 1;
}
.step__icon {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--green);
}
.step__icon svg { width: 44px; height: 44px; }
.step__title {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: .55rem;
}
.step__copy {
  text-align: center;
  color: var(--slate);
  font-size: .95rem;
}
.how__cta { display: flex; justify-content: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(at 80% 0%, rgba(0,71,31,.05) 0%, transparent 50%),
    var(--paper-warm);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.service-card::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,71,31,.2);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--green-mist);
  border-radius: 16px;
  color: var(--green);
  transition: transform .4s var(--ease-out), background .25s var(--ease-out);
}
.service-card:hover .service-card__icon {
  transform: rotate(-6deg) scale(1.05);
  background: var(--green);
  color: #fff;
}
.service-card__icon svg { width: 36px; height: 36px; }

.service-card__title {
  font-size: 1.4rem;
  letter-spacing: -.015em;
}
.service-card__copy {
  color: var(--slate);
  flex-grow: 1;
  font-size: .98rem;
}
.service-card__cta {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--green);
  font-weight: 600;
  font-size: .95rem;
  padding: .25rem 0;
  align-self: flex-start;
  transition: gap .25s var(--ease-out);
}
.service-card__cta:hover { gap: .7rem; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto clamp(240px, 26vw, 400px) clamp(120px, 13vw, 200px);
  gap: 1rem;
}
.about__owner-intro { grid-column: 1 / 3; grid-row: 1; }
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about__photo--portrait { grid-column: 1 / 3; grid-row: 2; }
.about__photo--small    { grid-column: 1 / 2; grid-row: 3; }
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.about__photo:hover img { transform: scale(1.04); }

.about__sticker {
  grid-column: 2 / 3; grid-row: 3;
  display: grid; place-items: center;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__sticker::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1.5px dashed rgba(255,255,255,.35);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

.about__copy { display: grid; gap: 1rem; }
.about__copy p { color: var(--slate); font-size: 1.05rem; max-width: 55ch; }

/* Owner personal intro card */
.about__owner-intro {
  background: rgba(0,103,50,.05);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
}
.about__owner-words {
  font-style: italic;
  font-size: .97rem;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 .9rem;
  max-width: none;
}
.about__owner-sig {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.about__owner-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.about__owner-sig strong { display: block; font-size: .92rem; color: var(--ink); }
.about__owner-sig span   { font-size: .8rem; color: var(--slate); }

.trust-list {
  display: grid; gap: 1rem;
  margin-top: .75rem;
}
.trust-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: .8rem;
  align-items: start;
}
.trust-list svg {
  width: 22px; height: 22px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 4px;
  margin-top: 3px;
}
.trust-list strong { display: block; font-size: 1.05rem; margin-bottom: 2px; letter-spacing: -.01em; }
.trust-list span { color: var(--slate); font-size: .95rem; }

.about__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.25rem; }

/* ==========================================================================
   AREAS
   ========================================================================== */
.areas {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--green-deep);
  color: #f3efe6;
  position: relative;
  overflow: hidden;
}
.areas::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(at 0% 0%, rgba(0,103,50,.55) 0%, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0,103,50,.3) 0%, transparent 40%);
  pointer-events: none;
}
.areas .eyebrow { color: #6cd07e; }
.areas .eyebrow::before { background: currentColor; }

.areas__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.areas__copy h2 { color: #fff; }
.areas__copy p { color: rgba(255,255,255,.78); max-width: 50ch; margin-top: .6rem; }

.areas__list {
  display: grid; gap: .9rem;
  margin: 1.75rem 0;
}
.areas__list li {
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.areas__list li:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(108,208,126,.35);
  transform: translateX(4px);
}
.areas__list strong { display: block; font-size: 1.08rem; color: #fff; margin-bottom: 2px; letter-spacing: -.01em; }
.areas__list span { color: rgba(255,255,255,.6); font-size: .9rem; }

.areas__map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(108,208,126,.25);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4;
  background: #102b1c;
}
.areas__map { width: 100%; height: 100%; }
.areas__map-legend {
  position: absolute; left: 1rem; bottom: 1rem;
  display: flex; flex-direction: column; gap: .35rem;
  background: rgba(0,30,15,.78);
  border: 1px solid rgba(108,208,126,.25);
  padding: .6rem .8rem; border-radius: 10px;
  font-size: .8rem;
  backdrop-filter: blur(6px);
  z-index: 500;
}
.areas__map-legend .dot { width: 12px; height: 12px; border-radius: 999px; display: inline-block; margin-right: .4rem; vertical-align: middle; }
.dot--primary { background: var(--gold); box-shadow: 0 0 0 3px rgba(245,180,0,.25); }
.dot--ring { background: transparent; border: 2px solid #6cd07e; }

/* Leaflet style tweaks */
.leaflet-container { background: #102b1c; font-family: var(--font-body); }
.leaflet-tile {
  filter: grayscale(.85) brightness(.55) contrast(1.1) sepia(.3) hue-rotate(70deg) saturate(1.2);
}
.leaflet-control-attribution {
  background: rgba(0,30,15,.7) !important;
  color: rgba(255,255,255,.55) !important;
  font-size: .65rem !important;
}
.leaflet-control-attribution a { color: rgba(108,208,126,.8) !important; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--paper);
}
.faq__grid {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.faq__list { display: grid; gap: .85rem; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.faq__item[open] { border-color: rgba(0,71,31,.25); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 1.8px; background: var(--green);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease-out);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }

.faq__body {
  padding: 0 1.3rem 1.25rem;
  color: var(--slate);
  font-size: 1rem;
  animation: faqOpen .35s var(--ease-out);
}
.faq__body a { color: var(--green); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: var(--paper);
}
.final-cta__card {
  background:
    radial-gradient(at 80% -20%, rgba(108,208,126,.3) 0%, transparent 50%),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.final-cta__card::before {
  content: "";
  position: absolute; right: -100px; bottom: -100px;
  width: 320px; height: 320px;
  border: 1.5px solid rgba(108,208,126,.18);
  border-radius: 50%;
}
.final-cta__card::after {
  content: "";
  position: absolute; right: -160px; bottom: -160px;
  width: 440px; height: 440px;
  border: 1.5px solid rgba(108,208,126,.1);
  border-radius: 50%;
}
.final-cta__card h2 { color: #fff; margin-top: .35rem; }
.final-cta__card p { color: rgba(255,255,255,.78); max-width: 50ch; margin-top: .5rem; }

.final-cta__buttons { display: flex; flex-direction: column; gap: .65rem; min-width: 230px; position: relative; z-index: 1; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 1.75rem 0;
  font-size: .85rem;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__nav {
  display: flex; gap: .65rem; align-items: center;
}
.footer__nav a {
  color: rgba(255,255,255,.7);
  transition: color .2s var(--ease-out);
}
.footer__nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   QUOTE MODAL
   ========================================================================== */
.quote-modal {
  width: min(560px, calc(100vw - 2rem));
  max-height: calc(100svh - 2rem);
  border-radius: var(--radius-lg);
  background: var(--paper);
  margin: auto;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
}
.quote-modal[open] { animation: modalIn .35s var(--ease-out); }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.quote-modal__inner {
  padding: 2.25rem 2rem 2rem;
  display: grid; gap: 1rem;
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
}
.quote-modal__close {
  position: absolute; top: .85rem; right: .85rem;
  width: 38px; height: 38px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(10,10,10,.06);
  transition: background .2s var(--ease-out), transform .2s var(--ease-out);
  z-index: 2;
}
.quote-modal__close:hover { background: rgba(10,10,10,.12); transform: rotate(90deg); }
.quote-modal__close svg { width: 18px; height: 18px; }
.quote-modal__title { font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -.02em; }
.quote-modal__lede { color: var(--slate); }

.quote-form { display: grid; gap: 1rem; margin-top: .5rem; }
.hp-field { position: absolute; left: -10000px; }
.field { display: grid; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.field label {
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
  letter-spacing: -.005em;
}
.field__opt { color: var(--slate); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem .9rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: .98rem;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,103,50,.12);
}
.field textarea { resize: vertical; font-family: inherit; }
.quote-form__fine { font-size: .8rem; color: var(--slate); text-align: center; }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta .btn--primary { display: none; }
  .nav__burger { display: inline-flex; }

  .hero__inner { margin-left: var(--gutter); }

  .steps { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .steps::before { display: none; }
  .step + .step { border-left: 0; }
  .step:nth-child(odd) { border-right: 1px solid var(--line-soft); padding-right: 1.25rem; }
  .step:nth-child(even) { padding-left: 1.25rem; }

  .service-grid { grid-template-columns: 1fr 1fr; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; }

  .areas__grid { grid-template-columns: 1fr; }
  .areas__map-wrap { aspect-ratio: 4/3; }

  .faq__grid { grid-template-columns: 1fr; }

  .final-cta__card { grid-template-columns: 1fr; }
  .final-cta__buttons { min-width: 0; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav__inner { gap: .75rem; }
  .nav__phone span { display: none; }
  .nav__phone { padding: .5rem; border: 1.5px solid var(--green); border-radius: 999px; color: var(--green); }
  .nav__phone svg { width: 1.15em; height: 1.15em; }
  .nav__cta { gap: .45rem; }
  .nav__cta .btn--primary { display: inline-flex; font-size: .76rem; padding: .45rem .7rem; white-space: nowrap; }

  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 4rem; }
  .hero__eyebrow { font-size: .5rem; letter-spacing: .04em; padding: .38rem .6rem; max-width: calc(100vw - 2.5rem); }
  .hero__title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .offer { max-width: 100%; }

  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .step:nth-child(odd), .step:nth-child(even) { border: 0; padding: 0; }

  .service-grid { grid-template-columns: 1fr; }

  .field-row { grid-template-columns: 1fr; }

  .quote-modal__inner { padding: 1.75rem 1.25rem 1.25rem; }

  .footer__inner { justify-content: center; text-align: center; }
}

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