:root {
    --rood: #c41e2a;
    --rood-donker: #9a1520;
    --zwart: #111111;
    --wit: #ffffff;
    --grijs-100: #f5f5f5;
    --grijs-200: #e8e8e8;
    --grijs-400: #888888;
    --grijs-600: #555555;
    --groen: #1f8a4c;
    --groen-donker: #166b3a;
    --radius: 14px;
    --radius-lg: 28px;
    --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
    --container: 1240px;
    --container-wide: 1440px;
    --header-h: 88px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --font-sans: 'Source Sans 3', system-ui, sans-serif;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--zwart);
    background: var(--wit);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
    font-family: var(--font-display);
    font-weight: 600;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
    background: var(--groen);
    color: var(--wit);
}

.btn-primary:hover {
    background: var(--groen-donker);
}

.btn-contact {
    background: var(--rood);
    color: var(--wit);
    padding: 12px 26px;
    font-size: 0.9rem;
}

.btn-contact:hover {
    background: var(--rood-donker);
}

.btn-outline {
    background: transparent;
    color: var(--zwart);
    border: 2px solid var(--zwart);
}

.btn-outline:hover {
    background: var(--zwart);
    color: var(--wit);
}

.text-link {
    font-weight: 600;
    color: var(--zwart);
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s;
}

.text-link:hover::after {
    transform: scaleX(1);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--zwart);
    color: var(--wit);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    min-height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 0;
}

.logo-img {
    display: block;
    height: 62px;
    width: auto;
    max-width: min(260px, 38vw);
    border-radius: 3px;
    flex-shrink: 0;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 36px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--wit);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wit);
    transition: transform 0.2s, opacity 0.2s;
}

/* Hero */

.hero {
    padding: 16px 0 0;
}

.hero-banner {
    width: min(var(--container-wide), calc(100% - 40px));
    margin-inline: auto;
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 14px;
    align-items: start;
    position: relative;
    z-index: 3;
    padding-bottom: 72px;
}

.hero-title {
    font-size: clamp(1.85rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
}

.hl-red {
    color: var(--rood);
}

.hero-title .hl-red + .anim-slide-r,
.hero-title .anim-slide-l + .hl-red {
    margin-left: 0.28em;
}

.hero-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--grijs-600);
    max-width: clamp(480px, 54vw, 640px);
}

/* Banner frame: knoppen op rand, afgeronde vorm, hoek-uitsparingen */

.hero-frame {
    position: relative;
    margin-top: -24px;
    padding-bottom: 36px;
}

.hero-frame-buttons {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: max-content;
    max-width: 46%;
}

.hero-frame-buttons .btn {
    padding: 12px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 0;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(17, 17, 17, 0.12);
}

.hero-frame-buttons .btn-outline {
    background: var(--zwart);
    color: var(--wit);
    border: 2px solid var(--zwart);
}

.hero-frame-buttons .btn-outline:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    color: var(--wit);
}

.hero-shape-wrap {
    position: relative;
}

.hero-shape-body {
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
}

.hero-shape-body img {
    width: 100%;
    height: clamp(400px, 58vh, 600px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-notch-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: clamp(56px, 7vw, 84px);
    background: var(--wit);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 14px,
        calc(50% + clamp(120px, 14vw, 210px)) 14px,
        50% 100%,
        calc(50% - clamp(120px, 14vw, 210px)) 14px,
        0 14px
    );
    z-index: 6;
    pointer-events: none;
}

.hero-corner {
    position: absolute;
    bottom: 0;
    width: 26%;
    height: 20%;
    background: var(--zwart);
    color: var(--wit);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
}

.hero-corner-left {
    left: 0;
    border-top-right-radius: 36px;
    justify-content: center;
    padding: 14px 12px;
}

.hero-corner-right {
    right: 0;
    border-top-left-radius: 36px;
    justify-content: center;
    padding: 14px 12px;
}

.hero-corner-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.hero-corner-icon svg {
    width: 22px;
    height: 22px;
}

.hero-corner-icon svg.hero-svg {
    stroke: currentColor;
    fill: none;
    color: rgba(255, 255, 255, 0.85);
}

.hero-corner-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.hero-corner-right .hero-corner-text {
    align-items: flex-start;
    text-align: left;
}

.hero-corner-value {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.hero-corner-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
}

/* Hero animaties: afbeelding eerst, daarna tekst */

.hero .anim-left {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    animation: heroFromLeft 0.75s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
    animation-play-state: paused;
}

.hero .anim-slide-r {
    display: inline-block;
    opacity: 0;
    transform: translateX(clamp(6rem, 18vw, 14rem));
    animation: heroSlideFromRight 0.95s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
    animation-play-state: paused;
}

