:root {
    --red: #d71920;
    --red-dark: #b91c1c;
    --dark: #111827;
    --text: #374151;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 14px 35px rgba(17,24,39,.10);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: #ffffff;
    line-height: 1.55;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.header-inner {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.header-left {
    flex: 0 0 auto;
}

.brand,
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.custom-logo {
    max-height: 90px;
    width: auto;
    height: auto;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 24px;
    color: var(--dark);
}

.brand-text small {
    font-size: 14px;
    color: var(--muted);
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--red);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-contact {
    text-align: right;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text);
}

.contact-line {
    white-space: nowrap;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--red);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--red-dark);
}

.btn-secondary {
    background: #ffffff;
    color: var(--dark);
    border-color: var(--line);
}

/* HERO */

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 50%, #f8fafc 100%);
    padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 800;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    margin: 0 0 22px;
}

.hero p {
    font-size: 20px;
    color: var(--text);
    max-width: 720px;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.hero-card ul {
    margin: 0;
    padding-left: 20px;
}

.hero-card li {
    margin: 10px 0;
}

/* SECTIONS */

.section {
    padding: 72px 0;
}

.section.alt {
    background: var(--soft);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section h2,
.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    margin: 0 0 10px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 8px 22px rgba(17,24,39,.05);
}

.card h3 {
    margin: 10px 0;
}

.card p {
    color: var(--muted);
}

.card a {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
}

/* CONTENT BLOCKS */

.split {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.check-grid span {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    font-weight: 800;
}

.four {
    grid-template-columns: repeat(4, 1fr);
}

/* PAGES */

.page-hero {
    padding: 54px 0;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.content {
    max-width: 900px;
}

.content img {
    max-width: 100%;
    height: auto;
}

.post-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

/* FOOTER */

.site-footer {
    background: #111827;
    color: #ffffff;
    padding-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 30px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 36px;
    padding: 18px;
    color: #cbd5e1;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .header-inner {
        min-height: auto;
        padding: 16px 0;
        flex-direction: column;
    }

    .header-center {
        width: 100%;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .header-right {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        text-align: center;
    }

    .custom-logo {
        max-height: 75px;
    }

    .hero-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .four {
        grid-template-columns: repeat(2, 1fr);
    }

    .check-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .cards,
    .four,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 58px 0;
    }

    .section {
        padding: 50px 0;
    }

    .custom-logo {
        max-height: 65px;
    }
}

/* ==========================================
   HERO AFBEELDING
========================================== */

.hero {
    position: relative;
    min-height: 700px;

    background-image: url('/wp-content/uploads/2026/06/pix_landscape.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: auto;
}

.hero .eyebrow {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.hero h1 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    margin: 15px 0 20px;
}

.hero p {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.5;
}

.hero .btn-secondary {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    color: #ffffff;
}

.hero .btn-secondary:hover {
    background: rgba(255,255,255,.25);
}

@media (max-width: 991px) {

    .hero {
        min-height: 550px;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }
}