/* ============================================================
   STUCMA — Stukadoorsbedrijf Amsterdam
   Brand: #e41f25 (rood) / #161615 (zwart)
   ============================================================ */

:root {
    --rood: #e41f25;
    --rood-donker: #b71820;
    --zwart: #161615;
    --grijs-90: #2a2a29;
    --grijs-60: #6b6b6a;
    --grijs-40: #a8a8a7;
    --grijs-20: #e5e5e4;
    --grijs-10: #f4f4f3;
    --wit: #ffffff;
    --container: 1240px;
    --radius: 2px;
    --shadow-sm: 0 1px 2px rgba(22, 22, 21, 0.06);
    --shadow-md: 0 8px 24px rgba(22, 22, 21, 0.08);
    --shadow-lg: 0 24px 48px rgba(22, 22, 21, 0.12);
    --trans: 220ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--zwart);
    background: var(--wit);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans);
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typografie */
h1, h2, h3, h4, h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--zwart);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--grijs-60); max-width: 65ch; }
p.lead { font-size: 1.15rem; color: var(--grijs-90); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--rood);
    margin-bottom: 18px;
    position: relative;
    padding-left: 38px;
}

.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--rood);
    transform: translateY(-50%);
}

/* Knoppen */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: all var(--trans);
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: var(--rood);
    color: var(--wit);
}

.btn-primary:hover {
    background: var(--rood-donker);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(228, 31, 37, 0.35);
}

.btn-dark {
    background: var(--zwart);
    color: var(--wit);
}

.btn-dark:hover {
    background: var(--grijs-90);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--zwart);
    border: 2px solid var(--zwart);
}

.btn-outline:hover {
    background: var(--zwart);
    color: var(--wit);
}

.btn-outline-light {
    background: transparent;
    color: var(--wit);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: var(--wit);
    color: var(--zwart);
    border-color: var(--wit);
}

.btn .arrow {
    display: inline-block;
    transition: transform var(--trans);
}

.btn:hover .arrow { transform: translateX(4px); }

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

.topbar {
    background: var(--zwart);
    color: var(--grijs-40);
    font-size: 0.82rem;
    padding: 9px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar a {
    color: var(--grijs-40);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar a:hover { color: var(--wit); }

.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }

.icon-sm {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.header {
    position: sticky;
    top: 0;
    background: var(--wit);
    z-index: 100;
    border-bottom: 1px solid var(--grijs-20);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 32px;
}

.logo {
    display: block;
    height: 36px;
}

.logo img { height: 100%; width: auto; }

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

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--zwart);
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--rood);
    transition: width var(--trans);
}

.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }

.nav-list a.active { color: var(--rood); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rood);
    color: var(--wit);
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--trans);
}

.nav-cta:hover {
    background: var(--rood-donker);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--zwart);
    transition: all var(--trans);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--zwart);
    color: var(--wit);
    padding: 96px 0 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(22,22,21,0.72) 0%, rgba(22,22,21,0.4) 60%, rgba(22,22,21,0.15) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-inner > * { max-width: 760px; }

.hero .eyebrow { color: var(--wit); }
.hero .eyebrow::before { background: var(--rood); }

.hero h1 {
    color: var(--wit);
    margin-bottom: 28px;
}

.hero h1 .accent { color: var(--rood); }

.hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-meta {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-meta-item .num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--wit);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-meta-item .num .accent { color: var(--rood); }

.hero-meta-item .label {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hero badge — verborgen, te druk */
.hero-badge { display: none; }

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

section {
    padding: 100px 0;
}

section.tight { padding: 70px 0; }
section.bg-grijs { background: var(--grijs-10); }
section.bg-zwart { background: var(--zwart); color: var(--wit); }
section.bg-zwart h2 { color: var(--wit); }
section.bg-zwart p { color: rgba(255,255,255,0.75); }

.section-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-head.left {
    margin-left: 0;
    text-align: left;
}

.section-head h2 { margin-bottom: 20px; }
.section-head:not(.left) p { margin-left: auto; margin-right: auto; }

.section-head .eyebrow { margin-left: 0; }
.section-head:not(.left) .eyebrow { margin-left: auto; margin-right: auto; padding-right: 38px; }
.section-head:not(.left) .eyebrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--rood);
    transform: translateY(-50%);
}

