:root {
  /* Logo: white, leaf green, gray, charcoal, black */
  --green: #5eaf2a;
  --green-hot: #73c43a;
  --green-deep: #3f8a1c;
  --ink: #141414;
  --ink-2: #2a2a2a;
  --muted: #5c5c5c;
  --gray: #8a8a8a;
  --white: #ffffff;
  --paper: #f5f5f5;
  --paper-2: #ececec;
  --line: rgba(20, 20, 20, 0.12);
  --line-soft: rgba(20, 20, 20, 0.07);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --max: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(94, 175, 42, 0.08), transparent 42%),
    radial-gradient(ellipse at 0% 30%, rgba(20, 20, 20, 0.04), transparent 40%),
    var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--green); }
.visually-hidden, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 0.75rem; left: 0.75rem; z-index: 100;
  background: var(--green); color: var(--white); padding: 0.6rem 0.9rem; font-weight: 700;
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo {
  display: block;
  height: 5.6rem;
  width: auto;
}
.site-nav {
  display: flex; align-items: center; gap: 1.35rem;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
}
.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--green); }
.header-phone {
  text-transform: none;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 2.6rem; height: 2.6rem; border-radius: 0.35rem; cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block; width: 1.1rem; height: 2px; background: var(--ink); margin: 0 auto; position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0.2rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(94, 175, 42, 0.35);
}
.btn--primary:hover { background: var(--green-hot); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { border-color: var(--green-hot); color: var(--green-hot); }
.btn--nav {
  background: var(--green);
  color: var(--white);
  padding: 0.7rem 1.15rem;
  font-size: 0.82rem;
  box-shadow: 0 3px 10px rgba(94, 175, 42, 0.38);
}
.btn--nav:hover { color: var(--white); background: var(--green-hot); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero {
  position: relative;
  min-height: min(78vh, 44rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(115deg, rgba(14, 14, 14, 0.92) 10%, rgba(36, 36, 36, 0.72) 52%, rgba(94, 175, 42, 0.32) 100%),
    radial-gradient(ellipse at 75% 30%, rgba(115, 196, 58, 0.22), transparent 50%),
    image-set(
      url("../img/hero.webp?v=20260924") type("image/webp"),
      url("../img/hero.jpg?v=20260924") type("image/jpeg")
    ) center / cover no-repeat,
    linear-gradient(160deg, #2a2a2a, #141414 60%, #0a0a0a);
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.07; mix-blend-mode: soft-light;
}
@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 8rem) var(--pad) clamp(2.5rem, 6vh, 4rem);
  width: 100%;
}
.hero__brand {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-hot);
  margin: 0 0 0.65rem;
  animation: rise 0.8s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 0.92;
  margin: 0 0 0.65rem;
  max-width: 16ch;
  color: var(--white);
  animation: rise 0.9s ease 0.08s both;
}
.hero__tag {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-hot);
  animation: rise 0.95s ease 0.1s both;
}
.hero__lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0 0 1.5rem;
  animation: rise 1s ease 0.14s both;
}
.hero__lead strong { color: var(--green-hot); font-weight: 600; }
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: rise 1.05s ease 0.2s both;
}
.hero__meta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  animation: rise 1.1s ease 0.26s both;
}
.hero__meta span { color: var(--green-hot); font-weight: 600; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
}
.section--alt {
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.95), rgba(236, 236, 236, 0.9));
}
.section--feature {
  background:
    linear-gradient(160deg, #1c1c1c 0%, #141414 55%, #0f1a0c 100%);
  color: var(--white);
}
.section--feature .eyebrow { color: var(--green-hot); }
.section--feature .section__intro { color: rgba(255, 255, 255, 0.78); }
.section--feature .aftercare h3 { color: var(--white); }
.section--feature .aftercare p { color: rgba(255, 255, 255, 0.72); }
.section--feature .aftercare li { border-top-color: rgba(255, 255, 255, 0.14); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  color: var(--ink);
  scroll-margin-top: 6.5rem;
}
.section--feature h2 { color: var(--white); }
.page-commercial .section h2 { max-width: 24ch; }
.section__intro {
  max-width: 40rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: step;
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  counter-increment: step;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}
.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.steps--stack {
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}
.steps--stack h3 { margin-bottom: 0; }

.service-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-grid li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.service-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--ink);
}
.service-grid p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.service-grid a {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.service-grid--two,
.page-realtors .service-grid,
.page-commercial .service-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.audience-grid li {
  padding: 1.35rem 0 0.4rem;
  border-top: 1px solid var(--line);
}
.audience-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  color: var(--ink);
}
.audience-grid p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.audience-grid a {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
}

