:root {
    --blue: #0c4f87;
    --blue2: #09385f;
    --green: #2f7d3b;
    --yellow: #f5bf31;
    --sky: #8ec5e8;
    --cream: #fbf6ea;
    --ink: #17324d;
    --muted: #65798b;
    --line: #dce6ec;
    --white: #fff;
    --shadow: 0 22px 60px rgba(9,56,95,.12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Nunito,system-ui,sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: #fff
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220,230,236,.95)
}

.nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand img {
    width: 250px;
    max-height: 68px;
    object-fit: contain
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: .94rem;
    font-weight: 800
}

.main-nav a:hover,.main-nav .active {
    color: var(--blue)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 1.5rem
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 19px;
    border-radius: 14px;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: .2s
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(12,79,135,.18)
}

.btn.alt {
    background: #fff;
    color: var(--blue)
}

.btn.gold {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--blue2)
}

.btn.small {
    padding: 10px 14px
}

.hero {
    padding: 62px 0 72px;
    background: linear-gradient(140deg,#fff 0%,var(--cream) 58%,#edf8fc 100%)
}

.hero-grid,.split,.form-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 54px;
    align-items: center
}

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

h1,h2 {
    font-family: "Playfair Display",Georgia,serif;
    line-height: 1.08;
    color: var(--blue2)
}

h1 {
    font-size: clamp(2rem,3.5vw,3.25rem);
    margin: .1em 0 .25em
}

h2 {
    font-size: clamp(1.55rem,2.35vw,2.2rem);
    margin: .15em 0 .35em
}

h3 {
    color: var(--blue2)
}

.lead {
    font-size: 1.18rem;
    color: #415a70;
    max-width: 720px
}

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

.chips {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.chip {
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: .86rem
}

.photo-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 430px
}

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

.photo-frame:after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 38%;
    background: linear-gradient(transparent,rgba(8,31,53,.52))
}

.photo-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    color: #fff;
    font-weight: 800;
    z-index: 2
}

.section {
    padding: 78px 0
}

.soft {
    background: var(--cream)
}

.blue {
    background: var(--blue2);
    color: #fff
}

.blue h2,.blue h3 {
    color: #fff
}

.blue .eyebrow {
    color: var(--yellow)
}

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

.cards {
    display: grid;
    gap: 20px
}

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

.cards.two {
    grid-template-columns: repeat(2,1fr)
}

.card {
    padding: 26px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 10px 30px rgba(9,56,95,.055)
}

.card h3 {
    margin-top: 0
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #edf6fb;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 14px
}

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

.step {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    font-weight: 900
}

.step:nth-child(2n) .step-num {
    background: var(--green)
}

.step:nth-child(4) .step-num {
    background: #c78f00
}

.notice {
    padding: 18px 20px;
    border-left: 4px solid var(--yellow);
    background: #fff7d7;
    border-radius: 12px
}

.quote {
    padding: 24px;
    border-radius: 18px;
    background: var(--cream);
    border-left: 5px solid var(--yellow);
    font-weight: 800
}

.page-hero {
    padding: 54px 0;
    background: linear-gradient(145deg,var(--cream),#eef8fb)
}

.page-hero .container {
    max-width: 920px
}

.breadcrumb {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 12px
}

.content {
    max-width: 860px
}

.content h2 {
    font-size: 1.7rem;
    margin-top: 1.4em
}

.content h3 {
    margin-top: 1.4em
}

.content ul {
    padding-left: 1.2rem
}

.process {
    display: grid;
    gap: 12px
}

.process-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px
}

.process-item b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center
}

.form-grid {
    align-items: start
}

.form-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: #fff
}

.form-card label {
    display: block;
    font-size: .92rem;
    font-weight: 800;
    margin-bottom: 14px
}

.form-card input,.form-card select,.form-card textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 13px;
    border: 1px solid #cbd7df;
    border-radius: 12px;
    font: inherit;
    color: var(--ink);
    background: #fff
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.check {
    display: flex!important;
    gap: 9px;
    align-items: flex-start;
    font-weight: 600!important
}

.check input {
    width: auto;
    margin-top: 5px
}

.form-status {
    min-height: 22px;
    color: var(--green);
    font-weight: 700
}

.privacy-callout {
    font-size: .9rem;
    color: var(--muted);
    background: #f5f8fa;
    padding: 14px;
    border-radius: 12px
}

.contact-list a {
    color: var(--blue);
    font-weight: 800
}

.photo-strip {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px
}

.photo-strip img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 22px
}

.photo-strip img:nth-child(2) {
    height: 350px
}

.cta {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg,var(--blue),var(--green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.cta h2 {
    color: #fff;
    margin: 0;
    font-size: 1.75rem
}

.site-footer {
    background: #081f35;
    color: #dbe6ee;
    padding: 48px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px
}

.footer-grid img {
    width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 6px
}

.footer-grid strong {
    color: #fff
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.footnote {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 28px;
    padding-top: 18px;
    font-size: .84rem;
    color: #9cb0c0
}

@media(max-width:950px) {
    .nav-toggle {
    display: block
    }
    .main-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    background: #fff;
    padding: 18px;
    box-shadow: var(--shadow);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch
    }
    .main-nav.open {
    display: flex
    }
    .hero-grid,.split,.form-grid {
    grid-template-columns: 1fr
    }
    .cards.three,.steps {
    grid-template-columns: repeat(2,1fr)
    }
    .footer-grid {
    grid-template-columns: repeat(2,1fr)
    }
    .photo-frame,.photo-frame img {
    min-height: 360px
    }
    .cta {
    align-items: flex-start;
    flex-direction: column
    }
}

@media(max-width:650px) {
    .container {
    width: min(100% - 26px,1180px)
    }
    .brand img {
    width: 190px
    }
    .hero {
    padding-top: 42px
    }
    .section {
    padding: 58px 0
    }
    .cards.three,.cards.two,.steps,.grid2,.footer-grid,.photo-strip {
    grid-template-columns: 1fr
    }
    .photo-strip img,.photo-strip img:nth-child(2) {
    height: 260px
    }
    .cta h2 {
    font-size: 1.55rem
    }
}


/* Mobiele navigatie zonder JavaScript */
.mobile-menu {
    display: none;
    position: relative;
    margin-left: auto;
}

.mobile-menu summary {
    list-style: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--blue2);
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu .menu-icon-close {
    display: none;
}

.mobile-menu[open] .menu-icon-open {
    display: none;
}

.mobile-menu[open] .menu-icon-close {
    display: inline;
}

.mobile-nav {
    position: absolute;
    z-index: 1001;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 26px));
    padding: 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
    font-size: .94rem;
    font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav .active {
    color: var(--blue);
}

.mobile-nav .btn.small {
    color: #fff;
    text-align: center;
}

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

    .mobile-menu {
        display: block;
    }

    .mobile-menu summary {
        display: flex;
    }
}

@media (min-width: 951px) {
    .mobile-menu {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }
}