.hero .anim-slide-l {
    display: inline-block;
    opacity: 0;
    transform: translateX(clamp(-14rem, -18vw, -6rem));
    animation: heroSlideFromLeft 0.95s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
    animation-play-state: paused;
}

.hero .anim-down {
    display: block;
    opacity: 0;
    transform: translateY(-22px);
    animation: heroFromTop 0.65s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
    animation-play-state: paused;
}

.hero .hero-frame-buttons.anim-down {
    display: flex;
    opacity: 0;
    transform: translate(-50%, calc(50% + 18px));
    animation: heroBtnIn 0.6s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
    animation-play-state: paused;
}

.hero .anim-right {
    opacity: 0;
    transform: translateX(32px);
    animation: heroFromRight 0.7s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
    animation-play-state: paused;
}

.hero .anim-up {
    opacity: 0;
    transform: translateY(28px);
    animation: heroFromBottom 0.8s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
    animation-play-state: paused;
}

.hero.img-loaded .hero-shape-wrap.anim-up {
    animation-play-state: running;
}

.hero.is-ready .anim-left,
.hero.is-ready .anim-slide-r,
.hero.is-ready .anim-slide-l,
.hero.is-ready .anim-right,
.hero.is-ready .anim-down,
.hero.is-ready .hero-frame-buttons.anim-down,
.hero.is-ready .hero-corner.anim-up {
    animation-play-state: running;
}

@keyframes heroFromLeft {
    to { clip-path: inset(0 0 0 0); }
}

@keyframes heroSlideFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFromTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBtnIn {
    to {
        opacity: 1;
        transform: translate(-50%, 50%);
    }
}

@keyframes heroFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero.img-loaded .anim-left,
    .hero.img-loaded .anim-slide-r,
    .hero.img-loaded .anim-slide-l,
    .hero.img-loaded .anim-down,
    .hero.img-loaded .anim-right,
    .hero.img-loaded .anim-up,
    .hero.img-loaded .hero-frame-buttons.anim-down {
        animation: none;
        opacity: 1;
        transform: none;
        clip-path: none;
    }

    .hero.img-loaded .hero-frame-buttons.anim-down {
        transform: translate(-50%, 50%);
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .hero.img-loaded .hero-frame-buttons.anim-down {
        transform: translate(-50%, 50%);
    }
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--wit);
    margin-left: -10px;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--wit);
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.avatar-stack span:nth-child(1) { background: var(--rood); }
.avatar-stack span:nth-child(2) { background: var(--zwart); }
.avatar-stack span:nth-child(3) { background: var(--groen); }
.avatar-stack span:nth-child(4) { background: var(--grijs-600); }

.flag-row {
    display: flex;
    gap: 6px;
}

.flag-row span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    color: var(--wit);
}

.flag-nl { background: #21468b; }
.flag-be { background: #fdda24; color: var(--zwart); }

/* Sections */

.section {
    padding: 96px 0;
}

.section-dark {
    background: var(--zwart);
    color: var(--wit);
}

.section-light {
    background: var(--grijs-100);
}

.section-header {
    max-width: 620px;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--grijs-600);
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rood);
    margin-bottom: 12px;
}

/* Stats strip */

.stats-strip {
    position: relative;
    padding: 64px 0 88px;
    background: var(--wit);
    overflow: hidden;
}

.stats-strip-corner {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.stats-strip-corner-top {
    top: 0;
    right: 0;
    background: var(--rood);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.stats-strip-corner-bottom {
    bottom: 0;
    left: 0;
    background: var(--zwart);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.stats-strip-date {
    font-size: 0.82rem;
    color: var(--grijs-400);
    margin-bottom: 44px;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.9s var(--ease-out);
}

.stats-strip.is-visible .stats-strip-grid {
    opacity: 1;
    transform: translateY(0);
}

.stats-strip-item {
    text-align: center;
    padding: 0 28px;
    border-right: 1px solid var(--grijs-200);
    color: var(--rood);
}

.stats-strip-item:last-child {
    border-right: none;
}

.stats-strip-icon {
    color: var(--rood);
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.stats-strip-icon svg {
    width: 54px;
    height: 54px;
}

.stats-num {
    display: block;
    font-size: clamp(2.5rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}

.stats-strip-item p {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Home over ons */

.home-over {
    padding: 88px 0;
    background: var(--wit);
    border-top: 1px solid var(--grijs-200);
}

.home-over-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    grid-template-areas:
        "logo content"
        "side content";
    gap: 0 clamp(40px, 6vw, 88px);
    align-items: start;
}

.home-over-logo {
    grid-area: logo;
    display: block;
    width: 100%;
    align-self: start;
}

.home-over-logo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.home-over-side {
    grid-area: side;
    padding-top: 28px;
}

.home-over-content {
    grid-area: content;
}

@media (min-width: 1025px) {
    .home-over-content {
        padding-top: 72px;
    }
}

.home-over-tagline {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--zwart);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--rood);
}

.home-over-feiten {
    list-style: none;
}

.home-over-feiten li {
    font-size: 0.92rem;
    color: var(--grijs-600);
    line-height: 1.5;
    padding: 14px 0;
    border-bottom: 1px solid var(--grijs-200);
}

.home-over-feiten li:first-child {
    padding-top: 0;
}

.home-over-feiten li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.home-over-feiten strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--zwart);
    margin-bottom: 2px;
}

.home-over-content .section-label {
    margin-bottom: 14px;
}

.home-over-content h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 24px;
    max-width: 720px;
}

