:root {
  --green-950: #021407;
  --green-900: #003c0c;
  --green-800: #064716;
  --green-700: #00661e;
  --green-600: #00a934;
  --green-500: #32d74b;
  --cream: #fbf8ee;
  --sand: #f2eddf;
  --ink: #151922;
  --muted: #5d6671;
  --line: #ded7c8;
  --white: #ffffff;
  --gold: #ffc400;
  --shadow: 0 20px 56px rgba(18, 26, 18, 0.18);
  --soft-shadow: 0 12px 34px rgba(18, 26, 18, 0.11);
  --radius: 8px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1216px, calc(100% - 64px));
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--green-950);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(0, 57, 13, 0.98);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.brand-mark img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy span {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--green-500);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link,
.button,
.quote-phone,
.footer-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.phone-link {
  min-height: 42px;
  padding: 0 18px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 169, 52, 0.32);
}

.phone-link:hover,
.button-primary:hover,
.quote-phone:hover,
.footer-call:hover {
  background: #00932e;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 20, 7, 0.65) 45%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, var(--green-950) 0%, rgba(0, 46, 13, 0.18) 26%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 64px));
  max-width: none;
  margin-left: max(32px, calc((100vw - 1216px) / 2));
  margin-right: auto;
  padding: 132px 0 118px;
}

.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.hero h1 {
  margin: 32px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.highlight,
.section-heading h2 span,
.quote-copy h2 span,
.areas-section h2 span {
  color: var(--green-500);
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.27rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.button {
  min-height: 60px;
  padding: 0 30px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 169, 52, 0.28);
}

.button-light {
  background: var(--white);
  color: #073d16;
}

.button-light:hover {
  transform: translateY(-1px);
  background: #f3f3f3;
}

.button-solid-dark {
  min-width: 288px;
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.button-outline-light {
  min-height: 46px;
  border: 1px solid var(--green-500);
  background: transparent;
  color: var(--green-500);
  border-radius: var(--radius);
}

.button-outline-light:hover {
  background: rgba(50, 215, 75, 0.12);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list svg {
  color: var(--green-500);
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
  flex: 0 0 auto;
}

.proof-band {
  position: relative;
  z-index: 1;
  background: var(--green-900);
  color: var(--white);
  padding: 64px 0 72px;
}

.proof-band::before {
  content: "";
  position: absolute;
  inset: -150px 0 auto;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 60, 12, 0), var(--green-900));
  pointer-events: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric {
  display: grid;
  gap: 4px;
}

.metric strong {
  font-family: var(--font-display);
  color: var(--green-500);
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1;
}

.metric-rating strong {
  color: var(--white);
}

.metric small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.96rem;
}

.testimonial-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-top: 40px;
}

.testimonial-slider {
  position: relative;
  min-height: 148px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial footer {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.testimonial-dots button.active {
  width: 24px;
  background: var(--green-500);
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 80px;
  align-items: end;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--green-700);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--green-500);
}

.section-heading h2,
.quote-copy h2,
.faq-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.quote-copy p,
.faq-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.services-section {
  background: var(--cream);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.service-feature {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-feature.tall {
  min-height: 460px;
}

.service-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.service-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.77));
}

.service-body {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
}

.badge,
.area-card h3 span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-body h3,
.service-mini h3,
.area-card h3 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
}