/* ============================================================
   USP / HIGHLIGHTS
   ============================================================ */

.usps { padding-top: 80px; }

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    background: var(--wit);
    box-shadow: var(--shadow-md);
    margin-top: 60px;
}

.highlight {
    padding: 38px 32px;
    border-right: 1px solid var(--grijs-20);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight:last-child { border-right: none; }

.highlight-icon {
    width: 44px;
    height: 44px;
    color: var(--rood);
}

.highlight h4 { font-size: 1.05rem; margin-bottom: 4px; }
.highlight p { color: var(--grijs-60); font-size: 0.92rem; margin: 0; }

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

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dienst-card {
    background: var(--wit);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--grijs-20);
}

.dienst-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.dienst-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.dienst-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.dienst-card:hover .dienst-img img { transform: scale(1.07); }

.dienst-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,22,21,0.4), transparent 50%);
}

.dienst-num {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--rood);
    color: var(--wit);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.dienst-body {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dienst-body h3 { margin-bottom: 14px; }
.dienst-body p { margin-bottom: 24px; flex-grow: 1; }

.dienst-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rood);
    font-weight: 600;
    font-size: 0.92rem;
    align-self: flex-start;
}

.dienst-link .arrow { transition: transform var(--trans); }
.dienst-link:hover .arrow { transform: translateX(4px); }

/* ============================================================
   DETAIL DIENSTEN PAGE
   ============================================================ */

.dienst-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.dienst-detail:nth-child(even) .dienst-detail-img { order: 2; }
.dienst-detail:last-child { margin-bottom: 0; }

.dienst-detail-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.dienst-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dienst-detail-img .label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--rood);
    color: var(--wit);
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dienst-detail-content h2 { margin-bottom: 24px; }
.dienst-detail-content > p { margin-bottom: 28px; }

.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    position: relative;
    padding: 14px 0 14px 36px;
    border-bottom: 1px solid var(--grijs-20);
    color: var(--grijs-90);
    font-weight: 500;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-color: var(--rood);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>") center/14px no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>") center/14px no-repeat;
    border-radius: 50%;
}

/* ============================================================
   GROOT BEELDBLOK MET CTA
   ============================================================ */

.cta-banner {
    position: relative;
    padding: 120px 0;
    color: var(--wit);
    text-align: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22,22,21,0.70) 0%, rgba(22,22,21,0.45) 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h2 { color: var(--wit); margin-bottom: 24px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0 auto 36px; }

/* ============================================================
   PROJECTEN GALLERY
   ============================================================ */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--grijs-20);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(22,22,21,0);
    transition: background var(--trans);
}

.gallery-item:hover::after { background: rgba(22,22,21,0.3); }

.gallery-item .zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    background: var(--rood);
    color: var(--wit);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--trans);
    z-index: 2;
}

.gallery-item:hover .zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.gallery-item.tall { aspect-ratio: 1/2; grid-row: span 2; }
.gallery-item.wide { aspect-ratio: 2/1; grid-column: span 2; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(22,22,21,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--rood);
    color: var(--wit);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    color: var(--wit);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background var(--trans);
}

.lightbox-nav:hover { background: var(--rood); border-color: var(--rood); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--wit);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

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

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-stack {
    position: relative;
    aspect-ratio: 4/5;
}

.about-img-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-stack .badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--rood);
    color: var(--wit);
    padding: 28px 32px;
    text-align: center;
}

.about-img-stack .badge .big {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-img-stack .badge .small {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
    opacity: 0.9;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.value-card {
    padding: 32px;
    border-left: 3px solid var(--rood);
    background: var(--grijs-10);
}

.value-card h4 { margin-bottom: 12px; }
.value-card p { font-size: 0.93rem; margin: 0; }

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info-card {
    background: var(--zwart);
    color: var(--wit);
    padding: 48px 40px;
}

.contact-info-card h3 { color: var(--wit); margin-bottom: 28px; font-size: 1.4rem; }

.contact-info-card .item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info-card .item:last-child { border-bottom: none; }
.contact-info-card .item:first-child { padding-top: 0; }

.contact-info-card .item-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--rood);
    color: var(--rood);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card .item-text {
    flex-grow: 1;
}

.contact-info-card .item-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rood);
    margin-bottom: 6px;
}

