:root {
    --green: #3f6248;
    --green2: #2f4e39;
    --ink: #213227;
    --muted: #6c776f;
    --cream: #f5f2e9;
    --soft: #fbfaf6;
    --line: #e5e1d7;
    --white: #fff;
    --shadow: 0 14px 38px rgba(32,54,40,.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.wrap {
    width: min(1180px,calc(100% - 40px));
    margin: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229,225,215,.85);
}

.nav {
    height: 84px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    width: 238px;
    height: auto;
}

.menu {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-left: auto;
    font-size: 14px;
}

    .menu a {
        color: #34483a;
    }

        .menu a:hover,
        .menu a.active {
            color: var(--green);
            font-weight: 700;
        }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
    background: var(--green);
    color: #fff;
    border: 1px solid var(--green);
    transition: .2s;
}

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

    .btn.alt {
        background: transparent;
        color: var(--green);
    }

.hero {
    background: linear-gradient( 90deg, rgba(245,242,233,.98) 0%, rgba(245,242,233,.88) 46%, rgba(245,242,233,.08) 72% ), url('images/hero-lake.jpg') center/cover;
    min-height: 620px;
    display: flex;
    align-items: center;
}

    .hero .inner {
        max-width: 620px;
        padding: 70px 0;
    }

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

h1,
h2,
h3 {
    font-family: Georgia,'Times New Roman',serif;
    line-height: 1.12;
    font-weight: 500;
    color: #1f3928;
}

h1 {
    font-size: clamp(46px,6vw,78px);
    margin: .18em 0 .28em;
}

h2 {
    font-size: clamp(34px,4vw,48px);
    margin: 0 0 20px;
}

h3 {
    font-size: 25px;
    margin: 0 0 10px;
}

.lead {
    font-size: 19px;
    color: #4e5d53;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0 18px;
}

.trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #536159;
}

    .trust span:before {
        content: '✓';
        color: var(--green);
        font-weight: 900;
        margin-right: 8px;
    }

.section {
    padding: 86px 0;
}

    .section.alt {
        background: var(--cream);
    }

.section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.grid {
    display: grid;
    gap: 24px;
}

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

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(40,56,46,.04);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #edf2ec;
    color: var(--green);
    font-size: 22px;
    margin-bottom: 17px;
}

.card p {
    color: var(--muted);
    margin-bottom: 0;
}

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

.photo {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 410px;
}

    .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 410px;
    }

.checks {
    padding: 0;
    list-style: none;
}

    .checks li {
        margin: 10px 0;
        color: #536159;
    }

        .checks li:before {
            content: '✓';
            color: var(--green);
            font-weight: 900;
            margin-right: 10px;
        }

.cta-band {
    background: linear-gradient(135deg,#3f6248,#2b4634);
    color: #fff;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .cta-band h2 {
        color: #fff;
        margin-bottom: 8px;
    }

    .cta-band p {
        margin: 0;
        color: #e4ebe5;
    }

.page-hero {
    padding: 88px 0 64px;
    background: linear-gradient(180deg,#f3f0e7,#fbfaf6);
}

    .page-hero .wrap {
        max-width: 960px;
    }

    .page-hero h1 {
        font-size: clamp(42px,6vw,68px);
    }

.crumbs {
    font-size: 13px;
    color: #768077;
    margin-bottom: 18px;
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    margin: 12px 0;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #294032;
}

.faq p {
    color: var(--muted);
}

.pricing {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    max-width: 850px;
    margin: auto;
}

.price {
    padding: 34px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

    .price strong {
        font-family: Georgia,serif;
        font-size: 44px;
        color: var(--green);
        display: block;
        margin: 8px 0;
    }

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
}

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

.contact-item {
    background: #fff;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

form {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 6px;
}

label {
    font-weight: 700;
    font-size: 13px;
}

input,
textarea,
select {
    font: inherit;
    border: 1px solid #d9d6cc;
    background: #fff;
    border-radius: 9px;
    padding: 12px 13px;
    width: 100%;
}

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

.site-footer {
    background: #2e4b37;
    color: #eef2ed;
    padding: 54px 0 28px;
    margin-top: 60px;
}

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

.site-footer h3 {
    color: #fff;
    font-size: 20px;
}

.site-footer p,
.site-footer a {
    color: #d7e0d9;
    font-size: 14px;
}

.foot-bottom {
    border-top: 1px solid rgba(255,255,255,.16);
    margin-top: 35px;
    padding-top: 18px;
    font-size: 12px;
    color: #c9d2cb;
}

.topics a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.notice {
    background: #edf2ec;
    border-left: 4px solid var(--green);
    padding: 18px 20px;
    border-radius: 8px;
}

.hamb {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    font-size: 28px;
    color: var(--green);
}


/* =========================
   TABLET / MOBILE
   ========================= */

@media(max-width:900px) {

    .menu {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 22px 28px;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--line);
    }

        .menu.open {
            display: flex;
        }

    .hamb {
        display: block;
    }

    .hero {
        background: linear-gradient( rgba(245,242,233,.90), rgba(245,242,233,.90) ), url('images/hero-lake.jpg') center/cover;
        min-height: 570px;
    }

    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .photo {
        min-height: 320px;
    }

        .photo img {
            min-height: 320px;
        }
}


/* =========================
   MOBILE
   ========================= */

@media(max-width:560px) {

    .wrap {
        width: min(100% - 28px,1180px);
    }

    .nav {
        height: 72px;
    }

    .menu {
        top: 72px;
    }

    .logo img {
        width: 198px;
    }

    .hero .inner {
        padding: 54px 0;
    }

    .hero {
        min-height: 520px;
    }

    h1 {
        font-size: 44px;
    }

    .section {
        padding: 64px 0;
    }

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

    .cta-band {
        padding: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}


/* =========================
   WHITE BUTTON
   ========================= */

.btnWhite {
    background-color: white;
    border-color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
    color: #34483a;
    border: 1px solid var(--green);
    transition: .2s;
}

    .btnWhite:hover {
        background-color: #c0c0c0;
        border-color: #c0c0c0;
        transform: translateY(-1px);
    }

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

.whiteText {
    color: white;
}

.maxwidth900 {
    max-width: 900px;
}

.grijsgroen {
    color: #6c776f;
}

.margintop36 {
    margin-top: 36px;
}