:root {
  --ink: #101512;
  --muted: #5b665f;
  --line: #d9e0dc;
  --paper: #f5f7f4;
  --white: #ffffff;
  --steel: #17231f;
  --blue: #1d7b5f;
  --blue-dark: #10513f;
  --gold: #c99429;
  --green: #1d7b5f;
  --green-deep: #0d3c31;
  --green-soft: #e7f1ec;
  --shadow: 0 24px 70px rgba(16, 21, 18, 0.14);
  --soft-shadow: 0 14px 36px rgba(16, 21, 18, 0.08);
  --radius: 8px;
  --container: 1360px;
  --font-sans: "Manrope", "Avenir Next", Arial, Helvetica, sans-serif;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, var(--paper) 42rem);
  font-family: var(--font-sans);
  line-height: 1.55;
}

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

:where(.hero-visual, .contact-hero-image, .page-hero-image) {
  position: relative;
  isolation: isolate;
}

:where(.hero-visual, .contact-hero-image, .page-hero-image)::before {
  position: absolute;
  inset: 10%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(67, 151, 119, 0.28);
  filter: blur(58px);
  content: "";
}

:where(.hero-visual, .contact-hero-image, .page-hero-image)::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.26);
  content: "";
}

:where(.hero-visual, .contact-hero-image, .page-hero-image, .split, .contact-card, .service-detail) img,
.service-card img {
  border-radius: var(--radius);
}

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

a:hover {
  color: var(--green);
}

.announcement {
  background: linear-gradient(90deg, var(--green-deep), #15221e);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.55rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 21, 18, 0.08);
  box-shadow: 0 10px 32px rgba(16, 21, 18, 0.06);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(var(--container), calc(100% - 3rem));
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.8rem 0;
}

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

.brand img {
  width: 128px;
  height: 58px;
  padding: 7px;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(29, 123, 95, 0.18);
  background: linear-gradient(135deg, #f8faf8, #dfe5e1);
  box-shadow: 0 14px 32px rgba(16, 21, 18, 0.12);
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.5rem 0.15rem;
}

.nav-links a[aria-current="page"] {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 24px rgba(16, 21, 18, 0.08);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(16, 21, 18, 0.12);
}

.button.primary {
  background: linear-gradient(180deg, #24916f, var(--green));
  color: var(--white);
}

.button.primary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(29, 123, 95, 0.26);
  background: var(--green-soft);
  color: var(--green-deep);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--steel);
  color: var(--white);
}

.home-hero {
  min-height: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(58, 151, 119, 0.24), transparent 28rem),
    linear-gradient(135deg, #10221c, #17231f 58%, #0a120f);
  padding: 5.25rem 1.5rem 6.25rem;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.95fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.hero.compact {
  min-height: 430px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 25, 21, 0.92), rgba(12, 32, 26, 0.66), rgba(12, 26, 22, 0.2)),
    linear-gradient(180deg, rgba(10, 25, 21, 0.12), rgba(10, 25, 21, 0.48));
  content: "";
}

.hero-content {
  position: relative;
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 2.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.home-hero h1 {
  font-size: clamp(2rem, 3.1vw, 3.35rem);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.04 / 1;
  object-fit: cover;
  object-position: 58% center;
  border: 0;
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.24);
}

