:root {
    --orange: #c1560a;
    --orange-deep: #994006;
    --cream: #f1e4ce;
    --cream-light: #fff8ea;
    --green: #008d21;
    --green-deep: #00781c;
    --green-soft: #00a12a;
    --kicker: #cf8f42;
    --brown: #6e351a;
    --white: #fffdf7;
    --display: "Teko", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --condensed: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
    --body: "Segoe UI", Arial, sans-serif;
    --script: "Shadows Into Light", "Segoe Script", "Bradley Hand", cursive;
    --kicker-line-thickness: 1px;
    --header-height: 104px;
    --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --reveal-duration: 720ms;
    --reveal-distance: 1.15rem;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--green-deep);
    background: var(--cream);
    font-family: var(--body);
    line-height: 1.5;
}

.skip-link {
    position: fixed;
    z-index: 1100;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--green);
    background: var(--cream-light);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 1030;
    top: 0;
    height: var(--header-height);
    padding: 0;
    color: var(--cream-light);
    background: linear-gradient(90deg, rgb(255 255 255 / 2%), transparent 25%, rgb(0 0 0 / 8%)), repeating-radial-gradient(ellipse at 20% 40%, transparent 0 36px, rgb(255 255 255 / 2%) 38px 39px), linear-gradient(100deg, #005314 0%, #006117 38%, var(--green-deep) 72%, var(--green) 100%);
    border-bottom: 1px solid rgb(241 228 206 / 12%);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
    will-change: transform;
}

.site-header.is-scroll-hidden {
    transform: translateY(calc(-100% - 44px));
}

.site-header.is-scroll-raised {
    box-shadow: 0 12px 26px rgb(0 0 0 / 24%);
}

.header-inner {
    width: min(100% - 40px, 1700px);
    height: 100%;
    padding: 0;
}

.brand-plaque {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    text-decoration: none;
    background:
        linear-gradient(95deg, rgb(255 255 255 / 42%), transparent 38%, rgb(118 69 31 / 8%)),
        repeating-linear-gradient(0deg, transparent 0 15px, rgb(92 55 26 / 5%) 16px 17px),
        #ead6b5;
    border: 3px solid #754321;
    border-radius: 13px 16px 12px 15px;
    box-shadow: 0 6px 0 #482711, 0 14px 26px rgb(0 0 0 / 38%);
    transform: rotate(-0.4deg);
}

.brand-plaque.navbar-brand {
    z-index: 3;
    flex: 0 0 clamp(285px, 22vw, 410px);
    max-height: 100px;
    margin: 22px 0 0;
    padding: 14px 32px 12px;
}

.brand-plaque::before,
.brand-plaque::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: 9px;
    border-radius: 50%;
    background: #7e664e;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 65%);
}

.brand-plaque::before {
    left: 12px;
}

.brand-plaque::after {
    right: 12px;
}

.brand-plaque img {
    width: 100%;
    height: 63px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.brand-service {
    width: 72%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    color: var(--green-deep);
    font-family: var(--display);
    font-size: clamp(1rem, 1.45vw, 1.45rem);
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-service i {
    height: 2px;
    background: currentColor;
    opacity: 0.7;
}

.header-content {
    min-width: 0;
    justify-content: flex-end;
    gap: clamp(18px, 2.2vw, 38px);
    margin-left: clamp(20px, 3vw, 55px);
}

.primary-nav {
    gap: clamp(13px, 1.45vw, 28px);
}

.primary-nav .nav-link,
.header-phone,
.button {
    font-family: var(--condensed);
    font-weight: 800;
    text-transform: uppercase;
}

.primary-nav .nav-link {
    position: relative;
    padding: 0;
    color: var(--cream-light);
    font-size: clamp(0.72rem, 0.82vw, 0.94rem);
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color 160ms ease;
}

.primary-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--kicker);
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.primary-nav .nav-link:hover,
.primary-nav .nav-link:focus-visible,
.primary-nav .nav-link.active,
.navbar-nav .nav-link.active {
    color: var(--kicker);
}

.primary-nav .nav-link:not(.dropdown-toggle):hover::after,
.primary-nav .nav-link:not(.dropdown-toggle):focus-visible::after,
.primary-nav .nav-link:not(.dropdown-toggle).active::after {
    transform: scaleX(1);
}

.primary-nav .dropdown-toggle {
    border: 0;
    background: transparent;
}

.primary-nav .dropdown-toggle::after {
    margin-left: 0.42rem;
    vertical-align: 0.18em;
    transition: transform 160ms ease;
}

.primary-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.header-dropdown.dropdown-menu {
    min-width: 190px;
    margin-top: 19px;
    padding: 9px;
    background: var(--green-deep);
    border: 1px solid rgb(241 228 206 / 16%);
    border-radius: 7px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 28%);
}

.header-dropdown .dropdown-item {
    padding: 9px 13px;
    color: var(--cream-light);
    border-radius: 4px;
    font-family: var(--condensed);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    transition: color 160ms ease, background-color 160ms ease;
}

.header-dropdown .dropdown-item:hover,
.header-dropdown .dropdown-item:focus {
    color: var(--green-deep);
    background: var(--kicker);
}

.header-dropdown .dropdown-item.active,
.header-dropdown .dropdown-item:active {
    color: var(--green-deep);
    background: var(--cream);
}

@media (min-width: 1400px) {
    .header-content {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
    }

    .header-content nav {
        min-width: 0;
        justify-self: center;
    }

    .primary-nav {
        align-items: center;
        justify-content: center;
    }

    .primary-nav .dropdown::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 20px;
    }

}

@media (min-width: 1400px) and (hover: hover) {
    .primary-nav .dropdown:hover > .header-dropdown {
        display: block;
    }

    .primary-nav .dropdown:hover > .dropdown-toggle {
        color: var(--kicker);
    }

    .primary-nav .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream-light);
    text-decoration: none;
    white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
    color: var(--cream-light);
}

.phone-symbol {
    display: inline-block;
    flex: 0 0 auto;
    color: var(--cream);
    font-size: 1.65rem;
    line-height: 1;
    transform: rotate(-12deg);
}

.header-phone strong,
.header-phone small {
    display: block;
}

