:root {
  --green-950: #0b1f17;
  --green-900: #123324;
  --green-800: #17452f;
  --green-700: #1f5b3d;
  --grass: #83b94c;
  --lime: #b8df6b;
  --sun: #f5c14a;
  --sky: #dceaf2;
  --cream: #fbf7ec;
  --paper: #fffdf7;
  --ink: #17201a;
  --muted: #5f6c63;
  --line: rgba(23, 69, 47, 0.18);
  --shadow: 0 24px 70px rgba(12, 32, 24, 0.18);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

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

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

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

button,
input,
select,
textarea {
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 69, 47, 0.22);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 3px solid rgba(245, 193, 74, 0.95);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 1000;
  background: var(--sun);
  color: var(--green-950);
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 23, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  width: min(1432px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: #ffffff;
}

.brand-logo {
  flex: 0 0 auto;
  width: 58px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--grass), var(--green-700));
  color: #ffffff;
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
}

.brand-footer {
  align-items: flex-start;
}

.brand-footer .brand-logo {
  width: 82px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.site-nav a {
  padding: 0.7rem 0;
}

.site-nav a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff;
}

.phone-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.menu-toggle[aria-expanded="true"] {
  background: var(--sun);
  color: var(--green-950);
  border-color: rgba(255, 255, 255, 0.38);
}

.menu-icon {
  position: relative;
  display: grid;
  gap: 5px;
  width: 20px;
}

.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  background: var(--sun);
  color: var(--green-950);
  font-weight: 800;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 14px 26px rgba(74, 48, 2, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(74, 48, 2, 0.2);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-small {
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.btn-footer {
  margin-top: 0.8rem;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: max(620px, calc(94svh - 78px));
  height: auto;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--green-900);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.92), rgba(7, 26, 18, 0.7) 42%, rgba(7, 26, 18, 0.18)),
    linear-gradient(180deg, rgba(7, 26, 18, 0.08), rgba(7, 26, 18, 0.84)),
    url("https://images.pexels.com/photos/6728930/pexels-photo-6728930.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroScale 900ms ease-out both;
}

.hero-home {
  min-height: max(680px, calc(81svh - 78px));
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
}

.hero-service .hero-media {
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.9), rgba(7, 26, 18, 0.62) 45%, rgba(7, 26, 18, 0.14)),
    linear-gradient(180deg, rgba(7, 26, 18, 0.05), rgba(7, 26, 18, 0.82)),
    url("https://images.pexels.com/photos/13630739/pexels-photo-13630739.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
}

.hero-contact .hero-media {
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.92), rgba(7, 26, 18, 0.62)),
    url("https://images.pexels.com/photos/12087398/pexels-photo-12087398.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  grid-row: 1;
  align-self: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  max-width: 760px;
  justify-self: center;
  justify-content: start;
  transform: translateY(14px);
  opacity: 0;
  animation: riseIn 650ms 120ms ease-out forwards;
}

.hero-home .hero-content,
.hero-subpage .hero-content {
  justify-self: start;
}

.hero-subpage .hero-content {
  margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.hero-home .hero-content {
  width: min(1432px, calc(100% - 32px));
  max-width: 900px;
  margin-left: max(16px, calc((100vw - 1432px) / 2));
  align-self: start;
  padding-top: clamp(3rem, 5.5svh, 3.75rem);
  padding-bottom: clamp(2rem, 3vw, 2.5rem);
}

.hero.hero-home h1 {
  max-width: 930px;
  font-size: clamp(2.45rem, 4.7vw, 5.15rem);
}

.hero-home .hero-title-line {
  display: block;
}

.hero-home .hero-content > p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.35vw, 1.35rem);
}

.hero-home .hero-actions {
  margin-top: clamp(2.1rem, 3.6svh, 2.75rem);
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.45rem, 4.7vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-strip {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(1180px, calc(100% - 32px));
  transform: none;
  grid-row: 2;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(251, 247, 236, 0.96);
  color: var(--green-900);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-home .hero-strip {
  width: min(1432px, calc(100% - 32px));
}

.hero-strip a {
  min-height: 62px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-weight: 800;
}

.hero-strip a:last-child {
  border-right: 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--grass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  background: var(--green-900);
  padding: 0;
}

.trust-row div {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background: var(--green-800);
  color: #ffffff;
}

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

.trust-row strong {
  font-size: 1.05rem;
}

.trust-row span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.brand-showcase-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.brand-showcase-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.brand-showcase-media {
  display: flex;
  justify-content: center;
}

.brand-showcase-media img {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(9, 34, 23, 0.22));
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.proof-section h2,
.lead-copy h2,
.faq-section h2,
.locations-section h2,
.related-section h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.list-link {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.list-link span {
  color: var(--green-950);
  font-weight: 900;
}

.list-link small {
  color: var(--muted);
  text-align: right;
}

.list-link:hover span {
  color: var(--green-700);
}

.image-band {
  width: 100%;
  min-height: 560px;
  display: grid;
  align-items: end;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(9, 34, 23, 0.08), rgba(9, 34, 23, 0.86)),
    url("https://images.pexels.com/photos/6728926/pexels-photo-6728926.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
  padding: clamp(3rem, 8vw, 6rem) max(16px, calc((100vw - 1180px) / 2));
}

.image-band > div {
  max-width: 650px;
}

.image-band h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.image-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

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

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

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

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 91, 61, 0.38);
  box-shadow: 0 20px 55px rgba(14, 42, 29, 0.14);
}

.service-card span {
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 2.2rem 0 0.6rem;
  color: var(--green-950);
  font-size: 1.35rem;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.locations-section,
.related-section {
  padding-top: 2rem;
}

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

.county-block {
  min-height: 360px;
  padding: 1.45rem;
  background: var(--green-900);
  color: #ffffff;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.county-block h3 {
  margin: 0;
  font-size: 1.5rem;
}

.county-block p {
  color: rgba(255, 255, 255, 0.75);
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.city-pills.wide {
  margin-top: 0;
}

.city-pills a,
.city-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  padding: 0.55rem 0.75rem;
  font-weight: 800;
  font-size: 0.9rem;
}

.locations-section .city-pills a,
.related-section .city-pills a,
.related-section .city-pills span {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--green-900);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-columns {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.proof-columns a {
  color: var(--green-700);
  font-weight: 900;
}

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

.check-list p {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--grass);
  background: #ffffff;
  color: var(--green-950);
  box-shadow: 0 10px 24px rgba(14, 42, 29, 0.06);
}

.lead-section {
  width: 100%;
  background: var(--green-950);
  padding: clamp(4rem, 8vw, 6rem) max(16px, calc((100vw - 1180px) / 2));
}

.lead-section-compact {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.lead-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  color: #ffffff;
}

.lead-section-compact .lead-panel {
  display: block;
  color: var(--ink);
}

.lead-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.lead-section-compact .lead-copy p:not(.eyebrow) {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--green-950);
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--green-950);
  font-weight: 900;
  font-size: 0.9rem;
}

