:root {
  --green-950: #0a281e;
  --green-900: #0d3225;
  --green-800: #143c2d;
  --green-700: #20563e;
  --lime: #c9ee4f;
  --lime-dark: #a9cf34;
  --cream: #f5f1e6;
  --paper: #fbf9f2;
  --tan: #e7dec9;
  --ink: #13241c;
  --muted: #58655e;
  --white: #fff;
  --line: rgba(19, 36, 28, .17);
  --heading: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 78rem;
  --radius: .2rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font: 1rem/1.65 var(--sans); }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1; text-wrap: balance; }
h1, h2 { font-family: var(--heading); font-weight: 900; letter-spacing: -.025em; text-transform: uppercase; }
h1 { margin-bottom: 1.5rem; font-size: clamp(3rem, 8vw, 6.2rem); }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.15rem, 4vw, 3.75rem); }
h3 { margin-bottom: .85rem; font-size: 1.45rem; }
p { margin-bottom: 1rem; }
:focus-visible { outline: .2rem solid var(--lime); outline-offset: .25rem; }

.shell { width: min(calc(100% - 2.25rem), var(--shell)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; top: .75rem; left: .75rem; padding: .7rem 1rem; background: var(--lime); color: var(--ink); font-weight: 800; transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.kicker { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; color: var(--green-700); font-size: .7rem; font-weight: 850; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.kicker span { width: 2.3rem; height: .23rem; background: var(--lime-dark); }
.kicker--light { color: rgba(255,255,255,.72); }
.kicker--light span { background: var(--lime); }
.kicker--dark { color: var(--green-950); }
.kicker--dark span { background: var(--green-950); }
.lede { color: var(--muted); font-size: clamp(1.12rem, 2.2vw, 1.4rem); line-height: 1.55; }

.utility-bar { position: relative; z-index: 2; background: var(--lime); color: var(--green-950); }
.utility-bar__inner { min-height: 2rem; display: flex; align-items: center; justify-content: center; }
.utility-bar p { margin: 0; font-size: .68rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.utility-bar p:first-child, .utility-bar span { display: none; }
.utility-bar a { text-decoration: underline; text-underline-offset: .18rem; }
.site-header { position: absolute; z-index: 50; inset: 0 0 auto; color: white; }
.nav { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.22); }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--heading); text-transform: uppercase; }
.brand__mark { width: 2.75rem; height: 2.75rem; position: relative; display: flex; align-items: flex-end; justify-content: center; gap: .18rem; padding-bottom: .47rem; overflow: hidden; background: var(--lime); border-radius: 50%; }
.brand__mark i { width: .2rem; height: 1.25rem; display: block; background: var(--green-950); border-radius: 1rem; transform: rotate(-20deg); transform-origin: bottom; }
.brand__mark i:nth-child(2) { height: 1.5rem; transform: rotate(0); }
.brand__mark i:nth-child(3) { transform: rotate(20deg); }
.brand__text { display: flex; align-items: baseline; gap: .32rem; line-height: 1; }
.brand__text strong, .brand__text small { font: 900 1.25rem var(--heading); letter-spacing: -.01em; }
.brand__text small { color: var(--lime); }
.menu-toggle { width: 3rem; height: 3rem; display: grid; place-content: center; gap: .32rem; padding: 0; background: rgba(10,40,30,.38); border: 1px solid rgba(255,255,255,.28); }
.menu-toggle i { width: 1.45rem; height: 2px; display: block; background: white; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(.42rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-.42rem) rotate(-45deg); }
.nav__menu { position: absolute; top: 7rem; left: 0; width: 100%; display: none; padding: 1.5rem 1.125rem 2rem; background: rgba(10,40,30,.99); border-bottom: 3px solid var(--lime); }
.nav__menu.is-open { display: grid; }
.nav__menu > a:not(.button) { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.15); font-weight: 750; }
.nav__menu > a:not(.button):hover { color: var(--lime); }
.nav__phone { color: var(--lime); }