.contact-info-card .item-value {
    color: var(--wit);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.4;
}

.contact-info-card .item-value a:hover { color: var(--rood); }

.contact-form {
    background: var(--wit);
    padding: 48px 40px;
    border: 1px solid var(--grijs-20);
}

.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { margin-bottom: 32px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field { margin-bottom: 20px; }

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--zwart);
}

.form-field label .req { color: var(--rood); }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    font: inherit;
    font-size: 0.95rem;
    border: 1px solid var(--grijs-20);
    background: var(--wit);
    color: var(--zwart);
    transition: all var(--trans);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--rood);
    box-shadow: 0 0 0 3px rgba(228, 31, 37, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-check input { margin-top: 4px; }
.form-check label { font-size: 0.88rem; color: var(--grijs-60); font-weight: 400; }

.form-msg {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.92rem;
    display: none;
}

.form-msg.success { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; display: block; }
.form-msg.error { background: #ffebee; color: #b71c1c; border: 1px solid #ffcdd2; display: block; }

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--rood);
    color: var(--wit);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    transition: all var(--trans);
}

.btn-submit:hover { background: var(--rood-donker); transform: translateY(-2px); }

/* Map */
.map-wrap {
    margin-top: 0;
    aspect-ratio: 16/6;
    width: 100%;
    background: var(--grijs-10);
}

.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   PROJECT FILTER
   ============================================================ */

.project-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.project-filter button {
    padding: 12px 24px;
    background: var(--grijs-10);
    color: var(--grijs-60);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--trans);
}

.project-filter button:hover { background: var(--grijs-20); color: var(--zwart); }
.project-filter button.active { background: var(--zwart); color: var(--wit); }

/* ============================================================
   PAGE HEADER (subpaginas)
   ============================================================ */

.page-header {
    background: var(--zwart);
    color: var(--wit);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(22,22,21,0.85) 0%, rgba(22,22,21,0.65) 50%, rgba(22,22,21,0.35) 100%);
}

.page-header-inner {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--wit);
    margin-bottom: 16px;
}

.page-header h1 .accent { color: var(--rood); }

.breadcrumbs {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}

.breadcrumbs a:hover { color: var(--rood); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); }

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

.footer {
    background: var(--zwart);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--wit);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-logo {
    height: 40px;
    margin-bottom: 24px;
}

.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.93rem; line-height: 1.7; }

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.55);
    font-size: 0.93rem;
    transition: all var(--trans);
}

.footer-col ul a:hover { color: var(--rood); padding-left: 6px; }

.footer-contact-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.55);
    font-size: 0.93rem;
    line-height: 1.5;
}

