:root {
  --black: #030805;
  --black-2: #07140b;
  --black-3: #102416;
  --green-950: #12321f;
  --green-900: #19472b;
  --green-800: #236338;
  --green-700: #2f854b;
  --green-600: #45b96a;
  --green-500: #65d886;
  --green-400: #8ef5a9;
  --green-300: #b6ffd0;
  --green-200: #d8ffe6;
  --green-100: #f4fff6;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.9);
  --muted-white: rgba(255, 255, 255, 0.72);
  --line: rgba(142, 245, 169, 0.3);
  --line-strong: rgba(182, 255, 208, 0.52);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  --green-glow: 0 0 48px rgba(142, 245, 169, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(142, 245, 169, 0.36), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(101, 216, 134, 0.28), transparent 30%),
    linear-gradient(180deg, #0a1a0f, #12321f 44%, #041006 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(182, 255, 208, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 255, 208, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 80%);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 22, 11, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  border: 1px solid rgba(227, 255, 233, 0.55);
  border-radius: 50%;
  font-size: 0.84rem;
  box-shadow: var(--green-glow);
}

.logo-text {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--soft-white);
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  opacity: 0;
  background: var(--green-400);
  transform: scaleX(0.5);
  transition: 0.18s ease;
}

.nav-links a:hover {
  color: var(--green-100);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--green-900), var(--black-3));
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-100);
}

.section-pad {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 22px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 7vw, 5.7rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

p {
  margin-top: 0;
}

.hero-copy {
  max-width: 680px;
  color: var(--soft-white);
  font-size: 1.2rem;
}

.hero-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-badges {
  margin-top: 28px;
}

.hero-badges span {
  padding: 9px 13px;
  color: var(--green-100);
  background: rgba(19, 99, 50, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  box-shadow: var(--green-glow);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--green-100), var(--green-500));
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
}

.button-secondary:hover {
  background: rgba(84, 223, 133, 0.14);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--green-900), var(--black));
  box-shadow: var(--shadow), var(--green-glow);
}

.hero-card img {
  height: 560px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02) brightness(0.98);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 6, 0.08), rgba(2, 8, 6, 0.96)),
    linear-gradient(90deg, rgba(19, 99, 50, 0.5), transparent 60%);
}

.hero-card-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 22px;
  color: var(--white);
  background: rgba(2, 8, 6, 0.68);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.hero-card-panel p {
  margin: 6px 0 0;
  color: var(--soft-white);
}

.trust-bar {
  max-width: var(--max-width);
  margin: -28px auto 0;
  padding: 24px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-bar div {
  padding: 24px;
  background: linear-gradient(180deg, rgba(35, 115, 61, 0.82), rgba(10, 30, 16, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  color: var(--white);
  font-size: 1rem;
}

.trust-bar span {
  color: var(--muted-white);
  font-size: 0.92rem;
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 44px));
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--soft-white);
  font-size: 1.08rem;
}

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

.service-card {
  overflow: hidden;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 53, 29, 0.96), rgba(7, 18, 10, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.service-card img {
  height: 220px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: var(--green-950);
  filter: saturate(1.03) contrast(1.02) brightness(0.98);
}

.service-card h3 {
  margin: 20px 8px 8px;
  color: var(--white);
}

.service-card p {
  margin: 0 8px 12px;
  color: var(--soft-white);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.split-image img {
  min-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), var(--green-glow);
  background: var(--green-950);
  filter: saturate(1.03) contrast(1.02) brightness(0.98);
}

.split-content {
  padding: 34px;
  background: linear-gradient(180deg, rgba(35, 115, 61, 0.58), rgba(7, 18, 10, 0.84));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.split-content p {
  color: var(--soft-white);
  font-size: 1.06rem;
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--white);
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--black);
  background: var(--green-400);
  border-radius: 50%;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(84, 223, 133, 0.35);
}

.dark-section {
  max-width: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(84, 223, 133, 0.22), transparent 30%),
    linear-gradient(135deg, #06140a, var(--green-900) 48%, #06140a);
  border-block: 1px solid var(--line);
}

.dark-section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.light h2,
.light p {
  color: var(--white);
}

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

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

.feature-grid article {
  padding: 30px;
  color: var(--white);
  background: rgba(3, 12, 6, 0.62);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.feature-grid h3 {
  color: var(--white);
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--soft-white);
}

.municipal-image-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.municipal-image-strip img {
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3), var(--green-glow);
  filter: saturate(1.03) contrast(1.02) brightness(0.98);
}

.municipal-image-strip div {
  display: grid;
  align-content: center;
  padding: 32px;
  background: rgba(3, 12, 6, 0.62);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
}