.home-over-content p {
    color: var(--grijs-600);
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 640px;
}

.home-over-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    margin-top: 8px;
    font-weight: 600;
    color: var(--groen);
    text-decoration: none;
    transition: color 0.2s;
}

.home-over-link-text {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.home-over-link:hover {
    color: var(--groen-donker);
}

/* Diensten band */

.diensten-band {
    padding: 80px 0;
    background: var(--grijs-100);
}

.diensten-band-titel {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.diensten-band-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.diensten-band-item {
    display: flex;
    flex-direction: column;
    background: var(--wit);
}

.diensten-band-beeld {
    position: relative;
    flex-shrink: 0;
}

.diensten-band-beeld img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.diensten-band-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 56px;
    background: var(--rood);
    z-index: 0;
}

.diensten-band-tekst {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 26px;
    border-top: 3px solid var(--rood);
}

.diensten-band-tekst h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--zwart);
}

.diensten-band-tekst p {
    color: var(--grijs-600);
    line-height: 1.65;
    margin-bottom: 20px;
    font-size: 0.92rem;
    flex: 1;
}

.diensten-band-tekst .btn {
    align-self: flex-start;
    padding: 10px 18px;
    font-size: 0.82rem;
}

/* Werk blokken */

.werk-blok {
    color: var(--wit);
}

.diensten-band + .werk-blok {
    padding: 100px 0;
    background: var(--zwart);
}

.werk-blok-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.werk-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.werk-grid-omgekeerd {
    grid-template-columns: 0.95fr 1.05fr;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.werk-grid-omgekeerd .werk-beeld {
    order: 2;
}

.werk-grid-omgekeerd .werk-tekst {
    order: 1;
}

.werk-beeld {
    position: relative;
    isolation: isolate;
}

.werk-beeld img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.werk-beeld-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--rood);
    z-index: 0;
}

.werk-grid-omgekeerd .werk-beeld-accent {
    left: auto;
    right: -20px;
    background: var(--rood);
}

.werk-tekst h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--wit);
    padding-top: 20px;
    border-top: 3px solid var(--rood);
}

@media (min-width: 1025px) {
    .werk-tekst h2 {
        padding-top: 0;
        padding-bottom: 20px;
        border-top: none;
        border-bottom: 3px solid var(--rood);
    }
}

.werk-tekst p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
    line-height: 1.75;
}

.werk-tekst .btn {
    margin-top: 8px;
}

/* Split content */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-reverse .split-image {
    order: -1;
}

.split-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.split-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.split-content p {
    color: var(--grijs-600);
    margin-bottom: 16px;
}

.split-content .btn {
    margin-top: 12px;
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--wit);
    border: 1px solid var(--grijs-200);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    border-color: var(--rood);
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--grijs-600);
    margin-bottom: 20px;
}

.service-card a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rood);
}

/* Scroll reveal */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s ease,
        transform 0.85s var(--ease-out);
    transition-delay: var(--d, 0s);
}

.reveal.reveal-left {
    transform: translateX(-28px);
}

.reveal.reveal-right {
    transform: translateX(28px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Onderhoud pagina */

.ond-banner {
    position: relative;
    min-height: clamp(480px, 58vh, 620px);
    background: var(--zwart);
    overflow: hidden;
    border-bottom-left-radius: clamp(48px, 8vw, 96px);
}

.ond-banner-beeld {
    position: absolute;
    inset: 0;
    margin: 0;
}

.ond-banner-beeld img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.06);
    transition: transform 1.4s var(--ease-out);
}

.ond-banner.is-ready .ond-banner-beeld img {
    transform: scale(1);
}

