/*
Theme Name: Minimal Clean Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Een clean, minimalistisch WordPress thema zonder onnodige features
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-clean
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #002B38;
    --secondary: #80B6A3;
    --secondary-light: #dceae5;
    --orange: #EB6630;
    --container-width: 1400px;

    --font-head: 65px;
    --font-semibig: 55px;
    --font-section: 36px;
    --font-subhead: 25px;
    --font-default: 18px;
    --font-quote: 45px;
}

html {
	overflow-x: hidden;
}

body {
    font-family: "korolev", sans-serif;
    font-weight: 300;
    color: var(--primary);
    font-size: var(--font-default);
    border-left: 30px solid var(--secondary);
    border-right: 30px solid var(--secondary);
    overflow-x: hidden;
}

h2 {
    font-size: var(--font-head);
    font-family: Korolev;
    font-size: 65px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
    text-transform: uppercase;
}

h3 {
    font-family: Korolev;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

p {
    font-family: Korolev;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

/* ===================================
   Layout Utilities
=================================== */

.container {
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* Flex helpers */
.flex {
    display: flex;
}

.flex-center {
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-xs {
    gap: 0.5rem;
}

.gap-sm {
    gap: 1rem;
}

.gap-md {
    gap: 2rem;
}

.gap-lg {
    gap: 3rem;
}

.gap-xl {
    gap: 4rem;
}

/* Grid helpers */
.grid {
    display: grid;
}

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

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

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

/* ===================================
   Buttons
=================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 27px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    max-width: fit-content;
}

.btn:hover {
    opacity: 0.85;
}

.btn--primary {
    background-color: var(--orange);
    color: #fff;
}

.btn--secondary {
    background-color: var(--primary);
    color: #fff;
}

.btn--outline {
    background: transparent;
    border: 2px solid currentColor;
}

.btn__arrow {
    font-size: 1.25em;
    line-height: 1;
}

/* ===================================
   Site Header
=================================== */

.site-header {
    background-color: #fff;
    padding-block: 70px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 88px;
}

/* Logo */
.site-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-header__logo img {
    display: block;
    width: auto;
    width: 350px;
    aspect-ratio: 350/101;
}

/* Nav */
.site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list a {
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav__list a:hover,
.nav__list .current-menu-item>a {
    color: var(--orange);
}

/* CTA */
.site-header__cta {
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
    margin-left: auto;
    flex-shrink: 0;
}

.hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    transform-origin: center;
}

.hamburger--open .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger--open .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger--open .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 43, 56, 0.55);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: none;
}

.mobile-menu--open {
    visibility: visible;
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100%;
    background: #fff;
    padding: 28px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu--open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-radius: 50%;
    transition: background 0.2s;
}

.mobile-menu__close:hover {
    background: rgba(0, 43, 56, 0.07);
}

.mobile-menu__logo img {
    width: 160px;
    height: auto;
    display: block;
}

.mobile-menu__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu__nav li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 43, 56, 0.08);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

.mobile-menu__nav li:first-child a {
    border-top: 1px solid rgba(0, 43, 56, 0.08);
}

.mobile-menu__nav li a:hover {
    color: var(--orange);
}

.mobile-menu__cta {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Hero Overlap Section
=================================== */

.hero-overlap {
    max-width: 1728px;
    margin-inline: auto;
}

.hero-overlap__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: max(clamp(1rem, 4vw, 2.5rem),
            calc((min(100vw, 1728px) - var(--container-width)) / 2 + clamp(1rem, 4vw, 2.5rem)));
}

.hero-overlap__grid>* {
    min-width: 0;
}

/* ---- Media (linker kolom) ---- */
.hero-overlap__media {
    position: relative;
    background: url('/wp-content/uploads/2026/02/Rectangle-59.jpg');
    background-repeat: no-repeat;
    min-height: 760px;
}

.hero-overlap__content {
    position: relative;
    top: 40px;
    background-image: url('/wp-content/uploads/2026/02/Mask-group.png');
    background-color: var(--secondary-light);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-inline: 140px;
    margin-left: -15%;
    z-index: 2;
}

