:root {
    --canopy: #173f2a;
    --canopy-2: #235b38;
    --leaf: #79a83b;
    --leaf-bright: #b4dc55;
    --gold: #e7b447;
    --sky: #dcebf0;
    --bark: #5e4635;
    --ink: #162018;
    --muted: #617064;
    --cream: #f6f1e7;
    --paper: #fffdf8;
    --line: rgba(22, 32, 24, 0.14);
    --shadow: 0 24px 70px rgba(20, 38, 28, 0.17);
    --soft-shadow: 0 18px 48px rgba(20, 38, 28, 0.11);
    --radius: 8px;
    --wrap: min(1480px, calc(100vw - 96px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(90deg, rgba(23, 63, 42, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 63, 42, 0.028) 1px, transparent 1px),
        var(--paper);
    background-size: 44px 44px;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 100;
    background: var(--leaf-bright);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 6px;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 248, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 14px 36px rgba(20, 38, 28, 0.12);
}

.header-inner {
    width: var(--wrap);
    min-height: 118px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    text-decoration: none;
}

.brand img {
    width: 330px;
    max-height: 138px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 6px;
    background: var(--canopy);
    color: var(--leaf-bright);
    font-weight: 900;
}

.brand-copy span,
.brand-copy small {
    display: block;
}

.brand-copy span {
    font-weight: 900;
}

.brand-copy small {
    color: var(--muted);
}

.primary-nav {
    justify-self: end;
}

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

.nav-list a {
    position: relative;
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #243329;
    font-size: 0.93rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
    background: rgba(121, 168, 59, 0.16);
    color: var(--canopy);
    transform: translateY(-1px);
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    border-radius: 99px;
    background: var(--leaf);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
    transform: scaleX(1);
}

.header-call,
.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 11px 17px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1.1;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.header-call,
.button.primary {
    background: var(--leaf-bright);
    color: var(--ink);
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

.button.light {
    background: #fff;
    color: var(--canopy);
}

.header-call:hover,
.button:hover,
.header-call:focus-visible,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(20, 38, 28, 0.18);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--canopy);
}

.hero {
    position: relative;
    height: min(700px, calc(100svh - 128px));
    min-height: 520px;
    max-height: calc(100svh - 128px);
    overflow: hidden;
    isolation: isolate;
    background: var(--canopy);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: grid;
    align-items: end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 620ms ease, visibility 620ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(12, 30, 20, 0.88), rgba(12, 30, 20, 0.5), rgba(12, 30, 20, 0.18)),
        radial-gradient(circle at 26% 62%, rgba(180, 220, 85, 0.22), transparent 28%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 34%;
    background: linear-gradient(0deg, rgba(16, 22, 18, 0.7), transparent);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.55), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: var(--wrap);
    margin: 0 auto;
    padding: clamp(48px, 9vh, 96px) 0 126px;
    color: #fff;
}

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

.hero h1,
.intro-band h2,
.section-heading h2,
.emergency-section h2,
.areas-section h2,
.basic-page h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
    line-height: 0.98;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(3rem, 8vw, 7.3rem);
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.hero-intro {
    max-width: 690px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-stats {
    position: absolute;
    right: max(48px, calc((100vw - 1480px) / 2 + 48px));
    bottom: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1px;
    width: min(560px, calc(100vw - 40px));
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
    z-index: 4;
}

.hero-slider-controls {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-arrow,
.hero-dots button {
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    pointer-events: auto;
    transform: translateY(-50%);
}

.hero-arrow[data-hero-prev] {
    left: max(24px, calc((100vw - 1480px) / 2 + 24px));
}

.hero-arrow[data-hero-next] {
    right: max(24px, calc((100vw - 1480px) / 2 + 24px));
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 34px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
}

.hero-arrow:hover,
.hero-arrow:focus-visible,
.hero-dots button:hover,
.hero-dots button:focus-visible,
.hero-dots button.is-active {
    background: var(--leaf-bright);
    border-color: var(--leaf-bright);
    color: var(--ink);
    outline: none;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    transform: translateY(-50%) scale(1.06);
}

.hero-dots button:hover,
.hero-dots button:focus-visible,
.hero-dots button.is-active {
    transform: translateY(-2px);
}

.hero-stats div {
    padding: 20px;
    background: rgba(255, 253, 248, 0.94);
    transition: transform 180ms ease, background-color 180ms ease;
}

.hero-stats div:hover {
    transform: translateY(-2px);
    background: #fff;
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--canopy);
    font-size: 1.45rem;
    line-height: 1;
}

.hero-stats span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.content-wrap {
    width: var(--wrap);
    margin: 0 auto;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 7vw, 92px);
    align-items: start;
}