.header-phone strong {
    font-size: clamp(1rem, 1.35vw, 1.42rem);
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.header-phone small {
    margin-top: 4px;
    color: var(--kicker);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
}

.button.btn {
    min-height: 54px;
    padding: 0 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid transparent;
    border-radius: 11px;
    font-size: 0.98rem;
    letter-spacing: 0.035em;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 0 rgb(78 28 0 / 32%), 0 9px 18px rgb(40 18 6 / 22%);
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 rgb(78 28 0 / 35%), 0 5px 12px rgb(40 18 6 / 18%);
}

.button-primary.btn {
    color: var(--white);
    background: linear-gradient(#d96c18, var(--orange));
    border-color: #e47720;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-primary.btn:active {
    color: var(--white);
    background: linear-gradient(#e17622, #ac4808);
    border-color: #e47720;
}

.button-secondary.btn {
    color: var(--green);
    background: rgb(255 249 238 / 70%);
    border-color: #c98246;
    box-shadow: 0 3px 0 rgb(132 77 37 / 17%);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-secondary.btn:active {
    color: var(--green);
    background: var(--white);
    border-color: #c98246;
}

.button-arrow::after {
    content: "→";
    width: 25px;
    height: 25px;
    display: inline-flex;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.primary-cta-stack {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--condensed);
    font-size: clamp(1.15rem, 1.35vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease, transform 160ms ease;
}

.cta-phone i {
    flex: 0 0 auto;
    font-size: 1.35rem;
    line-height: 1;
    transform: rotate(-12deg);
}

.primary-cta-stack--light .cta-phone {
    color: var(--green-deep);
}

.primary-cta-stack--light .cta-phone i {
    color: var(--orange);
}

.primary-cta-stack--dark .cta-phone {
    color: var(--cream-light);
}

.primary-cta-stack--dark .cta-phone i {
    color: var(--kicker);
}

.cta-phone:hover,
.cta-phone:focus-visible {
    color: var(--orange);
    transform: translateY(-1px);
}

.primary-cta-stack--dark .cta-phone:hover,
.primary-cta-stack--dark .cta-phone:focus-visible {
    color: var(--kicker);
}

.header-cta {
    flex: 0 0 auto;
    min-width: 218px;
    min-height: 58px;
    padding-inline: 22px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero {
    overflow: hidden;
    padding: 0;
    background: var(--green-soft);
}

.hero-row {
    min-height: clamp(560px, 58vw, 785px);
}

.hero-copy-panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 18% 28%, rgb(255 255 255 / 48%), transparent 38%),
        repeating-linear-gradient(104deg, transparent 0 24px, rgb(113 71 35 / 3%) 25px 26px),
        var(--cream);
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hero-copy-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 3% 50%, rgb(0 141 33 / 18%) 0 2px, transparent 3px),
        linear-gradient(90deg, rgb(0 141 33 / 4%), transparent 15%);
    opacity: 0.8;
}

.hero-copy-panel::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background-image: url("../img/hero-pine-branches.png");
    background-position: -100px center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(720px, 78%);
    margin-left: clamp(30px, 7.4vw, 150px);
    padding: 68px 0 58px;
}

.hero-kicker {
    width: fit-content;
}

.kicker-pines {
    width: clamp(68px, 4.8vw, 88px);
    height: auto;
    margin: 0 auto -2px;
    display: block;
}

.kicker {
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--kicker);
    font-family: var(--display);
    font-size: clamp(1.15rem, 1.3vw, 1.55rem);
    font-weight: 600;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.kicker::before,
.kicker::after {
    content: "";
    width: clamp(36px, 4vw, 75px);
    height: var(--kicker-line-thickness);
    background: #8c5d2d;
    opacity: 0.6;
}

.hero h1 {
    margin: 0;
    font-weight: 400;
}

.hero-title-main {
    display: block;
    color: var(--green);
    font-family: var(--display);
    font-size: clamp(4.8rem, 6.15vw, 7.7rem);
    font-weight: 600;
    letter-spacing: 0.005em;
    line-height: 0.72;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgb(255 255 255 / 35%);
}

.hero-title-script {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin-top: -2px;
    margin-bottom: -0.32em;
    padding-bottom: 0.34em;
    display: block;
    color: var(--orange);
    font-family: var(--script);
    font-size: clamp(2.5rem, 3.5vw, 4.7rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
    white-space: nowrap;
    overflow: visible;
    transform: rotate(-2.5deg);
}

.hero-title-script em {
    color: inherit;
    font-style: normal;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
    .hero-title-script {
        color: transparent;
        background-image: linear-gradient(
            90deg,
            #6e351a 0%,
            #8f4215 32%,
            #b84f0c 62%,
            #d8751f 100%
        );
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.hero-description {
    max-width: 570px;
    margin: clamp(24px, 2.5vw, 38px) 0 0;
    color: #3e493c;
    font-size: clamp(1rem, 1.05vw, 1.18rem);
    line-height: 1.62;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 22px;
}

.hero-actions .button {
    min-height: 59px;
}

.hero-media {
    position: relative;
    z-index: 1;
    width: 48.6667%;
    margin-left: -7%;
    overflow: hidden;
    background-color: var(--green-soft);
    background-image: url("../img/hero-img.jpg");
    background-position: center 48%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-media::before,
.hero-media::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-media::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgb(0 120 28 / 22%), transparent 38%),
        linear-gradient(0deg, rgb(0 92 22 / 18%), transparent 42%);
}

.hero-media::after {
    z-index: 2;
    inset: 0;
    display: block;
    background: linear-gradient(90deg, #9b663b 0%, #deb783 48%, #b27b49 100%);
    clip-path: polygon(14.4% 0, 15.2% 0, 0.8% 100%, 0 100%);
    filter: drop-shadow(3px 0 2px rgb(0 91 22 / 28%));
}

.hero-stump-badge {
    position: absolute;
    z-index: 3;
    right: 3%;
    bottom: 10px;
    width: clamp(190px, 18vw, 305px);
    aspect-ratio: 1;
}

.hero-stump-badge img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.hero-stump-badge p {
    position: absolute;
    top: calc(61% - 10px);
    left: 50%;
    width: 72%;
    margin: 0;
    color: var(--brown);
    font-family: var(--display);
    font-size: clamp(1.9rem, 2.55vw, 3.25rem);
    font-weight: 600;
    letter-spacing: 0.015em;
    line-height: 0.88;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgb(241 228 206 / 24%);
    transform: translate(-50%, -50%);
}

.hero-stump-badge span {
    display: block;
}

.trust-bar {
    position: relative;
    z-index: 5;
    overflow: hidden;
    color: var(--cream-light);
    background: linear-gradient(105deg, var(--green-deep), var(--green) 50%, var(--green-deep));
    border-top: 1px solid rgb(241 228 206 / 9%);
}

.trust-bar::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background-image: url("../img/topography-pattern-1.png");
    background-position: center;
    background-repeat: repeat;
    background-size: 601px 601px;
    opacity: 0.5;
}

.trust-list {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    padding-inline: 24px;
}

.trust-list > .row {
    min-height: 180px;
}

.trust-item {
    min-width: 0;
    min-height: 98px;
    padding: 15px clamp(24px, 2.2vw, 42px);
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: center;
    border-left: 1px solid rgb(241 228 206 / 35%);
}

.trust-column:first-child .trust-item {
    border-left: 0;
}

.trust-item img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.trust-item h2 {
    margin: 0;
    color: var(--cream-light);
    font-family: var(--condensed);
    font-size: clamp(1rem, 1.25vw, 1.4rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.12;
    text-transform: uppercase;
}

.trust-item p {
    margin: 9px 0 0;
    color: rgb(255 248 235 / 78%);
    font-size: clamp(0.78rem, 0.85vw, 0.93rem);
    line-height: 1.45;
}

.services-section {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 7.4vw, 128px) 0 clamp(88px, 8vw, 140px);
    background:
        radial-gradient(circle at 50% 15%, rgb(255 255 255 / 60%), transparent 38%),
        repeating-linear-gradient(97deg, transparent 0 28px, rgb(110 73 40 / 2%) 29px 30px),
        var(--cream);
}

.services-section::before,
.services-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgb(110 53 26 / 12%);
    border-radius: 50%;
}

.services-section::before {
    width: 360px;
    height: 360px;
    top: -220px;
    left: -110px;
}

.services-section::after {
    width: 440px;
    height: 440px;
    right: -240px;
    bottom: -310px;
}

.services-container {
    position: relative;
    z-index: 1;
    max-width: 1840px;
    padding-inline: clamp(20px, 3vw, 58px);
}

.services-heading {
    max-width: 920px;
    margin-inline: auto;
}

.services-kicker {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    color: var(--kicker);
    font-family: var(--display);
    font-size: clamp(1.25rem, 1.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.services-kicker::before,
.services-kicker::after {
    content: "";
    width: clamp(44px, 4vw, 74px);
    height: var(--kicker-line-thickness);
    background: #986327;
    opacity: 0.72;
}

.services-heading h2 {
    margin: 14px 0 0;
    color: var(--green);
    font-family: var(--display);
    font-size: clamp(3.4rem, 4.7vw, 5.8rem);
    font-weight: 600;
    letter-spacing: 0.018em;
    line-height: 0.88;
    text-transform: uppercase;
}

.services-heading h2 span {
    color: var(--orange);
}

.services-grid {
    margin-top: 20px;
}

.service-card {
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    color: var(--green);
    background:
        linear-gradient(180deg, rgb(255 255 255 / 72%), rgb(246 237 218 / 84%)),
        var(--cream-light);
    border: 1px solid rgb(110 53 26 / 18%);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgb(62 39 22 / 13%);
}

.service-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: rgb(241 228 206 / 82%);
    background-color: var(--green-soft);
    border-radius: 20px 20px 7px 7px;
}

.service-card-media img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url("../img/topography-pattern-1.png");
    background-position: center;
    background-size: 360px 360px;
    opacity: 0.08;
    pointer-events: none;
}

.service-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 42%, rgb(0 70 18 / 28%));
    pointer-events: none;
}

.service-card-media--2 {
    background-color: #00821f;
}

.service-card-media--3 {
    background-color: #14aa3a;
}

.service-card-media--4 {
    background-color: var(--green-deep);
}

.service-card-media--5 {
    background-color: #009624;
}

.service-card-board {
    position: relative;
    z-index: 2;
    min-height: 104px;
    margin: -52px -8px 0;
    display: grid;
    place-items: center;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.service-card-board:hover img,
.service-card-board:focus-visible img {
    filter: drop-shadow(0 7px 6px rgb(33 17 7 / 28%)) brightness(1.06);
}

.service-card-board:focus-visible {
    outline: 2px solid var(--cream-light);
    outline-offset: 4px;
    border-radius: 8px;
}

.service-card-board img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: fill;
    filter: drop-shadow(0 7px 6px rgb(33 17 7 / 28%));
    transition: filter 0.2s ease;
}

.service-card-board h3 {
    position: relative;
    z-index: 1;
    margin: 4px 0 0;
    color: var(--cream-light);
    font-family: var(--display);
    font-size: clamp(2rem, 2vw, 2.55rem);
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 0.78;
    text-align: center;
    text-shadow: 2px 2px 1px rgb(44 21 9 / 55%);
    text-transform: uppercase;
}

.service-card-board h3 span {
    display: block;
}

.service-card-body {
    flex: 1;
    padding: 24px clamp(20px, 1.6vw, 30px) 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-body p {
    margin: 0;
    color: #4b5047;
    font-size: 0.98rem;
    line-height: 1.55;
}

.service-card-link {
    width: 39px;
    height: 39px;
    margin-top: 20px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: rgb(255 253 247 / 74%);
    border: 2px solid #a16537;
    border-radius: 50%;
    box-shadow: 0 3px 0 rgb(110 53 26 / 16%);
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
    color: var(--white);
    background: var(--orange);
    transform: translateY(-2px);
}

.service-card-link i {
    font-size: 1.05rem;
    line-height: 1;
}

.emergency-service-card {
    position: relative;
    min-height: 0;
    padding: 42px clamp(24px, 1.8vw, 34px) 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--cream-light);
    background:
        linear-gradient(160deg, rgb(255 255 255 / 6%), transparent 40%),
        linear-gradient(#d15e0d, #a73e05);
    border: 2px solid #e27a28;
    border-radius: 22px;
    box-shadow: 0 14px 32px rgb(62 39 22 / 18%);
    text-align: center;
}

.emergency-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("../img/topography-pattern-1.png");
    background-position: center;
    background-size: 390px 390px;
    opacity: 0.08;
}

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

.emergency-service-card img {
    width: 94px;
    height: 94px;
    object-fit: contain;
}

.emergency-service-card h3 {
    margin: 26px 0 0;
    font-family: var(--display);
    font-size: clamp(2.65rem, 2.8vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 0.78;
    text-transform: uppercase;
}

.emergency-service-card h3 span {
    display: block;
}

.emergency-service-card p {
    max-width: 200px;
    margin: 30px auto 0;
    color: rgb(255 248 235 / 86%);
    font-size: 0.98rem;
    line-height: 1.5;
}

.emergency-service-button.btn {
    min-width: 150px;
    margin-top: 35px;
    padding: 11px 22px 9px;
    color: var(--cream-light);
    background: rgb(96 28 0 / 18%);
    border: 2px solid rgb(255 248 235 / 72%);
    border-radius: 10px;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 3px 0 rgb(91 27 3 / 24%);
}

.emergency-service-button:hover,
.emergency-service-button:focus-visible {
    color: var(--orange-deep);
    background: var(--cream-light);
    border-color: var(--cream-light);
}

.about-section {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 5vw, 88px) 0;
    color: var(--cream-light);
    background:
        radial-gradient(circle at 14% 18%, rgb(31 190 69 / 22%), transparent 32%),
        linear-gradient(115deg, #006b19, var(--green) 55%, var(--green-deep));
    scroll-margin-top: var(--header-height);
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("../img/topography-pattern-1.png");
    background-position: center;
    background-size: 520px 520px;
    opacity: 0.07;
}

.about-section::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    right: -330px;
    bottom: -390px;
    pointer-events: none;
    border: 1px solid rgb(241 228 206 / 8%);
    border-radius: 50%;
}

.about-container {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1660px);
    padding-inline: 0;
}

.about-row {
    --bs-gutter-x: clamp(52px, 6vw, 104px);
}

.about-media {
    position: relative;
    min-height: clamp(420px, 28vw, 520px);
    overflow: hidden;
    background: var(--green-deep);
    border: 3px solid rgb(28 184 65 / 74%);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgb(0 0 0 / 24%);
}

.about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgb(0 141 33 / 8%), transparent 48%, rgb(0 94 22 / 24%));
}

.about-media img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: block;
    object-fit: cover;
    object-position: center 42%;
}

.about-content {
    max-width: 610px;
}

.about-kicker {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--kicker);
    font-family: var(--display);
    font-size: clamp(1.05rem, 1.25vw, 1.42rem);
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

.about-kicker::before,
.about-kicker::after {
    content: "";
    width: 46px;
    height: var(--kicker-line-thickness);
    flex: 0 0 auto;
    background: currentColor;
    opacity: 0.8;
}

.about-content h2 {
    margin: 0;
    color: var(--cream-light);
    font-family: var(--display);
    font-size: clamp(4.15rem, 4.8vw, 5.9rem);
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 0.81;
    text-transform: uppercase;
}

.about-content h2 span {
    display: block;
}

.about-content h2 .about-title-accent {
    color: #cfbf8d;
}

.about-copy {
    max-width: 580px;
    margin: 32px 0 0;
    color: rgb(241 228 206 / 86%);
    font-size: clamp(1rem, 1.03vw, 1.18rem);
    line-height: 1.58;
}

.about-values {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(15px, 1.6vw, 26px);
}

.about-cta {
    margin-top: 34px;
    align-items: flex-start;
}

.about-values li {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream-light);
    font-family: var(--condensed);
    font-size: clamp(0.9rem, 0.86vw, 1rem);
    font-weight: 700;
    line-height: 1.25;
}

.about-value-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    color: var(--green-deep);
    background: #d4ad68;
    border: 2px solid #edca84;
    border-radius: 13px;
    box-shadow: 0 4px 0 rgb(0 0 0 / 18%);
}

.about-value-icon i {
    font-size: 1.45rem;
    line-height: 1;
}

.process-section {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 4.8vw, 84px) 0 clamp(70px, 5.8vw, 102px);
    color: var(--green-deep);
    background:
        radial-gradient(circle at 58% 24%, rgb(255 255 255 / 64%), transparent 34%),
        repeating-linear-gradient(100deg, transparent 0 27px, rgb(108 70 36 / 2%) 28px 29px),
        var(--cream);
    scroll-margin-top: var(--header-height);
}