.hero-overlap__title {
    max-width: 485px;
}

.hero-overlap__body {
    gap: 25px;
    display: flex;
    max-width: 550px;
    flex-direction: column;
}

.hero-overlap__bg-icon {
    width: 100%;
}

.hero-overlap__avatar {
    position: absolute;
    left: -25%;
    bottom: 0;
    aspect-ratio: 80/100;
    width: 543px;
}

/* ===================================
   Wat Is Section
=================================== */
section.wat-is {
    padding-top: 140px;
}

.wat-is__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.wat-is__grid>* {
    min-width: 0;
}

.wat-is__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wat-is__label {
    color: var(--secondary);
    font-size: var(--font-subhead);
    font-weight: 700;
    line-height: 28px;
}

.wat-is__title {
    font-size: var(--font-section);
    color: var(--primary);
}

.wat-is__text {
    font-size: var(--font-default);
    margin-bottom: 20px;
}

/* ---- Quote kaart ---- */
.wat-is__quote {
    --avatar-offset: 25px;
    --avatar-width: 175px;

    background-color: var(--secondary-light);
    display: flex;
    align-items: center;
    min-height: 225px;
    position: relative;
}

.wat-is__quote-avatar {
    position: absolute;
    left: var(--avatar-offset);
    bottom: 0;
    height: 246px;
    width: var(--avatar-width);
}

.wat-is__quote-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 370px;
    margin-left: calc(var(--avatar-offset) + var(--avatar-width) + 10px);
}

.wat-is__quote-mark {
    color: var(--secondary);
    font-size: 80px;
    line-height: 62px;
    font-weight: 700;
    font-family: "Korolev Condensed";
}

.wat-is__quote-text {
    font-family: 'Korolev Condensed';
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    line-height: normal;
}

/* ---- Foto (rechter kolom) ---- */
.wat-is__photo {
    width: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 695/615;
}

/* ===================================
   Voordelen sectie
=================================== */

.divider {
    height: 2px;
    background: #FAD6B5;
    width: 100%;
    margin-block: 70px;
}

.voordelen {
    padding-top: 100px;
}

.voordelen__title {
    margin-bottom: 25px;
    font-size: 40px;
    font-family: "Korolev Condensed";
    color: var(--orange);
    font-weight: 700;
}

.voordelen__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.voordelen__item {
    display: flex;
    flex-direction: column;
}

.voordelen__icon {
    height: 97px;
    width: 74px;
    margin-bottom: 20px;
}

.voordelen__item-title {
    font-family: "Korolev Condensed";
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 23px;
}

.voordelen__item-text {
    color: var(--primary);
    font-family: Korolev;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

/* ===================================
   Groene Text sectie
=================================== */

.groene-text {
    position: relative;
    overflow: hidden;
}

/* Groene achtergrond rechterhelft — loopt door tot onder de illustratie */
.groene-text::before {
    content: '';
    position: absolute;
    inset: 0 0 0 35%;
    background-color: var(--secondary-light);
    background-image: url('/wp-content/uploads/2026/03/groene-achergrond-1.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    z-index: 0;
}

.groene-text .container {
    position: relative;
    z-index: 1;
}

.groene-text__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.groene-text__grid>* {
    min-width: 0;
}

/* ---- Illustratie (linker kolom) ---- */
.groene-text__media {
    position: relative;
    z-index: 2;
    padding-block: 60px;
}

.groene-text__illustration {
    display: block;
    width: 115%;
    max-width: 700px;
}

/* ---- Content (rechter kolom) ---- */
.groene-text__content {
    padding-left: 60px;
    padding-block: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.groene-text__title {
    font-size: 55px;
    line-height: 1.2;
    color: var(--primary);
}

.groene-text__text {
    color: var(--primary);
}

.groene-text__divider {
    height: 2px;
    background: var(--secondary);
	margin-top: 40px;
}

/* ---- Quote blok ---- */
.groene-text__quote {
    --mascot-width: 160px;
    height: 100%;
    display: flex;
    align-items: center;
    min-height: 210px;
}

.groene-text__quote-avatar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--mascot-width);
    transform: scaleX(-1);
}

.groene-text__quote-body {
    margin-left: calc(var(--mascot-width) + 20px);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.groene-text__quote-mark {
    color: var(--secondary);
    font-size: 80px;
    line-height: 62px;
    font-weight: 700;
    font-family: "Korolev Condensed";
}

.groene-text__quote-text {
    font-family: 'Korolev Condensed';
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    line-height: normal;
}

/* ===================================
   Voorbeelden slider sectie
=================================== */

.voorbeelden {
    background: #FEF9F3;
    padding-top: 80px;
    margin-top: 80px;
    padding-bottom: 100px;
}

.voorbeelden__heading {
    text-align: center;
    font-size: 55px;
    margin-bottom: 50px;
}

/* ---- Slider wrapper (full width) ---- */
.voorbeelden__slider {
    position: relative;
    overflow: hidden;
}

.voorbeelden__track-wrap {
    overflow: hidden;
    position: relative;
}

.voorbeelden__track-wrap::before,
.voorbeelden__track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12%;
    z-index: 2;
    pointer-events: none;
}

.voorbeelden__track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #FEF9F3 0%, transparent 100%);
}

