/*
Theme Name: Klushulp Noord
Theme URI: https://klushulpnoord.nl
Author: Klushulp Noord
Author URI: https://klushulpnoord.nl
Description: Professioneel WordPress-thema voor Klushulp Noord. Zwart, geel en wit, volledig responsive en zonder page builder nodig.
Version: 1.6.6
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: klushulp-noord
*/


/* ==========================================================
   VARIABELEN
   ========================================================== */

:root {

    --black: #090909;
    --yellow: #ffbd00;
    --yellow-dark: #b98500;
    --white: #ffffff;
    --gray: #f5f5f2;
    --line: #deded8;
    --text: #222222;
    --muted: #6b6b66;

}


/* ==========================================================
   BASIS
   ========================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    line-height: 1.65;

    background: #ffffff;

}

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

img {
    max-width: 100%;
    height: auto;
}

.wrap {

    width:
        min(
            1280px,
            calc(100% - 30px)
        );

    margin-left: auto;
    margin-right: auto;

}


/* ==========================================================
   HEADER
   ========================================================== */

.site-header {

    background: #050505;

    border-bottom:
        3px solid var(--yellow);

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow:
        0 10px 35px #0004;

}


.nav {

    min-height: 112px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

}


/* ==========================================================
   LOGO + BEDRIJFSNAAM
   ========================================================== */

.brand {

    display: flex;

    align-items: center;

    gap: 16px;

    text-decoration: none;

    color: #ffffff;

    flex-shrink: 0;

    margin-left: -5px;

}


.brand:hover {
    color: #ffffff;
}


.site-logo {

    width: 125px;

    height: auto;

    display: block;

    flex-shrink: 0;

}


.brand-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1.1;

}


.brand-name {

    color: #ffffff;

    font-size: 25px;

    font-weight: 900;

    letter-spacing: -0.5px;

}


.brand-slogan {

    margin-top: 7px;

    color: #cfcfcf;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.2px;

    white-space: nowrap;

}


/* ==========================================================
   HOOFDMENU
   ========================================================== */

.main-navigation {

    margin-left: auto;

    padding-left: 30px;

    margin-right: -5px;

}


.primary-menu {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 6px;

    color: #ffffff;

    font-weight: 800;

    font-size: 14px;

    list-style: none;

    margin: 0;

    padding: 0;

}


.primary-menu li {

    margin: 0;

    padding: 0;

}


.primary-menu a {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 16px;

    background: #202020;

    color: #ffffff;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;

}


.primary-menu a:hover {

    background: var(--yellow);

    color: #111111;

}


/* ==========================================================
   ACTIEVE PAGINA
   ========================================================== */

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a {

    background: var(--yellow);

    color: #111111;

}


/* ==========================================================
   GELE OFFERTEKNOP
   ========================================================== */

.primary-menu .menu-offerte > a,
.primary-menu .menu-cta > a {

    background: var(--yellow);

    color: #111111 !important;

    padding-left: 18px;

    padding-right: 18px;

    font-weight: 900;

    border-radius: 6px;

}


.primary-menu .menu-offerte > a:hover,
.primary-menu .menu-cta > a:hover {

    background: #ffffff;

    color: #111111 !important;

    transform: translateY(-1px);

}


/* ==========================================================
   MOBIELE MENU KNOP
   ========================================================== */

.mobile-toggle {

    display: none;

    background: transparent;

    border:
        1px solid #555555;

    color: #ffffff;

    padding:
        9px 12px;

    border-radius: 8px;

    font-weight: 800;

    cursor: pointer;

}


/* ==========================================================
   HERO
   ========================================================== */

.hero {

    background:
        radial-gradient(
            circle at 88% 25%,
            #483700 0,
            transparent 31%
        ),
        linear-gradient(
            125deg,
            #050505,
            #171717 70%,
            #211b07
        );

    color: #ffffff;

    padding:
        104px 0 94px;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.35fr
        0.75fr;

    gap: 62px;

    align-items: center;

}


.eyebrow {

    text-transform: uppercase;

    letter-spacing: .17em;

    font-weight: 900;

    font-size: 12px;

    color: var(--yellow);

    margin:
        0 0 15px;

}


.eyebrow.dark {
    color: var(--yellow-dark);
}