.ond-banner-inhoud > .reveal-banner {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s ease,
        transform 0.85s var(--ease-out);
    transition-delay: var(--d, 0s);
}

.ond-banner.is-ready .ond-banner-inhoud > .reveal-banner {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .ond-banner-beeld img {
        transform: none;
        transition: none;
    }

    .ond-banner-inhoud > .reveal-banner {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.ond-banner-beeld::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(17, 17, 17, 0.08) 0%,
        rgba(17, 17, 17, 0.35) 38%,
        rgba(17, 17, 17, 0.82) 58%,
        rgba(17, 17, 17, 0.96) 72%
    );
    pointer-events: none;
}

.ond-banner-inhoud {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(480px, 58vh, 620px);
    width: min(46%, 520px);
    margin-left: auto;
    margin-right: max(24px, calc((100% - var(--container-wide)) / 2 + 24px));
    padding: clamp(40px, 5vw, 72px) clamp(24px, 3vw, 40px);
    color: var(--wit);
}

.ond-banner-kicker {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rood);
    margin-bottom: 22px;
}

.ond-banner-titel {
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    max-width: 14ch;
}

.ond-banner-sub {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 36px;
    max-width: 34ch;
}

.ond-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wit);
    padding: 14px 16px 12px;
    border-bottom: 3px solid var(--groen);
    border-left: 3px solid var(--groen);
    transition: color 0.2s, gap 0.2s, background 0.2s, border-color 0.2s;
}

.ond-banner-link::after {
    content: '\203A';
    font-size: 1.2rem;
    line-height: 1;
    color: var(--groen);
    transition: transform 0.2s var(--ease-out), color 0.2s;
}

.ond-banner-link:hover {
    background: rgba(31, 138, 76, 0.18);
    gap: 16px;
}

.ond-banner-link:hover::after {
    transform: translateX(3px);
    color: var(--wit);
}

.ond-split-banner {
    position: relative;
    min-height: clamp(360px, 42vh, 480px);
    margin-top: 64px;
    background: var(--zwart);
    overflow: hidden;
    border-bottom-right-radius: clamp(48px, 8vw, 96px);
}

.ond-split-banner-beeld {
    position: absolute;
    inset: 0;
    margin: 0;
}

.ond-split-banner-beeld img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.ond-split-banner-beeld::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(17, 17, 17, 0.97) 0%,
        rgba(17, 17, 17, 0.88) 28%,
        rgba(17, 17, 17, 0.45) 52%,
        rgba(17, 17, 17, 0.12) 72%
    );
    pointer-events: none;
}

.ond-split-banner-tekst {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(360px, 42vh, 480px);
    width: min(44%, 480px);
    margin-left: max(24px, calc((100% - var(--container-wide)) / 2 + 24px));
    padding: clamp(32px, 5vw, 56px) clamp(24px, 3vw, 40px);
    color: var(--wit);
}

.ond-split-banner-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.35;
    margin-bottom: 28px;
    max-width: 26ch;
}

.ond-wat {
    padding: 72px 0 80px;
    background: var(--wit);
    border-bottom: 1px solid var(--grijs-200);
}

.ond-wat-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.ond-wat-kern {
    display: contents;
}

.ond-wat-lead {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.75;
    color: var(--grijs-600);
    padding-left: 0;
    border-left: none;
    margin: 28px 0 0;
}

.ond-wat-inhoud {
    grid-column: 1;
    grid-row: 1;
    padding-left: 0;
    align-self: start;
}

.ond-wat-beeld {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    margin: 0;
}

.ond-wat-inhoud h2 {
    margin-bottom: 24px;
}

.ond-wat-inhoud h2,
.ond-faq h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.ond-lijst {
    padding-left: 20px;
    border-left: 3px solid var(--rood);
}

.ond-lijst li {
    position: relative;
    padding: 14px 0 14px 20px;
    border-bottom: 1px solid var(--grijs-200);
    font-size: 1.02rem;
    font-weight: 600;
}

.ond-lijst li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--rood);
}

.ond-lijst li:last-child {
    border-bottom: none;
}

.ond-wat-beeld img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.ond-wat-accent {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 90px;
    height: 90px;
    background: var(--rood);
    z-index: -1;
}

/* Proces */

.ond-proces {
    padding: 72px 0 80px;
    background: var(--zwart);
    color: var(--wit);
}

.ond-proces h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.ond-proces-blok + .ond-proces-blok {
    margin-top: 56px;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ond-proces-waarom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 56px;
    list-style: none;
}

.ond-proces-waarom li {
    position: relative;
    padding: 15px 0 15px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.ond-proces-waarom li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--rood);
}

