:root {
    --ink: #18201f;
    --muted: #596965;
    --paper: #f6f4ef;
    --white: #ffffff;
    --line: #d8ddd6;
    --green: #185b45;
    --green-2: #0f3f34;
    --aqua: #d9eee7;
    --gold: #b76f2a;
    --rust: #8d4b2d;
    --shadow: 0 18px 50px rgba(16, 36, 32, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(246, 244, 239, 0.92);
    border-bottom: 1px solid rgba(24, 32, 31, 0.08);
    backdrop-filter: blur(16px);
}

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

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--green);
    font-weight: 800;
}

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

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

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

.nav-cta {
    padding: 10px 14px;
    color: var(--white) !important;
    background: var(--green);
    border-radius: 8px;
}

.menu-button,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 72px));
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: clamp(60px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 24, 20, 0.86), rgba(10, 24, 20, 0.62) 42%, rgba(10, 24, 20, 0.16) 78%),
        linear-gradient(0deg, rgba(10, 24, 20, 0.35), transparent 38%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    color: var(--white);
}

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

.hero .eyebrow {
    color: #f2b36c;
}

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

h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.hero-copy {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2vw, 21px);
}

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

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 14px 30px rgba(15, 63, 52, 0.24);
}

.primary:hover {
    background: var(--green-2);
}

.secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.full {
    width: 100%;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.stats div {
    min-height: 118px;
    padding: 28px clamp(18px, 4vw, 48px);
    background: var(--white);
}

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

.stats strong {
    font-size: 22px;
}

.stats span {
    margin-top: 6px;
    color: var(--muted);
}

.section {
    padding: clamp(66px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
    gap: clamp(32px, 6vw, 84px);
    align-items: start;
}

.section-copy p:not(.eyebrow),
.request-copy p {
    color: var(--muted);
    font-size: 17px;
}

.steps {
    display: grid;
    gap: 14px;
}

.steps article,
.review,
.request-form,
.recent {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.steps article {
    position: relative;
    padding: 26px 26px 26px 86px;
}

.steps span {
    position: absolute;
    left: 24px;
    top: 24px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 8px;
    color: var(--green);
    background: var(--aqua);
    font-weight: 900;
}

.steps p,
.report-grid p,
.review p {
    margin: 0;
    color: var(--muted);
}

.report-band {
    color: var(--white);
    background: var(--green-2);
}

.report-band h2 {
    max-width: 880px;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 36px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.report-grid article {
    min-height: 220px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.report-grid p {
    color: rgba(255, 255, 255, 0.78);
}

.section-heading {
    max-width: 720px;
}

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

.review {
    padding: 26px;
}

.stars {
    color: var(--gold);
    letter-spacing: 0;
    margin-bottom: 14px;
}

.review strong,
.review span {
    display: block;
}

.review strong {
    margin-top: 18px;
}

.review span {
    color: var(--muted);
    font-size: 14px;
}

.request-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
    background: #e9efe9;
}

.recent {
    margin-top: 24px;
    padding: 22px;
    box-shadow: none;
}

.callout {
    padding: 15px 17px;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    color: var(--ink) !important;
    background: rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

.callout a,
.footer p a {
    color: var(--green);
    font-weight: 900;
}

.footer p a {
    color: var(--white);
}

.recent h3 {
    margin-bottom: 14px;
}

.recent p {
    margin: 0 0 14px;
    font-size: 14px;
}

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

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

.request-form {
    padding: clamp(22px, 4vw, 34px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #c8d0c7;
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fbfcfa;
    font: inherit;
    font-weight: 500;
}

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

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(24, 91, 69, 0.18);
    border-color: var(--green);
}

.notice {
    margin-bottom: 18px;
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 700;
}

.notice p {
    margin: 0;
}

.notice p + p {
    margin-top: 6px;
}

.success {
    color: #124a38;
    background: #dff2e6;
}

.error {
    color: #79270d;
    background: #ffe1d4;
}

.trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 26px clamp(18px, 5vw, 72px);
    color: rgba(255, 255, 255, 0.8);
    background: #101817;
}

.footer p {
    margin: 0;
}

.footer a {
    font-weight: 800;
}

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

    .menu-button {
        display: inline-flex;
        min-height: 42px;
        align-items: center;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 9px 12px;
        color: var(--ink);
        background: var(--white);
        font: inherit;
        font-weight: 800;
    }

    .mobile-nav {
        position: sticky;
        top: 73px;
        z-index: 19;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--line);
    }

    .mobile-nav.is-open {
        display: grid;
    }

    .mobile-nav a {
        padding: 14px 20px;
        background: var(--white);
        font-weight: 800;
    }

    .split,
    .request-section {
        grid-template-columns: 1fr;
    }

    .report-grid,
    .reviews {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .site-header {
        padding: 12px 16px;
    }

    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: 720px;
        align-items: end;
        padding-bottom: 54px;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(10, 24, 20, 0.9), rgba(10, 24, 20, 0.54) 58%, rgba(10, 24, 20, 0.22)),
            linear-gradient(90deg, rgba(10, 24, 20, 0.58), transparent 78%);
    }

    h1 {
        font-size: 42px;
    }

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

    .stats,
    .report-grid,
    .reviews,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .steps article {
        padding: 80px 22px 24px;
    }

    .footer {
        display: grid;
    }
}
