/* Buitengewoon Mens — stijl
   Wit als basis, aardetinten uit het logo als accenten. */
:root {
    --groen-donker: #33422a;
    --groen: #566b41;
    --groen-licht: #7c9160;
    --zand: #c9a96a;
    --zand-licht: #f0e9dc;
    --zon: #d97a2b;
    --inkt: #2c2c28;
    --grijs: #6b6b63;
    --wit: #ffffff;
    --zacht: #faf9f5;
    --lijn: #e7e3d8;
    --radius: 14px;
    --max: 1080px;
    --font-kop: "Cormorant Garamond", Georgia, serif;
    --font-tekst: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-tekst);
    color: var(--inkt);
    background: var(--wit);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-kop);
    font-weight: 600;
    line-height: 1.15;
    color: var(--groen-donker);
    margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
h3 { font-size: 1.35rem; color: var(--groen); }

p { margin: 0 0 1rem; }

a { color: var(--groen); }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navigatie ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--lijn);
}
.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-kop);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--groen-donker);
    text-decoration: none;
    white-space: nowrap;
}
.brand img { height: 80px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--inkt);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--zand-licht); color: var(--groen-donker); }
.nav-links a.cta {
    background: var(--groen);
    color: #fff;
}
.nav-links a.cta:hover { background: var(--groen-donker); color: #fff; }
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--groen-donker);
    margin: 5px 0;
    transition: .2s;
}

/* ── Secties ── */
section { padding: 84px 0; }
section:nth-of-type(even) { background: var(--zacht); }
.section-intro { max-width: 720px; margin-bottom: 40px; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 1rem;
    font-weight: 700;
    color: var(--zon);
    margin-bottom: 10px;
}

/* ── Hero ── */
.hero {
    padding: 96px 0 80px;
    background:
        radial-gradient(1200px 500px at 80% -10%, var(--zand-licht), transparent 60%),
        var(--wit);
    text-align: center;
}
.hero img.hero-logo {
    width: min(240px, 60vw);
    height: auto;
    margin: 0 auto 24px;
    display: block;
}
.hero p.lead {
    font-size: 1.25rem;
    color: var(--grijs);
    max-width: 640px;
    margin: 0 auto 28px;
}
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 999px;
    background: var(--groen);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background .15s, transform .1s;
}
.btn:hover { background: var(--groen-donker); }
.btn:active { transform: translateY(1px); }
.btn.secondary {
    background: transparent;
    color: var(--groen-donker);
    border: 2px solid var(--groen-licht);
}
.btn.secondary:hover { background: var(--zand-licht); }
.btn.upload-tmp {
    background: var(--zand);
    color: var(--groen-donker);
}
.btn.upload-tmp:hover { background: var(--zon); color: #fff; }

/* ── Tekst + kaarten ── */
.prose p { max-width: 760px; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.card {
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .03);
}
.card h3 { margin-top: 0; display: flex; align-items: center; gap: 10px; }
.card .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--zon); flex: none;
}

/* ── Foto placeholders ── */
.photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.photo-ph {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--zand-licht), #e4ecd9);
    border: 1px dashed var(--zand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--groen);
    font-weight: 600;
    text-align: center;
    padding: 16px;
}
.photo {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    background: var(--zand-licht);
}
.photo img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.note {
    display: inline-block;
    background: var(--zand-licht);
    color: var(--groen-donker);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: .85rem;
    font-weight: 600;
}

/* ── Contact ── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
form.contact { display: grid; gap: 14px; }
.field label {
    display: block;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 6px;
    color: var(--groen-donker);
}
.field input, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--lijn);
    border-radius: 10px;
    font: inherit;
    background: #fff;
    color: var(--inkt);
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--groen-licht);
    box-shadow: 0 0 0 3px rgba(124, 145, 96, .18);
}
.field textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-msg { font-weight: 700; margin-top: 4px; }
.form-msg.ok { color: var(--groen); }
.form-msg.err { color: #b3452e; }
.contact-aside p { color: var(--grijs); }

/* ── Footer ── */
footer {
    background: var(--groen-donker);
    color: #e9ecdf;
    padding: 48px 0 40px;
}
footer a { color: #d7e0c5; }
footer .container { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; }
footer h3 { color: #fff; }
footer .muted { color: #b9c3a6; font-size: .9rem; }

/* ── Responsive ── */
@media (max-width: 760px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: #fff;
        border-bottom: 1px solid var(--lijn);
        padding: 12px 16px 18px;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 14px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 28px; }
    section { padding: 60px 0; }
}
