:root {
    --ink: #17211b;
    --muted: #5d6b63;
    --line: #dfe7df;
    --paper: #ffffff;
    --soft: #f3f7f1;
    --forest: #116149;
    --forest-dark: #0b4735;
    --leaf: #7dbb3a;
    --sun: #f2b705;
    --danger: #c84b31;
    --shadow: 0 20px 50px rgba(20, 42, 31, 0.14);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

.container {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.top-strip {
    background: var(--forest-dark);
    color: #eef9ef;
    font-size: 13px;
}

.strip-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.strip-inner a {
    font-weight: 700;
    color: #ffffff;
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--forest);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.16);
}

.brand strong {
    display: block;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-weight: 700;
    color: #314038;
}

.main-nav a {
    padding: 12px 0;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--forest);
    border-color: var(--leaf);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--forest);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(17, 97, 73, 0.22);
}

.btn-primary:hover {
    background: var(--forest-dark);
}

.btn-ghost {
    border-color: var(--line);
    background: #ffffff;
    color: var(--forest);
}

.btn-light {
    background: #ffffff;
    color: var(--forest-dark);
    border-color: rgba(255, 255, 255, 0.7);
}

.text-link {
    color: var(--forest);
    font-weight: 800;
    border-bottom: 2px solid var(--leaf);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 10px;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(100vh - 114px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #102419;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(9, 26, 18, 0.88), rgba(9, 26, 18, 0.7) 44%, rgba(9, 26, 18, 0.24));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 48px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.hero-copy {
    max-width: 720px;
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--forest);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero .eyebrow,
.cta-section .eyebrow {
    color: #c7f28a;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(42px, 6vw, 76px);
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
}

h3 {
    font-size: 22px;
}

p {
    margin: 0;
}

.hero-text {
    max-width: 660px;
    margin: 22px 0 28px;
    color: #e8f1e9;
    font-size: 19px;
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
    color: #ecf7ed;
}

.trust-row span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.trust-row strong {
    color: #ffffff;
}

.quote-card {
    padding: 26px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.quote-card h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--ink);
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    font-weight: 800;
    color: #29372f;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    background: #ffffff;
    color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(125, 187, 58, 0.25);
    border-color: var(--forest);
}

.quote-card .btn {
    width: 100%;
    margin-top: 4px;
}

.form-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
}

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

.service-band {
    background: var(--forest-dark);
    color: #ffffff;
}

.service-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-band a {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

.service-band a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.service-band span {
    color: var(--sun);
}

.section {
    padding: 84px 0;
}

.section-muted {
    background: var(--soft);
}

.split {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 58px;
    align-items: center;
}

.split p,
.locality-layout p,
.cta-panel p,
.page-hero p,
.service-detail p,
.about-card p,
.contact-card p {
    color: var(--muted);
    font-size: 17px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.feature-list div {
    padding: 18px;
    border-left: 5px solid var(--leaf);
    border-radius: var(--radius);
    background: var(--soft);
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list strong {
    margin-bottom: 4px;
    font-size: 18px;
}

.feature-list span {
    color: var(--muted);
}

.image-stack {
    position: relative;
}

.image-stack img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.result-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: min(280px, calc(100% - 44px));
    padding: 18px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.result-badge strong,
.result-badge span {
    display: block;
}

.result-badge span {
    color: var(--muted);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-heading h2 {
    max-width: 760px;
}

.section-heading.centered {
    display: block;
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

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

.service-card,
.steps article,
.reviews-grid blockquote,
.about-card,
.service-detail,
.contact-card,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(20, 42, 31, 0.07);
}

.service-card {
    padding: 14px;
    overflow: hidden;
}

.icon-box {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: var(--radius);
    background: #e8f4dc;
    color: var(--forest);
    font-weight: 900;
}

.service-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 18px;
    border-radius: calc(var(--radius) - 2px);
    object-fit: cover;
    background: var(--soft);
}

.service-card h3 {
    padding: 0 12px;
    margin-bottom: 10px;
}

.service-card p,
.steps p,
.reviews-grid p,
.service-detail li,
.faq-item p {
    color: var(--muted);
}

.service-card p {
    padding: 0 12px 12px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.steps article {
    padding: 24px;
}

.steps span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--forest);
    color: #ffffff;
    font-weight: 900;
}

.steps h3 {
    margin-bottom: 10px;
}

.locality-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
    align-items: center;
}

.locality-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.locality-tags span {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: #26352d;
    font-weight: 800;
}

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

.area-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(20, 42, 31, 0.07);
}