h1,
h2,
h3 {

    line-height: 1.12;

    margin: 0;

}


h1 {

    font-size:
        clamp(
            48px,
            6.4vw,
            78px
        );

    letter-spacing: -0.045em;

    margin-bottom: 24px;

}


h1 span {
    color: var(--yellow);
}


h2 {

    font-size:
        clamp(
            33px,
            4.1vw,
            50px
        );

    letter-spacing: -0.035em;

}


h3 {

    font-size: 22px;

    letter-spacing: -0.02em;

}


.lead {

    font-size: 20px;

    color: #d9d9d9;

    max-width: 720px;

    margin:
        0 0 32px;

}


/* ==========================================================
   BUTTONS
   ========================================================== */

.actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--yellow);

    color: #111111;

    font-weight: 900;

    padding:
        15px 21px;

    border-radius: 10px;

    border:
        2px solid var(--yellow);

    transition: .2s;

    cursor: pointer;

}


.btn:hover {

    transform:
        translateY(-2px);

    filter:
        brightness(1.04);

}


.btn.secondary {

    background: transparent;

    color: #ffffff;

    border-color: #ffffff;

}


.dark-secondary {

    border-color: #222222 !important;

    color: #222222 !important;

}


/* ==========================================================
   TRUST
   ========================================================== */

.trust {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    color: #dddddd;

    font-weight: 700;

    font-size: 14px;

    margin-top: 28px;

}


/* ==========================================================
   HERO CARD
   ========================================================== */

.hero-card {

    background: #ffffff;

    color: #222222;

    padding: 34px;

    border-radius: 20px;

    border-top:
        8px solid var(--yellow);

    box-shadow:
        0 25px 75px #0008;

}


.hero-card h2 {

    font-size: 31px;

    margin-bottom: 17px;

}


.hero-card p {
    color: #555555;
}


.hero-card a {

    font-weight: 900;

    color: #846100;

}


/* ==========================================================
   SECTIES
   ========================================================== */

.section {
    padding: 92px 0;
}


.section-head {

    display: grid;

    grid-template-columns:
        1.1fr
        .8fr;

    gap: 60px;

    align-items: end;

}


.section-head p {

    color: var(--muted);

    font-size: 18px;

    margin: 0;

}


.muted {
    background: var(--gray);
}


.black {

    background: #090909;

    color: #ffffff;

}


/* ==========================================================
   KAARTEN
   ========================================================== */

.cards {

    display: grid;

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

    gap: 20px;

    margin-top: 40px;

}


.cards article {

    position: relative;

    border:
        1px solid var(--line);

    border-radius: 16px;

    padding: 29px;

    background: #ffffff;

    transition: .2s;

    overflow: hidden;

}


.cards article:hover {

    transform:
        translateY(-4px);

    border-color:
        var(--yellow);

    box-shadow:
        0 18px 45px #0001;

}


.cards article::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 5px;

    width: 100%;

    background: var(--yellow);

}


.cards p,
.steps p {

    color: var(--muted);

}


.card-number {

    display: block;

    color: #c9c9c3;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: .12em;

    margin-bottom: 22px;

}


/* ==========================================================
   STAPPEN
   ========================================================== */

.steps {

    display: grid;

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

    gap: 24px;

    margin-top: 38px;

}


.steps article {

    background: #ffffff;

    padding: 30px;

    border-radius: 16px;

    border:
        1px solid var(--line);

}


.steps strong {

    color:
        var(--yellow-dark);

    font-size: 28px;

}


.steps h3 {

    margin:
        18px 0 8px;

}


.steps-large {

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

}


.steps-large article {

    min-height: 230px;

}


/* ==========================================================
   OVER ONS
   ========================================================== */

.about-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 72px;

    align-items: start;

}


.about-grid p {

    color: #d0d0d0;

    font-size: 18px;

    margin-top: 0;

}


/* ==========================================================
   FAQ
   ========================================================== */

.faq-grid {

    display: grid;

    grid-template-columns:
        .72fr
        1.28fr;

    gap: 70px;

}


.faq-grid details {

    border-bottom:
        1px solid var(--line);

    padding: 21px 0;

}


