:root {
    --forest: #183d2b;
    --green: #4f7a45;
    --moss: #d8e5c3;
    --stone: #d7d1c3;
    --brass: #b6a46a;
    --off-white: #f7f5ef;
    --charcoal: #252a27;
    --paper: #ffffff;
    --line: rgba(37, 42, 39, 0.14);
    --shadow: 0 18px 45px rgba(24, 61, 43, 0.14);
    --radius: 8px;
    --container: min(1120px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--off-white);
    color: var(--charcoal);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid #c6d96d;
    outline-offset: 4px;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--paper);
    color: var(--forest);
    border-radius: var(--radius);
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.narrow {
    max-width: 820px;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(247, 245, 239, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 28px;
}

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: 0 0 42px;
    background: linear-gradient(145deg, var(--forest), var(--green));
    color: var(--off-white);
    border-radius: 50%;
    font-weight: 700;
}

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

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

.brand small {
    color: rgba(37, 42, 39, 0.7);
    font-size: 0.78rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.primary-nav a {
    color: rgba(37, 42, 39, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav a:hover {
    color: var(--forest);
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 19px;
    border: 1px solid var(--forest);
    background: var(--forest);
    color: var(--off-white);
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(24, 61, 43, 0.18);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    background: #102c1e;
    box-shadow: 0 14px 30px rgba(24, 61, 43, 0.24);
    transform: translateY(-1px);
}

.button-secondary {
    border-color: rgba(247, 245, 239, 0.72);
    background: rgba(247, 245, 239, 0.12);
    color: var(--off-white);
}

.button-ghost {
    border-color: rgba(247, 245, 239, 0.34);
    background: transparent;
    color: var(--off-white);
    box-shadow: none;
}

.button-ghost:hover {
    border-color: var(--off-white);
    background: rgba(247, 245, 239, 0.08);
}

.page-content .button-secondary {
    border-color: var(--forest);
    color: var(--forest);
}

.button-small {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: var(--radius);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--forest);
    content: "";
}

.nav-toggle-lines::before {
    transform: translateY(-7px);
}

.nav-toggle-lines::after {
    transform: translateY(5px);
}

.hero {
    position: relative;
    display: grid;
    min-height: min(760px, calc(100svh - 78px));
    align-items: end;
    overflow: hidden;
    color: var(--off-white);
}

.hero-image,
.hero-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder {
    background:
        linear-gradient(135deg, rgba(24, 61, 43, 0.92), rgba(79, 122, 69, 0.72)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 18px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 72%, rgba(182, 164, 106, 0.18), transparent 30%),
        linear-gradient(90deg, rgba(17, 31, 24, 0.92), rgba(24, 61, 43, 0.55) 54%, rgba(24, 61, 43, 0.18));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-block: 96px 112px;
}

.hero-content h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.3rem, 6vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(247, 245, 239, 0.9);
    font-size: 1.15rem;
}

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

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

.trust-strip {
    padding-block: 0;
    background: var(--forest);
    color: var(--off-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-inline: 1px solid rgba(247, 245, 239, 0.14);
}

.trust-grid div {
    min-height: 112px;
    padding: 24px;
    border-right: 1px solid rgba(247, 245, 239, 0.14);
}

.trust-grid div:last-child {
    border-right: 0;
}

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

.trust-grid strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
}

.trust-grid span {
    margin-top: 4px;
    color: rgba(247, 245, 239, 0.72);
}

.section {
    padding-block: 88px;
}

.intro-band {
    background: var(--forest);
    color: var(--off-white);
}

.intro-band .eyebrow {
    color: #d8e5c3;
}

.split,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

h1,
h2,
h3 {
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
    margin: 0 0 14px;
    font-size: 1.45rem;
}

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

.section-heading p:last-child {
    margin-bottom: 0;
    color: rgba(37, 42, 39, 0.74);
}

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

.service-card {
    min-height: 250px;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
    border-color: rgba(79, 122, 69, 0.36);
    transform: translateY(-2px);
}

.service-card-muted {
    background: #eef2e7;
}

.service-number {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--green);
    font-weight: 800;
}