.municipal-image-strip strong {
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.municipal-image-strip p {
  margin: 12px 0 0;
  color: var(--soft-white);
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--green-950);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.26);
  filter: saturate(1.03) contrast(1.02) brightness(0.98);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(227, 255, 233, 0.16), transparent 36%),
    linear-gradient(135deg, var(--green-700), var(--black));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), var(--green-glow);
}

.cta h2,
.cta p,
.cta .eyebrow {
  color: var(--white);
}

.cta p {
  margin-bottom: 0;
  opacity: 0.9;
}

.cta .button-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: none;
  white-space: nowrap;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.contact-card,
.estimate-form {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 53, 29, 0.94), rgba(7, 18, 10, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.contact-card p {
  color: var(--soft-white);
}

.contact-card a {
  color: var(--green-200);
  font-weight: 900;
}

.estimate-form {
  display: grid;
  gap: 16px;
}

.estimate-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(3, 12, 6, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(84, 223, 133, 0.22);
  border-color: var(--green-400);
}

.form-note {
  margin: 0;
  color: var(--muted-white);
  font-size: 0.9rem;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green-200);
  font-weight: 900;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(2, 8, 6, 0.98);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  .hero,
  .split-section,

  .municipal-image-strip {
    grid-template-columns: 1fr;
  }

  .municipal-image-strip img {
    height: 300px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card img {
    min-height: 430px;
    height: 430px;
  }

  .trust-bar,
  .service-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

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

@media (max-width: 620px) {
  .section-pad {
    padding: 64px 18px;
  }

  .navbar {
    padding: 14px 18px;
  }

  .logo-text {
    max-width: 160px;
    line-height: 1.1;
  }

  .trust-bar,
  .service-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
  }

  .hero-card,
  .hero-card img {
    min-height: 360px;
    height: 360px;
  }

  .contact-card,
  .estimate-form,
  .split-content {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Updates: light green/black brand, favicon logo, and top contact form */
:root {
  --green-600: #2fae5a;
  --green-500: #47d970;
  --green-400: #74f29b;
  --green-300: #a2f7bb;
  --green-glow: 0 0 42px rgba(116, 242, 155, 0.28);
}

.site-header {
  background: rgba(6, 22, 11, 0.9);
}

.top-contact-bar {
  background: linear-gradient(90deg, #12321f, #2f854b 45%, #12321f);
  border-bottom: 1px solid rgba(162, 247, 187, 0.28);
}

.top-contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 800;
}

.top-contact-inner a {
  color: var(--green-100);
  text-decoration: none;
}

.top-contact-inner a:hover {
  color: var(--green-300);
}

.top-contact-label {
  margin-right: auto;
  color: var(--green-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.navbar {
  position: relative;
}

.brand-icon {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(162, 247, 187, 0.44);
  box-shadow: 0 0 32px rgba(116, 242, 155, 0.3);
}

.logo:hover .brand-icon {
  box-shadow: 0 0 42px rgba(162, 247, 187, 0.38);
}

.top-contact-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 22px 0;
}

.top-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px minmax(300px, 0.75fr);
  gap: 22px;
  align-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(162, 247, 187, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(18, 53, 29, 0.98), rgba(5, 18, 9, 0.98));
  border: 1px solid rgba(162, 247, 187, 0.34);
  border-radius: 28px;
  box-shadow: 0 24px 85px rgba(0, 0, 0, 0.36), 0 0 55px rgba(116, 242, 155, 0.16);
}

.top-contact-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.top-contact-card p:last-child {
  margin-bottom: 0;
  color: var(--soft-white);
}

.top-contact-actions {
  display: grid;
  gap: 12px;
}

.contact-email {
  display: block;
  color: var(--green-200);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

.quick-contact-form,
.estimate-form {
  display: grid;
  gap: 12px;
}

.quick-contact-form label,
.estimate-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 900;
}

.quick-contact-form input,
.quick-contact-form textarea,
.estimate-form input,
.estimate-form textarea {
  background: rgba(3, 12, 6, 0.86);
  border-color: rgba(162, 247, 187, 0.26);
}

.quick-contact-form .button,
.estimate-form .button {
  width: 100%;
  justify-content: center;
}

.form-note.success {
  color: var(--green-100);
}

.form-note.error {
  color: #ffd7d7;
}

.form-note.info {
  color: var(--green-200);
}

.hero {
  min-height: auto;
  padding-top: 74px;
}

.button-primary {
  color: #001104;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  box-shadow: 0 0 38px rgba(116, 242, 155, 0.24);
}

.button-secondary {
  color: var(--green-100);
  background: rgba(0, 12, 5, 0.82);
  border-color: rgba(162, 247, 187, 0.38);
}

.service-card,
.contact-card,
.estimate-form,
.split-content,
.dark-section,
.cta {
  border-color: rgba(162, 247, 187, 0.28);
}

@media (max-width: 1040px) {
  .top-contact-card {
    grid-template-columns: 1fr;
  }

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

  .contact-email {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .nav-links {
    top: calc(100% + 10px);
  }
}

@media (max-width: 620px) {
  .top-contact-inner {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 18px;
  }

  .top-contact-label {
    margin-right: 4px;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .top-contact-section {
    padding: 20px 18px 0;
  }

  .top-contact-card {
    padding: 20px;
  }

  .top-contact-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }
}

/* Lighter green refresh + spam protection + call widget */
:root {
  --green-700: #2f8550;
  --green-600: #48bb78;
  --green-500: #68d391;
  --green-400: #9ae6b4;
  --green-300: #c6f6d5;
  --green-200: #dcffe7;
  --green-100: #f0fff4;
  --line: rgba(154, 230, 180, 0.28);
  --line-strong: rgba(198, 246, 213, 0.48);
  --green-glow: 0 0 44px rgba(104, 211, 145, 0.22);
}

.button-outline {
  color: var(--green-100);
  border: 1px solid var(--line-strong);
  background: rgba(5, 18, 9, 0.38);
}

.button-outline:hover {
  background: rgba(104, 211, 145, 0.14);
  border-color: var(--green-300);
}

.form-anti-spam {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(5, 18, 9, 0.42);
}

.captcha-label {
  gap: 8px;
  margin: 0;
}

.captcha-label span {
  color: var(--green-200);
  font-weight: 900;
}

.captcha-help {
  margin: 7px 0 0;
  color: var(--muted-white);
  font-size: 0.86rem;
}

.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-note.info {
  color: var(--green-200);
}

.form-note.success {
  color: var(--green-300);
}

.form-note.error {
  color: #ffd2d2;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.call-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.call-widget-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(240, 255, 244, 0.55);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--black);
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38), var(--green-glow);
  cursor: pointer;
}

.call-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 5px rgba(3, 8, 5, 0.15);
}

.call-widget-panel {
  display: none;
  max-width: 315px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  color: var(--white);
  background: rgba(3, 8, 5, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.call-widget.open .call-widget-panel {
  display: block;
}

.call-widget-panel strong {
  display: block;
  color: var(--green-100);
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.call-widget-panel p {
  margin: 0 0 14px;
  color: var(--muted-white);
  font-size: 0.94rem;
}

.call-widget-actions {
  display: grid;
  gap: 10px;
}

.call-widget-actions .button {
  width: 100%;
  justify-content: center;
}

.callback-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-300);
  font-weight: 800;
  text-decoration: none;
}

.callback-link:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .call-widget {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-items: stretch;
  }

  .call-widget-toggle,
  .call-widget-panel {
    width: 100%;
  }

  .call-widget-toggle {
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

/* Custom human check. Styled to feel familiar, but intentionally not branded as Google. */
.human-check {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 14px 14px;
  color: #f7fff9;
  background: rgba(248, 255, 250, 0.07);
  border: 1px solid rgba(198, 246, 213, 0.52);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  user-select: none;
}

.human-check:hover {
  border-color: rgba(198, 246, 213, 0.82);
  background: rgba(248, 255, 250, 0.1);
}

.human-check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.human-check-box {
  width: 30px;
  height: 30px;
  position: relative;
  display: grid;
  place-items: center;
  border: 2px solid rgba(240, 255, 244, 0.74);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.human-check-text {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.human-check-badge {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 58px;
  color: rgba(240, 255, 244, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.human-check-badge img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(104, 211, 145, 0.24);
}

.human-check-spinner,
.human-check-mark {
  position: absolute;
  opacity: 0;
}

.human-check-spinner {
  width: 21px;
  height: 21px;
  border: 3px solid rgba(198, 246, 213, 0.24);
  border-top-color: var(--green-300);
  border-radius: 50%;
  animation: humanSpin 0.8s linear infinite;
}

.human-check-mark {
  color: var(--green-300);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 950;
  transform: scale(0.78);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.human-check.checking .human-check-box {
  border-color: rgba(198, 246, 213, 0.82);
  background: rgba(198, 246, 213, 0.06);
}

.human-check.checking .human-check-spinner {
  opacity: 1;
}

.human-check.verified .human-check-box {
  border-color: var(--green-300);
  background: rgba(154, 230, 180, 0.18);
  transform: scale(1.02);
}

.human-check.verified .human-check-mark {
  opacity: 1;
  transform: scale(1);
}

.human-check:focus-within {
  outline: 3px solid rgba(154, 230, 180, 0.35);
  outline-offset: 3px;
}

@keyframes humanSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .human-check {
    grid-template-columns: auto 1fr;
  }

  .human-check-badge {
    grid-column: 1 / -1;
    justify-self: start;
    grid-auto-flow: column;
    align-items: center;
  }
}

/* About story and missing photo updates */
.about-section {
  align-items: start;
}

.about-image-stack {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 126px;
}

.about-image-stack img {
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 5;
}

.about-image-stack img + img {
  aspect-ratio: 1 / 1;
}

.about-story h3 {
  margin-top: 28px;
  color: var(--green-200);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
}

.about-story p {
  color: var(--soft-white);
  font-size: 1rem;
  line-height: 1.72;
}

.story-signature {
  margin-top: 26px;
  color: var(--white) !important;
  font-size: 1.2rem !important;
  font-weight: 900;
}

.credential-line {
  color: var(--green-200) !important;
  font-weight: 900;
}

@media (max-width: 920px) {
  .about-image-stack {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .about-image-stack {
    grid-template-columns: 1fr;
  }
}


/* Brand green refresh: rgb(129, 215, 66) */

:root {
  --green-700: #4f9822;
  --green-600: #69ba33;
  --green-500: rgb(129, 215, 66);
  --green-400: #99e35f;
  --green-300: #b8ef87;
  --green-200: #d9f8b9;
  --green-100: #f4ffe9;
  --line: rgba(129, 215, 66, 0.24);
  --line-strong: rgba(184, 239, 135, 0.42);
  --green-glow: 0 0 46px rgba(129, 215, 66, 0.22);
}

body {
  background:
    radial-gradient(circle at 16% 0%, rgba(129, 215, 66, 0.24), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(184, 239, 135, 0.16), transparent 28%),
    linear-gradient(180deg, #081106, #11220a 44%, #050905 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(184, 239, 135, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 239, 135, 0.08) 1px, transparent 1px);
}

.eyebrow,
.light .eyebrow,
.top-contact-label,
.contact-email,
.captcha-label span,
.form-note.info,
.site-footer a,
.contact-card a {
  color: var(--green-300);
}

.site-header {
  background: rgba(5, 16, 5, 0.92);
}

.top-contact-bar {
  background: linear-gradient(90deg, #162b0c, #4f9822 22%, rgb(129, 215, 66) 50%, #4f9822 78%, #162b0c);
  border-bottom: 1px solid rgba(184, 239, 135, 0.26);
}

.logo-mark {
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  border-color: rgba(244, 255, 233, 0.5);
}

.button-primary,
.call-widget-toggle {
  color: #061004;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  box-shadow: 0 0 34px rgba(129, 215, 66, 0.20);
}

.button-primary:hover,
.call-widget-toggle:hover {
  background: linear-gradient(135deg, var(--green-200), var(--green-400));
}

.button-secondary,
.button-outline {
  color: var(--green-100);
  background: rgba(7, 16, 5, 0.8);
  border-color: rgba(184, 239, 135, 0.32);
}

.button-secondary:hover,
.button-outline:hover {
  background: rgba(129, 215, 66, 0.12);
  border-color: rgba(184, 239, 135, 0.48);
}

.hero-card {
  background: linear-gradient(145deg, #274614, #030805);
  box-shadow: var(--shadow), var(--green-glow);
}

.hero-card::after {
  background:
    linear-gradient(180deg, rgba(2, 8, 6, 0.08), rgba(2, 8, 6, 0.96)),
    linear-gradient(90deg, rgba(79, 152, 34, 0.46), transparent 60%);
}

.trust-bar div {
  background: linear-gradient(180deg, rgba(79, 152, 34, 0.72), rgba(8, 19, 6, 0.94));
}

.service-card,
.contact-card,
.estimate-form,
.split-content {
  background: linear-gradient(180deg, rgba(24, 43, 12, 0.95), rgba(7, 18, 10, 0.97));
}

.split-content {
  background: linear-gradient(180deg, rgba(79, 152, 34, 0.36), rgba(7, 18, 10, 0.88));
}

.dark-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(129, 215, 66, 0.18), transparent 30%),
    linear-gradient(135deg, #061109, #274614 48%, #061109);
}

.feature-grid article,
.municipal-image-strip div,
.call-widget-panel {
  background: rgba(5, 14, 4, 0.78);
}

.cta {
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 255, 233, 0.12), transparent 36%),
    linear-gradient(135deg, #4f9822, #081106);
}

.top-contact-card {
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 239, 135, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(24, 43, 12, 0.98), rgba(5, 18, 9, 0.98));
  box-shadow: 0 24px 85px rgba(0, 0, 0, 0.36), 0 0 55px rgba(129, 215, 66, 0.14);
}

.hero-badges span,
.form-anti-spam {
  background: rgba(79, 152, 34, 0.20);
}

.check-list li::before {
  background: var(--green-400);
  box-shadow: 0 0 20px rgba(129, 215, 66, 0.28);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(129, 215, 66, 0.18);
  border-color: var(--green-400);
}