@media (min-width: 1280px) {
  .home-hero {
    padding: 6rem 2rem 7.2rem;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero p {
    max-width: 660px;
  }

  .hero-visual-card {
    width: 340px;
  }
}

.hero-visual-card {
  position: absolute;
  left: -1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.2rem;
  width: min(320px, calc(100% - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 1rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.hero-visual-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.46rem 0.68rem;
}

.contact-hero {
  background:
    radial-gradient(circle at 78% 45%, rgba(52, 133, 103, 0.2), transparent 25rem),
    linear-gradient(135deg, rgba(13, 60, 49, 0.98), rgba(23, 35, 31, 0.98)),
    var(--steel);
  color: var(--white);
  padding: 5rem 1.5rem;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  gap: 4rem;
  align-items: center;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.contact-hero-copy {
  max-width: 560px;
}

.contact-hero-copy h1 {
  font-size: clamp(1.95rem, 2.8vw, 2.85rem);
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.contact-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
}

.contact-hero-image::after {
  content: none;
}

.contact-hero-image img {
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.28));
}

.page-hero {
  background:
    radial-gradient(circle at 78% 45%, rgba(29, 123, 95, 0.12), transparent 24rem),
    linear-gradient(135deg, #f8faf8, #ffffff 54%, #eef5f1);
  padding: 5rem 1.5rem;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 4rem;
  align-items: center;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.page-hero-copy {
  max-width: 620px;
}

.page-hero-copy h1 {
  font-size: clamp(1.9rem, 2.75vw, 2.8rem);
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.page-hero-image {
  overflow: visible;
  border-radius: var(--radius);
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  object-position: 56% center;
  box-shadow: 0 24px 76px rgba(16, 21, 18, 0.14);
}

.review-hero {
  background:
    radial-gradient(circle at 82% 34%, rgba(67, 151, 119, 0.2), transparent 25rem),
    linear-gradient(135deg, var(--green-deep), #11221d);
}

.review-hero .page-hero-copy h1,
.review-hero .page-hero-copy p:not(.eyebrow) {
  color: var(--white);
}

.review-proof-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.18);
  padding: 2rem;
}

.review-proof-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review-proof-card strong {
  margin: 0.35rem 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}

.review-proof-card p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.quick-panel {
  position: relative;
  width: min(var(--container), calc(100% - 4rem));
  margin: -3.6rem auto 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 123, 95, 0.18);
  border-radius: var(--radius);
  background: rgba(29, 123, 95, 0.16);
  box-shadow: var(--shadow);
}

.quick-panel div {
  background: linear-gradient(180deg, var(--white), #fbfcfa);
  padding: 1.45rem;
}

.quick-panel strong {
  display: block;
  margin-bottom: 0.25rem;
}

.quick-panel span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  padding: 5.25rem 1.5rem 4rem;
  background: linear-gradient(180deg, #f5f7f4, #ffffff);
}

.trust-grid,
.review-grid,
.neighborhood-grid,
.service-link-grid {
  display: grid;
  gap: 1rem;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card,
.review-card,
.service-link-card,
.neighborhood-grid span {
  border: 1px solid rgba(29, 123, 95, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.trust-card {
  padding: 1.25rem;
}

.trust-card strong,
.review-card strong,
.service-link-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.trust-card span,
.review-card p,
.service-link-card p {
  color: var(--muted);
}

.urgent-band {
  background: linear-gradient(180deg, #f5f7f4, #ffffff);
}

.urgent-grid,
.standards-grid,
.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 3.2rem;
  align-items: center;
}

.urgent-list article,
.standard-list article,
.service-area {
  border: 1px solid rgba(29, 123, 95, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.urgent-list article {
  padding: 1.6rem;
}

.section {
  padding: 5.75rem 1.5rem;
}

.section.tint {
  background: var(--white);
}

.section.dark {
  background: linear-gradient(135deg, #10221c, var(--steel));
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-contact {
  padding: 5.25rem 1.5rem;
}

.section.dark p,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.78);
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.muted {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #fbfcfa);
  box-shadow: var(--soft-shadow);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
  border-color: rgba(16, 21, 18, 0.14);
  box-shadow: 0 22px 54px rgba(16, 21, 18, 0.12);
  transform: translateY(-2px);
}

.service-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.3rem 0 0.8rem;
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-body ul,
.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.service-body li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-body li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.service-body .button {
  margin-top: auto;
}

.coverage-grid,
.value-grid,
.process-grid,
.problem-grid,
.faq-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.coverage-grid,
.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-grid article,
.faq-grid details {
  background: var(--white);
  padding: 1.35rem;
}

.problem-grid span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.55rem;
  text-transform: uppercase;
}

.problem-grid p,
.faq-grid p {
  color: var(--muted);
}

.coverage-grid span,
.coverage-grid a,
.value-card {
  position: relative;
  min-height: 104px;
  background: var(--white);
  padding: 1.25rem;
  font-weight: 800;
}

.process-band {
  background: linear-gradient(180deg, #eef5f1, #f7faf8);
}

.service-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-link-card {
  min-height: 160px;
  padding: 1.25rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-link-card:hover {
  border-color: rgba(29, 123, 95, 0.34);
  color: inherit;
  box-shadow: 0 22px 54px rgba(16, 21, 18, 0.1);
  transform: translateY(-2px);
}

.service-link-card span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 1.45rem;
}

.google-review-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.google-review-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.review-card span {
  display: block;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article {
  min-height: 210px;
  background: var(--white);
  padding: 1.45rem;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.standards-section {
  background: #ffffff;
}

.standard-list {
  display: grid;
  gap: 0.8rem;
}

.standard-list article {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
}

.standard-list strong {
  color: var(--ink);
}

.standard-list span {
  color: var(--muted);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid details {
  min-height: 130px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-grid summary::marker {
  color: var(--green);
}

.faq-grid p {
  margin: 0.85rem 0 0;
}

.service-area-band {
  background: linear-gradient(135deg, var(--green-deep), var(--steel));
  color: var(--white);
}

.service-area {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 2rem;
}

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

.coverage-grid span::before,
.coverage-grid a::before,
.value-card::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 0.72rem;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.neighborhood-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.neighborhood-grid span {
  color: var(--ink);
  padding: 0.9rem 1rem;
  box-shadow: none;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 4rem;
  align-items: center;
}

.split img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  box-shadow: 0 24px 76px rgba(16, 21, 18, 0.12);
}

.callout {
  border-left: 5px solid var(--green);
  background: linear-gradient(90deg, rgba(29, 123, 95, 0.13), rgba(29, 123, 95, 0.04));
  padding: 1.25rem 1.35rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.contact-copy {
  max-width: 500px;
}

.contact-copy h2 {
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
}

.contact-card,
.form-card,
.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.section.dark .form-card {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.contact-card {
  overflow: hidden;
}

.contact-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contact-card .content,
.form-card,
.detail-card {
  padding: 1.55rem;
}

.contact-methods {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-methods a,
.contact-methods span {
  display: block;
  color: var(--muted);
}

.section.dark .contact-methods a,
.section.dark .contact-methods span {
  color: rgba(255, 255, 255, 0.82);
}

.section.dark .contact-methods a:hover {
  color: #a9dbc9;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9ced7;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(29, 123, 95, 0.2);
  border-color: var(--green);
}

.netlify-hidden {
  display: none;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: start;
}

.service-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-card .price {
  font-size: 2.35rem;
}

.breadcrumbs {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #080d0b;
  color: var(--white);
  padding: 3rem 1.25rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.footer-logo img {
  width: 122px;
  height: 56px;
  padding: 7px;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #eef2ef, #cfd6d1);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a:hover {
  color: #a9dbc9;
}

.footer-bottom {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.mobile-call-bar {
  position: fixed;
  left: 0.85rem;
  right: 0.85rem;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(13, 60, 49, 0.94);
  padding: 0.45rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 1.25rem));
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-call-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-call-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.mobile-call-bar a:first-child {
  background: var(--green);
}

.mobile-call-bar a:last-child {
  background: rgba(255, 255, 255, 0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 680px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-grid,
  .value-grid,
  .process-grid,
  .problem-grid,
  .faq-grid,
  .trust-grid,
  .review-grid,
  .service-link-grid,
  .neighborhood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .nav-shell {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-actions .button {
    display: none;
  }

  .hero,
  .hero.compact {
    min-height: 560px;
  }

  .home-hero {
    min-height: 0;
    padding: 4.5rem 1rem 5.5rem;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.84), rgba(10, 12, 16, 0.62));
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-heading,
  .split,
  .contact-grid,
  .contact-hero-inner,
  .page-hero-inner,
  .urgent-grid,
  .standards-grid,
  .service-area,
  .service-detail,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-hero {
    padding: 3.75rem 1rem;
  }

  .page-hero {
    padding: 3.75rem 1rem;
  }

  .contact-hero-inner {
    gap: 2rem;
  }

  .page-hero-inner {
    gap: 2rem;
  }

  .split img {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .announcement {
    padding: 0.48rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .nav-shell {
    width: 100%;
    align-items: center;
    padding: 0.72rem 1.15rem;
  }

  .brand img {
    width: 92px;
    height: 42px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .quick-panel,
  .service-grid,
  .coverage-grid,
  .value-grid,
  .process-grid,
  .problem-grid,
  .faq-grid,
  .trust-grid,
  .review-grid,
  .service-link-grid,
  .neighborhood-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: min(100% - 2rem, 1120px);
  }

  .home-hero {
    padding: 3.65rem 1rem 4.3rem;
  }

  .home-hero-inner {
    gap: 2.2rem;
  }

  .hero-copy .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-proof {
    gap: 0.45rem;
  }

  .hero-proof span {
    font-size: 0.76rem;
    padding: 0.4rem 0.56rem;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .hero-visual img {
    aspect-ratio: 1.05 / 0.82;
  }

  .hero-visual-card {
    position: static;
    width: 100%;
    margin-top: 0.85rem;
  }

  h1 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .button {
    width: 100%;
  }

  .mobile-call-bar {
    display: grid;
  }

  body {
    padding-bottom: calc(4.6rem + env(safe-area-inset-bottom));
  }
}


/* Review conversion section additions */
.trust-metrics,
.review-snippet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.trust-metrics article,
.review-snippet-grid article,
.section-cta {
  background: #fff;
  border: 1px solid rgba(21, 94, 80, 0.18);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.trust-metrics strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.trust-metrics span,
.review-snippet-grid span {
  display: block;
  font-weight: 800;
  color: #0f766e;
  margin-bottom: 8px;
}

.stars {
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 12px;
  color: #0f766e;
}

.section-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-cta h3 {
  margin: 0 0 6px;
}

.section-cta p {
  margin: 0;
}

@media (max-width: 900px) {
  .trust-metrics,
  .review-snippet-grid {
    grid-template-columns: 1fr;
  }

  .section-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