.footer-contact-line .icon-sm { color: var(--rood); margin-top: 3px; flex-shrink: 0; }
.footer-contact-line a:hover { color: var(--wit); }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom a:hover { color: var(--wit); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .diensten-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-split, .dienst-detail, .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }
    .container { padding: 0 20px; }

    .topbar { display: none; }

    .header-inner.container { padding-top: 14px; padding-bottom: 14px; }
    .logo { height: 56px; }

    .nav {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--wit);
        flex-direction: column;
        padding: 32px 24px;
        gap: 0;
        transform: translateY(calc(-100% - 100px));
        transition: transform var(--trans), visibility 0s var(--trans);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--grijs-20);
        z-index: 99;
        visibility: hidden;
    }

    .nav.open {
        visibility: visible;
        transition: transform var(--trans), visibility 0s;
    }

    .nav.open { transform: translateY(0); }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 24px;
    }

    .nav-list a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--grijs-20);
        font-size: 1.05rem;
    }

    .nav-list a::after { display: none; }
    .nav-cta { width: 100%; justify-content: center; padding: 16px; }
    .mobile-toggle { display: flex; }

    .hero { min-height: auto; padding: 48px 0 56px; display: block; }
    .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); margin-bottom: 20px; }
    .hero h1 br { display: none; }
    .hero p { font-size: 0.98rem; margin-bottom: 28px; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 40px; }
    .hero-buttons .btn { justify-content: center; padding: 15px 22px; }
    .hero-meta { gap: 22px; padding-top: 28px; }
    .hero-meta-item .num { font-size: 1.5rem; }
    .hero-meta-item .label { font-size: 0.72rem; }
    .hero-badge { display: none; }

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

    .review-grid { grid-template-columns: 1fr; gap: 20px; }
    .reviews-summary { gap: 18px; padding: 22px 24px; }
    .reviews-score { padding-right: 0; border-right: none; padding-bottom: 18px; border-bottom: 1px solid var(--grijs-20); width: 100%; }
    .reviews-info { text-align: center; width: 100%; }

    .faq-question { font-size: 1rem; padding: 22px 0; }
    .faq-answer { padding-bottom: 22px; }

    .dienst-detail { grid-template-columns: 1fr; gap: 32px; margin-bottom: 80px; }
    .dienst-detail:nth-child(even) .dienst-detail-img { order: 0; }
    .dienst-detail-img { aspect-ratio: 4/3; }

    .about-split { grid-template-columns: 1fr; gap: 48px; }
    .about-img-stack .badge { bottom: -16px; right: 16px; padding: 16px 22px; }
    .about-img-stack .badge .big { font-size: 2rem; }
    .about-img-stack .badge .small { font-size: 0.7rem; letter-spacing: 0.1em; }

    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-info-card, .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: auto; aspect-ratio: 1; }

    section { padding: 56px 0; }
    section.tight { padding: 40px 0; }
    section.usps { padding-top: 0; }
    .section-head { margin-bottom: 40px; }

    .highlights { margin-top: 24px; }

    .highlights { grid-template-columns: 1fr 1fr; }
    .highlight { border-right: none; border-bottom: 1px solid var(--grijs-20); padding: 28px 20px; }
    .highlight:nth-child(odd) { border-right: 1px solid var(--grijs-20); }
    .highlight:nth-last-child(-n+2) { border-bottom: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer { padding: 60px 0 0; }

    .page-header { padding: 70px 0 60px; }

    .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-nav.prev { left: 8px; }
    .lightbox-nav.next { right: 8px; }
}

@media (max-width: 480px) {
    .highlights { grid-template-columns: 1fr; }
    .highlight { border-right: none !important; border-bottom: 1px solid var(--grijs-20); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 2; }
    .cta-banner { padding: 60px 0; }
    .cta-banner h2 { font-size: 1.7rem; }
    .cta-banner p { font-size: 0.95rem; margin-bottom: 28px; }

    .container { padding: 0 16px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .page-header { padding: 56px 0 48px; }
    .page-header h1 { font-size: 1.85rem; }
}

/* ============================================================
   ANIMATIES
   ============================================================ */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   WERKGEBIED (cities grid)
   ============================================================ */

.werkgebied {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--grijs-20);
    border-left: 1px solid var(--grijs-20);
}

.werkgebied-item {
    padding: 22px 24px;
    border-right: 1px solid var(--grijs-20);
    border-bottom: 1px solid var(--grijs-20);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--zwart);
    font-weight: 500;
    font-size: 0.94rem;
    background: var(--wit);
    transition: all var(--trans);
}

.werkgebied-item:hover {
    background: var(--grijs-10);
    padding-left: 28px;
}

.werkgebied-item svg { color: var(--rood); flex-shrink: 0; }

.werkgebied-cta {
    text-align: center;
    margin: 36px auto 0;
    font-size: 0.95rem;
    color: var(--grijs-60);
}

.werkgebied-cta strong { color: var(--zwart); }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 32px auto 56px;
    padding: 28px 40px;
    background: var(--wit);
    border: 1px solid var(--grijs-20);
    flex-wrap: wrap;
    max-width: 760px;
}

.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-right: 32px;
    border-right: 1px solid var(--grijs-20);
}

.reviews-score .num {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--zwart);
    line-height: 1;
}

.reviews-score .num .total { color: var(--grijs-40); font-weight: 500; }

.reviews-stars {
    display: flex;
    gap: 3px;
    color: #fbb800;
}