.voorbeelden__track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #FEF9F3 0%, transparent 100%);
}

.voorbeelden__track {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.voorbeelden__track:active {
    cursor: grabbing;
}

/* ---- Slide card ---- */
.voorbeelden__slide {
    flex: 0 0 clamp(280px, 30vw, 430px);
    min-width: 0;
}

.voorbeelden__slide-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    pointer-events: none;
}

.voorbeelden__slide-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.voorbeelden__slide-title {
    font-family: 'Korolev Condensed', 'Korolev', sans-serif;
    font-size: 40px;
    margin-top: 30px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.voorbeelden__slide-text {
    font-size: var(--font-default);
    color: var(--primary);
    line-height: 28px;
}

/* ---- Arrows ---- */
.voorbeelden__arrow {
    position: absolute;
    /* Vertically centered on the image: (slide-w * 4/3 ratio) / 2 ≈ 11vw */
    top: 11vw;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    background: var(--orange);
    color: var(--primary);
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.voorbeelden__arrow:hover {
    opacity: 0.85;
}

.voorbeelden__arrow--prev {
    left: calc(8vw - 26px);
}

.voorbeelden__arrow--next {
    right: calc(8vw - 26px);
}

/* ===================================
   Contact sectie
=================================== */

.contact {
    background-color: var(--primary);
    padding-block: 90px;
    position: relative;
    overflow: hidden;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    grid-template-rows: auto auto;
    column-gap: 80px;
    row-gap: 30px;
    align-items: start;
}

/* Titel: kolom 1, rij 1 */
.contact__title {
    grid-column: 1;
    grid-row: 1;
    color: var(--orange);
    font-size: 55px;
    margin: 0;
}

/* Info body: kolom 1, rij 2 */
.contact__info {
    grid-column: 1;
    grid-row: 2;
}

.contact__text {
    color: #fff;
    margin-bottom: 25px;
}

.contact__divider {
    height: 1px;
    background: var(--secondary);
    margin-bottom: 35px;
}

.contact__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact__detail, .site-footer__contact-text {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    font-family: "Korolev Condensed";
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contact__detail a {
    color: #fff;
    text-decoration: none;
}

.contact__detail a:hover {
    color: var(--secondary);
}

.contact__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: #083E4E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact__icon svg {
    width: 20px;
    height: 20px;
}

/* ---- Formulier (rechter kolom) ---- */
.contact__form {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__field label {
    color: var(--secondary);
    font-weight: 700;
    font-size: var(--font-default);
    line-height: 1;
}

.contact__field input,
.contact__field textarea {
    background: #eeeae4;
    border: none;
    padding: 16px 20px;
    font-family: "korolev", sans-serif;
    font-size: var(--font-default);
    color: var(--primary);
    width: 100%;
    outline: none;
    appearance: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: #9ea8a5;
}

.contact__field--textarea {
    height: 100%;
}

.contact__field--textarea textarea {
    flex: 1;
    resize: none;
    min-height: 280px;
    height: 100%;
}

.contact__submit {
    align-self: flex-start;
}

/* ===================================
   Syntraal sectie (tekst links, foto rechts full-bleed)
=================================== */

.syntraal {
    max-width: 1728px;
    margin-inline: auto;
    overflow: hidden;
    padding-block: 80px;
}

.syntraal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    /* Linker padding uitgelijnd met container, rechts geen padding = foto tot de rand */
    padding-left: max(clamp(1rem, 4vw, 2.5rem),
            calc((min(100vw, 1728px) - var(--container-width)) / 2 + clamp(1rem, 4vw, 2.5rem)));
}

.syntraal__grid>* {
    min-width: 0;
}

/* ---- Content (linker kolom) ---- */
.syntraal__content {
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.syntraal__label {
    color: var(--secondary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.syntraal__title {
    font-size: 55px;
    line-height: 1.15;
    color: var(--primary);
}

.syntraal__text {
    color: var(--primary);
}

/* ---- Foto (rechter kolom, full-bleed rechts) ---- */
.syntraal__media {
    position: relative;
}

.syntraal__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 480px;
}

/* ===================================
   Samenwerken sectie
=================================== */

.samenwerken {
    background: var(--secondary-light);
    padding-block: 60px;
}

.samenwerken__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.samenwerken__label {
    color: var(--primary);
    font-size: 23px;
    font-family: "Korolev Condensed";
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.samenwerken__logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.samenwerken__logo {
    height: 34px;
    width: auto;
    display: block;
    aspect-ratio: 182/34;
}

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

.faq {
    background: #FEF9F3;
    padding-block: 80px 100px;
}

.faq__header {
    text-align: center;
    margin-bottom: 55px;
}

.faq__title {
    font-size: 55px;
    margin-bottom: 12px;
}

.faq__subtitle {
    color: var(--secondary);
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
}

/* ---- 2-koloms accordion grid ---- */
.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
}

/* ---- Accordion item ---- */
.faq__item {
    border-bottom: 1px solid var(--secondary);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding-block: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--primary);
    font-family: "korolev", sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 28px;
}

.faq__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.faq__icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.35s ease;
}

.faq__item--open .faq__icon svg {
    transform: rotate(180deg);
}

.faq__item--open .faq__icon {
    background: var(--primary);
    color: #fff;
}

/* ---- Answer panel ---- */
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__answer p {
    padding-bottom: 24px;
    color: var(--primary);
    font-weight: 500;
}

/* ===================================
   Responsive — Tablet (≤ 1024px)
=================================== */

@media (max-width: 1024px) {
    body {
        border-left-width: 15px;
        border-right-width: 15px;
    }

    /* Header */
    .site-header {
        padding-block: 1.5rem;
    }

    .site-header__logo img {
        width: 240px;
    }

    .nav__list {
        gap: 1.5rem;
    }

    /* Hero */
    .hero-overlap__grid {
        padding-left: clamp(1rem, 4vw, 2.5rem);
    }

    .hero-overlap__content {
        margin-left: -8%;
        padding-inline: 3rem;
    }

    .hero-overlap__avatar {
        width: 360px;
        left: -18%;
    }

    /* Wat Is */
    .wat-is__grid {
        gap: 40px;
    }

    /* Voordelen */
    .voordelen__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Groene Text */
    .groene-text__content {
        padding-left: 40px;
        padding-block: 60px;
    }

    .groene-text__quote-text {
        font-size: 34px;
    }

    /* Voorbeelden slider */
    .voorbeelden__slide {
        flex: 0 0 clamp(260px, 42vw, 420px);
    }

    .voorbeelden__arrow {
        top: 15vw;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr 1.4fr;
        column-gap: 50px;
    }

    .contact__fields {
        gap: 20px;
    }

    .contact__title {
        font-size: 40px;
    }

    /* FAQ */
    .faq__grid {
        column-gap: 40px;
    }

    /* Syntraal */
    .syntraal__content {
        padding-right: 40px;
        padding-block: 60px;
    }
}

/* ===================================
   Responsive — Mobiel (≤ 768px)
=================================== */

@media (max-width: 980px) {

    /* Typografie */
    h2 {
        font-size: 36px;
        line-height: normal;
    }

    body {
        border-left-width: 10px;
        border-right-width: 10px;
    }

    /* Header */
    .site-header {
        padding-block: 1.25rem;
    }

    .site-header__inner {
        height: auto;
        gap: 1rem;
    }

    .site-header__logo img {
        width: 180px;
    }

    .site-header__nav,
    .site-header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* Hero Overlap */
    .hero-overlap__grid {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .hero-overlap__media {
        min-height: 320px;
    }

    .hero-overlap__avatar {
        display: none;
    }

    .hero-overlap__content {
        position: static;
        margin-left: 0;
        padding-inline: 1.5rem;
        padding-block: 3rem;
    }

    .hero-overlap__body {
        max-width: 100%;
    }

    /* Wat Is */
    section.wat-is {
        padding-top: 3rem;
    }

    .wat-is__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wat-is__photo {
        order: -1;
    }

    .wat-is__quote {
        --avatar-width: 110px;
        --avatar-offset: 15px;
        min-height: 170px;
    }

    .wat-is__quote-avatar {
        height: 185px;
    }

    .wat-is__quote-text {
        font-size: 24px;
    }

    /* Voordelen */
    .voordelen {
        padding-block: 3rem;
    }

    .voordelen__title {
        font-size: 28px;
    }

    .voordelen__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Groene Text */
    .groene-text::before {
        inset: 0;
        background-size: contain;
        background-position: top right;
        opacity: 0.5;
    }

    .groene-text__grid {
        grid-template-columns: 1fr;
    }

    .groene-text__media {
        padding-block: 2rem;
    }

    .groene-text__illustration {
        width: 100%;
    }

    .groene-text__content {
        padding-left: 0;
        padding-block: 2.5rem;
    }

    .groene-text__quote-text {
        font-size: 28px;
    }

    /* Voorbeelden slider */
    .voorbeelden__slide {
        flex: 0 0 78vw;
    }

    .voorbeelden__arrow {
        top: 28vw;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .voorbeelden__arrow--prev {
        left: 4vw;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Reset vaste grid-plaatsingen zodat alles gewoon op volgorde stroomt */
    .contact__title,
    .contact__info,
    .contact__form {
        grid-column: 1;
        grid-row: auto;
    }

    .contact__title {
        font-size: 36px;
    }

    .contact__fields {
        grid-template-columns: 1fr;
    }

    .contact__field--textarea textarea {
        min-height: 160px;
    }

    .contact__submit {
        width: 100%;
        justify-content: center;
    }

    /* FAQ */
    .faq__grid {
        grid-template-columns: 1fr;
    }
	
	.samenwerken__inner {
		flex-direction: column;
	}
	
	.samenwerken__logos {
		justify-content: center;
	}

    /* Syntraal */
    .syntraal__grid {
        grid-template-columns: 1fr;
        padding-left: clamp(1rem, 4vw, 2.5rem);
    }

    .syntraal__media {
        order: -1;
    }

    .syntraal__photo {
        min-height: 280px;
    }

    .syntraal__content {
        padding-right: 0;
        padding-block: 2.5rem;
    }
}

/* ===================================
   Footer
=================================== */

.site-footer {
    background: var(--primary);
    padding-block: 48px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
}

.site-footer__brand {
    display: flex;
    align-items: center;
}

.site-footer__logo {
    height: 100px;
    width: auto;
    display: block;
}

.site-footer__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.site-footer__text {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}

.site-footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.site-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.site-footer__contact-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: #083E4E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.site-footer__contact-icon svg {
    width: 20px;
    height: 20px;
}


@media (max-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer__brand {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 0;
        padding-bottom: 40px;
    }
}

@media (max-width: 980px) {
    .site-footer__contact {
        flex-direction: column;
    }

    .site-footer__contact-text {
        white-space: normal;
    }
}