.intro-band,
.services-section,
.process-section,
.testimonials-section,
.areas-section,
.page-shell {
    padding: clamp(70px, 10vw, 118px) 0;
}

.intro-band {
    background:
        radial-gradient(circle at 85% 14%, rgba(180, 220, 85, 0.22), transparent 26%),
        linear-gradient(180deg, #f8f5ed, var(--cream));
}

.intro-band h2,
.section-heading h2,
.areas-section h2,
.basic-page h1 {
    color: var(--canopy);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.rich-text p:first-child {
    margin-top: 0;
}

.rich-text p:last-child {
    margin-bottom: 0;
}

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

.section-heading.compact {
    max-width: 660px;
}

.section-heading p:not(.eyebrow),
.areas-section p,
.emergency-section p {
    color: var(--muted);
    font-size: 1.08rem;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 38, 28, 0.07);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 145px;
    background:
        radial-gradient(circle at 50% 38%, rgba(180, 220, 85, 0.2), transparent 45%),
        linear-gradient(180deg, rgba(238, 244, 228, 0.96), rgba(255, 255, 255, 0));
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(121, 168, 59, 0.42);
    box-shadow: var(--soft-shadow);
}

.service-card h3 {
    margin: 22px 0 10px;
    color: var(--canopy);
    font-size: 1.2rem;
    line-height: 1.15;
}

.process-grid h3 {
    margin: 22px 0 10px;
    color: var(--canopy);
    font-size: 1.15rem;
    line-height: 1.15;
}

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

.service-card p {
    margin-inline: 0;
    color: var(--muted);
}

.process-section {
    background: #eef4e4;
}

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

.process-grid article {
    padding: 28px;
    border-left: 4px solid var(--leaf);
    border-radius: var(--radius);
    background: var(--paper);
}

.process-grid span {
    color: var(--leaf);
    font-weight: 950;
}

.emergency-section {
    padding: clamp(46px, 8vw, 74px) 0;
    background:
        linear-gradient(120deg, rgba(23, 63, 42, 0.98), rgba(35, 91, 56, 0.96)),
        radial-gradient(circle at 82% 30%, rgba(180, 220, 85, 0.22), transparent 28%);
    color: #fff;
}

.emergency-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.emergency-section h2 {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.emergency-section p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

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

.testimonial-grid figure {
    margin: 0;
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(20, 38, 28, 0.07);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial-grid figure:hover {
    transform: translateY(-4px);
    box-shadow: var(--soft-shadow);
}

.testimonial-grid blockquote {
    margin: 0;
    color: #2b382d;
    font-size: 1.05rem;
}

.testimonial-grid figcaption {
    margin-top: 20px;
    color: var(--canopy);
    font-weight: 900;
}

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

.area-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-area-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.3fr) 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.county-map {
    display: grid;
    grid-template-columns: minmax(620px, 1fr) minmax(320px, 0.34fr);
    gap: 22px;
    align-items: stretch;
}

.county-map-board {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f5f7ef;
    box-shadow: 0 12px 30px rgba(20, 38, 28, 0.07);
    transition: box-shadow 220ms ease;
}

.county-map:hover .county-map-board {
    box-shadow: var(--soft-shadow);
}

.county-svg {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 610px;
}

.map-water-shape {
    fill: url(#bpts-water);
}

.map-land-shape {
    fill: url(#bpts-land);
    stroke: rgba(23, 63, 42, 0.2);
    stroke-width: 2;
}

.map-route {
    fill: none;
    stroke: rgba(94, 70, 53, 0.45);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 10 10;
}

.map-route.secondary {
    stroke: rgba(121, 168, 59, 0.48);
}

.map-water-label {
    fill: rgba(23, 63, 42, 0.58);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.map-water-label.small {
    font-size: 13px;
}

.map-title-svg rect,
.map-compass-svg circle {
    fill: rgba(255, 255, 255, 0.92);
    stroke: rgba(23, 63, 42, 0.15);
}

.map-title-svg text {
    fill: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.map-title-svg .strong {
    fill: var(--canopy);
    font-size: 19px;
    letter-spacing: 0;
    text-transform: none;
}

.map-compass-svg text {
    fill: var(--canopy);
    font-size: 22px;
    font-weight: 950;
    text-anchor: middle;
}

.map-compass-svg path {
    fill: var(--leaf);
}

.county-region {
    cursor: pointer;
    outline: none;
}

.county-shape {
    fill: rgba(255, 255, 255, 0.82);
    stroke: rgba(23, 63, 42, 0.45);
    stroke-width: 2;
    transition: fill 180ms ease, stroke 180ms ease, filter 180ms ease;
}

.county-label {
    fill: var(--canopy);
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
    text-anchor: middle;
    dominant-baseline: central;
    pointer-events: none;
}

.county-region:hover .county-shape,
.county-region:focus-visible .county-shape,
.county-region.is-active .county-shape {
    fill: var(--leaf-bright);
    stroke: var(--canopy);
    filter: drop-shadow(0 8px 10px rgba(20, 38, 28, 0.18));
}

.county-region:hover .county-label,
.county-region:focus-visible .county-label,
.county-region.is-active .county-label {
    fill: var(--ink);
}

.map-scale-svg path {
    fill: none;
    stroke: var(--canopy);
    stroke-width: 3;
}

.map-scale-svg text {
    fill: rgba(23, 63, 42, 0.72);
    font-size: 13px;
    font-weight: 900;
}

.county-map-panel {
    padding: 28px;
    border-radius: var(--radius);
    background:
        linear-gradient(160deg, var(--canopy), #10281b);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

.county-map-panel h3 {
    margin: 0 0 14px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.county-map-panel strong {
    display: block;
    margin-top: 24px;
    color: var(--leaf-bright);
}

.area-list li {
    padding: 10px 12px;
    border-radius: 6px;
    background: #fff;
    color: var(--canopy);
    font-weight: 800;
}

.site-footer {
    background: #101812;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    width: var(--wrap);
    margin: 0 auto;
    padding: 58px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    line-height: 1.1;
}

.site-footer h2 {
    font-size: 1.5rem;
}

.site-footer h3 {
    font-size: 1rem;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list.columns {
    columns: 2;
}

.footer-list li,
address span {
    display: block;
    margin-bottom: 6px;
}

address {
    font-style: normal;
}

.footer-actions {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.footer-actions a {
    color: var(--leaf-bright);
}

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

.footer-bottom p {
    width: var(--wrap);
    margin: 0 auto;
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.basic-page {
    max-width: 780px;
}

.inner-hero {
    position: relative;
    isolation: isolate;
    min-height: 420px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--canopy);
    color: #fff;
}

.inner-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(12, 30, 20, 0.86), rgba(12, 30, 20, 0.54), rgba(12, 30, 20, 0.18)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.inner-hero .content-wrap {
    padding: 100px 0 72px;
}

.inner-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    line-height: 0.98;
}

.inner-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.inner-content,
.inner-section {
    padding: clamp(58px, 8vw, 92px) 0;
}

.inner-content {
    background: var(--paper);
}

.inner-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.34fr);
    gap: clamp(30px, 7vw, 78px);
    align-items: start;
}

.page-copy {
    color: #2a372d;
    font-size: 1.08rem;
}

.page-copy p:first-child {
    margin-top: 0;
}

.page-aside {
    position: sticky;
    top: 108px;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1px solid var(--line);
}

.page-aside h2 {
    margin: 0 0 10px;
    color: var(--canopy);
    font-size: 1.45rem;
    line-height: 1.1;
}

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

.card-image {
    display: block;
    width: min(178px, 76%);
    height: 148px;
    object-fit: contain;
    border-radius: 0;
    margin: 0 auto 10px;
    background: transparent;
    border: 0;
    filter: drop-shadow(0 12px 16px rgba(20, 38, 28, 0.14));
    transition: transform 220ms ease, filter 220ms ease;
}

.service-card:hover .card-image,
.service-card:focus-within .card-image {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 18px 20px rgba(20, 38, 28, 0.18));
}

.tips-section {
    background: #eef4e4;
}

.tips-list {
    display: grid;
    gap: 14px;
}

.tips-list article {
    display: grid;
    grid-template-columns: 54px 0.32fr 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.tips-list article:hover {
    transform: translateY(-3px);
    box-shadow: var(--soft-shadow);
}

.tips-list span {
    color: var(--leaf);
    font-weight: 950;
}

.tips-list h3 {
    margin: 0;
    color: var(--canopy);
    line-height: 1.15;
}

.tips-list p {
    margin: 0;
    color: var(--muted);
}

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

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

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(20, 38, 28, 0.07);
}

.gallery-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 260ms ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.045);
}

.gallery-grid figcaption {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 0.9rem;
}

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

.form-wrap {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: clamp(28px, 6vw, 70px);
}

.form-wrap h2 {
    margin: 0;
    color: var(--canopy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.bpts-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(20, 38, 28, 0.07);
}

.bpts-form label {
    display: grid;
    gap: 7px;
    color: var(--canopy);
    font-weight: 850;
}

.bpts-form .full,
.bpts-form .form-status {
    grid-column: 1 / -1;
}

.bpts-form input,
.bpts-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--ink);
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.bpts-form input:focus,
.bpts-form textarea:focus {
    border-color: var(--leaf);
    outline: none;
    box-shadow: 0 0 0 4px rgba(121, 168, 59, 0.15);
}

.bpts-form textarea {
    resize: vertical;
}

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.form-status.success {
    background: rgba(121, 168, 59, 0.18);
    color: var(--canopy);
}

.form-status.error {
    background: #ffe1dc;
    color: #7d2117;
}

.screen-reader-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1020px) {
    .header-inner {
        grid-template-columns: auto auto auto;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .primary-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        display: none;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: block;
    }

    .nav-list {
        display: grid;
        gap: 0;
    }

    .header-call {
        display: none;
    }

    .hero-content {
        padding-bottom: 230px;
    }

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

@media (max-width: 760px) {
    :root {
        --wrap: min(100vw - 32px, 1480px);
    }

    .header-inner {
        min-height: 88px;
        gap: 12px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 238px;
    }

    .hero {
        height: min(660px, calc(100svh - 98px));
        min-height: 560px;
        max-height: calc(100svh - 98px);
    }

    .hero-content {
        padding: 54px 0 230px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-stats {
        left: 14px;
        right: 14px;
        bottom: 18px;
        width: auto;
        grid-template-columns: 1fr;
    }

    .hero-slider-controls {
        left: 14px;
        bottom: 190px;
    }

    .hero-stats div {
        padding: 15px 17px;
    }

    .two-column,
    .process-grid,
    .testimonial-grid,
    .emergency-inner,
    .footer-grid,
    .inner-grid,
    .form-wrap,
    .service-area-layout,
    .county-map {
        grid-template-columns: 1fr;
    }

    .county-map-board {
        min-height: 720px;
    }

    .county-pin {
        width: 92px;
        min-height: 50px;
        font-size: 0.7rem;
    }

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

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

    .emergency-actions {
        justify-self: start;
    }

    .page-aside {
        position: static;
    }

    .tips-list article {
        grid-template-columns: 1fr;
    }

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

    .bpts-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .area-list {
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }
}