.faq-grid summary {

    font-weight: 900;

    font-size: 18px;

    cursor: pointer;

}


.faq-grid details p {

    color: var(--muted);

    margin-bottom: 0;

}


/* ==========================================================
   CONTACT
   ========================================================== */

.contact-section {

    background:
        linear-gradient(
            135deg,
            #111111,
            #24200e
        );

}


.contact-layout {

    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 55px;

    background: #0a0a0a;

    color: #ffffff;

    border:
        1px solid #3c330c;

    border-radius: 22px;

    padding: 48px;

    box-shadow:
        0 30px 90px #0005;

}


.contact-copy h2 {
    margin-bottom: 15px;
}


.contact-copy > p {
    color: #d7d7d7;
}


.contact-info {
    margin: 28px 0;
}


.contact-info p {

    margin-top: 0;

    margin-bottom: 18px;

}


.contact-info a {
    color: var(--yellow);
}


/* ==========================================================
   FORMULIER
   ========================================================== */

.contact-form {

    background: #ffffff;

    color: #222222;

    border-radius: 18px;

    padding: 30px;

    border-top:
        7px solid var(--yellow);

}


.contact-form label {

    display: block;

    font-weight: 800;

    font-size: 14px;

    margin-bottom: 18px;

}


.contact-form input,
.contact-form textarea {

    width: 100%;

    margin-top: 7px;

    border:
        1px solid #cfcfc8;

    border-radius: 9px;

    padding:
        13px 14px;

    font: inherit;

    color: #222222;

    background: #ffffff;

}


.contact-form input:focus,
.contact-form textarea:focus {

    outline: none;

    border-color:
        var(--yellow-dark);

    box-shadow:
        0 0 0 3px
        rgba(
            255,
            189,
            0,
            .15
        );

}


.form-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap:
        0 16px;

}


.privacy-check {

    display: flex !important;

    gap: 10px;

    align-items: flex-start;

    font-weight: 500 !important;

}


.privacy-check input {

    width: auto;

    margin-top: 5px;

    flex: 0 0 auto;

}


.honeypot {

    position: absolute !important;

    left: -9999px !important;

    opacity: 0 !important;

    pointer-events: none !important;

}


.form-message {

    margin:
        16px 0 0;

    font-weight: 800;

}


.form-message.success {
    color: #126a32;
}


.form-message.error {
    color: #a51d1d;
}


.form-note {

    font-size: 13px !important;

    color: #777 !important;

    margin-top: 12px !important;

}


/* ==========================================================
   FOOTER
   ========================================================== */

footer {

    background: #050505;

    color: #cfcfcf;

    border-top:
        3px solid var(--yellow);

    padding:
        34px 0;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        260px
        1fr
        auto;

    gap: 32px;

    align-items: center;

}


.footer-grid img {

    width: 230px;

    height: auto;

}


.footer-grid a {
    color: var(--yellow);
}


/* ==========================================================
   WHATSAPP
   ========================================================== */

.floating-whatsapp {

    position: fixed;

    right: 20px;

    bottom: 20px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #21c063;

    color: #071a0d;

    font-weight: 900;

    padding:
        14px 18px;

    border-radius: 999px;

    box-shadow:
        0 12px 35px #0005;

    z-index: 60;

    text-decoration: none;

    transition:
        transform .2s,
        filter .2s;

}


.floating-whatsapp:hover {

    transform:
        translateY(-2px);

    filter:
        brightness(1.05);

    color: #071a0d;

}


.floating-whatsapp::before {

    content: "";

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 3px #ffffff33;

}


/* ==========================================================
   PAGINA'S
   ========================================================== */

.page-hero {

    background: #090909;

    color: #ffffff;

    padding:
        78px 0;

    border-bottom:
        3px solid var(--yellow);

}


.page-content {

    padding:
        70px 0;

}


.page-content h1 {
    margin-bottom: 25px;
}


.page-content h2 {
    margin:
        38px 0 15px;
}


.page-content h3 {
    margin:
        28px 0 10px;
}


.page-content p,
.page-content li {

    font-size: 18px;

    color: #4d4d49;

}


.page-content ul {
    padding-left: 22px;
}


.page-content a {
    color: var(--yellow-dark);
}


/* ==========================================================
   PRIJSTABEL
   ========================================================== */