.lead-form .form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form .full-span,
.lead-form .btn,
.lead-form .form-note {
  grid-column: 1 / -1;
}

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

.form-note.is-success {
  color: var(--green-700);
  font-weight: 800;
}

.form-note.is-error {
  color: #9f2d20;
  font-weight: 800;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 4rem);
}

.faq-grid {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1rem 1.15rem;
}

summary {
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: rgba(255, 255, 255, 0.45);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-layout h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.contact-layout p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--green-950);
  font-weight: 900;
}

.legal-page {
  max-width: 850px;
  padding-top: clamp(6rem, 10vw, 9rem);
}

.legal-page h1 {
  margin: 0 0 1.5rem;
  color: var(--green-950);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
}

.legal-page h2 {
  margin-top: 2rem;
  color: var(--green-950);
}

.legal-page p {
  color: var(--muted);
}

.site-footer {
  background: var(--green-950);
  color: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) max(16px, calc((100vw - 1180px) / 2)) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.brand-footer {
  color: #ffffff;
}

.footer-copy {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-bottom a {
  margin-left: 1rem;
}

.call-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 62px;
  appearance: none;
  cursor: pointer;
  border-radius: 999px;
  background: var(--sun);
  color: var(--green-950);
  padding: 0.62rem 1rem 0.62rem 0.72rem;
  box-shadow: 0 18px 44px rgba(9, 34, 23, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-family: inherit;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.call-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(9, 34, 23, 0.36);
}

.call-widget-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green-950);
  color: #ffffff;
}

.call-widget-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.call-widget-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1.05;
}

.call-widget-copy span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-widget-copy strong {
  font-size: 1.05rem;
}

@keyframes riseIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroScale {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.02);
  }
}

@media (max-width: 980px) {
  .site-header.is-menu-open {
    box-shadow: 0 24px 60px rgba(2, 12, 8, 0.28);
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    position: relative;
  }

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

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 0.25rem;
    justify-content: stretch;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0.45rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open a {
    padding: 0.9rem 0.95rem;
    border-radius: 6px;
    border-top: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
  }

  .site-nav.is-open a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-split,
  .brand-showcase,
  .proof-section,
  .faq-section,
  .lead-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    background: rgba(11, 31, 23, 0.96);
  }

  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 70px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 205px;
    font-size: 0.98rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo {
    width: 46px;
  }

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

  .hero {
    min-height: 760px;
    height: auto;
  }

  .hero-home {
    min-height: 760px;
  }

  .hero-subpage {
    min-height: 620px;
    height: auto;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 3.5rem 0 5rem;
  }

  .hero-home .hero-content {
    padding: 3rem 0 4rem;
  }

  .hero-subpage .hero-content {
    padding: 3.25rem 0 4.25rem;
  }

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

  .hero.hero-home h1 {
    font-size: clamp(2.15rem, 13vw, 3.3rem);
  }

  .hero-strip {
    width: calc(100% - 20px);
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip a {
    min-height: 48px;
    font-size: 0.88rem;
  }

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

  .brand-showcase {
    gap: 1.5rem;
  }

  .brand-showcase-copy h2 {
    font-size: clamp(2.2rem, 14vw, 3.2rem);
  }

  .brand-showcase-media {
    justify-content: flex-start;
  }

  .brand-showcase-media img {
    width: min(100%, 360px);
  }

  section {
    width: min(100% - 28px, 1180px);
    padding: 3.5rem 0;
  }

  .image-band {
    min-height: 480px;
    padding: 3rem 14px;
  }

  .card-grid,
  .compact-grid,
  .county-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .list-link {
    display: grid;
  }

  .list-link small {
    text-align: left;
  }

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

  .footer-bottom {
    display: grid;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 1rem;
  }

  .call-widget {
    right: 14px;
    bottom: 14px;
    min-height: 56px;
    padding: 0.55rem 0.82rem 0.55rem 0.62rem;
  }

  .call-widget-icon {
    width: 38px;
    height: 38px;
  }

  .call-widget-copy span {
    font-size: 0.66rem;
  }

  .call-widget-copy strong {
    font-size: 0.96rem;
  }
}

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