.reviews-info { text-align: left; }
.reviews-info p { margin: 0; font-size: 0.92rem; }
.reviews-info strong { display: block; font-size: 0.95rem; color: var(--zwart); }

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--wit);
    padding: 36px 32px;
    border-top: 3px solid var(--rood);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card .stars {
    display: flex;
    gap: 3px;
    color: #fbb800;
}

.review-card blockquote {
    font-style: normal;
    color: var(--zwart);
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 500;
    flex-grow: 1;
}

.review-card blockquote::before { content: "\201C"; color: var(--rood); font-size: 2.4rem; line-height: 0; vertical-align: -0.4em; font-weight: 700; margin-right: 4px; }

.review-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--grijs-20);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--zwart);
    color: var(--wit);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.review-author { font-weight: 600; color: var(--zwart); font-size: 0.92rem; }
.review-loc { font-size: 0.82rem; color: var(--grijs-60); }

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

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--grijs-20);
}

.faq-item:first-child { border-top: 1px solid var(--grijs-20); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 26px 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--zwart);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: color var(--trans);
}

.faq-question:hover { color: var(--rood); }

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1.5px solid var(--grijs-20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans);
}

.faq-item[open] .faq-icon {
    background: var(--rood);
    border-color: var(--rood);
    color: var(--wit);
    transform: rotate(45deg);
}

.faq-icon svg { transition: transform var(--trans); }

.faq-answer {
    padding: 0 0 28px;
    color: var(--grijs-60);
    line-height: 1.7;
    max-width: 700px;
}

.faq-question::-webkit-details-marker,
.faq-question::marker { display: none; content: ''; }

/* ============================================================
   FLOATING WHATSAPP + BEL BUTTONS
   ============================================================ */

.float-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wit);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    transition: transform var(--trans), box-shadow var(--trans);
    position: relative;
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.float-whatsapp {
    background: #25D366;
    animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

.float-bel { background: var(--rood); }

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wit);
    box-shadow: 0 -2px 16px rgba(22,22,21,0.12);
    z-index: 91;
    padding: 8px;
    gap: 6px;
    border-top: 1px solid var(--grijs-20);
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--zwart);
    background: var(--grijs-10);
    text-align: center;
    line-height: 1.2;
    border-radius: var(--radius);
    transition: all var(--trans);
}

.mobile-bar-btn:active { transform: scale(0.96); }
.mobile-bar-btn.whatsapp { background: #25D366; color: var(--wit); }
.mobile-bar-btn.primary { background: var(--rood); color: var(--wit); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: var(--zwart);
    color: var(--wit);
    padding: 22px 26px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    z-index: 95;
    transform: translateY(calc(100% + 40px));
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 720px;
    margin: 0 auto;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
}

.cookie-text strong { color: var(--wit); font-size: 0.95rem; }
.cookie-text span { color: rgba(255,255,255,0.7); line-height: 1.5; }
.cookie-text a { color: var(--rood); text-decoration: underline; text-underline-offset: 3px; }
.cookie-text a:hover { color: var(--wit); }

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 11px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: all var(--trans);
}

.cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-decline:hover { color: var(--wit); border-color: rgba(255,255,255,0.4); }

.cookie-accept {
    background: var(--rood);
    color: var(--wit);
}

.cookie-accept:hover { background: var(--rood-donker); }

/* ============================================================
   RESPONSIVE OVERRIDES VOOR NIEUWE COMPONENTS
   ============================================================ */

@media (max-width: 768px) {
    body { padding-bottom: 64px; }

    .mobile-bar { display: flex; }

    .float-actions {
        right: 16px;
        bottom: 76px;
        flex-direction: column-reverse;
    }

    .float-btn { width: 50px; height: 50px; }
    .float-whatsapp svg { width: 22px; height: 22px; }
    .float-bel { display: none; }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 76px;
        padding: 18px 20px;
    }

    .cookie-inner { gap: 14px; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; padding: 12px; }
}

/* Print */
@media print {
    .header, .footer, .nav, .topbar, .hero-badge, .float-actions, .mobile-bar, .cookie-banner { display: none; }
    .hero { min-height: auto; padding: 40px 0; }
}