.service-body p,
.service-mini p,
.area-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.service-mini {
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-mini svg {
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: var(--radius);
  background: #d7f5d8;
  color: var(--green-700);
}

.service-mini p {
  color: var(--muted);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.quote-section {
  padding: 112px 0;
  background: var(--sand);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 112px;
}

.quote-copy h2 {
  margin-bottom: 24px;
}

.quote-phone {
  min-height: 52px;
  margin: 18px 0 38px;
  padding: 0 24px;
  border-radius: var(--radius);
  background: var(--green-700);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.quote-benefits {
  display: grid;
  gap: 24px;
}

.quote-benefits div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 10px;
}

.quote-benefits svg {
  grid-row: span 2;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
}

.quote-benefits strong {
  font-size: 1rem;
}

.quote-benefits span {
  color: var(--muted);
}

.quote-form {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #2d3036;
  font-weight: 800;
}

label em {
  color: #8b8d93;
  font-style: normal;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6cec0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 16px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(0, 169, 52, 0.14);
}

textarea {
  min-height: 106px;
  resize: vertical;
}

.form-disclaimer {
  margin: 8px 0 24px;
  color: #7d8188;
  font-size: 0.85rem;
}

.form-submit {
  width: 100%;
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.visible {
  display: block;
  background: #e8f5e9;
  color: #0b5d22;
}

.form-status.error {
  background: #fff0ee;
  color: #9a281c;
}

.areas-section {
  padding: 112px 0 88px;
  background: var(--green-900);
  color: var(--white);
}

.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.72);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.area-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  min-height: 128px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.area-card.primary {
  background: rgba(0, 169, 52, 0.28);
  border-color: rgba(50, 215, 75, 0.5);
}

.area-card > svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.area-card.primary > svg {
  background: var(--green-600);
}

.area-card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
}

.area-card h3 span {
  padding: 2px 9px;
  font-family: var(--font-body);
  font-size: 0.72rem;
}

.area-card p {
  color: rgba(255, 255, 255, 0.72);
}

.help-card {
  align-items: center;
  text-align: center;
  border-style: dashed;
}

.help-card > svg {
  margin-left: auto;
}

.help-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 14px;
  color: var(--green-500);
  font-weight: 800;
}

.area-note {
  margin: 54px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro p {
  margin: 22px 0 28px;
}

.ready-card {
  display: grid;
  gap: 8px;
  margin-top: 38px;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: #d8f7d8;
  color: var(--green-900);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.08);
  overflow: hidden;
}

summary {
  position: relative;
  min-height: 62px;
  padding: 20px 54px 20px 24px;
  color: #151922;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #69737a;
  border-bottom: 2px solid #69737a;
  transform: translateY(-60%) rotate(45deg);
}

details[open] {
  border-left: 4px solid var(--green-700);
}

details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
  border-color: var(--green-700);
}

details p {
  margin: -4px 24px 22px;
  color: var(--muted);
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1fr;
  gap: 64px;
  padding: 72px 0;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 24px;
}

.footer-tagline {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-style: italic;
}

.footer-contact,
.footer-grid > div:not(:first-child) {
  display: grid;
  gap: 14px;
}

.footer-contact {
  margin-top: 24px;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  color: var(--green-500);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-call {
  width: max-content;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 22px;
  border-radius: var(--radius);
  background: var(--green-600);
  color: var(--white);
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

.delay-3 {
  transition-delay: 0.26s;
}

.delay-4 {
  transition-delay: 0.34s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .hero-content {
    width: min(720px, calc(100% - 36px));
    margin-left: auto;
    margin-right: auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-header.menu-open .mobile-nav {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    inset: 80px 18px auto;
    gap: 8px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--green-950);
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    padding: 14px;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 800;
  }

  .mobile-call {
    background: var(--green-600);
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .metrics,
  .service-feature-grid,
  .service-list,
  .area-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading,
  .quote-grid,
  .faq-grid,
  .testimonial-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quote-copy,
  .faq-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 72px;
  }

  .phone-link span {
    display: none;
  }

  .phone-link {
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding: 112px 0 88px;
  }

  .review-pill {
    align-items: flex-start;
    border-radius: var(--radius);
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .button,
  .button-solid-dark {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .section,
  .quote-section,
  .areas-section {
    padding: 76px 0;
  }

  .metrics,
  .service-feature-grid,
  .service-list,
  .area-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    text-align: center;
  }

  .metric-rating {
    align-items: center;
  }

  .testimonial-row {
    align-items: start;
  }

  .service-feature,
  .service-feature.tall {
    min-height: 300px;
  }

  .quote-form {
    padding: 22px;
  }

  .area-card {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 22px;
  }

  .footer-bottom .container {
    display: grid;
  }

  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(2, 20, 7, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: var(--radius);
    background: var(--green-600);
    color: var(--white);
    font-weight: 900;
  }
}