.ond-proces-waarom li:nth-last-child(-n+2) {
    border-bottom: none;
}

.ond-proces-stappen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start;
}

.ond-proces-stap-beeld {
    position: relative;
    margin: 0 0 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.03);
}

.ond-proces-stap-beeld img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.ond-proces-stap-beeld--certificering {
    background: rgba(255, 255, 255, 0.06);
}

.ond-proces-stap-beeld--certificering img {
    object-fit: contain;
    padding: 14px;
}

.ond-proces-stap-beeld::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--rood);
}

.ond-proces-stap h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wit);
}

.ond-proces-stap p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.ond-faq {
    padding: 80px 0;
    background: var(--grijs-100);
}

.ond-faq-lijst {
    max-width: 720px;
}

.ond-faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--grijs-200);
}

.ond-faq-item:first-child {
    border-top: 1px solid var(--grijs-200);
}

.ond-faq-item dt {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ond-faq-item dd {
    font-size: 0.95rem;
    color: var(--grijs-600);
    line-height: 1.6;
}

/* Verkoop pagina */

.verkoop-catalogus {
    padding: 72px 0 80px;
    background: var(--wit);
    border-bottom: 1px solid var(--grijs-200);
}

.verkoop-catalogus-kop {
    margin-bottom: 36px;
}

.verkoop-catalogus-kop h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.verkoop-status {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--grijs-600);
    max-width: 48ch;
}

.verkoop-carousel-wrap {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.verkoop-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.verkoop-carousel::-webkit-scrollbar {
    display: none;
}

.verkoop-carousel-knop {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--zwart);
    border-radius: 50%;
    background: var(--zwart);
    color: var(--wit);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(17, 17, 17, 0.18);
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.verkoop-carousel-knop span {
    display: block;
    margin-top: -2px;
}

.verkoop-carousel-knop:hover {
    border-color: var(--rood);
    background: var(--rood);
    color: var(--wit);
    box-shadow: 0 6px 18px rgba(196, 30, 42, 0.28);
    transform: scale(1.05);
}

.verkoop-carousel-knop:focus-visible {
    outline: 2px solid var(--rood);
    outline-offset: 3px;
}

.verkoop-carousel-knop:disabled {
    opacity: 0.4;
    background: var(--grijs-400);
    border-color: var(--grijs-400);
    color: var(--wit);
    box-shadow: none;
    transform: none;
    cursor: default;
    pointer-events: none;
}

.verkoop-slot {
    flex: 0 0 min(260px, 74vw);
    scroll-snap-align: start;
}

.verkoop-slot-naam {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--zwart);
}

.verkoop-slot-leeg {
    aspect-ratio: 1 / 1;
    background: var(--grijs-200);
    display: grid;
    place-items: center;
}

.verkoop-slot-plus {
    font-size: clamp(2.4rem, 6vw, 3rem);
    font-weight: 300;
    line-height: 1;
    color: #b0b0b0;
    user-select: none;
}

.verkoop-slot-beeld {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--grijs-100);
}

.verkoop-slot-beeld img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Diensten & projecten */

.pg-page,
.pg-actie-blok {
    position: relative;
    overflow: hidden;
}

.pg-page.section {
    padding: 36px 0 64px;
    background: var(--grijs-100);
}

.pg-actie-blok.section {
    padding: 56px 0;
    background: var(--wit);
}

.pg-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pg-page .container,
.pg-actie-blok .container {
    position: relative;
    z-index: 1;
}

.pg-bg-vorm {
    position: absolute;
    pointer-events: none;
}

.pg-bg-vorm--hoek-tr {
    top: 0;
    right: 0;
    width: clamp(140px, 22vw, 260px);
    height: clamp(140px, 22vw, 260px);
    background: var(--rood);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.14;
}

.pg-bg-vorm--hoek-bl {
    bottom: 0;
    left: 0;
    width: clamp(100px, 16vw, 200px);
    height: clamp(100px, 16vw, 200px);
    background: var(--zwart);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    opacity: 0.08;
}

.pg-bg-vorm--streep {
    top: 28%;
    left: 0;
    width: 4px;
    height: clamp(80px, 14vw, 160px);
    background: var(--groen);
}

.pg-actie-blok .pg-bg-vorm--hoek-tr {
    width: clamp(80px, 12vw, 140px);
    height: clamp(80px, 12vw, 140px);
    opacity: 0.07;
}

.pg-actie-blok .pg-bg-vorm--hoek-bl {
    display: none;
}

.pg-actie-blok .pg-bg-vorm--streep {
    top: auto;
    bottom: 24px;
    right: max(24px, calc((100% - var(--container)) / 2));
    left: auto;
    width: clamp(100px, 14vw, 180px);
    height: 3px;
}