.process-section::before,
.process-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgb(111 67 33 / 9%);
    border-radius: 50%;
}

.process-section::before {
    width: 410px;
    height: 410px;
    top: -270px;
    left: 31%;
}

.process-section::after {
    width: 520px;
    height: 520px;
    right: -320px;
    bottom: -350px;
}

.process-container {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1840px);
    padding-inline: 0;
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(400px, 29%) minmax(0, 1fr);
    align-items: center;
    gap: 0;
    isolation: isolate;
}

.process-sign {
    position: relative;
    z-index: 0;
    width: 125%;
    pointer-events: none;
}

.process-sign img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0.94;
    filter: drop-shadow(0 14px 12px rgb(72 44 24 / 14%));
}

.process-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.process-heading {
    margin-bottom: clamp(22px, 2.4vw, 40px);
}

.process-kicker {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--orange);
    font-family: var(--display);
    font-size: clamp(1.05rem, 1.25vw, 1.38rem);
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

.process-kicker::before,
.process-kicker::after {
    content: "";
    width: 48px;
    height: var(--kicker-line-thickness);
    background: currentColor;
    opacity: 0.78;
}

.process-heading h2 {
    margin: 0;
    color: var(--green-deep);
    font-family: var(--display);
    font-size: clamp(3.4rem, 4.7vw, 5.8rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 0.88;
    text-transform: uppercase;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(30px, 2.4vw, 44px);
}

.process-cta {
    margin: clamp(30px, 2.7vw, 44px) auto 0;
}

.process-step {
    position: relative;
    min-width: 0;
    padding-top: 38px;
}

.process-step-visual {
    position: absolute;
    z-index: 2;
    inset: 0 0 auto;
    height: 122px;
    pointer-events: none;
}

.process-number {
    position: absolute;
    z-index: 3;
    width: clamp(72px, 5vw, 92px);
    height: clamp(72px, 5vw, 92px);
    top: -38px;
    left: clamp(10px, 1.35vw, 24px);
    object-fit: contain;
    filter: drop-shadow(0 6px 5px rgb(66 35 13 / 24%));
}

.process-icon {
    position: absolute;
    z-index: 1;
    width: clamp(82px, 5.8vw, 108px);
    height: clamp(82px, 5.8vw, 108px);
    top: 12px;
    left: 54%;
    object-fit: contain;
    transform: translateX(-50%);
    filter: drop-shadow(0 5px 3px rgb(44 50 31 / 15%));
}

.process-step-card {
    position: relative;
    min-height: 0;
    padding: 126px clamp(16px, 1.3vw, 24px) 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--green-deep);
    background:
        linear-gradient(165deg, rgb(255 255 255 / 74%), transparent 62%),
        #f8ecda;
    border: 1px solid rgb(119 75 37 / 24%);
    border-radius: 50% 50% 20px 20px / 104px 104px 20px 20px;
    box-shadow: 0 10px 14px rgb(77 48 25 / 22%), inset 0 1px 0 rgb(255 255 255 / 72%);
    text-align: center;
}

.process-step-card::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 13px;
    right: 13px;
    left: 13px;
    height: 94px;
    border: 1px solid rgb(119 75 37 / 12%);
    border-bottom: 0;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    pointer-events: none;
}

.process-step-copy {
    position: relative;
    z-index: 1;
}

.process-step-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.55rem, 1.7vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
}

.process-step-card p {
    margin: 12px 0 0;
    color: #5b5c53;
    font-size: clamp(0.88rem, 0.82vw, 0.98rem);
    line-height: 1.45;
}

.process-arrow {
    position: absolute;
    z-index: 3;
    width: 42px;
    height: 42px;
    top: 35%;
    right: calc(clamp(30px, 2.4vw, 44px) * -0.96);
    display: grid;
    place-items: center;
    color: var(--green-deep);
    font-size: 2.5rem;
    line-height: 1;
    transform: translateY(-50%);
}

.reviews-section {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 5vw, 90px) 0 38px;
    color: var(--green-deep);
    background:
        repeating-linear-gradient(94deg, transparent 0 34px, rgb(103 66 34 / 2%) 35px 36px),
        var(--cream);
    scroll-margin-top: var(--header-height);
}

.reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 46% 4%, rgb(255 255 255 / 64%), transparent 40%);
}

.reviews-container,
.service-area-container,
.footer-container {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1840px);
    padding-inline: 0;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(285px, 350px);
    align-items: center;
    gap: clamp(34px, 3.5vw, 66px);
}

.reviews-kicker,
.service-area-kicker {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--kicker);
    font-family: var(--display);
    font-size: clamp(1.05rem, 1.25vw, 1.38rem);
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

.reviews-kicker {
    justify-content: center;
}

.reviews-kicker::before,
.reviews-kicker::after,
.service-area-kicker::before,
.service-area-kicker::after {
    content: "";
    width: 48px;
    height: var(--kicker-line-thickness);
    flex: 0 0 auto;
    background: currentColor;
    opacity: 0.78;
}

.reviews-main h2 {
    margin: 0 0 24px;
    color: var(--green-deep);
    font-family: var(--display);
    font-size: clamp(3.4rem, 4.7vw, 5.8rem);
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 0.88;
    text-align: center;
    text-transform: uppercase;
}

.reviews-main h2 span {
    color: var(--orange);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 28px);
}

.review-card {
    min-height: 236px;
    padding: 24px clamp(20px, 1.45vw, 28px) 20px;
    display: flex;
    flex-direction: column;
    color: var(--green-deep);
    background:
        linear-gradient(145deg, rgb(255 255 255 / 68%), transparent 64%),
        #f7ecdb;
    border: 2px solid rgb(255 255 255 / 66%);
    border-radius: 20px;
    box-shadow: 0 9px 16px rgb(87 57 32 / 16%), inset 0 0 0 1px rgb(117 78 42 / 10%);
}

.review-stars {
    color: #d98710;
    font-size: clamp(2.5rem, 3.05vw, 3.66rem);
    letter-spacing: 0.015em;
    line-height: 0.85;
}

.review-card blockquote {
    margin: 16px 0 22px;
    color: #43483f;
    font-size: clamp(0.95rem, 0.93vw, 1.08rem);
    line-height: 1.48;
}

.review-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: grid;
    place-items: center;
    color: var(--cream-light);
    background: linear-gradient(145deg, #bb6b2f, var(--green-soft));
    border: 3px solid #d59551;
    border-radius: 50%;
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.review-author cite {
    font-family: var(--condensed);
    font-size: clamp(0.88rem, 0.86vw, 1rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
}

.reviews-cta {
    margin: clamp(26px, 2.4vw, 38px) auto 0;
    text-align: center;
}

.reviews-cta .button {
    min-width: 220px;
}

.review-seal {
    position: relative;
    width: 100%;
    max-width: 350px;
    justify-self: center;
    aspect-ratio: 1.08;
}

.review-seal img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 10px 9px rgb(69 40 20 / 18%));
}

.review-seal p {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 72%;
    margin: 0;
    color: #171b14;
    font-family: var(--display);
    font-size: clamp(1.25rem, 1.45vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    transform: translate(-50%, calc(-50% - 10px));
}

.review-seal p span {
    display: block;
}

.service-area-section {
    position: relative;
    overflow: hidden;
    padding: 22px 0 clamp(60px, 5vw, 88px);
    color: var(--green-deep);
    background: var(--cream);
    scroll-margin-top: var(--header-height);
}

.service-area-layout {
    position: relative;
    min-height: 410px;
    display: grid;
    grid-template-columns: minmax(0, 61%) minmax(0, 39%);
    align-items: center;
    overflow: hidden;
    background: rgb(251 241 222 / 54%);
    border: 1px solid rgb(116 77 42 / 14%);
    border-radius: 24px;
    box-shadow: 0 10px 24px rgb(80 51 27 / 11%);
}

.service-map {
    position: relative;
    align-self: stretch;
    min-height: 410px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 24%, rgb(255 255 255 / 40%), transparent 34%),
        linear-gradient(135deg, rgb(217 197 143 / 88%), rgb(235 220 177 / 78%));
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.service-map::before {
    display: none;
}

.service-map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border: 0;
    filter: saturate(0.78) sepia(0.08) contrast(0.96);
}

.map-road {
    position: absolute;
    height: 2px;
    background: rgb(135 115 78 / 48%);
    transform-origin: left center;
}

.map-road-one {
    width: 72%;
    top: 35%;
    left: 4%;
    transform: rotate(12deg);
}

.map-road-two {
    width: 64%;
    top: 72%;
    left: 16%;
    transform: rotate(-18deg);
}

.map-tree,
.map-pin {
    position: absolute;
    filter: drop-shadow(0 3px 2px rgb(77 57 31 / 20%));
}

.map-tree {
    color: #526637;
    font-size: 2.5rem;
}

.map-pin {
    color: var(--orange);
    font-size: 2rem;
}

.map-tree-one { left: 17%; bottom: 21%; }
.map-tree-two { left: 39%; top: 33%; }
.map-pin-one { left: 51%; top: 16%; }
.map-pin-two { left: 70%; top: 48%; }
.map-pin-three { left: 29%; top: 57%; }

.service-area-content {
    padding: 40px clamp(28px, 2.5vw, 46px);
}

.service-area-kicker {
    margin-bottom: 16px;
}

.service-area-content h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.4rem, 4.7vw, 5.8rem);
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 0.9;
    text-transform: uppercase;
}

.service-area-content h2 span {
    color: var(--orange);
}

.service-area-intro {
    max-width: 680px;
    margin: 18px 0 0;
    color: #474b43;
    font-size: clamp(0.98rem, 0.98vw, 1.12rem);
    line-height: 1.55;
}

.service-area-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 24px;
}

.service-area-list li {
    position: relative;
    padding-left: 18px;
    color: #474b43;
    font-size: clamp(0.9rem, 0.9vw, 1.02rem);
    line-height: 1.35;
}

.service-area-list li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: 0.42em;
    left: 0;
    background: var(--orange);
    border: 2px solid #e2a25e;
    border-radius: 50%;
}

.service-area-button.btn {
    min-width: 205px;
    margin-top: 26px;
    color: var(--cream-light);
    background: linear-gradient(var(--green-soft), var(--green-deep));
    border-color: #24b346;
    box-shadow: 0 5px 0 rgb(0 91 22 / 28%), 0 8px 15px rgb(52 42 25 / 16%);
}

.service-area-button:hover,
.service-area-button:focus-visible {
    color: var(--cream-light);
    background: linear-gradient(#00b52d, var(--green));
}

.local-focus-board {
    position: absolute;
    z-index: 4;
    width: min(280px, 25vw);
    min-height: 135px;
    top: 18px;
    left: 18px;
    display: grid;
    place-items: center;
}

.local-focus-board img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: fill;
    filter: drop-shadow(0 8px 7px rgb(67 39 19 / 24%));
}