.button { min-height: 3.5rem; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: .85rem 1.25rem; background: var(--green-800); color: white; border: 1px solid var(--green-800); border-radius: var(--radius); font-size: .74rem; font-weight: 850; letter-spacing: .08em; line-height: 1; text-transform: uppercase; transition: background .2s, color .2s, transform .2s; }
.button:hover { background: var(--green-700); transform: translateY(-2px); }
.button--small { min-height: 3rem; margin-top: 1rem; background: var(--lime); color: var(--green-950); border-color: var(--lime); }
.button--small:hover, .button--lime:hover { background: white; color: var(--green-950); border-color: white; }
.button--lime { min-height: 3.9rem; background: var(--lime); color: var(--green-950); border-color: var(--lime); }
.button--green { background: var(--green-900); }
.button-group { display: flex; flex-direction: column; align-items: flex-start; gap: 1.15rem; }
.text-link, .arrow-link { display: inline-flex; align-items: center; gap: .75rem; padding-bottom: .2rem; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.text-link--light, .arrow-link--light { color: white; }
.text-link span, .arrow-link span { transition: transform .2s; }
.text-link:hover span, .arrow-link:hover span { transform: translateX(.25rem); }

.hero { min-height: 49rem; position: relative; display: flex; align-items: flex-end; overflow: hidden; background: var(--green-950); color: white; }
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 58% center; }
.hero__shade { background: linear-gradient(90deg, rgba(5,23,16,.96) 0%, rgba(5,23,16,.82) 46%, rgba(5,23,16,.16) 83%), linear-gradient(0deg, rgba(5,23,16,.63), transparent 50%); }
.hero::after { position: absolute; inset: auto -2rem 0; height: 1rem; background: repeating-linear-gradient(120deg, var(--lime) 0 12px, var(--green-950) 12px 24px); content: ""; }
.hero__inner { position: relative; z-index: 2; padding-top: 10rem; padding-bottom: 4.75rem; }
.hero__copy { max-width: 45rem; }
.hero h1 { max-width: 12ch; }
.hero h1 em { color: var(--lime); font-style: normal; white-space: nowrap; }
.hero__lead { max-width: 36rem; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 2.3vw, 1.28rem); line-height: 1.58; }
.hero__details { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin: 3rem 0 0; padding: 1.3rem 0 0; border-top: 1px solid rgba(255,255,255,.24); list-style: none; }
.hero__details li { display: flex; flex-direction: column; gap: .1rem; }
.hero__details strong { color: white; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.hero__details span { color: rgba(255,255,255,.57); font-size: .68rem; line-height: 1.35; }
.hero__note { position: absolute; right: .6rem; bottom: 1.3rem; z-index: 2; margin: 0; color: rgba(255,255,255,.45); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; writing-mode: vertical-rl; }

.intro { background: var(--paper); }
.intro__grid { display: grid; gap: 1.75rem; }
.intro h2 { max-width: 18ch; }
.intro__aside { max-width: 34rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.intro__aside p { color: var(--muted); }

.services { position: relative; overflow: hidden; background: var(--green-800); color: white; }
.services::before { position: absolute; width: 28rem; height: 28rem; right: -15rem; top: -15rem; border: 1px solid rgba(201,238,79,.18); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(201,238,79,.025), 0 0 0 10rem rgba(201,238,79,.02); content: ""; }
.section-heading { position: relative; z-index: 1; max-width: 52rem; margin-bottom: 2.75rem; }
.section-heading h2 { max-width: 18ch; }
.section-heading > p { color: rgba(255,255,255,.64); }
.service-grid { position: relative; z-index: 1; display: grid; gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.service-card { min-height: 19rem; display: flex; flex-direction: column; align-items: flex-start; padding: 1.8rem; background: #f4f0e4; color: var(--ink); transition: transform .2s, box-shadow .2s; }
.service-card:hover { z-index: 2; box-shadow: 0 1.2rem 2.5rem rgba(5,23,16,.16); transform: translateY(-.25rem); }
.service-card__number { color: var(--green-700); font: 800 .7rem var(--sans); letter-spacing: .1em; }
.service-card__icon { width: 3rem; height: 3rem; display: grid; place-items: center; margin: 2rem 0 2.5rem; background: var(--lime); font-weight: 900; letter-spacing: -.15em; border-radius: 50%; }
.service-card h3 { max-width: 17ch; margin-top: 4rem; font-family: var(--heading); font-size: 1.85rem; font-weight: 900; text-transform: uppercase; }
.service-card__icon + h3 { margin-top: 0; }
.service-card p { color: var(--muted); }
.service-card ul { display: flex; flex-wrap: wrap; gap: .5rem; margin: auto 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { padding: .3rem .55rem; background: var(--tan); font-size: .64rem; font-weight: 750; text-transform: uppercase; }
.service-card--feature { background: var(--lime); }
.service-card--feature li { background: rgba(13,50,37,.12); }
.service-card--dark { background: var(--green-950); color: white; }
.service-card--dark .service-card__number { color: var(--lime); }
.service-card--dark p { color: rgba(255,255,255,.66); }
.service-card--dark .arrow-link { margin-top: auto; }
.card-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.25rem; padding-bottom: .15rem; border-bottom: 1px solid currentColor; color: var(--green-800); font-size: .66rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.service-card--feature .card-link { margin-top: 1.25rem; }

.audience { background: var(--tan); }
.audience__grid { display: grid; gap: 1rem; }
.audience__title { padding-bottom: 2rem; }
.audience__title h2 { max-width: 17ch; }
.audience__title > p:last-child { max-width: 32rem; color: var(--muted); }
.audience-card { min-height: 25rem; display: flex; flex-direction: column; padding: 1.75rem; background: var(--green-700); color: white; }
.audience-card--cream { background: var(--paper); color: var(--ink); }
.audience-card__tag { align-self: flex-start; padding: .35rem .6rem; background: var(--lime); color: var(--green-950); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.audience-card h3 { max-width: 15ch; margin-top: auto; font-family: var(--heading); font-size: clamp(2.1rem, 4vw, 3.25rem); font-weight: 900; text-transform: uppercase; }
.audience-card > p:not(.audience-card__foot) { max-width: 30rem; color: rgba(255,255,255,.72); }
.audience-card--cream > p:not(.audience-card__foot) { color: var(--muted); }
.audience-card__line { width: 100%; height: 5px; margin-top: 1rem; background: repeating-linear-gradient(90deg, var(--lime) 0 12%, transparent 12% 14%); }
.audience-card--cream .audience-card__line { background: repeating-linear-gradient(90deg, var(--green-700) 0 12%, transparent 12% 14%); }
.audience-card__foot { margin: .8rem 0 0; font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.process { background: var(--green-950); color: white; }
.process__heading h2 { max-width: 19ch; }
.process-list { margin: 3rem 0 0; padding: 0; border-bottom: 1px solid rgba(255,255,255,.18); list-style: none; }
.process-list li { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.process-list__number { color: var(--lime); font-family: var(--heading); font-size: 1.5rem; }
.process-list h3 { margin-bottom: .45rem; font-size: 1.15rem; }
.process-list p { max-width: 38rem; margin: 0; color: rgba(255,255,255,.61); font-size: .9rem; }

.coverage { background: var(--paper); }
.coverage__grid { display: grid; gap: 3rem; }
.coverage__copy h2 { max-width: 17ch; }
.coverage__copy > p:not(.kicker) { max-width: 36rem; color: var(--muted); }
.coverage__copy .button { margin-top: 1rem; }
.coverage__map { position: relative; display: grid; gap: .75rem; align-self: center; padding: 1rem; background: var(--tan); border: 1px solid var(--line); }
.coverage__map::after { position: absolute; inset: .5rem; pointer-events: none; border: 1px solid rgba(255,255,255,.6); content: ""; }
.state-block { position: relative; z-index: 1; padding: 1.6rem; background: var(--paper); }
.state-block p { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.2rem; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.state-block p strong { font-family: var(--heading); font-size: 2rem; }
.state-block ul { display: flex; flex-wrap: wrap; gap: .45rem .7rem; margin: 0; padding: 0; list-style: none; }
.state-block li { color: var(--muted); font-size: .8rem; }
.state-block li:not(:last-child)::after { margin-left: .7rem; color: var(--lime-dark); content: "•"; }
.state-block--texas { background: var(--green-700); color: white; }
.state-block--texas li { color: rgba(255,255,255,.72); }

.articles { background: var(--paper); border-top: 1px solid var(--line); }
.section-heading--articles { color: var(--ink); }
.section-heading--articles > p { color: var(--muted); }
.article-grid { display: grid; gap: 1rem; }
.article-card { min-height: 19rem; display: flex; flex-direction: column; padding: 1.75rem; background: var(--green-800); color: white; border-top: .35rem solid var(--lime); transition: transform .2s, box-shadow .2s; }
.article-card:hover { box-shadow: 0 1rem 2.5rem rgba(19,36,28,.14); transform: translateY(-.25rem); }
.article-card > span { color: var(--lime); font-size: .65rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.article-card h3 { max-width: 15ch; margin-top: auto; font-family: var(--heading); font-size: 2rem; font-weight: 900; text-transform: uppercase; }
.article-card p { margin-bottom: 0; color: rgba(255,255,255,.67); font-size: .86rem; }
.article-card--lime { background: var(--lime); color: var(--green-950); border-color: var(--green-950); }
.article-card--lime > span, .article-card--lime p { color: var(--green-950); }
.faq { background: var(--cream); }
.faq__grid { display: grid; gap: 3rem; }
.faq h2 { max-width: 15ch; }
.faq__grid > div:first-child > p:not(.kicker) { max-width: 24rem; color: var(--muted); }
.accordion { border-bottom: 1px solid var(--line); }
.accordion details { border-top: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; font-size: .95rem; font-weight: 750; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { width: 1.8rem; height: 1.8rem; position: relative; flex: 0 0 auto; background: var(--green-800); border-radius: 50%; }
.accordion summary i::before, .accordion summary i::after { position: absolute; inset: 50% auto auto 50%; width: .7rem; height: 2px; background: var(--lime); transform: translate(-50%, -50%); content: ""; }
.accordion summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s; }
.accordion details[open] summary i::after { transform: translate(-50%, -50%); }
.accordion details p { max-width: 42rem; padding-right: 2.75rem; color: var(--muted); }

.estimate { position: relative; padding: 5.5rem 0; overflow: hidden; background: var(--lime); color: var(--green-950); }
.estimate__stripe { position: absolute; width: 18rem; height: 130%; top: -15%; right: -7rem; background: repeating-linear-gradient(120deg, rgba(13,50,37,.13) 0 1rem, transparent 1rem 2rem); transform: skewX(-9deg); }
.estimate__inner { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
.estimate h2 { max-width: 16ch; margin-bottom: 0; }
.estimate__actions { display: grid; gap: .7rem; align-content: center; }
.estimate__action { position: relative; display: flex; flex-direction: column; padding: 1.1rem 3.5rem 1.1rem 1.2rem; background: var(--green-950); color: white; border: 1px solid var(--green-950); transition: background .2s, color .2s; }
.estimate__action:hover { background: white; color: var(--green-950); }
.estimate__action span { font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.estimate__action strong { overflow-wrap: anywhere; font-size: 1.05rem; }
.estimate__action i { position: absolute; right: 1.2rem; top: 50%; font-size: 1.4rem; font-style: normal; transform: translateY(-50%); }
.estimate__actions > p { max-width: 35rem; margin: .5rem 0 0; font-size: .72rem; line-height: 1.45; }

.footer { padding-top: 4.5rem; background: #071c15; color: white; }
.footer__top { display: grid; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer__brand > p { max-width: 27rem; margin-top: 1.4rem; color: rgba(255,255,255,.58); font-size: .84rem; }
.footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.footer__links h2 { margin-bottom: .8rem; color: var(--lime); font: 800 .68rem var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.footer__links a, .footer__links p { margin: 0; color: rgba(255,255,255,.67); font-size: .82rem; }
.footer__links a:hover { color: var(--lime); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; padding: 1.35rem 0; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.48); font-size: .64rem; }
.footer__bottom p { margin: 0; }
.footer__bottom a { margin-left: auto; color: white; }

/* Interior pages */
.inner-page .site-header { position: relative; background: var(--green-950); }
.inner-page .nav__menu > a[aria-current="page"] { color: var(--lime); }
.page-hero { position: relative; overflow: hidden; padding: 6.5rem 0 5rem; background: var(--green-800); color: white; }
.page-hero::before { position: absolute; width: 30rem; height: 30rem; right: -10rem; bottom: -19rem; border: 1px solid rgba(201,238,79,.18); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(201,238,79,.035), 0 0 0 10rem rgba(201,238,79,.02); content: ""; }
.page-hero::after { position: absolute; inset: auto 0 0; height: .65rem; background: repeating-linear-gradient(120deg, var(--lime) 0 12px, var(--green-950) 12px 24px); content: ""; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { max-width: 13ch; margin-bottom: 1.1rem; }
.page-hero h1 em { color: var(--lime); font-style: normal; }
.page-hero__lead { max-width: 42rem; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(1.08rem, 2.2vw, 1.35rem); line-height: 1.55; }
.breadcrumb { display: flex; align-items: center; gap: .65rem; margin-bottom: 2.2rem; color: rgba(255,255,255,.58); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--lime); }
.section--cream { background: var(--cream); }
.section--tan { background: var(--tan); }
.section--dark { background: var(--green-950); color: white; }
.split { display: grid; gap: 2.5rem; }
.split h2 { max-width: 16ch; }
.split__copy { max-width: 40rem; }
.split__copy p { color: var(--muted); }
.section--dark .split__copy p { color: rgba(255,255,255,.65); }
.stat-band { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { min-height: 10rem; padding: 1.6rem; background: var(--paper); }
.stat strong { display: block; margin-bottom: .4rem; color: var(--green-700); font: 900 clamp(2rem, 5vw, 3rem) var(--heading); text-transform: uppercase; }
.stat span { color: var(--muted); font-size: .78rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.offer-grid { display: grid; gap: 1rem; }
.offer-card { min-height: 22rem; display: flex; flex-direction: column; padding: 1.8rem; background: var(--paper); border-top: .35rem solid var(--green-700); }
.offer-card--green { background: var(--green-800); color: white; border-color: var(--lime); }
.offer-card--lime { background: var(--lime); border-color: var(--green-950); }
.offer-card__number { color: var(--green-700); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.offer-card--green .offer-card__number { color: var(--lime); }
.offer-card h2, .offer-card h3 { max-width: 16ch; margin-top: auto; font-family: var(--heading); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; }
.offer-card p { margin-bottom: 0; color: var(--muted); }
.offer-card--green p { color: rgba(255,255,255,.66); }
.offer-card ul { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.3rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.offer-card li { padding: .3rem .55rem; background: var(--tan); font-size: .63rem; font-weight: 800; text-transform: uppercase; }
.offer-card--green ul { border-color: rgba(255,255,255,.17); }
.offer-card--green li { background: rgba(255,255,255,.1); }
.service-directory { display: grid; gap: 1rem; }
.directory-group { min-height: 27rem; display: flex; flex-direction: column; padding: 1.8rem; background: var(--paper); border-top: .35rem solid var(--green-700); }
.directory-group--lime { background: var(--lime); border-color: var(--green-950); }
.directory-group--green { background: var(--green-800); color: white; border-color: var(--lime); }
.directory-group > span { color: var(--green-700); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.directory-group--green > span { color: var(--lime); }
.directory-group h2 { max-width: 13ch; margin: 2.5rem 0 1.5rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.directory-group--green h2 { margin-top: auto; }
.directory-group--green p { color: rgba(255,255,255,.68); }
.directory-links { display: grid; margin-top: auto; border-bottom: 1px solid var(--line); }
.directory-links a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-top: 1px solid var(--line); }
.directory-links a:hover strong { color: var(--green-700); }
.directory-links strong { font-size: .82rem; line-height: 1.35; }
.directory-links i { color: var(--green-700); font-style: normal; }
.service-scope { display: grid; gap: 2rem; }
.scope-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.scope-card { padding: 1.5rem; background: var(--paper); }
.scope-card > span { color: var(--green-700); font: 900 1.25rem var(--heading); }
.scope-card h3 { margin-top: 2rem; }
.scope-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.quote-card { align-self: stretch; padding: 2rem; background: var(--green-800); color: white; }
.quote-card h2 { max-width: 12ch; font-size: clamp(2rem, 4vw, 3rem); }
.quote-card ul { margin: 2rem 0; padding: 0; border-bottom: 1px solid rgba(255,255,255,.18); list-style: none; }
.quote-card li { padding: .85rem 0 .85rem 1.5rem; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.72); font-size: .85rem; }
.quote-card li::before { margin-left: -1.5rem; padding-right: .75rem; color: var(--lime); content: "✓"; }
.related-grid { display: grid; gap: .75rem; }
.related-card { position: relative; min-height: 9rem; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem 3.5rem 1.4rem 1.4rem; background: var(--paper); border-top: .25rem solid var(--green-700); }
.related-card:hover { background: var(--lime); }
.related-card span { color: var(--green-700); font-size: .62rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.related-card strong { font-family: var(--heading); font-size: 1.35rem; line-height: 1.05; text-transform: uppercase; }
.related-card i { position: absolute; right: 1.4rem; bottom: 1.25rem; color: var(--green-700); font-size: 1.3rem; font-style: normal; }
.steps-grid { display: grid; gap: 1px; margin-top: 2.5rem; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.step-card { padding: 1.8rem; background: var(--green-900); }
.step-card span { color: var(--lime); font: 900 1.5rem var(--heading); }
.step-card h3 { margin-top: 2.5rem; }
.step-card p { margin: 0; color: rgba(255,255,255,.62); font-size: .88rem; }
.area-grid { display: grid; gap: 1rem; }
.area-card { padding: 1.7rem; background: var(--paper); border: 1px solid var(--line); }
.area-card--primary { background: var(--green-700); color: white; border-color: var(--green-700); }
.area-card__state { color: var(--green-700); font-size: .66rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.area-card--primary .area-card__state { color: var(--lime); }
.area-card h2, .area-card h3 { margin: 2.2rem 0 1rem; font-family: var(--heading); font-size: 2rem; font-weight: 900; text-transform: uppercase; }
.area-card ul { display: flex; flex-wrap: wrap; gap: .55rem .8rem; margin: 0; padding: 0; list-style: none; }
.area-card li { color: var(--muted); font-size: .86rem; }
.area-card--primary li { color: rgba(255,255,255,.74); }
.area-card li a { color: inherit; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.area-card li a:hover { color: var(--green-700); }
.area-card--primary li a:hover { color: var(--lime); }
.article-index { display: grid; gap: 1rem; }
.article-preview { min-height: 20rem; display: flex; flex-direction: column; padding: 1.8rem; background: var(--green-800); color: white; border-top: .35rem solid var(--lime); }
.article-preview:nth-child(2) { background: var(--lime); color: var(--green-950); border-color: var(--green-950); }
.article-preview__meta { font-size: .66rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; color: var(--lime); }
.article-preview:nth-child(2) .article-preview__meta { color: var(--green-700); }
.article-preview h2, .article-preview h3 { max-width: 15ch; margin-top: auto; font-family: var(--heading); font-size: 2rem; font-weight: 900; text-transform: uppercase; }
.article-preview p { margin: 0; color: rgba(255,255,255,.66); font-size: .88rem; }
.article-preview:nth-child(2) p { color: var(--green-950); }
.article-index--full { grid-template-columns: 1fr; }
.article-preview--image { min-height: 0; padding: 0; overflow: hidden; background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-top: .35rem solid var(--green-700); }
.article-preview--image:nth-child(2) { background: var(--paper); color: var(--ink); border-color: var(--line); border-top-color: var(--green-700); }
.article-preview__image { aspect-ratio: 16 / 9; overflow: hidden; background: var(--tan); }
.article-preview__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.article-preview--image:hover .article-preview__image img { transform: scale(1.025); }
.article-preview__content { min-height: 19rem; display: flex; flex-direction: column; padding: 1.5rem; }
.article-preview--image .article-preview__meta, .article-preview--image:nth-child(2) .article-preview__meta { color: var(--green-700); }
.article-preview--image h2 { max-width: 18ch; margin: 2rem 0 .8rem; font-size: clamp(1.75rem, 3vw, 2.15rem); }
.article-preview--image h2 a:hover { color: var(--green-700); }
.article-preview--image p, .article-preview--image:nth-child(2) p { color: var(--muted); }
.article-preview__link { margin-top: auto; padding-top: 1.5rem; color: var(--green-700); font-size: .72rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }

/* Individual articles */
.article-hero { position: relative; overflow: hidden; padding: 4rem 0; background: var(--green-800); color: white; border-bottom: .65rem solid var(--lime); }
.article-hero .breadcrumb { margin-bottom: 2rem; }
.article-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
.article-hero h1 { max-width: 13ch; margin: .6rem 0 1.1rem; font-size: clamp(3.25rem, 8vw, 6.5rem); }
.article-hero__lead { max-width: 42rem; margin: 0; color: rgba(255,255,255,.76); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.55; }
.article-byline { display: flex; flex-wrap: wrap; gap: .35rem .65rem; margin: 1.8rem 0 0; color: rgba(255,255,255,.54); font-size: .67rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.article-hero__media { position: relative; margin: 0; box-shadow: 1rem 1rem 0 rgba(10,40,30,.45); }
.article-hero__media::before { position: absolute; z-index: 1; inset: .65rem; border: 1px solid rgba(255,255,255,.38); pointer-events: none; content: ""; }
.article-hero__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-hero__media figcaption { position: absolute; z-index: 2; right: .65rem; bottom: .65rem; padding: .2rem .45rem; background: rgba(10,40,30,.78); color: rgba(255,255,255,.76); font-size: .58rem; letter-spacing: .05em; text-transform: uppercase; }
.article-layout { display: grid; gap: 3rem; padding-top: 4.5rem; padding-bottom: 5.5rem; }
.article-toc { align-self: start; padding: 1.4rem; background: var(--cream); border-top: .3rem solid var(--green-700); }
.article-toc > strong { color: var(--green-700); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.article-toc ol { margin: 1.1rem 0 1.5rem; padding: 0; list-style: none; counter-reset: toc; border-bottom: 1px solid var(--line); }
.article-toc li { counter-increment: toc; border-top: 1px solid var(--line); }
.article-toc li a { display: grid; grid-template-columns: 1.7rem 1fr; gap: .35rem; padding: .75rem 0; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.article-toc li a::before { color: var(--green-700); font: 900 1rem var(--heading); content: "0" counter(toc); }
.article-toc li a:hover { color: var(--green-700); }
.article-toc .button { width: 100%; }
.article-body { min-width: 0; max-width: 47rem; }
.article-intro { margin: 0 0 4rem; padding-left: 1.3rem; border-left: .35rem solid var(--lime-dark); color: var(--ink); font-size: clamp(1.2rem, 2.5vw, 1.5rem); line-height: 1.55; }
.article-body section { scroll-margin-top: 2rem; margin-top: 4rem; }
.article-body section:first-of-type { margin-top: 0; }
.article-section-number { margin: 0 0 .25rem; color: var(--green-700); font: 900 1.25rem var(--heading); }
.article-body h2 { max-width: 19ch; font-size: clamp(2rem, 4.5vw, 3.15rem); }
.article-body section > p:not(.article-section-number) { color: var(--muted); font-size: 1.02rem; }
.article-body a { color: var(--green-700); font-weight: 750; text-decoration: underline; text-decoration-color: rgba(32,86,62,.35); text-underline-offset: .18em; }
.article-body a:hover { text-decoration-color: var(--green-700); }
.article-callout { display: grid; gap: .35rem; margin: 2rem 0; padding: 1.35rem 1.5rem; background: var(--green-800); color: white; border-left: .4rem solid var(--lime); }
.article-callout strong { font-family: var(--heading); font-size: 1.45rem; line-height: 1.1; text-transform: uppercase; }
.article-callout span { color: rgba(255,255,255,.68); font-size: .82rem; }
.article-body .article-checklist { padding: 2rem; background: var(--lime); }
.article-checklist h2 { margin-bottom: 1.4rem; font-size: 2.25rem; }
.article-checklist ul { display: grid; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.article-checklist li { padding: .65rem .75rem .65rem 2.2rem; background: rgba(255,255,255,.58); font-size: .83rem; font-weight: 700; }
.article-checklist li::before { margin-left: -1.45rem; padding-right: .65rem; color: var(--green-700); content: "✓"; }
.article-note { margin: 1.5rem 0 0; padding: 1rem 1.2rem; background: var(--cream); color: var(--muted); font-size: .75rem; }
.contact-layout { display: grid; gap: 3rem; }
.contact-panel { display: grid; gap: .75rem; }
.contact-method { position: relative; display: flex; flex-direction: column; padding: 1.3rem 3.5rem 1.3rem 1.3rem; background: var(--green-950); color: white; }
.contact-method:hover { background: var(--green-700); }
.contact-method span { color: var(--lime); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-method strong { overflow-wrap: anywhere; font-size: 1.05rem; }
.contact-method i { position: absolute; right: 1.3rem; top: 50%; font-size: 1.35rem; font-style: normal; transform: translateY(-50%); }
.quote-form { padding: clamp(1.4rem, 4vw, 2.2rem); border-top: .4rem solid var(--lime); background: var(--cream); box-shadow: 0 1rem 3rem rgba(13,50,37,.1); }
.quote-form h2 { margin-bottom: 1.4rem; }
.quote-form label { display: grid; gap: .4rem; margin-bottom: 1rem; color: var(--green-950); font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: .85rem; border: 1px solid var(--line); border-radius: 0; background: white; color: var(--green-950); font: 1rem/1.4 var(--body); }
.quote-form textarea { resize: vertical; }
.quote-form .button { width: 100%; }
.quote-form .button:disabled { cursor: wait; opacity: .7; }
.form-row { display: grid; gap: 1rem; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.quote-form .form-consent { display: flex; flex-direction: row; align-items: flex-start; gap: .65rem; margin: 1rem 0; font-size: .72rem; line-height: 1.45; letter-spacing: 0; text-transform: none; }
.quote-form .form-consent input { width: 1.1rem; min-width: 1.1rem; margin-top: .12rem; }
.quote-form .form-consent a { text-decoration: underline; text-underline-offset: .15em; }
.cf-turnstile { margin: 1rem 0; }
.form-note, .form-status { margin: .7rem 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.form-status { min-height: 1.5em; font-weight: 800; }
.request-list { margin: 2rem 0 0; padding: 0; border-bottom: 1px solid var(--line); list-style: none; }
.request-list li { display: grid; grid-template-columns: 2.5rem 1fr; gap: .8rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.request-list span { color: var(--green-700); font: 900 1.2rem var(--heading); }
.request-list p { margin: 0; color: var(--muted); }
.page-cta { position: relative; overflow: hidden; padding: 5rem 0; background: var(--lime); }
.page-cta::after { position: absolute; width: 18rem; height: 150%; right: -7rem; top: -25%; background: repeating-linear-gradient(120deg, rgba(13,50,37,.13) 0 1rem, transparent 1rem 2rem); transform: skewX(-9deg); content: ""; }
.page-cta__inner { position: relative; z-index: 1; display: grid; gap: 2rem; }
.page-cta h2 { max-width: 17ch; margin: 0; }
.page-cta .button { align-self: center; justify-self: start; background: var(--green-950); }

@media (min-width: 40rem) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .shell { width: min(calc(100% - 4rem), var(--shell)); }
  .utility-bar__inner { justify-content: space-between; }
  .utility-bar p:first-child, .utility-bar span { display: inline; }
  .button-group { flex-direction: row; align-items: center; }
  .hero__inner { padding-bottom: 5.7rem; }
  .hero__details { max-width: 36rem; gap: 1.5rem; }
  .hero__details strong { font-size: .78rem; }
  .hero__details span { font-size: .74rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .state-block { padding: 2rem; }
  .estimate__action { flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; padding-right: 4rem; }
  .estimate__action strong { text-align: right; }
  .footer__top { grid-template-columns: 2fr 1fr 1.3fr; }
  .stat-band { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .article-index--full { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 58rem) {
  .section { padding: 7.5rem 0; }
  .intro__grid { grid-template-columns: .65fr 1.25fr .8fr; gap: 3rem; align-items: start; }
  .intro__aside { margin-top: .3rem; }
  .section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 4rem; }
  .section-heading--row > p { max-width: 26rem; margin-bottom: 1.4rem; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card { min-height: 27rem; }
  .service-card--feature { grid-column: span 2; }
  .service-card--dark { min-height: 18rem; grid-column: 1 / -1; }
  .audience__grid { grid-template-columns: .9fr 1.05fr 1.05fr; gap: 1px; }
  .audience__title { padding: 2rem 3rem 0 0; }
  .audience-card { min-height: 34rem; }
  .process__heading { display: grid; grid-template-columns: .7fr 1.5fr; gap: 3rem; align-items: start; }
  .process-list li { grid-template-columns: 5rem .65fr 1.35fr; align-items: start; }
  .process-list li div { display: contents; }
  .process-list h3 { margin: 0; }
  .coverage__grid { grid-template-columns: .9fr 1.1fr; gap: 6rem; align-items: center; }
  .coverage__map { grid-template-columns: 1.25fr .75fr; min-height: 27rem; }
  .state-block { display: flex; flex-direction: column; justify-content: center; }
  .faq__grid { grid-template-columns: .7fr 1.3fr; gap: 6rem; }
  .article-grid { grid-template-columns: repeat(3, 1fr); }
  .estimate { padding: 7rem 0; }
  .estimate__inner { grid-template-columns: 1.1fr .9fr; gap: 6rem; align-items: center; }
  .page-hero { padding: 8rem 0 6.5rem; }
  .split { grid-template-columns: .85fr 1.15fr; gap: 6rem; align-items: start; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-directory { grid-template-columns: repeat(2, 1fr); }
  .service-scope { grid-template-columns: 1.35fr .65fr; gap: 2rem; align-items: start; }
  .scope-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: 1.15fr .85fr .85fr; }
  .area-card--primary { grid-row: span 2; }
  .article-index { grid-template-columns: repeat(3, 1fr); }
  .article-index--full { grid-template-columns: repeat(3, 1fr); }
  .article-hero { padding: 6rem 0; }
  .article-hero__grid { grid-template-columns: 1.02fr .98fr; gap: 4rem; }
  .article-layout { grid-template-columns: 15rem minmax(0, 47rem); gap: clamp(3rem, 6vw, 6rem); justify-content: center; padding-top: 6.5rem; padding-bottom: 7.5rem; }
  .article-toc { position: sticky; top: 1.5rem; }
  .contact-layout { grid-template-columns: .9fr 1.1fr; gap: 6rem; align-items: start; }
  .page-cta__inner { grid-template-columns: 1.2fr .8fr; align-items: center; }
  .page-cta .button { justify-self: end; }
}

@media (min-width: 70rem) {
  .nav { min-height: 5.5rem; }
  .menu-toggle { display: none; }
  .nav__menu { position: static; width: auto; display: flex; align-items: center; gap: .9rem; padding: 0; background: none; border: 0; }
  .nav__menu > a:not(.button) { padding: .3rem 0; border: 0; font-size: .68rem; }
  .nav__phone { display: none; }
  .button--small { margin: 0; }
  .hero { min-height: 54rem; }
  .hero__inner { padding-top: 12rem; }
  .hero__copy { max-width: 52rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