.aftercare {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: after;
}
.aftercare li {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  counter-increment: after;
}
.aftercare li::before {
  content: counter(after, decimal-leading-zero);
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}
.section--feature .aftercare li::before { color: var(--green-hot); }
.aftercare h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.aftercare p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.photo-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.photo-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
}
.review-slider { max-width: 40rem; min-height: 8rem; }
.review-slide {
  margin: 0;
  padding: 0;
}
.review-slide p {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  line-height: 1.45;
}
.review-slide footer {
  color: var(--muted);
  font-weight: 600;
}
.section-cta { margin-top: 1.75rem; }
.service-grid + .note { margin-top: 1.75rem; }
.promise-grid--stack { grid-template-columns: 1fr; }
.pricing-band .section__intro { margin-bottom: 0; }
.pricing-band .section-cta { margin-top: 1.25rem; }

.haul {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.haul ul {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 0.65rem;
}
.haul ul li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--ink);
}
.haul ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 0.45rem; height: 0.45rem;
  background: var(--green);
  border-radius: 1px;
}
.promise-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.promise-grid h3 {
  margin: 0 0 0.4rem;
  color: var(--green);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.promise-grid p { margin: 0; color: var(--muted); }

.city-line {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.7;
  color: var(--ink);
  max-width: 46rem;
  margin: 0 0 0.75rem;
}
.area-cloud {
  display: flex; flex-wrap: wrap; gap: 0.55rem 0.85rem;
}
.area-cloud a,
.area-cloud span {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 175, 42, 0.45);
  padding-bottom: 0.1rem;
  font-size: 1.05rem;
}
.area-cloud a:hover { color: var(--green); }

.cta-band {
  background:
    linear-gradient(125deg, rgba(94, 175, 42, 0.12), transparent 42%),
    linear-gradient(300deg, rgba(20, 20, 20, 0.06), transparent 40%),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.cta-band p { margin: 0; color: var(--muted); max-width: 34rem; }

.page-hero {
  padding: clamp(3rem, 8vw, 5rem) var(--pad) 1.5rem;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(94, 175, 42, 0.12), transparent 48%),
    radial-gradient(ellipse at 90% 20%, rgba(20, 20, 20, 0.05), transparent 40%),
    var(--paper);
}
.page-hero__inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.page-hero p { max-width: 38rem; color: var(--muted); margin: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.contact-card p { color: var(--muted); }
.contact-card dl { margin: 1.25rem 0 0; }
.contact-card dt {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1rem;
}
.contact-card dd { margin: 0.25rem 0 0; color: var(--ink); }
.contact-card dd a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(94, 175, 42, 0.45); }
.contact-card dd a:hover { color: var(--green); }

.quote-form {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.25rem;
}
.quote-form label {
  margin-top: 0.65rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  padding: 0.7rem 0.8rem;
}
.quote-form textarea { min-height: 8rem; resize: vertical; }
.quote-form input[type="file"] {
  padding: 0.55rem 0;
  border: 0;
  background: transparent;
}
.quote-form .btn { margin-top: 1rem; justify-self: start; }
.form-hint {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.alert {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--green);
  background: rgba(94, 175, 42, 0.1);
  color: var(--ink);
  font-size: 0.95rem;
  margin: 1rem 0 0;
}
.alert--ok {
  border-left-color: var(--green-deep);
  background: rgba(63, 138, 28, 0.1);
}

.note {
  border-left: 3px solid var(--green);
  padding: 0.85rem 1rem;
  background: rgba(94, 175, 42, 0.08);
  color: var(--ink);
  font-size: 0.95rem;
}
.city-line + .note { margin-top: 1.25rem; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #242424, var(--ink) 40%, #0a0a0a);
  color: var(--white);
  padding-top: 2.5rem;
}
.site-footer__logo {
  width: 7.25rem;
  height: auto;
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.35rem;
  margin-bottom: 0.85rem;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 2rem;
}
.site-footer__tag { color: rgba(255, 255, 255, 0.9); margin: 0.5rem 0; }
.site-footer__meta { color: rgba(255, 255, 255, 0.7); margin: 0; font-size: 0.92rem; }
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.footer-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-hot);
}
.site-footer__cols p { margin: 0 0 0.45rem; color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }
.site-footer__cols a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.site-footer__cols a:hover { color: var(--green-hot); }
.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem var(--pad);
}
.site-footer__legal p {
  max-width: var(--max);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .steps, .service-grid, .service-grid--two, .promise-grid, .haul, .contact-grid, .site-footer__inner,
  .audience-grid, .aftercare, .photo-grid, .page-realtors .service-grid, .page-commercial .service-grid--two {
    grid-template-columns: 1fr;
  }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .brand__logo { height: 4.4rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad) 1.25rem;
    flex-direction: column; align-items: flex-start;
  }
  .site-nav.is-open { display: flex; }
  .site-footer__cols { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero__media { transform: none; }
}