.local-focus-board p {
    position: relative;
    z-index: 1;
    margin: 4px 0 0;
    color: var(--cream-light);
    font-family: var(--display);
    font-size: clamp(2rem, 2.1vw, 2.65rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 0.86;
    text-align: center;
    text-transform: uppercase;
}

.local-focus-board p span {
    display: block;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 54px 0 20px;
    color: var(--cream-light);
    background: linear-gradient(rgb(0 101 24 / 14%), rgb(0 76 18 / 30%)), linear-gradient(120deg, #004711, #006217 52%, var(--green-deep));
    scroll-margin-top: var(--header-height);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("../img/topography-pattern-1.png");
    background-position: center;
    background-size: 520px 520px;
    opacity: 0.09;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(28px, 3vw, 58px);
}

.footer-link-columns {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(24px, 2.4vw, 48px);
}

.footer-brand-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.footer-brand {
    width: 100%;
    min-height: 116px;
    padding: 14px 32px 12px;
}

.footer-brand img {
    max-width: 285px;
}

.footer-brand-bio {
    max-width: 340px;
    margin: 0;
    color: rgb(241 228 206 / 78%);
    font-size: clamp(0.82rem, 0.78vw, 0.92rem);
    line-height: 1.55;
    text-align: center;
}

.footer-block h2 {
    margin: 0 0 12px;
    color: var(--kicker);
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-block a {
    color: var(--cream-light);
    text-decoration: none;
}

.footer-phone > a,
.footer-address address a,
.footer-hours p {
    font-family: var(--display);
    font-size: clamp(1.55rem, 1.8vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1;
}

.footer-phone > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-phone > a i {
    color: var(--cream);
    font-size: 1.55rem;
    transform: rotate(-12deg);
}

.footer-phone p {
    margin: 7px 0 0;
    color: var(--orange);
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-phone {
    text-align: center;
}

.footer-contact-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-contact-column .footer-block + .footer-block {
    padding-top: 18px;
    border-top: 1px solid rgb(241 228 206 / 16%);
}

.footer-address address {
    margin: 0;
    font-style: normal;
    line-height: 1.45;
}

.footer-address address a {
    color: #fff;
}

.footer-social {
    margin-top: 17px;
    display: flex;
    justify-content: center;
    gap: 11px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--green-deep);
    background: var(--cream-light);
    border-radius: 50%;
    font-size: 1rem;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    color: var(--cream-light);
    background: var(--orange);
    transform: translateY(-2px);
}

.footer-hours {
    padding-left: 0;
    border-left: 0;
    text-align: center;
}

.footer-hours p {
    margin: 0;
    color: #fff;
    white-space: normal;
}

.footer-navigation ul {
    display: grid;
    gap: 6px;
}

.footer-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgb(241 228 206 / 82%);
    font-size: 0.9rem;
    line-height: 1.35;
    transition: color 160ms ease, transform 160ms ease;
}

.footer-navigation a::before {
    content: "›";
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
    color: var(--kicker);
    transform: translateX(3px);
}

.footer-cta-wrap {
    text-align: center;
}

.footer-cta-wrap .primary-cta-stack {
    width: 100%;
}

.footer-cta.btn {
    width: 100%;
    min-height: 62px;
    font-size: 1.05rem;
}

.footer-cta-wrap p {
    margin: 14px 0 0;
    color: var(--cream-light);
    font-family: var(--script);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    transform: rotate(-2.5deg);
    transform-origin: center;
}

.footer-payment-methods {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 0;
    list-style: none;
}

.footer-payment-methods li {
    margin: 0;
    flex: 0 0 auto;
    line-height: 0;
}

.footer-payment-methods img {
    display: block;
    width: auto;
    height: 34px;
    max-width: none;
    border-radius: 4px;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 17px;
    color: rgb(241 228 206 / 58%);
    border-top: 1px solid rgb(241 228 206 / 13%);
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.35em;
}

.footer-credit:hover,
.footer-credit:focus-visible {
    color: #fff;
}

.back-to-top {
    position: fixed;
    z-index: 1040;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--cream-light);
    background: linear-gradient(#d96c18, var(--orange));
    border: 2px solid #e47720;
    border-radius: 50%;
    box-shadow: 0 5px 0 rgb(78 28 0 / 32%), 0 9px 18px rgb(40 18 6 / 22%);
    font-size: 1.35rem;
    line-height: 1;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    color: var(--cream-light);
    background: linear-gradient(#e47720, #d96c18);
    transform: translateY(-2px);
}

.back-to-top:focus-visible {
    outline: 3px solid var(--cream-light);
    outline-offset: 3px;
}

.page-anchor {
    position: relative;
    top: calc(var(--header-height) * -1);
}

@media (max-width: 1500px) {
    .header-inner {
        width: min(100% - 28px, 1450px);
    }

    .brand-plaque.navbar-brand {
        flex-basis: 330px;
    }

    .header-content {
        gap: 19px;
        margin-left: 24px;
    }

    .primary-nav {
        gap: 15px;
    }

    .header-cta {
        min-width: 205px;
        padding-inline: 17px;
        font-size: 0.82rem;
    }
}

@media (max-width: 1300px) {
    :root {
        --header-height: 92px;
    }

    .brand-plaque.navbar-brand {
        flex-basis: 285px;
        max-height: 100px;
        padding-inline: 24px;
    }

    .brand-plaque img {
        height: 56px;
    }

    .header-phone small {
        display: none;
    }

    .header-phone strong {
        font-size: 1rem;
    }

    .phone-symbol {
        font-size: 1.5rem;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 44px;
    }

    .process-step:nth-child(even) .process-arrow {
        display: none;
    }
}

@media (max-width: 1399.98px) {
    :root {
        --header-height: 84px;
    }

    .site-header {
        overflow: visible;
    }

    .header-inner {
        position: relative;
        justify-content: space-between;
        overflow: visible;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
    }

    .footer-link-columns {
        display: contents;
    }

    .brand-plaque.navbar-brand {
        flex-basis: 270px;
        max-height: 100px;
        margin-top: 14px;
    }

    .brand-plaque img {
        height: 49px;
    }

    .brand-service {
        font-size: 0.98rem;
    }

    .navbar-toggler {
        position: absolute;
        z-index: 5;
        top: 50%;
        right: 0;
        width: 48px;
        height: 48px;
        margin: 0;
        padding: 10px;
        display: grid;
        place-items: center;
        color: var(--orange);
        background: transparent;
        border-color: var(--orange);
        border-radius: 9px;
        box-shadow: none;
        transform: translateY(-50%);
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        color: var(--orange);
        border-color: var(--orange);
        box-shadow: 0 0 0 0.2rem rgb(207 143 66 / 28%);
    }

    .navbar-toggler-icon {
        position: relative;
        width: 24px;
        height: 18px;
        background-image: none;
        border-top: 3px solid var(--orange);
        border-bottom: 3px solid var(--orange);
    }

    .navbar-toggler-icon::before {
        content: "";
        position: absolute;
        height: 3px;
        top: 50%;
        right: 0;
        left: 0;
        background: var(--orange);
        transform: translateY(-50%);
    }

    .header-content,
    .header-content.collapsing,
    .header-content.show {
        position: absolute;
        z-index: 2;
        top: 100%;
        right: auto;
        left: 50%;
        width: 100vw;
        margin: 0;
        padding: 24px;
        background: var(--green-deep);
        box-shadow: 0 14px 24px rgb(0 0 0 / 28%);
        transform: translateX(-50%);
    }

    .header-content.show {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .header-content.collapsing {
        overflow: hidden;
    }

    .primary-nav {
        gap: 0;
    }

    .header-content nav {
        width: 100%;
    }

    .primary-nav .nav-item {
        border-bottom: 1px solid rgb(241 228 206 / 12%);
    }

    .primary-nav .nav-link {
        width: 100%;
        padding: 13px 4px;
        font-size: 1rem;
        text-align: left;
    }

    .primary-nav .nav-link:not(.dropdown-toggle)::after {
        display: none;
    }

    .primary-nav .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-dropdown.dropdown-menu {
        position: static !important;
        width: 100%;
        margin: 0 !important;
        padding: 0 0 9px 18px;
        transform: none !important;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .header-dropdown .dropdown-item {
        padding: 9px 4px;
        color: rgb(241 228 206 / 78%);
        font-size: 0.92rem;
    }

    .header-phone {
        width: 100%;
        margin-top: 20px;
    }

    .header-phone small {
        display: block;
    }

    .header-cta {
        width: 100%;
        margin-top: 18px;
    }
}

@media (max-width: 1199.98px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .review-seal {
        max-width: 320px;
    }

    .service-area-layout {
        grid-template-columns: minmax(0, 58%) minmax(0, 42%);
    }

    .local-focus-board {
        width: 260px;
    }

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

    .footer-link-columns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: clamp(24px, 2.4vw, 48px);
    }

    .footer-brand-wrap,
    .footer-cta-wrap {
        max-width: 430px;
    }

    .process-container {
        width: min(100% - 44px, 1040px);
    }

    .process-layout {
        grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
        gap: 0;
    }

    .process-sign {
        width: 125%;
        justify-self: stretch;
    }

    .process-content {
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 44px;
    }

    .process-step:nth-child(even) .process-arrow {
        display: none;
    }

    .about-container {
        width: min(100% - 44px, 1040px);
    }

    .about-row {
        --bs-gutter-y: 52px;
    }

    .about-media {
        min-height: 470px;
    }

    .about-content {
        max-width: 820px;
    }

    .about-copy {
        max-width: 720px;
    }

    .about-values {
        max-width: 760px;
    }
}

@media (max-width: 991.98px) {
    .review-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-card:last-child {
        grid-column: auto;
    }

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

    .service-map {
        min-height: 300px;
        clip-path: none;
    }

    .local-focus-board {
        width: 255px;
    }

    .services-section {
        padding-block: 76px 88px;
    }

    .service-card,
    .emergency-service-card {
        min-height: 0;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-copy-panel {
        clip-path: none;
    }

    .hero-copy {
        width: min(680px, calc(100% - 48px));
        margin-inline: auto;
        padding: 95px 0 72px;
    }

    .hero-media {
        width: 100%;
        min-height: 380px;
        margin-left: 0;
    }

    .hero-media::after {
        display: none;
    }

    .hero-stump-badge {
        right: 4%;
        width: clamp(175px, 29vw, 235px);
    }

    .trust-list {
        padding-block: 20px;
    }

    .trust-list > .row {
        min-height: 0;
    }

    .trust-column:nth-child(odd) .trust-item {
        border-left: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-actions .primary-cta-stack {
        display: contents;
    }

    .hero-actions .button-primary {
        order: 1;
    }

    .hero-actions > .button-secondary {
        order: 2;
    }

    .hero-actions .cta-phone {
        order: 3;
        justify-self: center;
    }

    .local-focus-board {
        display: none;
    }

    .process-layout {
        grid-template-columns: 1fr;
    }

    .process-sign {
        width: min(560px, 88vw);
        margin-bottom: -74px;
        justify-self: start;
    }

    .process-content {
        width: calc(100% - 60px);
        margin-left: auto;
        padding-top: 80px;
    }

    .review-cards {
        grid-template-columns: 1fr;
    }

    .review-card:last-child {
        grid-column: auto;
    }

    .trust-list {
        max-width: 590px;
        padding: 14px;
    }

    .trust-item,
    .trust-column:nth-child(odd) .trust-item {
        min-height: 116px;
        padding: 20px 10px;
        border-top: 1px solid rgb(241 228 206 / 22%);
        border-left: 0;
    }

    .trust-column:first-child .trust-item {
        border-top: 0;
    }
}

@media (max-width: 650px) {
    .reviews-section {
        padding-block: 58px 30px;
    }

    .primary-cta-stack {
        width: 100%;
        align-items: stretch;
    }

    .primary-cta-stack .button {
        width: 100%;
    }

    .cta-phone {
        align-self: center;
    }

    .about-cta {
        align-items: stretch;
    }

    .reviews-container,
    .service-area-container,
    .footer-container {
        width: min(100% - 34px, 600px);
    }

    .reviews-main h2 {
        margin-bottom: 20px;
        font-size: clamp(3rem, 15vw, 4.25rem);
    }

    .review-card {
        min-height: 0;
    }

    .review-seal {
        max-width: 285px;
    }

    .review-seal p {
        font-size: 1.2rem;
    }

    .service-area-section {
        padding-block: 18px 58px;
    }

    .service-area-layout {
        border-radius: 18px;
    }

    .service-map {
        min-height: 250px;
    }

    .service-area-content {
        padding: 30px 22px;
    }

    .service-area-content h2 {
        font-size: clamp(3rem, 15vw, 4.25rem);
    }

    .service-area-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .service-area-button.btn {
        width: 100%;
    }

    .local-focus-board {
        width: min(72%, 250px);
        min-height: 115px;
        top: 14px;
        left: 14px;
    }

    .site-footer {
        padding-top: 48px;
    }

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

    .footer-brand-wrap,
    .footer-cta-wrap {
        width: 100%;
        max-width: none;
    }

    .footer-hours {
        padding-left: 0;
        border-left: 0;
    }

    .footer-address,
    .footer-hours,
    .footer-navigation {
        text-align: center;
    }

    .footer-link-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-navigation a {
        justify-content: center;
    }

    .back-to-top {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .footer-hours p {
        white-space: normal;
    }

    .footer-bottom {
        margin-top: 30px;
        text-align: center;
    }

    .process-section {
        padding-block: 58px 72px;
    }

    .process-container {
        width: min(100% - 34px, 600px);
    }

    .process-layout {
        gap: 0;
    }

    .process-sign {
        width: min(112%, 480px);
        margin-bottom: -52px;
        margin-left: -6%;
    }

    .process-content {
        width: 100%;
        margin-left: 0;
    }

    .process-heading {
        margin-bottom: 28px;
    }

    .process-kicker {
        gap: 10px;
        font-size: 1rem;
    }

    .process-kicker::before,
    .process-kicker::after {
        width: 30px;
    }

    .process-heading h2 {
        font-size: clamp(3rem, 15vw, 4.25rem);
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .process-step {
        padding-top: 34px;
    }

    .process-step-visual {
        height: 108px;
    }

    .process-number {
        width: 80px;
        height: 80px;
        top: -34px;
        left: clamp(8px, 6vw, 30px);
    }

    .process-icon {
        width: 96px;
        height: 96px;
        top: 10px;
        left: 54%;
    }

    .process-step-card {
        min-height: 0;
        padding: 112px 22px 30px;
        border-radius: 50% 50% 20px 20px / 88px 88px 20px 20px;
    }

    .process-step-card::before {
        top: 12px;
        height: 80px;
    }

    .process-step-card h3 {
        font-size: 1.8rem;
    }

    .process-step-card p {
        font-size: 0.96rem;
    }

    .process-step:not(:last-child) .process-arrow,
    .process-step:nth-child(even) .process-arrow {
        width: 38px;
        height: 38px;
        top: auto;
        right: 50%;
        bottom: -42px;
        display: grid;
        font-size: 2.2rem;
        transform: translateX(50%) rotate(90deg);
    }

    .about-section {
        padding-block: 62px 68px;
    }

    .about-container {
        width: min(100% - 34px, 600px);
    }

    .about-row {
        --bs-gutter-y: 38px;
    }

    .about-media {
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .about-kicker {
        margin-bottom: 18px;
        gap: 10px;
        font-size: 1rem;
    }

    .about-kicker::before,
    .about-kicker::after {
        width: 28px;
    }

    .about-content h2 {
        font-size: clamp(3.45rem, 15.5vw, 4.65rem);
    }

    .about-copy {
        margin-top: 25px;
        font-size: 1rem;
    }

    .about-values {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-values li {
        font-size: 1rem;
    }

    .services-section {
        padding-block: 68px 78px;
    }

    .services-container {
        padding-inline: 17px;
    }

    .services-kicker {
        gap: 10px;
        font-size: 0.92rem;
    }

    .services-kicker::before,
    .services-kicker::after {
        width: 28px;
    }

    .services-heading h2 {
        font-size: clamp(3rem, 15vw, 4.25rem);
    }

    .services-grid {
        margin-top: 20px;
    }

    .service-card,
    .emergency-service-card {
        min-height: 0;
    }

    .service-card-media {
        aspect-ratio: 1 / 1;
    }

    .service-card-board {
        min-height: 100px;
        margin-top: -49px;
    }

    .service-card-board h3 {
        font-size: 2.15rem;
    }

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

    .brand-plaque.navbar-brand {
        flex-basis: 220px;
        max-height: 100px;
        padding: 10px 19px 9px;
    }

    .brand-plaque img {
        height: 43px;
    }

    .brand-service {
        width: 82%;
        font-size: 0.78rem;
    }

    .hero-copy {
        width: min(100% - 34px, 560px);
        padding: 82px 0 60px;
    }

    .hero-kicker {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-copy-panel::after {
        opacity: 0.66;
        background-position: -50px center;
        background-size: 92% 100%;
    }

    .kicker {
        gap: 8px;
        justify-content: center;
        text-align: center;
    }

    .kicker::before,
    .kicker::after {
        width: 22px;
    }

    .kicker-pines {
        width: 64px;
    }

    .kicker,
    .services-kicker,
    .about-kicker,
    .process-kicker,
    .reviews-kicker,
    .service-area-kicker {
        font-size: 0.92rem;
    }

    .reviews-kicker::before,
    .reviews-kicker::after,
    .service-area-kicker::before,
    .service-area-kicker::after {
        width: 28px;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;
    }

    .hero-title-main {
        max-width: 100%;
        font-size: clamp(3.2rem, 16.2vw, 4.6rem);
    }

    .hero-title-script {
        max-width: 100%;
        font-size: clamp(1.75rem, 8vw, 2.85rem);
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-actions {
        display: grid;
        gap: 16px;
    }

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

    .hero-media {
        min-height: 270px;
    }

    .hero-stump-badge {
        right: 2%;
        bottom: 10px;
        width: 160px;
    }

    .hero-stump-badge p {
        font-size: 1.5rem;
    }
}

@media (max-width: 390px) {
    .brand-plaque.navbar-brand {
        flex-basis: 195px;
        padding-inline: 14px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Contact page */
.contact-page {
    background: var(--cream-light);
}

.contact-page-container {
    width: min(100% - 48px, 1540px);
    margin-inline: auto;
    padding-inline: 0;
}

.contact-hero {
    position: relative;
    isolation: isolate;
    min-height: 580px;
    overflow: hidden;
    background:
        linear-gradient(104deg, var(--cream) 0 64%, transparent 64.1%),
        linear-gradient(120deg, var(--green) 0%, var(--green-deep) 100%);
}

.contact-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 0 0 58%;
    background-image: url("../img/topography-pattern-1.png");
    background-size: 520px 520px;
    opacity: 0.24;
    mix-blend-mode: screen;
}

.contact-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 610px;
    height: 580px;
    left: -310px;
    bottom: -285px;
    border: 42px solid rgb(110 53 26 / 8%);
    border-radius: 50%;
    box-shadow:
        0 0 0 36px rgb(110 53 26 / 5%),
        0 0 0 74px rgb(110 53 26 / 3%);
}

.contact-hero-row {
    min-height: 580px;
    padding-block: 90px 82px;
}

.contact-hero-copy {
    max-width: 850px;
    padding-right: clamp(30px, 5vw, 100px);
}

.contact-kicker-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.contact-kicker-pines {
    width: 68px;
    height: auto;
    margin-bottom: 2px;
}

.contact-kicker,
.contact-next-kicker {
    display: grid;
    grid-template-columns: 44px auto 44px;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--kicker);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-kicker::before,
.contact-kicker::after,
.contact-next-kicker::before,
.contact-next-kicker::after {
    content: "";
    height: var(--kicker-line-thickness);
    background: currentColor;
}

.contact-hero h1 {
    max-width: 790px;
    margin: 0;
    color: var(--green-deep);
    font-family: var(--display);
    font-size: clamp(5rem, 7.2vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 0.78;
    text-transform: uppercase;
}

.contact-hero h1 span {
    color: var(--orange);
}

.contact-hero-copy > p {
    max-width: 720px;
    margin: 30px 0 0;
    color: #37563b;
    font-size: clamp(1.05rem, 1.35vw, 1.28rem);
    line-height: 1.7;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 34px;
    margin-top: 30px;
}

.contact-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--green-deep);
    text-decoration: none;
}

.contact-hero-phone > i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--cream-light);
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 5px 0 var(--green-deep);
}

.contact-hero-phone span {
    display: grid;
}

.contact-hero-phone small {
    color: #5f735f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-hero-phone strong {
    font-family: var(--display);
    font-size: 1.65rem;
    letter-spacing: 0.03em;
    line-height: 1;
}

.contact-hero-phone:hover,
.contact-hero-phone:focus-visible {
    color: var(--orange);
}

.contact-hero-note {
    position: relative;
    width: min(100%, 485px);
    margin: 0 auto;
    padding: 54px clamp(28px, 4vw, 58px) 48px;
    color: var(--green-deep);
    background:
        repeating-linear-gradient(0deg, transparent 0 31px, rgb(110 53 26 / 7%) 32px),
        linear-gradient(100deg, rgb(255 255 255 / 58%), transparent 65%),
        #f4dfbd;
    border: 2px solid #9c6b38;
    box-shadow: 16px 18px 0 rgb(0 69 17 / 36%), 0 28px 58px rgb(0 0 0 / 26%);
    transform: rotate(1.4deg);
}

.contact-hero-note::before,
.contact-hero-note::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 102px;
    height: 107px;
    pointer-events: none;
    background: url("../img/bandaid.png") center / contain no-repeat;
    filter: drop-shadow(1px 2px 2px rgb(0 0 0 / 28%));
}

.contact-hero-note::before {
    top: -22px;
    left: -30px;
}

.contact-hero-note::after {
    right: -30px;
    bottom: -22px;
}

.contact-note-pin {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 18px;
    left: 50%;
    background: #655348;
    border: 3px solid #a99b8c;
    border-radius: 50%;
    box-shadow: 0 3px 4px rgb(0 0 0 / 42%);
    transform: translateX(-50%);
}

.contact-note-eyebrow {
    margin: 0 0 5px;
    color: var(--orange);
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-hero-note h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
}

.contact-hero-note > p:not(.contact-note-eyebrow) {
    margin: 20px 0 24px;
    color: #3e533f;
    font-size: 1.02rem;
    line-height: 1.65;
}

.contact-hero-note > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.contact-hero-note > a:hover,
.contact-hero-note > a:focus-visible {
    color: var(--green);
}

.thank-you-stamp {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--green-deep);
    background:
        linear-gradient(95deg, rgb(255 255 255 / 42%), transparent 38%, rgb(118 69 31 / 8%)),
        repeating-linear-gradient(0deg, transparent 0 15px, rgb(92 55 26 / 5%) 16px 17px),
        #ead6b5;
    border: 3px solid #754321;
    border-radius: 50%;
    box-shadow: 0 5px 0 #482711, 0 12px 18px rgb(0 0 0 / 28%);
    transform: rotate(-8deg);
    font-size: 2.2rem;
    line-height: 1;
}

.contact-hero-copy > .thank-you-script {
    max-width: none;
    margin: 8px 0 0;
    color: var(--orange);
    font-family: var(--script);
    font-size: clamp(2.15rem, 3.1vw, 3.55rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.12;
    text-transform: none;
    transform: rotate(-2.5deg);
    transform-origin: left center;
}

.contact-hero-copy > .thank-you-lede {
    margin-top: 22px;
}

.thank-you-more {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 28px;
    margin-top: 54px;
}

.thank-you-again {
    color: var(--brown);
    font-family: var(--condensed);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.thank-you-again:hover,
.thank-you-again:focus-visible {
    color: var(--orange);
}

.contact-trust-strip {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 26px;
    color: var(--cream-light);
    background: linear-gradient(100deg, var(--green-deep), var(--green), var(--green-deep));
    border-block: 1px solid rgb(241 228 206 / 18%);
}

.contact-trust-strip::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: url("../img/topography-pattern-1.png");
    background-size: 420px 420px;
    opacity: 0.26;
}

.contact-trust-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-trust-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-inline: 28px;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.contact-trust-list li + li {
    border-left: 1px solid rgb(241 228 206 / 28%);
}

.contact-trust-list i {
    color: var(--kicker);
    font-size: 1.55rem;
}

.contact-form-section {
    position: relative;
    padding-block: clamp(78px, 8vw, 128px);
    background:
        radial-gradient(circle at 0 100%, rgb(207 143 66 / 16%), transparent 30%),
        var(--cream-light);
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(330px, 0.8fr);
    align-items: start;
    gap: clamp(34px, 4vw, 68px);
}

.estimate-form-wrap {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dcc9aa;
    border-radius: 8px 8px 16px 16px;
    box-shadow: 0 24px 60px rgb(69 49 25 / 14%);
}

.estimate-form-wrap::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    right: -13px;
    bottom: -13px;
    background: var(--orange);
    transform: rotate(45deg);
}

.estimate-form-heading {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 30px clamp(26px, 4vw, 48px);
    color: var(--cream-light);
    background: linear-gradient(110deg, var(--green-deep), var(--green));
    border-top: 8px solid var(--orange);
}

.estimate-form-heading::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: url("../img/topography-pattern-1.png");
    background-size: 360px 360px;
    opacity: 0.24;
}

.estimate-form-icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    color: var(--cream-light);
    background: var(--orange);
    border: 3px solid rgb(241 228 206 / 75%);
    border-radius: 50%;
    box-shadow: 0 5px 0 var(--orange-deep);
    font-size: 1.8rem;
}

.estimate-form-heading p {
    margin: 0 0 2px;
    color: var(--kicker);
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.estimate-form-heading h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 0.88;
    text-transform: uppercase;
}

.estimate-form-tag {
    padding: 9px 14px 7px;
    color: var(--green-deep);
    background: var(--cream);
    border: 1px solid #b88550;
    border-radius: 2px;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transform: rotate(1.8deg);
}

.contact-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 28px clamp(26px, 4vw, 48px) 0;
    padding: 16px 18px;
    border: 1px solid;
    border-radius: 7px;
    font-weight: 700;
}

.contact-form-alert--success {
    color: #075d1b;
    background: #dff5e4;
    border-color: #6ebd80;
}

.contact-form-alert--error {
    color: #7c2609;
    background: #fff0e8;
    border-color: #de8a64;
}

.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.estimate-form {
    padding: 40px clamp(26px, 4vw, 48px) 46px;
    background:
        repeating-linear-gradient(0deg, transparent 0 39px, rgb(110 53 26 / 3.5%) 40px),
        var(--white);
}

.estimate-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.estimate-fieldset + .estimate-fieldset {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px dashed #c9aa80;
}

.estimate-fieldset legend {
    display: flex;
    align-items: center;
    gap: 13px;
    width: auto;
    margin: 0 0 26px;
    color: var(--green-deep);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.estimate-fieldset-number {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 2px rgb(63 33 15 / 30%));
}

.estimate-form .form-label {
    margin-bottom: 8px;
    color: var(--green-deep);
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.estimate-form .form-label > span {
    color: var(--orange);
}

.estimate-form .form-label small {
    margin-left: 5px;
    color: #718073;
    font-family: var(--body);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.estimate-form .form-control,
.estimate-form .form-select {
    min-height: 55px;
    padding: 12px 15px;
    color: #263f2b;
    background-color: #fffaf0;
    border: 1px solid #cdb995;
    border-radius: 5px;
    box-shadow: inset 0 2px 4px rgb(67 45 22 / 5%);
    font-size: 1rem;
}

.estimate-form textarea.form-control {
    min-height: 158px;
    resize: vertical;
}

.estimate-form .form-control:focus,
.estimate-form .form-select:focus {
    background-color: #fff;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgb(193 86 10 / 14%);
}

.estimate-form .form-control::placeholder {
    color: #8b948a;
}

.estimate-form .is-invalid {
    border-color: #b33a18;
}

.estimate-form .invalid-feedback {
    color: #9b2d10;
    font-weight: 700;
}

.estimate-form-finish {
    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid #dbc7a7;
}

.contact-consent {
    padding-left: 1.85rem;
}

.contact-consent .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -1.85rem;
    border-color: #a78d68;
}

.contact-consent .form-check-input:checked {
    background-color: var(--green);
    border-color: var(--green);
}

.contact-consent .form-check-label {
    color: #4a5c4c;
    font-size: 0.95rem;
}

.estimate-submit-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.estimate-submit-row > p {
    max-width: 360px;
    margin: 0;
    color: #6b786c;
    font-size: 0.82rem;
    line-height: 1.5;
}

.estimate-submit-row > p i {
    color: var(--green);
}

.contact-sidebar {
    display: grid;
    gap: 28px;
}

.contact-sidebar-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(34px, 4vw, 50px);
    color: var(--cream-light);
    background: linear-gradient(145deg, var(--green), var(--green-deep));
    border: 1px solid rgb(241 228 206 / 18%);
    border-radius: 10px;
    box-shadow: 0 20px 44px rgb(0 72 18 / 20%);
}

.contact-sidebar-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: url("../img/topography-pattern-1.png");
    background-size: 420px 420px;
    opacity: 0.27;
}

.contact-sidebar-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 180px;
    height: 180px;
    top: -105px;
    right: -85px;
    border: 22px solid rgb(241 228 206 / 8%);
    border-radius: 50%;
}

.contact-sidebar-kicker {
    margin: 0 0 6px;
    color: var(--kicker);
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-sidebar-card > h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 0.88;
    text-transform: uppercase;
}

.contact-detail-list {
    display: grid;
    gap: 26px;
    margin-top: 34px;
}

.contact-detail-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 14px;
}

.contact-detail-list li > span {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    color: var(--green-deep);
    background: var(--cream);
    border-radius: 50%;
    box-shadow: 0 4px 0 rgb(0 0 0 / 18%);
}

.contact-detail-list li > div {
    display: grid;
    gap: 2px;
}

.contact-detail-list small {
    color: var(--kicker);
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-detail-list a,
.contact-detail-list p {
    margin: 0;
    color: var(--cream-light);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
}

.contact-detail-list a:hover,
.contact-detail-list a:focus-visible {
    color: var(--kicker);
}

.contact-emergency-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    margin-top: 36px;
    padding: 18px;
    color: var(--green-deep);
    background: var(--cream);
    border-left: 6px solid var(--orange);
    border-radius: 4px;
}

.contact-emergency-box > i {
    color: var(--orange);
    font-size: 1.35rem;
}

.contact-emergency-box strong {
    display: block;
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-emergency-box p {
    margin: 6px 0 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-map-card {
    overflow: hidden;
    background: #e8d4b3;
    border: 1px solid #c19b6d;
    border-radius: 10px;
    box-shadow: 0 14px 36px rgb(67 45 22 / 12%);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 285px;
    border: 0;
    filter: saturate(0.75) contrast(1.05);
}

.contact-map-card > div {
    display: grid;
    gap: 2px;
    padding: 20px 22px;
    color: var(--green-deep);
}

.contact-map-card strong {
    font-family: var(--display);
    font-size: 1.55rem;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-map-card span {
    color: #4e624f;
    font-size: 0.9rem;
}

.contact-next-steps {
    position: relative;
    overflow: hidden;
    padding-block: clamp(78px, 8vw, 124px);
    background: var(--cream);
}

.contact-next-steps::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -340px;
    bottom: -310px;
    border: 36px solid rgb(110 53 26 / 7%);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgb(110 53 26 / 4%);
}

.contact-next-heading {
    position: relative;
    z-index: 1;
}

.contact-next-kicker {
    display: inline-grid;
}

.contact-next-heading h2 {
    margin: 12px 0 0;
    color: var(--green-deep);
    font-family: var(--display);
    font-size: clamp(3.8rem, 5.5vw, 6.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.86;
    text-transform: uppercase;
}

.contact-next-heading h2 span {
    color: var(--orange);
}

.contact-next-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 54px;
}

.contact-next-list li {
    position: relative;
    padding: 42px 34px 34px;
    color: var(--green-deep);
    background: var(--cream-light);
    border: 1px solid #d6bd98;
    border-top: 7px solid var(--green);
    border-radius: 5px 5px 12px 12px;
    box-shadow: 0 14px 30px rgb(69 49 25 / 10%);
    text-align: center;
}

.contact-next-list li:nth-child(2) {
    border-top-color: var(--orange);
    transform: translateY(14px);
}

.contact-next-list li > i {
    color: var(--orange);
    font-size: 2.4rem;
}

.contact-next-number {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -39px;
    left: 50%;
    object-fit: contain;
    filter: drop-shadow(0 4px 3px rgb(63 33 15 / 28%));
    transform: translateX(-50%);
}

.contact-next-list h3 {
    margin: 12px 0 6px;
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.contact-next-list p {
    max-width: 360px;
    margin: 0 auto;
    color: #506451;
    line-height: 1.6;
}

@media (max-width: 1199.98px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
    }

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

    .contact-map-card iframe {
        height: 100%;
        min-height: 360px;
    }
}

@media (max-width: 991.98px) {
    .contact-hero {
        background: var(--cream);
    }

    .contact-hero::before {
        inset: auto 0 0;
        height: 44%;
        background-color: var(--green);
        opacity: 0.14;
    }

    .contact-hero-row {
        padding-block: 76px 92px;
    }

    .contact-hero-copy {
        max-width: 820px;
        padding-right: 0;
        text-align: center;
    }

    .thank-you-stamp {
        margin-inline: auto;
    }

    .contact-hero-copy > .thank-you-script {
        transform-origin: center;
    }

    .contact-kicker-wrap {
        align-items: center;
    }

    .contact-hero h1,
    .contact-hero-copy > p {
        margin-inline: auto;
    }

    .contact-hero-actions {
        justify-content: center;
    }

    .contact-hero-note {
        margin-top: 22px;
    }

    .contact-trust-list li {
        padding-inline: 14px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .contact-page-container {
        width: min(100% - 30px, 1540px);
    }

    .contact-hero-row {
        min-height: auto;
        padding-block: 62px 78px;
    }

    .contact-kicker,
    .contact-next-kicker {
        grid-template-columns: 30px auto 30px;
        gap: 9px;
        font-size: 1.05rem;
        letter-spacing: 0.1em;
    }

    .contact-hero h1 {
        font-size: clamp(4.4rem, 20vw, 6.2rem);
        line-height: 0.82;
    }

    .contact-hero-copy > p {
        margin-top: 24px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-hero-actions {
        flex-direction: column;
        gap: 24px;
        margin-top: 26px;
    }

    .contact-hero-note {
        padding: 50px 27px 38px;
        box-shadow: 10px 12px 0 rgb(0 69 17 / 28%), 0 22px 40px rgb(0 0 0 / 18%);
    }

    .contact-hero-note::before,
    .contact-hero-note::after {
        width: 86px;
        height: 90px;
    }

    .contact-hero-note::before {
        top: -18px;
        left: -22px;
    }

    .contact-hero-note::after {
        right: -22px;
        bottom: -18px;
    }

    .contact-hero-note h2 {
        font-size: 3rem;
    }

    .contact-trust-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-trust-list li {
        justify-content: flex-start;
        padding: 0;
        text-align: left;
    }

    .contact-trust-list li + li {
        padding-top: 16px;
        border-top: 1px solid rgb(241 228 206 / 24%);
        border-left: 0;
    }

    .estimate-form-heading {
        grid-template-columns: auto 1fr;
        gap: 15px;
        padding: 25px 22px;
    }

    .estimate-form-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .estimate-form-heading h2 {
        font-size: 2.7rem;
    }

    .estimate-form-tag {
        grid-column: 1 / -1;
        justify-self: start;
        margin-left: 67px;
    }

    .contact-form-alert {
        margin: 22px 20px 0;
    }

    .estimate-form {
        padding: 32px 20px 36px;
    }

    .estimate-fieldset legend {
        align-items: flex-start;
        font-size: 1.7rem;
        line-height: 1.05;
    }

    .estimate-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .contact-map-card iframe {
        height: 300px;
        min-height: 0;
    }

    .contact-next-heading h2 {
        font-size: clamp(3.35rem, 15vw, 5rem);
    }

    .contact-next-list {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-next-list li:nth-child(2) {
        transform: none;
    }

    .thank-you-more {
        flex-direction: column;
        margin-top: 42px;
    }
}

@media (max-width: 390px) {
    .contact-page-container {
        width: min(100% - 22px, 1540px);
    }

    .contact-hero h1 {
        font-size: 4.25rem;
    }

    .contact-kicker,
    .contact-next-kicker {
        grid-template-columns: 22px auto 22px;
        font-size: 0.95rem;
    }

    .contact-hero-note > a {
        font-size: 1.7rem;
    }

    .estimate-form-heading h2 {
        font-size: 2.35rem;
    }

    .estimate-form-tag {
        margin-left: 0;
    }

    .contact-sidebar-card {
        padding: 32px 24px;
    }
}

/* Service landing pages */
.service-landing-page {
    background: var(--cream-light);
}

.service-landing-container {
    width: min(100% - 48px, 1540px);
    margin-inline: auto;
    padding-inline: 0;
}

.service-landing-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(104deg, var(--cream) 0 62%, transparent 62.1%),
        linear-gradient(120deg, var(--green) 0%, var(--green-deep) 100%);
}

.service-landing-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 0 0 55%;
    background-image: url("../img/topography-pattern-1.png");
    background-size: 520px 520px;
    opacity: 0.22;
    mix-blend-mode: screen;
}

.service-landing-hero-row {
    padding-block: 88px 78px;
}

.service-landing-hero-copy {
    max-width: 820px;
    padding-right: clamp(20px, 4vw, 80px);
}

.service-landing-kicker-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.service-landing-kicker-pines {
    width: 68px;
    height: auto;
    margin-bottom: 2px;
}

.service-landing-kicker,
.service-landing-section-kicker {
    display: grid;
    grid-template-columns: 44px auto 44px;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--kicker);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.service-landing-kicker::before,
.service-landing-kicker::after,
.service-landing-section-kicker::before,
.service-landing-section-kicker::after {
    content: "";
    height: var(--kicker-line-thickness);
    background: currentColor;
}

.service-landing-section-kicker--start {
    display: inline-grid;
    justify-items: start;
    margin-bottom: 14px;
}

.service-landing-hero h1 {
    margin: 0 0 18px;
    color: var(--brown);
    font-family: var(--display);
    font-size: clamp(3.4rem, 6.4vw, 5.6rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 0.92;
    text-transform: uppercase;
}

.service-landing-hero h1 span,
.service-landing-heading h2 span,
.service-landing-why h2 span,
.service-landing-final-cta h2 span {
    color: var(--orange);
}

.service-landing-accent {
    display: block;
    margin-top: 0.12em;
    color: var(--orange);
    font-family: var(--script);
    font-size: 0.62em;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.05;
    text-transform: none;
}

.service-landing-intro,
.service-landing-why-lede {
    margin: 0 auto 28px;
    max-width: 52rem;
    color: rgb(110 53 26 / 88%);
    font-size: 1.12rem;
    line-height: 1.55;
}

.services-heading .service-landing-intro {
    margin-top: 18px;
    margin-bottom: 0;
    color: #3e493c;
}

.service-landing-situations .services-heading,
.service-landing-faq .services-heading {
    margin-bottom: 42px;
}

.service-landing-why .services-heading {
    max-width: none;
    margin-inline: 0;
}

.service-landing-why .about-kicker {
    margin-bottom: 14px;
}

.service-landing-why-lede {
    margin-inline: 0;
    margin-top: 22px;
    margin-bottom: 0;
}

.service-landing-hero-lede {
    margin-inline: 0;
}

.service-landing-hero-actions {
    margin-top: 8px;
}

.service-landing-hero-media {
    position: relative;
    margin: 0;
    border: 6px solid var(--cream-light);
    border-radius: 8px;
    box-shadow: 18px 22px 0 rgb(110 53 26 / 14%);
    overflow: hidden;
    transform: rotate(-1.5deg);
}

.service-landing-hero-media img {
    display: block;
    width: 100%;
    height: clamp(280px, 38vw, 460px);
    object-fit: cover;
}

.service-landing-trust {
    background: var(--green-deep);
    color: var(--white);
}

.service-landing-trust-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 28px;
    padding-block: 26px;
}

.service-landing-trust-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-family: var(--condensed);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.service-landing-trust-list i {
    color: #ffd38a;
    font-size: 1.15rem;
}

.service-landing-heading {
    margin-bottom: 42px;
}

.service-landing-situations,
.service-landing-faq,
.service-landing-related {
    padding-block: 92px;
}

.service-landing-situations-grid {
    --bs-gutter-y: 1.5rem;
}

.service-landing-situation {
    height: 100%;
    padding: 28px 26px 30px;
    background: var(--white);
    border: 1px solid rgb(110 53 26 / 10%);
    border-radius: 4px;
    box-shadow: 0 14px 0 rgb(110 53 26 / 6%);
}

.service-landing-situation-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgb(0 141 33 / 12%);
    color: var(--green-deep);
    font-size: 1.35rem;
}

.service-landing-situation h3 {
    margin: 0 0 10px;
    color: var(--brown);
    font-family: var(--display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    text-transform: uppercase;
}

.service-landing-situation p {
    margin: 0;
    color: rgb(110 53 26 / 82%);
    line-height: 1.5;
}

.service-landing-method {
    padding-block: 96px;
    background:
        linear-gradient(180deg, rgb(241 228 206 / 72%), rgb(241 228 206 / 92%)),
        url("../img/topography-pattern-1.png");
    background-size: auto, 520px 520px;
}

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

.service-landing-method-step {
    position: relative;
    padding: 34px 22px 28px;
    text-align: center;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 16px 0 rgb(110 53 26 / 7%);
}

.service-landing-method-number {
    position: absolute;
    top: -18px;
    left: 50%;
    width: 54px;
    height: auto;
    transform: translateX(-50%);
}

.service-landing-method-icon {
    width: 72px;
    height: auto;
    margin: 18px auto 14px;
}

.service-landing-method-step h3 {
    margin: 0 0 10px;
    color: var(--brown);
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-landing-method-step p {
    margin: 0;
    color: rgb(110 53 26 / 82%);
    line-height: 1.45;
}

.service-landing-mid-cta {
    margin-top: 48px;
    align-items: center;
    justify-content: center;
}

.service-landing-why {
    padding-block: 96px;
    background: var(--cream);
}

.service-landing-why-lede {
    margin-inline: 0;
}

.service-landing-why-list {
    display: grid;
    gap: 18px;
}

.service-landing-why-list li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px 22px 20px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 12px 0 rgb(110 53 26 / 6%);
}

.service-landing-why-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 1.35rem;
}

.service-landing-why-list h3 {
    margin: 0 0 6px;
    color: var(--brown);
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-landing-why-list p {
    margin: 0;
    color: rgb(110 53 26 / 82%);
    line-height: 1.45;
}

.service-landing-proof {
    padding-block: 92px 40px;
}

.service-landing-reviews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-landing-faq {
    background: var(--cream);
}

.service-landing-faq-list {
    max-width: 920px;
    margin-inline: auto;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-bg: var(--white);
    --bs-accordion-active-bg: var(--white);
    --bs-accordion-btn-color: var(--brown);
    --bs-accordion-active-color: var(--brown);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgb(193 86 10 / 25%);
}

.service-landing-faq-item {
    margin-bottom: 14px;
    border: 0;
    border-radius: 4px !important;
    overflow: hidden;
    box-shadow: 0 12px 0 rgb(110 53 26 / 6%);
}

.service-landing-faq-item .accordion-button {
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.15;
    text-transform: uppercase;
    box-shadow: none;
}

.service-landing-faq-item .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.service-landing-faq-item .accordion-button::after {
    background-image: none;
    content: "+";
    display: grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    font-family: var(--body);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--orange);
    transform: none;
}

.service-landing-faq-item .accordion-button:not(.collapsed)::after {
    content: "-";
    transform: none;
}

.service-landing-faq-item .accordion-body {
    padding-top: 0;
    background: var(--white);
}

.service-landing-faq-item .accordion-body p {
    margin: 0;
    padding-bottom: 4px;
    color: rgb(110 53 26 / 84%);
    line-height: 1.55;
}

.service-landing-area {
    padding-block: 40px 80px;
}

.service-landing-hours {
    margin: 22px 0 0;
    color: rgb(110 53 26 / 88%);
}

.service-landing-related-grid {
    --bs-gutter-y: 1.25rem;
}

.service-landing-related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 26px 24px 24px;
    color: inherit;
    text-decoration: none;
    background: var(--white);
    border: 1px solid rgb(110 53 26 / 10%);
    border-radius: 4px;
    box-shadow: 0 12px 0 rgb(110 53 26 / 6%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-landing-related-card:hover,
.service-landing-related-card:focus-visible {
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 16px 0 rgb(110 53 26 / 8%);
}

.service-landing-related-card h3 {
    margin: 0 0 10px;
    color: var(--brown);
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-landing-related-card p {
    flex: 1;
    margin: 0 0 16px;
    color: rgb(110 53 26 / 82%);
    line-height: 1.45;
}

.service-landing-related-card span {
    color: var(--orange);
    font-family: var(--condensed);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-landing-final-cta {
    padding-block: 40px 100px;
}

.service-landing-final-inner {
    padding: clamp(42px, 6vw, 70px) clamp(28px, 5vw, 64px);
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%),
        url("../img/topography-pattern-1.png");
    background-blend-mode: multiply;
    background-size: cover, 480px 480px;
    border-radius: 6px;
    box-shadow: 0 22px 0 rgb(110 53 26 / 12%);
}

.service-landing-final-inner .service-landing-section-kicker {
    color: #ffd38a;
    justify-content: center;
}

.service-landing-final-inner h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.service-landing-final-inner h2 span {
    color: #ffd38a;
}

.service-landing-final-inner > p {
    max-width: 40rem;
    margin: 0 auto 28px;
    color: rgb(255 253 247 / 90%);
    font-size: 1.12rem;
    line-height: 1.5;
}

.service-landing-final-inner .primary-cta-stack {
    justify-content: center;
}

.service-landing-final-inner .cta-phone {
    color: var(--white);
}

.service-landing-final-inner .cta-phone:hover,
.service-landing-final-inner .cta-phone:focus-visible {
    color: #ffd38a;
}

@media (max-width: 1199.98px) {
    .service-landing-method-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 991.98px) {
    .service-landing-hero {
        background:
            linear-gradient(180deg, var(--cream) 0 58%, transparent 58.1%),
            linear-gradient(120deg, var(--green) 0%, var(--green-deep) 100%);
    }

    .service-landing-hero::before {
        inset: 55% 0 0;
    }

    .service-landing-hero-row {
        padding-block: 72px 64px;
    }

    .service-landing-hero-copy {
        padding-right: 0;
    }

    .service-landing-hero-media {
        transform: none;
        box-shadow: 12px 14px 0 rgb(110 53 26 / 14%);
    }

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

@media (max-width: 767.98px) {
    .service-landing-container {
        width: min(100% - 28px, 1540px);
    }

    .service-landing-trust-list,
    .service-landing-method-list {
        grid-template-columns: 1fr;
    }

    .service-landing-trust-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .service-landing-situations,
    .service-landing-faq,
    .service-landing-related,
    .service-landing-method,
    .service-landing-why {
        padding-block: 72px;
    }

    .service-landing-final-cta {
        padding-block: 24px 80px;
    }

    .service-landing-hero h1 {
        font-size: clamp(2.8rem, 12vw, 3.6rem);
    }

    .service-landing-mid-cta,
    .service-landing-hero-actions,
    .service-landing-final-inner .primary-cta-stack {
        align-items: stretch;
    }
}

/* Service area hub */
.service-area-jump {
    padding-block: 42px 18px;
    background: var(--cream);
}

.service-area-jump-group + .service-area-jump-group {
    margin-top: 28px;
}

.service-area-jump-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.service-area-jump-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    color: var(--green-deep);
    background: var(--white);
    border: 1px solid rgb(110 53 26 / 14%);
    border-radius: 8px;
    font-family: var(--condensed);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.service-area-jump-list a:hover,
.service-area-jump-list a:focus-visible {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.service-area-region {
    padding-block: 48px 24px;
}

.service-area-region:nth-of-type(even) {
    background: var(--cream);
}

.service-area-county-stack {
    display: grid;
    gap: 28px;
    margin-top: 36px;
}

.service-area-county {
    padding: clamp(28px, 3vw, 42px);
    background: var(--white);
    border: 1px solid rgb(110 53 26 / 10%);
    border-radius: 8px;
    box-shadow: 0 14px 0 rgb(110 53 26 / 6%);
    scroll-margin-top: calc(var(--header-height) + 16px);
}

.service-area-county-header .about-kicker {
    margin-bottom: 10px;
}

.service-area-county-header h3 {
    margin: 0;
    color: var(--green);
    font-family: var(--display);
    font-size: clamp(2.4rem, 3.6vw, 3.6rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 0.92;
    text-transform: uppercase;
}

.service-area-county-header p:last-child {
    max-width: 52rem;
    margin: 14px 0 0;
    color: #3e493c;
    font-size: 1.05rem;
    line-height: 1.5;
}

.service-area-county-lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
    margin-top: 28px;
}

.service-area-county-lists h4 {
    margin: 0 0 12px;
    color: var(--orange);
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-area-place-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.service-area-place {
    display: inline-flex;
    padding: 6px 12px;
    color: var(--brown);
    background: var(--cream-light);
    border: 1px solid rgb(110 53 26 / 10%);
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .service-area-county-lists {
        grid-template-columns: 1fr;
    }
}

/* Scroll-triggered content reveals. Keep the :is() list in sync with js/custom.js. */
html.has-reveal :is(
    .hero-kicker,
    .hero-title-main,
    .hero-title-script,
    .hero-description,
    .hero-actions,
    .hero-stump-badge,
    .trust-item,
    .services-heading,
    .service-card,
    .emergency-service-card,
    .about-media,
    .about-kicker,
    .about-content > h2,
    .about-copy,
    .about-values li,
    .about-cta,
    .process-sign,
    .process-heading,
    .process-step,
    .process-cta,
    .reviews-kicker,
    .reviews-main > h2,
    .reviews-main > .services-kicker,
    .review-card,
    .reviews-cta,
    .review-seal,
    .service-map,
    .service-area-kicker,
    .service-area-content > h2,
    .service-area-intro,
    .service-area-list,
    .service-area-button,
    .local-focus-board,
    .service-area-jump-group,
    .service-area-county,
    .thank-you-stamp,
    .contact-kicker-wrap,
    .contact-hero-copy > h1,
    .contact-hero-copy > p,
    .contact-hero-actions,
    .contact-hero-note,
    .contact-trust-list li,
    .estimate-form-wrap,
    .contact-sidebar-card,
    .contact-map-card,
    .contact-next-heading,
    .contact-next-list li,
    .service-landing-situation,
    .service-landing-why-lede,
    .service-landing-why-list li,
    .service-landing-faq-item,
    .service-landing-related-card,
    .service-landing-final-inner,
    .footer-grid > *,
    .footer-bottom,
    [data-reveal]
) {
    opacity: 0;
    translate: 0 var(--reveal-distance);
}

html.has-reveal :is(
    .hero-kicker,
    .hero-title-main,
    .hero-title-script,
    .hero-description,
    .hero-actions,
    .hero-stump-badge,
    .trust-item,
    .services-heading,
    .service-card,
    .emergency-service-card,
    .about-media,
    .about-kicker,
    .about-content > h2,
    .about-copy,
    .about-values li,
    .about-cta,
    .process-sign,
    .process-heading,
    .process-step,
    .process-cta,
    .reviews-kicker,
    .reviews-main > h2,
    .reviews-main > .services-kicker,
    .review-card,
    .reviews-cta,
    .review-seal,
    .service-map,
    .service-area-kicker,
    .service-area-content > h2,
    .service-area-intro,
    .service-area-list,
    .service-area-button,
    .local-focus-board,
    .service-area-jump-group,
    .service-area-county,
    .thank-you-stamp,
    .contact-kicker-wrap,
    .contact-hero-copy > h1,
    .contact-hero-copy > p,
    .contact-hero-actions,
    .contact-hero-note,
    .contact-trust-list li,
    .estimate-form-wrap,
    .contact-sidebar-card,
    .contact-map-card,
    .contact-next-heading,
    .contact-next-list li,
    .service-landing-situation,
    .service-landing-why-lede,
    .service-landing-why-list li,
    .service-landing-faq-item,
    .service-landing-related-card,
    .service-landing-final-inner,
    .footer-grid > *,
    .footer-bottom,
    [data-reveal]
).is-inview {
    animation: reveal-up var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0ms) both;
}

html.has-reveal :is(
    .hero-stump-badge,
    .review-seal,
    .local-focus-board
).is-inview {
    animation-name: reveal-up-scale;
}

html.has-reveal :is(
    .hero-kicker,
    .hero-title-main,
    .hero-title-script,
    .hero-description,
    .hero-actions,
    .hero-stump-badge,
    .trust-item,
    .services-heading,
    .service-card,
    .emergency-service-card,
    .about-media,
    .about-kicker,
    .about-content > h2,
    .about-copy,
    .about-values li,
    .about-cta,
    .process-sign,
    .process-heading,
    .process-step,
    .process-cta,
    .reviews-kicker,
    .reviews-main > h2,
    .reviews-main > .services-kicker,
    .review-card,
    .reviews-cta,
    .review-seal,
    .service-map,
    .service-area-kicker,
    .service-area-content > h2,
    .service-area-intro,
    .service-area-list,
    .service-area-button,
    .local-focus-board,
    .service-area-jump-group,
    .service-area-county,
    .thank-you-stamp,
    .contact-kicker-wrap,
    .contact-hero-copy > h1,
    .contact-hero-copy > p,
    .contact-hero-actions,
    .contact-hero-note,
    .contact-trust-list li,
    .estimate-form-wrap,
    .contact-sidebar-card,
    .contact-map-card,
    .contact-next-heading,
    .contact-next-list li,
    .service-landing-situation,
    .service-landing-why-lede,
    .service-landing-why-list li,
    .service-landing-faq-item,
    .service-landing-related-card,
    .service-landing-final-inner,
    .footer-grid > *,
    .footer-bottom,
    [data-reveal]
).is-revealed {
    animation: none;
    opacity: 1;
    translate: 0 0;
    scale: 1;
}

html.has-reveal .thank-you-stamp {
    --reveal-delay: 40ms;
}

html.has-reveal .hero-kicker,
html.has-reveal .contact-kicker-wrap {
    --reveal-delay: 60ms;
}

html.has-reveal .contact-hero-copy > .thank-you-script {
    --reveal-delay: 240ms;
}

html.has-reveal .hero-title-main,
html.has-reveal .contact-hero-copy > h1 {
    --reveal-delay: 140ms;
}

html.has-reveal .hero-title-script {
    --reveal-delay: 240ms;
}

html.has-reveal .hero-description,
html.has-reveal .contact-hero-copy > p {
    --reveal-delay: 320ms;
}

html.has-reveal .hero-actions,
html.has-reveal .contact-hero-actions {
    --reveal-delay: 400ms;
}

html.has-reveal .hero-stump-badge {
    --reveal-delay: 280ms;
}

html.has-reveal .contact-hero-note {
    --reveal-delay: 200ms;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        translate: 0 1.15rem;
    }

    to {
        opacity: 1;
        translate: 0 0;
    }
}

@keyframes reveal-up-scale {
    from {
        opacity: 0;
        translate: 0 0.9rem;
        scale: 0.96;
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.has-reveal :is(
        .hero-kicker,
        .hero-title-main,
        .hero-title-script,
        .hero-description,
        .hero-actions,
        .hero-stump-badge,
        .trust-item,
        .services-heading,
        .service-card,
        .emergency-service-card,
        .about-media,
        .about-kicker,
        .about-content > h2,
        .about-copy,
        .about-values li,
        .about-cta,
        .process-sign,
        .process-heading,
        .process-step,
        .process-cta,
        .reviews-kicker,
        .reviews-main > h2,
        .reviews-main > .services-kicker,
        .review-card,
        .reviews-cta,
        .review-seal,
        .service-map,
        .service-area-kicker,
        .service-area-content > h2,
        .service-area-intro,
        .service-area-list,
        .service-area-button,
        .local-focus-board,
        .service-area-jump-group,
        .service-area-county,
        .thank-you-stamp,
        .contact-kicker-wrap,
        .contact-hero-copy > h1,
        .contact-hero-copy > p,
        .contact-hero-actions,
        .contact-hero-note,
        .contact-trust-list li,
        .estimate-form-wrap,
        .contact-sidebar-card,
        .contact-map-card,
        .contact-next-heading,
        .contact-next-list li,
        .service-landing-situation,
        .service-landing-why-lede,
        .service-landing-why-list li,
        .service-landing-faq-item,
        .service-landing-related-card,
        .service-landing-final-inner,
        .footer-grid > *,
        .footer-bottom,
        [data-reveal]
    ) {
        animation: none;
        opacity: 1;
        translate: 0 0;
        scale: 1;
    }
}