.service-content ul {
    display: grid;
    gap: 7px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-content li,
.service-card p {
    color: rgba(37, 42, 39, 0.74);
}

.service-content li::before {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.55rem;
    background: var(--green);
    border-radius: 999px;
    content: "";
    transform: translateY(-0.08rem);
}

.future-services {
    margin-top: 28px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.future-services p {
    max-width: 820px;
    margin-block: 0;
}

.future-services .eyebrow {
    margin-bottom: 6px;
}

.gallery-section {
    background: #e8eddf;
}

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

.project-card {
    overflow: hidden;
    background: var(--forest);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.project-card a,
.project-card figure,
.project-card.empty {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    margin: 0;
    color: var(--off-white);
    text-decoration: none;
}

.project-card img,
.project-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-placeholder {
    display: grid;
    place-items: center;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(24, 61, 43, 0.95), rgba(79, 122, 69, 0.78)),
        linear-gradient(45deg, transparent 48%, rgba(247, 245, 239, 0.18) 50%, transparent 52%);
    color: rgba(247, 245, 239, 0.82);
    text-align: center;
}

.gallery-empty {
    display: grid;
    min-height: 260px;
    place-items: center;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(24, 61, 43, 0.08), rgba(182, 164, 106, 0.14)),
        var(--off-white);
    border: 1px solid rgba(24, 61, 43, 0.12);
    border-radius: var(--radius);
    color: rgba(37, 42, 39, 0.72);
    text-align: center;
}

.gallery-empty p {
    max-width: 520px;
    margin: 0;
    font-size: 1.08rem;
}

.about-section {
    background: var(--paper);
}

.service-area {
    background: var(--off-white);
}

.reviews-section {
    background: var(--paper);
}

.reviews-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

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

.review-card,
.review-form,
.review-empty {
    padding: 26px;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--green);
    font-size: 1.2rem;
    letter-spacing: 0;
}

.review-card blockquote {
    margin: 14px 0 16px;
    color: rgba(37, 42, 39, 0.76);
}

.review-author {
    margin: 0;
    color: var(--forest);
    font-weight: 800;
}

.review-empty {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(37, 42, 39, 0.72);
}

.review-form {
    display: grid;
    gap: 16px;
}

.review-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: var(--radius);
    color: var(--charcoal);
}

.review-form textarea {
    resize: vertical;
}

.privacy-check {
    grid-template-columns: auto 1fr;
    align-items: start;
    font-weight: 400;
}

.privacy-check input {
    width: auto;
    margin-top: 0.35rem;
}

.privacy-check a {
    color: var(--forest);
    font-weight: 800;
}

.form-message {
    margin: 0;
    padding: 12px 14px;
    background: #fff8dd;
    border: 1px solid rgba(182, 164, 106, 0.42);
    border-radius: var(--radius);
}

.form-message.success {
    background: #eef7e8;
    border-color: rgba(79, 122, 69, 0.32);
}

.screen-reader-honeypot {
    position: absolute;
    left: -9999px;
}

.contact-section {
    background: var(--forest);
    color: var(--off-white);
}

.contact-section .eyebrow {
    color: #d8e5c3;
}

.contact-panel {
    display: grid;
    gap: 12px;
    padding: 28px;
    background: var(--off-white);
    color: var(--charcoal);
    border-radius: var(--radius);
}

.contact-method {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: var(--radius);
    color: var(--charcoal);
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.contact-method:hover {
    border-color: rgba(79, 122, 69, 0.42);
    transform: translateY(-1px);
}

.contact-method span {
    color: rgba(37, 42, 39, 0.62);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-method strong {
    overflow-wrap: anywhere;
    color: var(--forest);
    font-size: 1.08rem;
}

.site-footer {
    padding-block: 52px 28px;
    background: #111f18;
    color: var(--off-white);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 34px;
}

.brand-footer small,
.site-footer p {
    color: rgba(247, 245, 239, 0.72);
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: rgba(247, 245, 239, 0.85);
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(247, 245, 239, 0.16);
    color: rgba(247, 245, 239, 0.62);
}

.entry-content {
    color: rgba(37, 42, 39, 0.78);
}

.entry-content a {
    color: var(--forest);
    font-weight: 700;
}

.featured-project-image {
    margin: 32px 0;
}

.featured-project-image img {
    width: 100%;
    border-radius: var(--radius);
}

@media (max-width: 920px) {
    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .primary-nav {
        position: fixed;
        inset: 78px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 12px 20px 22px;
        background: var(--off-white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

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

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

    .split,
    .contact-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .trust-grid div:nth-child(2) {
        border-right: 0;
    }

    .trust-grid div:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(247, 245, 239, 0.14);
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 28px, 1120px);
    }

    .header-inner {
        min-height: 70px;
    }

    .brand small {
        display: none;
    }

    .primary-nav {
        inset: 70px 0 auto;
    }

    .hero {
        min-height: calc(100svh - 70px);
    }

    .hero-content {
        padding-block: 72px 86px;
    }

    .hero-content h1 {
        font-size: 2.55rem;
    }

    .section {
        padding-block: 64px;
    }

    .service-grid,
    .project-grid,
    .trust-grid,
    .approved-reviews {
        grid-template-columns: 1fr;
    }

    .trust-grid div,
    .trust-grid div:nth-child(2),
    .trust-grid div:last-child {
        border-top: 1px solid rgba(247, 245, 239, 0.14);
        border-right: 0;
    }

    .trust-grid div:first-child {
        border-top: 0;
    }

    .project-card a,
    .project-card figure,
    .project-card.empty {
        aspect-ratio: 4 / 3;
    }

    .footer-grid,
    .footer-links,
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }
}

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