.area-grid h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.area-grid p,
.seo-copy p {
    color: var(--muted);
}

.seo-copy {
    margin-top: 36px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(20, 42, 31, 0.07);
}

.seo-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 3vw, 38px);
}

.seo-copy p + p {
    margin-top: 14px;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.keyword-list span {
    padding: 10px 13px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--forest-dark);
    font-size: 14px;
    font-weight: 800;
}

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

.reviews-grid blockquote {
    margin: 0;
    padding: 28px;
}

.reviews-grid p::before {
    content: "5-star review";
    display: block;
    margin-bottom: 16px;
    color: var(--forest);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews-grid cite {
    display: block;
    margin-top: 20px;
    color: var(--ink);
    font-style: normal;
    font-weight: 900;
}

.cta-section {
    padding: 36px 0 84px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: var(--radius);
    background: var(--forest-dark);
    color: #ffffff;
}

.cta-panel h2 {
    margin-bottom: 12px;
}

.cta-panel p {
    color: #d8eadb;
}

.site-footer {
    padding: 58px 0 26px;
    background: #101915;
    color: #d8e2dc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 44px;
}

.footer-brand {
    margin-bottom: 16px;
    color: #ffffff;
}

.site-footer .brand small {
    color: #bfd0c5;
}

.site-footer h3 {
    margin-bottom: 16px;
    font-size: 18px;
}

.site-footer a {
    display: block;
    margin-top: 8px;
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #aab9b0;
    font-size: 14px;
}

.sticky-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 18;
    display: none;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--danger);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(200, 75, 49, 0.28);
}

.page-hero {
    padding: 76px 0;
    background: linear-gradient(90deg, #ecf5e8, #ffffff);
}

.page-hero h1 {
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
    max-width: 760px;
    margin-top: 18px;
}

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

.about-card {
    padding: 26px;
}

.about-card h3,
.service-detail h2,
.contact-card h2,
.faq-item h3 {
    margin-bottom: 12px;
}

.service-list {
    display: grid;
    gap: 22px;
}

.service-detail {
    display: grid;
    grid-template-columns: 0.92fr 1fr;
    gap: 28px;
    padding: 30px;
    align-items: start;
}

.service-visual {
    position: relative;
    margin: 22px 0 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.service-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-visual figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
}

.service-visual figcaption span {
    padding: 8px 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    color: var(--forest-dark);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.service-detail ul {
    margin: 18px 0 0;
    padding-left: 20px;
}

.service-detail .btn {
    margin-top: 20px;
}

.price-estimator {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 24px;
    align-items: stretch;
}

.estimator-panel {
    padding: 28px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid var(--line);
}

.estimator-result {
    display: grid;
    align-content: center;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--forest);
    color: #ffffff;
}

.price-display {
    margin: 8px 0;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
}

.estimator-result p {
    color: #e4f2e4;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.contact-card {
    padding: 28px;
}

.contact-card + .contact-card {
    margin-top: 18px;
}

.contact-card a {
    display: block;
    margin-top: 8px;
    color: var(--forest);
    font-weight: 900;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    margin: 0;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

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

.faq-item {
    padding: 22px;
}

@media (max-width: 980px) {
    .top-strip {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 20px 24px;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

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

    .main-nav a {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero {
        min-height: auto;
    }

    .hero-content,
    .split,
    .locality-layout,
    .price-estimator,
    .contact-layout,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .quote-card {
        max-width: 520px;
    }

    .service-band-grid,
    .steps,
    .cards-grid,
    .reviews-grid,
    .about-grid,
    .area-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-panel,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .nav-shell {
        min-height: 72px;
    }

    .main-nav {
        inset: 72px 0 auto 0;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand strong {
        font-size: 20px;
    }

    .hero-content {
        padding-top: 42px;
        padding-bottom: 42px;
        gap: 30px;
    }

    .hero-overlay {
        background: rgba(9, 26, 18, 0.78);
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .trust-row {
        display: grid;
    }

    .service-band-grid,
    .cards-grid,
    .steps,
    .reviews-grid,
    .about-grid,
    .area-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading .text-link {
        display: inline-block;
        margin-top: 18px;
    }

    .service-band a {
        min-height: 72px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .cta-panel {
        padding: 28px;
    }

    .sticky-call {
        display: inline-flex;
    }
}