.price-table {

    width: 100%;

    border-collapse:
        collapse;

    margin:
        28px 0;

}


.price-table th,
.price-table td {

    padding: 15px;

    border:
        1px solid var(--line);

    text-align: left;

}


.price-table th {

    background: #090909;

    color: #ffffff;

}


.price-table tr:nth-child(even) {

    background:
        var(--gray);

}


/* ==========================================================
   DIENSTEN
   ========================================================== */

.service-grid {

    display: grid;

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

    gap: 22px;

    margin-top: 42px;

}


.service-card {

    position: relative;

    border:
        1px solid var(--line);

    border-radius: 18px;

    padding: 30px;

    background: #ffffff;

    overflow: hidden;

}


.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background:
        var(--yellow);

}


.service-card h3 {
    margin-bottom: 12px;
}


.service-card p {

    color: var(--muted);

    margin-top: 0;

}


.service-card ul {

    margin:
        18px 0 0;

    padding-left:
        20px;

    color: var(--muted);

}


.service-card li {
    margin: 7px 0;
}


/* ==========================================================
   ERROR PAGINA'S
   ========================================================== */

.error-page {

    text-align: center;

    padding:
        96px 0 100px;

}


.error-page .wrap {

    max-width: 900px;

    margin-left: auto;

    margin-right: auto;

}


.error-page .lead {

    margin-left: auto;

    margin-right: auto;

}


.error-code {

    margin:
        30px 0;

    font-size:
        clamp(
            90px,
            15vw,
            180px
        );

    line-height: .9;

    font-weight: 900;

    letter-spacing: -8px;

    color:
        var(--yellow);

}


.error-page .actions {

    justify-content: center;

    flex-wrap: wrap;

}


/* ==========================================================
   SCREEN READER
   ========================================================== */

.screen-reader-text {

    position: absolute !important;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip:
        rect(
            0,
            0,
            0,
            0
        );

    white-space: nowrap;

    border: 0;

}


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