.pg-kop {
    position: relative;
    max-width: 640px;
    margin-bottom: 40px;
    padding: 0 0 28px 20px;
    border-bottom: 1px solid var(--grijs-200);
}

.pg-kop::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 52px;
    background: var(--rood);
}

.pg-kop-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rood);
    margin-bottom: 10px;
}

.pg-kop h1 {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0;
}

.pg-kop-lead {
    margin: 14px 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--grijs-600);
    max-width: 52ch;
}

.pg-diensten-grid {
    display: grid;
    gap: 24px;
}

.pg-kolom {
    position: relative;
    background: var(--wit);
    border: 1px solid var(--grijs-200);
    padding: 28px 28px 12px;
    overflow: hidden;
}

.pg-kolom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 48px;
    background: var(--rood);
    opacity: 0.12;
}

.pg-kolom h2 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--rood);
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--grijs-200);
}

.pg-lijst {
    list-style: none;
}

.pg-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--grijs-200);
}

.pg-item:last-child {
    border-bottom: none;
}

.pg-item h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.pg-item p,
.pg-kaart p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--grijs-600);
}

.pg-item a {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--groen);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.pg-item a:hover {
    color: var(--groen-donker);
}

.pg-projecten-grid {
    list-style: none;
    display: grid;
    gap: 20px;
}

.pg-kaart {
    position: relative;
    background: var(--wit);
    border: 1px solid var(--grijs-200);
    padding: 24px 26px;
    overflow: hidden;
}

.pg-kaart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rood) 0%, var(--rood) 40px, transparent 40px);
}

.pg-kaart h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.pg-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rood);
    margin-bottom: 8px;
}

.pg-actie {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.pg-actie p {
    color: var(--grijs-600);
    max-width: 48ch;
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .pg-diensten-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        align-items: stretch;
    }

    .pg-kolom {
        padding: 32px 32px 16px;
    }

    .pg-projecten-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pg-page,
    .pg-page.section {
        padding: 44px 0 72px;
    }

    .pg-kop {
        margin-bottom: 48px;
    }
}

@media (min-width: 1100px) {
    .pg-projecten-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pg-kaart {
        padding: 28px 30px;
    }
}

/* Page hero (subpages) */

.page-hero {
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--grijs-200);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 560px;
    color: var(--grijs-600);
    font-size: 1.05rem;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grijs-400);
    margin-bottom: 4px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--grijs-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rood);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-success {
    background: #e8f5ee;
    border: 1px solid var(--groen);
    color: var(--groen-donker);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

/* Blog */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    border: 1px solid var(--grijs-200);
    border-radius: var(--radius);
    padding: 28px;
    background: var(--wit);
}

.blog-card time {
    font-size: 0.8rem;
    color: var(--grijs-400);
}

.blog-card h3 {
    font-size: 1.1rem;
    margin: 12px 0;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.92rem;
    color: var(--grijs-600);
    margin-bottom: 16px;
}

.blog-card a {
    font-weight: 600;
    color: var(--rood);
    font-size: 0.9rem;
}

/* Footer */

.site-footer {
    background: #1e1e1e;
    color: var(--wit);
    padding-top: 72px;
    border-top: 3px solid var(--rood);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 56px;
}

.footer-block h3,
.footer-block h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    height: 72px;
    width: auto;
    max-width: 280px;
    border-radius: 3px;
}

.footer-block-brand p {
    margin-top: 0;
}

.footer-block p,
.footer-block li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}

.footer-block a:hover {
    color: var(--wit);
}

.footer-block ul li {
    margin-bottom: 6px;
}

.footer-form-link {
    margin-top: 18px;
    margin-bottom: 0;
}

.footer-form-link .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
}

