:root {
    --bg: #f4f7fb;
    --white: #ffffff;
    --text: #132033;
    --muted: #627089;
    --line: rgba(19, 32, 51, .10);

    --brand: #0d56c9;
    --brand-dark: #09357e;
    --brand-soft: #eaf2ff;

    --dark: #0e1627;
    --dark-2: #14233d;

    --shadow-sm: 0 14px 36px rgba(12, 28, 63, .08);
    --shadow-md: 0 24px 60px rgba(12, 28, 63, .15);
    --radius: 24px;
    --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

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

a {
    color: var(--brand);
    text-decoration: none;
}

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

h1, h2, h3 {
    margin: 0 0 16px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
}

h3 {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 840px;
}

.center {
    text-align: center;
}

.section {
    padding: 110px 0;
}

.section-soft {
    background: var(--bg);
}

.section-dark {
    background: linear-gradient(135deg, rgba(8, 20, 43, .94), rgba(13, 86, 201, .86));
    color: #fff;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    font-size: 12px;
}

.eyebrow-light {
    color: rgba(255,255,255,.8);
}

.mt-24 {
    margin-top: 24px;
}

/* header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(12, 22, 43, .78);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    min-width: 0;
}

.brand-mark {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex: 0 0 62px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    padding: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 0;
}

.brand-title {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-subtitle {
    display: block;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: rgba(255,255,255,.94);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: #fff;
    border-radius: 99px;
}

/* buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: .22s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 16px 36px rgba(13, 86, 201, .25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    color: #fff;
}

.btn-secondary {
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
}

.btn-secondary-dark {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
}

/* hero */

.hero {
    position: relative;
    padding: 140px 0 120px;
    background:
        linear-gradient(135deg, rgba(8, 20, 43, .84), rgba(13, 86, 201, .60)),
        url('/assets/img/site/hero-front.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(to bottom, rgba(6, 12, 22, .15), rgba(6, 12, 22, .35));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: center;
}

.hero .eyebrow,
.hero h1 {
    color: #fff;
}

.hero .lead {
    color: rgba(255,255,255,.88);
    font-size: 20px;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.glass-card {
    padding: 30px;
    border-radius: 28px;
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.glass-card h2,
.glass-card p,
.glass-card li {
    color: #fff;
}

.glass-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
}

/* trust */

.trust-strip {
    margin-top: -38px;
    position: relative;
    z-index: 2;
}

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

.trust-card,
.category-card,
.info-card,
.embed-card,
.image-card,
.logistics-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.trust-card {
    padding: 24px;
    text-align: center;
}

.trust-card p {
    margin-bottom: 0;
}

/* generic layout */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.section-head {
    margin-bottom: 34px;
}

.about-grid {
    align-items: stretch;
}

.about-copy {
    align-self: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 800;
}

.image-card {
    overflow: hidden;
}

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

.image-tall {
    min-height: 520px;
}

/* assortiment */

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.category-card {
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(12, 28, 63, .12);
}

.category-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.category-body {
    padding: 24px;
}

/* logistiek */

.section-image-band {
    padding: 90px 0;
}

.section-dark h2,
.section-dark p {
    color: #fff;
}

.section-dark-text {
    color: rgba(255,255,255,.82);
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr .65fr;
    gap: 20px;
}

.logistics-card {
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.logistics-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logistics-card-large {
    min-height: 520px;
    grid-row: span 2;
}

.logistics-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px;
    background: linear-gradient(to top, rgba(10, 18, 35, .82), rgba(10, 18, 35, 0));
}

.logistics-overlay h3,
.logistics-overlay p {
    color: #fff;
}

/* bestellen */

.order-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: start;
}

.order-intro {
    max-width: 620px;
}

.info-card,
.embed-card {
    padding: 28px;
}

.info-list {
    padding-left: 18px;
    margin: 18px 0 0;
}

.info-list li {
    margin-bottom: 10px;
    color: var(--muted);
}

.steps {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: 20px;
    background: var(--bg);
}

.step-no {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.mini-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.mini-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
}

/* embeds */

.embed-card iframe {
    width: 100%;
    height: 520px;
    border: 0;
    border-radius: 18px;
}

.map-card iframe {
    height: 420px;
}

/* contact */

.contact-wrap {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 30px;
    align-items: start;
}

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

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

.contact-list strong {
    font-size: 14px;
    color: var(--text);
}

.image-stack {
    display: grid;
    gap: 20px;
}

/* footer */

.site-footer {
    padding: 28px 0;
    background: #0f1728;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer strong,
.site-footer span,
.site-footer a {
    color: rgba(255,255,255,.84);
}

/* responsive */

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 20px;
        background: #10203a;
        box-shadow: var(--shadow-md);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-grid,
    .trust-grid,
    .two-col,
    .category-grid,
    .logistics-grid,
    .order-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: 0;
        padding-top: 20px;
    }

    .logistics-card-large {
        min-height: 360px;
        grid-row: span 1;
    }

    .image-tall {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 80px 0;
    }

    .brand-mark {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .brand-title {
        font-size: 22px;
    }

    .brand-subtitle {
        font-size: 10px;
        letter-spacing: .05em;
    }

    .hero {
        padding: 120px 0 90px;
        background-position: center center;
    }

    .hero .lead {
        font-size: 18px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-image img {
        height: 220px;
    }

    .embed-card iframe {
        height: 380px;
    }

    .map-card iframe {
        height: 320px;
    }

    .footer-wrap {
        flex-direction: column;
        text-align: center;
    }
}