@media (max-width: 1100px) {

    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .steps-large {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ==========================================================
   TABLET / MOBIEL
   ========================================================== */

@media (max-width: 900px) {

    .wrap {

        width:
            calc(100% - 30px);

    }


    .nav {

        align-items: center;

        padding:
            14px 0;

        gap: 15px;

        min-height: 90px;

    }


    .brand {

        margin-left: 0;

        gap: 12px;

    }


    .site-logo {

        width: 100px;

    }


    .brand-name {

        font-size: 21px;

    }


    .brand-slogan {

        font-size: 10px;

    }


    .mobile-toggle {

        display: block;

        margin-left: auto;

    }


    .main-navigation {

        width: 100%;

        margin-left: 0;

        padding-left: 0;

        margin-right: 0;

    }


    .primary-menu {

        display: none;

        position: absolute;

        left: 15px;

        right: 15px;

        top: 100%;

        background: #050505;

        border-top:
            2px solid
            var(--yellow);

        padding: 18px;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

    }


    .primary-menu.is-open {

        display: flex;

    }


    .primary-menu a {

        display: block;

        width: 100%;

        padding:
            11px 13px;

    }


    .hero-grid,
    .section-head,
    .about-grid,
    .faq-grid,
    .contact-layout {

        grid-template-columns: 1fr;

    }


    .cards,
    .steps {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .footer-grid img {

        margin: auto;

    }

}


/* ==========================================================
   MOBIEL
   ========================================================== */

@media (max-width: 580px) {

    .wrap {

        width:
            calc(100% - 28px);

    }


    .nav {

        display: flex;

        gap: 10px;

        min-height: 82px;

    }


    .brand {

        gap: 10px;

        min-width: 0;

    }


    .site-logo {

        width: 78px;

    }


    .brand-text {

        min-width: 0;

    }


    .brand-name {

        font-size: 18px;

    }


    .brand-slogan {

        font-size: 9px;

        white-space: normal;

        line-height: 1.25;

        max-width: 175px;

    }


    .hero {

        padding:
            68px 0;

    }


    .section {

        padding:
            66px 0;

    }


    .cards,
    .steps,
    .service-grid,
    .steps-large,
    .form-grid {

        grid-template-columns:
            1fr;

    }


    .contact-layout {

        padding: 28px;

    }


    .contact-form {

        padding: 22px;

    }


    .trust {

        display: grid;

        gap: 7px;

    }


    h1 {

        font-size: 43px;

    }


    .floating-whatsapp {

        right: 12px;

        bottom: 12px;

    }


    .error-page {

        padding:
            68px 0;

    }


    .error-code {

        font-size: 100px;

        letter-spacing: -4px;

    }


    .error-page .actions {

        flex-direction: column;

        align-items: stretch;

    }


    .error-page .btn {

        width: 100%;

    }

}


/* ==========================================================
   HUISSTIJL IN PAGINATEKSTEN 1.6.5
   ========================================================== */

/* Een herkenbare gele lijn onder tussenkoppen in lichte secties. */
.section:not(.black):not(.contact-section) h2::after,
.page-content h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    margin-top: 14px;
    background: var(--yellow);
    border-radius: 2px;
}

/* Geel ondersteunt de tekst, terwijl de lopende tekst rustig blijft. */
.section:not(.black):not(.contact-section) h3,
.page-content h3 {
    color: var(--black);
}

.section:not(.black):not(.contact-section) strong,
.page-content strong {
    color: #765600;
}

.section:not(.black):not(.contact-section) li::marker,
.page-content li::marker,
.service-card li::marker {
    color: var(--yellow-dark);
}

.section:not(.black):not(.contact-section) a:not(.btn),
.page-content a:not(.btn) {
    color: #765600;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.section:not(.black):not(.contact-section) a:not(.btn):hover,
.page-content a:not(.btn):hover {
    color: var(--black);
    text-decoration-thickness: 3px;
}

/* Donkere secties krijgen witte tekst met beheerste gele accenten. */
.black h2,
.black h3 {
    color: var(--white);
}

.black strong,
.black a:not(.btn) {
    color: var(--yellow);
}

.black li::marker {
    color: var(--yellow);
}

/* Kaarten en FAQ-vragen dragen de huisstijl ook verder op de pagina. */
.cards article,
.service-card,
.steps article,
.faq-grid details {
    border-color: #d8d2bf;
}

.cards article h3,
.service-card h3,
.steps article h3 {
    color: var(--black);
}

.faq-grid summary {
    position: relative;
    padding-left: 18px;
    color: var(--black);
}

.faq-grid summary::before {
    content: "";
    position: absolute;
    left: 0;
    top: .38em;
    width: 5px;
    height: 1.05em;
    background: var(--yellow);
    border-radius: 2px;
}

.contact-copy h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    margin-top: 14px;
    background: var(--yellow);
    border-radius: 2px;
}

@media (max-width: 580px) {
    .section:not(.black):not(.contact-section) h2::after,
    .page-content h2::after,
    .contact-copy h2::after {
        width: 46px;
        height: 3px;
        margin-top: 11px;
    }
}


/* ==========================================================
   ZAKELIJKE VERFIJNING 1.6.1
   ========================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-header {
    border-bottom-width: 2px;
    box-shadow: 0 5px 18px #0003;
}

.site-header .wrap {
    width: min(1320px, calc(100% - 40px));
}

.nav {
    min-height: 86px;
    gap: 28px;
}

.site-logo {
    width: 92px;
}

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

.brand-slogan {
    margin-top: 4px;
    font-size: 11px;
}

.main-navigation {
    min-width: 0;
    padding-left: 0;
    margin-right: 0;
}

.primary-menu {
    gap: 2px;
    font-size: 14px;
    flex-wrap: nowrap;
}

.primary-menu a {
    min-height: 42px;
    padding: 0 12px;
    background: transparent;
    border-radius: 4px;
    white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a {
    background: #191919;
    color: var(--yellow);
}

.primary-menu .menu-offerte > a,
.primary-menu .menu-cta > a {
    margin-left: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

.hero {
    padding: 76px 0 72px;
    background: linear-gradient(120deg, #080808, #151515 72%, #211b07);
}

.hero-grid {
    grid-template-columns: minmax(0, 850px);
    gap: 0;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(44px, 5vw, 68px);
}

.hero .lead {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.65;
}

.hero-card {
    display: none;
}

.section {
    padding: 76px 0;
}

.btn {
    border-radius: 5px;
    padding: 13px 19px;
}

.cards article,
.service-card,
.steps article {
    border-radius: 8px;
}

@media (max-width: 1180px) {
    .brand-slogan {
        display: none;
    }

    .primary-menu a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 13px;
    }
}

@media (max-width: 980px) {
    .site-header .wrap {
        width: calc(100% - 28px);
    }

    .nav {
        min-height: 76px;
        padding: 8px 0;
    }

    .site-logo {
        width: 72px;
    }

    .brand-name {
        font-size: 19px;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 72px;
        min-height: 42px;
        border-radius: 4px;
    }

    .main-navigation {
        width: auto;
    }

    .primary-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        padding: 10px 14px 16px;
        background: #070707;
        border-top: 1px solid #2a2a2a;
        border-bottom: 2px solid var(--yellow);
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .primary-menu.is-open {
        display: flex;
    }

    .primary-menu a {
        width: 100%;
        min-height: 44px;
        padding: 11px 12px;
        justify-content: flex-start;
        font-size: 15px;
    }

    .primary-menu .menu-offerte > a,
    .primary-menu .menu-cta > a {
        margin: 7px 0 0;
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .brand-text {
        display: block;
    }

    .brand-name {
        font-size: 17px;
    }

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

    .hero h1,
    h1 {
        font-size: 38px;
        letter-spacing: -0.035em;
    }

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

    .section {
        padding: 58px 0;
    }

    .actions {
        align-items: stretch;
    }

    .actions .btn {
        width: 100%;
    }
}


/* ==========================================================
   NATUURLIJKE PROFESSIONELE VERFIJNING 1.6.6
   ========================================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    color: #262624;
    background: #fff;
    letter-spacing: -.005em;
}

p,
li {
    text-wrap: pretty;
}

.hero {
    background: linear-gradient(118deg, #090909 0%, #171717 76%, #24200f 100%);
}

.hero h1,
.page-hero h1 {
    letter-spacing: -.035em;
    max-width: 900px;
}

.page-hero {
    padding: 66px 0 62px;
    border-bottom-width: 2px;
    background: linear-gradient(118deg, #0a0a0a, #191919 80%, #211d0e);
}

.page-hero .lead {
    max-width: 780px;
    color: #d5d5d1;
}

.muted {
    background: #f6f5f1;
}

.section:not(.black):not(.contact-section) h2::after,
.page-content h2::after,
.contact-copy h2::after {
    display: none;
}

.section-head h2::after,
.contact-copy h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 15px;
    background: var(--yellow);
    border-radius: 2px;
}

.section:not(.black):not(.contact-section) strong,
.page-content strong {
    color: #262624;
    font-weight: 800;
}

.section:not(.black):not(.contact-section) a:not(.btn),
.page-content a:not(.btn) {
    color: #3d3a30;
    font-weight: 700;
    text-decoration-color: var(--yellow-dark);
    text-decoration-thickness: 1px;
}

.section-head p,
.page-content p,
.page-content li,
.cards p,
.steps p,
.service-card p,
.service-card ul,
.faq-grid details p {
    color: #5c5b56;
}

.cards article,
.service-card,
.steps article {
    border-color: #e3e1da;
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(25, 24, 20, .045);
}

.cards article:hover,
.service-card:hover,
.steps article:hover {
    border-color: #cfc7ac;
    box-shadow: 0 13px 34px rgba(25, 24, 20, .08);
}

.cards article::before,
.service-card::before {
    height: 3px;
}

.card-number {
    color: #817a66;
}

.steps strong {
    color: #8a6500;
}

.faq-grid details {
    border-color: #dedbd2;
}

.faq-grid summary {
    padding-left: 17px;
}

.faq-grid summary::before {
    top: .58em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.btn {
    border-radius: 6px;
    box-shadow: 0 5px 14px rgba(75, 55, 0, .12);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(75, 55, 0, .16);
}

.contact-layout,
.contact-form {
    border-radius: 10px;
}

@media (max-width: 580px) {
    .page-hero {
        padding: 48px 0 46px;
    }

    .section-head h2::after,
    .contact-copy h2::after {
        width: 36px;
        height: 3px;
    }
}
