:root {
    --ink: #16221b;
    --muted: #5c6b61;
    --green: #1f7a3a;
    --green-dark: #14522a;
    --gold: #e0b24f;
    --mist: #edf4ed;
    --white: #ffffff;
    --line: rgba(22, 34, 27, 0.14);
    --shadow: 0 18px 48px rgba(15, 42, 25, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 54px);
    background: rgba(251, 253, 249, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(22, 34, 27, 0.12);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05;
}

.brand small {
    color: var(--muted);
    font-size: 0.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 0.96rem;
}

.nav-links a,
.header-call {
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--green-dark);
}

.header-call {
    padding: 10px 14px;
    color: var(--white);
    background: var(--green-dark);
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    background: linear-gradient(90deg, rgba(9, 26, 15, 0.82) 0%, rgba(9, 26, 15, 0.58) 42%, rgba(9, 26, 15, 0.12) 72%);
}

.hero-content {
    position: relative;
    width: min(720px, calc(100% - 36px));
    margin-left: clamp(18px, 6vw, 80px);
    padding: 92px 0;
    color: var(--white);
}

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

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(2.65rem, 7vw, 5.8rem);
    line-height: 0.96;
}

h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.04;
}

h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.25;
}

.hero-copy {
    max-width: 610px;
    margin: 24px 0 0;
    font-size: 1.2rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.button.primary {
    color: var(--green-dark);
    background: var(--gold);
}

.button.secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.54);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1140px;
    margin: -48px auto 0;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.trust-strip div {
    padding: 22px;
    background: var(--white);
}

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

.trust-strip span {
    color: var(--muted);
}

.section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 92px clamp(18px, 3vw, 28px);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: clamp(28px, 6vw, 70px);
    align-items: start;
}

.split p:not(.eyebrow),
.section-heading p,
.quote-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

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

.service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.service-card span {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 800;
}

.area-band {
    max-width: none;
    background: var(--mist);
}

.area-band > * {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    text-align: center;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.area-list span {
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 700;
}

.quote-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
    gap: clamp(28px, 6vw, 70px);
    align-items: center;
}

.quote-panel {
    padding: 24px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.quote-method {
    display: block;
    padding: 18px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-method span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.quote-method strong {
    display: block;
    font-size: clamp(1.1rem, 3vw, 1.55rem);
    overflow-wrap: anywhere;
}

.small-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding: 26px clamp(18px, 4vw, 54px);
    color: var(--muted);
    background: #f4f7f0;
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
    max-width: 650px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.footer-links a {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.legal-page {
    background: linear-gradient(180deg, var(--mist), #fbfdf9 260px);
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 72px clamp(18px, 4vw, 42px) 92px;
}

.legal-content h1 {
    color: var(--ink);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-content h2 {
    margin-top: 42px;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content p {
    color: var(--muted);
    font-size: 1.04rem;
}

.legal-content a {
    color: var(--green-dark);
    font-weight: 700;
}

.legal-date {
    margin-top: 8px;
    font-weight: 700;
}

@media (max-width: 860px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero {
        min-height: 640px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(9, 26, 15, 0.86), rgba(9, 26, 15, 0.54));
    }

    .trust-strip,
    .split,
    .quote-section {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 560px) {
    .site-header {
        gap: 12px;
    }

    .header-call {
        width: 100%;
        text-align: center;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin: 0 auto;
    }

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

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

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}