.footer-bottom {
    background: #161616;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive */

@media (max-width: 1024px) {
    .hero-top {
        grid-template-columns: 1fr;
        row-gap: 12px;
        padding-bottom: 56px;
    }

    .hero-desc {
        max-width: min(560px, 100%);
    }

    .hero-frame {
        margin-top: -20px;
    }

    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .home-over-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "content"
            "side";
        gap: 32px;
    }

    .home-over-side {
        padding-top: 0;
    }

    .stats-strip-item {
        border-right: none;
        padding: 0 16px;
    }

    .stats-strip-item:nth-child(odd) {
        border-right: 1px solid var(--grijs-200);
    }

    .werk-grid,
    .werk-grid-omgekeerd {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .werk-grid-omgekeerd {
        margin-top: 48px;
        padding-top: 48px;
    }

    .werk-grid-omgekeerd .werk-beeld,
    .werk-grid-omgekeerd .werk-tekst {
        order: unset;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-reverse .split-image {
        order: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diensten-band-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ond-wat-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ond-wat-kern {
        display: block;
        position: relative;
        margin-bottom: 40px;
    }

    .ond-wat-lead {
        grid-column: auto;
        grid-row: auto;
        border-left: none;
        padding-left: 0;
        margin: 0;
    }

    .ond-wat-inhoud {
        grid-column: auto;
        grid-row: auto;
        padding-left: 0;
    }

    .ond-wat-beeld {
        grid-column: auto;
        grid-row: auto;
        margin-bottom: 28px;
    }

    .ond-proces-stappen {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
    }

    .verkoop-carousel-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .verkoop-carousel-knop {
        display: none;
    }

    .ond-banner-inhoud {
        width: min(52%, 480px);
        margin-right: 24px;
    }

    .ond-split-banner-tekst {
        width: min(50%, 440px);
        margin-left: 24px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 16px;
    }

    .logo-img {
        height: 50px;
        max-width: min(170px, 42vw);
    }

    .footer-logo img {
        height: 58px;
        max-width: 240px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: var(--zwart);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 24px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s, opacity 0.25s;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .btn-contact {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .hero-banner {
        width: calc(100% - 24px);
    }

    .hero-top {
        padding-bottom: 16px;
        row-gap: 14px;
    }

    .hero-title {
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.15;
    }

    .hero-title .hl-red + .anim-slide-r {
        margin-left: 0.2em;
    }

    .hero-title .anim-slide-l + .hl-red {
        margin-left: 0.2em;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 0.8rem;
        line-height: 1.55;
    }

    .hero .anim-slide-r {
        transform: translateX(3.5rem);
    }

    .hero .anim-slide-l {
        transform: translateX(-3.5rem);
    }

    .hero-frame {
        margin-top: 8px;
        padding-top: 0;
        padding-bottom: 32px;
    }

    .hero-frame-buttons {
        left: 50%;
        bottom: 0;
        flex-wrap: wrap;
        gap: 8px;
        max-width: 68%;
        z-index: 7;
    }

    .hero-frame-buttons .btn {
        padding: 10px 14px;
        font-size: 0.72rem;
        border-radius: 0;
        box-shadow: 0 2px 12px rgba(17, 17, 17, 0.15);
    }

    .hero-frame-buttons .btn-outline {
        display: none;
    }

    .hero .hero-frame-buttons.anim-down {
        transform: translate(-50%, calc(50% + 14px));
        animation-name: heroBtnIn;
    }

    .hero.is-ready .hero-frame-buttons.anim-down {
        transform: translate(-50%, 50%);
    }

    .hero-shape-wrap {
        position: relative;
    }

    .hero-shape-body {
        border-radius: 22px;
    }

    .hero-shape-body img {
        height: clamp(280px, 48vh, 360px);
    }

    .hero-corner {
        width: 32%;
        height: 22%;
        gap: 8px;
    }

    .hero-corner-left {
        border-top-right-radius: 32px;
        padding: 12px 10px;
    }

    .hero-corner-right {
        border-top-left-radius: 32px;
        padding: 12px 10px;
    }

    .hero-corner-icon {
        width: 30px;
        height: 30px;
    }

    .hero-corner-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-corner-value {
        font-size: 0.88rem;
    }

    .hero-corner-label {
        font-size: 0.54rem;
    }

    .hero-notch-top {
        top: -2px;
        height: clamp(40px, 11vw, 56px);
        clip-path: polygon(
            0 0,
            100% 0,
            100% 10px,
            calc(50% + clamp(65px, 22vw, 100px)) 10px,
            50% 100%,
            calc(50% - clamp(65px, 22vw, 100px)) 10px,
            0 10px
        );
    }

    .stats-strip {
        padding: 48px 0 64px;
    }

    .stats-strip-corner {
        width: 88px;
        height: 88px;
    }

    .stats-strip-date {
        margin-bottom: 28px;
    }

    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 0;
    }

    .stats-strip-item {
        border-right: none;
        border-bottom: none;
        padding: 0 10px;
    }

    .stats-strip-item:nth-child(odd) {
        border-right: 1px solid var(--grijs-200);
    }

    .stats-strip-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--grijs-200);
        padding-bottom: 28px;
    }

    .stats-strip-icon {
        margin-bottom: 12px;
    }

    .stats-strip-icon svg {
        width: 38px;
        height: 38px;
    }

    .stats-num {
        font-size: clamp(1.55rem, 5.5vw, 2rem);
        margin-bottom: 8px;
    }

    .stats-strip-item p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .werk-beeld img {
        height: 360px;
    }

    .werk-beeld-accent {
        width: 88px;
        height: 88px;
        bottom: -14px;
        left: -14px;
    }

    .werk-grid-omgekeerd .werk-beeld-accent {
        left: -14px;
        right: auto;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }

    .section {
        padding: 64px 0;
    }

    .diensten-band {
        padding: 56px 0 48px;
    }

    .home-over {
        padding: 64px 0;
    }

    .home-over-logo img {
        width: min(100%, 300px);
    }

    .home-over-tagline {
        font-size: 1.15rem;
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .home-over-feiten li {
        padding: 12px 0;
    }

    .diensten-band-titel {
        margin-bottom: 28px;
    }

    .diensten-band-beeld img {
        height: 200px;
    }

    .diensten-band-tekst {
        padding: 20px 20px 24px;
    }

    .pg-actie {
        flex-direction: column;
        align-items: flex-start;
    }

    .diensten-band + .werk-blok {
        padding: 56px 0 64px;
    }

    .werk-grid-omgekeerd {
        margin-top: 40px;
        padding-top: 40px;
    }

    .werk-blok .werk-grid {
        gap: 32px;
    }

    .ond-banner {
        min-height: clamp(420px, 72vh, 520px);
        border-bottom-left-radius: clamp(32px, 8vw, 48px);
    }

    .ond-banner-inhoud {
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: clamp(420px, 72vh, 520px);
        justify-content: flex-end;
        padding: 32px 24px 40px;
    }

    .ond-banner-beeld::after {
        background: linear-gradient(
            to top,
            rgba(17, 17, 17, 0.96) 0%,
            rgba(17, 17, 17, 0.75) 38%,
            rgba(17, 17, 17, 0.25) 68%,
            rgba(17, 17, 17, 0.08) 100%
        );
    }

    .ond-banner-titel {
        max-width: none;
    }

    .ond-banner-kicker {
        display: inline-block;
        align-self: flex-start;
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: #e52430;
        margin-bottom: 16px;
        text-shadow:
            0 1px 1px rgba(0, 0, 0, 0.95),
            0 2px 3px rgba(0, 0, 0, 0.9),
            1px 3px 6px rgba(0, 0, 0, 0.75);
    }

    .page-verkoop .ond-banner-kicker {
        font-weight: 600;
        text-shadow: none;
    }

    .ond-split-banner {
        min-height: clamp(360px, 65vh, 440px);
        border-bottom-right-radius: clamp(32px, 8vw, 48px);
    }

    .ond-split-banner-tekst {
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: clamp(360px, 65vh, 440px);
        justify-content: flex-end;
        padding: 32px 24px 40px;
    }

    .ond-split-banner-beeld::after {
        background: linear-gradient(
            to top,
            rgba(17, 17, 17, 0.96) 0%,
            rgba(17, 17, 17, 0.72) 40%,
            rgba(17, 17, 17, 0.2) 70%,
            rgba(17, 17, 17, 0.06) 100%
        );
    }

    .ond-split-banner {
        margin-top: 48px;
    }

    .ond-wat {
        padding: 56px 0;
    }

    .ond-wat-beeld img {
        min-height: 280px;
    }

    .ond-wat-lead {
        margin-bottom: 32px;
    }

    .ond-proces {
        padding: 48px 0 56px;
    }

    .ond-proces h2 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .ond-proces-blok + .ond-proces-blok {
        margin-top: 32px;
        padding-top: 32px;
    }

    .ond-proces-waarom {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ond-proces-waarom li {
        padding: 0 0 0 14px;
        border-bottom: none;
        font-size: 0.94rem;
        font-weight: 500;
        line-height: 1.5;
    }

    .ond-proces-waarom li::before {
        width: 5px;
        height: 5px;
        top: 0.55em;
        transform: none;
    }

    .ond-proces-stappen {
        grid-template-columns: 1fr;
        gap: 28px;
        border-left: none;
        padding-left: 0;
    }

    .verkoop-catalogus {
        padding: 56px 0 64px;
    }

    .verkoop-slot {
        flex-basis: min(220px, 78vw);
    }

    .ond-proces-stap {
        padding: 0;
    }

    .ond-proces-stap:not(:last-child) {
        border-bottom: none;
    }

    .ond-proces-stap-beeld {
        margin-bottom: 14px;
        width: 100%;
    }

    .ond-proces-stap h3 {
        font-size: 0.98rem;
        margin-bottom: 4px;
    }

    .ond-proces-stap p {
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .ond-faq {
        padding: 56px 0;
    }
}
