:root {
    --cream: #fbf8f2;
    --paper: #fffdf9;
    --stone: #eee5da;
    --stone-2: #e2d5c6;
    --sand: #c7ad8f;
    --amber: #d9962e;
    --amber-2: #f0b24a;
    --amber-soft: rgba(217, 150, 46, .12);
    --ink: #24231f;
    --muted: #706c64;
    --line: rgba(36, 35, 31, .12);
    --dark: #171714;
    --dark-2: #24221e;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(34, 28, 20, .12);
    --shadow-soft: 0 18px 45px rgba(34, 28, 20, .08);
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1340px;
    --font-main: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ink);
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.06;
}

p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--amber); }
img { max-width: 100%; display: block; }
::selection { background: var(--amber); color: #fff; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }

.container-wide {
    max-width: var(--container);
    padding-left: clamp(1.25rem, 4vw, 4rem);
    padding-right: clamp(1.25rem, 4vw, 4rem);
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -4rem;
    z-index: 9999;
    padding: .75rem 1rem;
    background: var(--dark);
    color: #fff;
    border-radius: 999px;
}
.skip-link:focus { top: 1rem; color: #fff; }

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-soft { background: linear-gradient(180deg, #f9f4ed 0%, #fffdf9 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pattern-soft {
    position: relative;
    overflow: hidden;
}
.pattern-soft::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        radial-gradient(circle at 12% 10%, rgba(217,150,46,.08), transparent 30%),
        repeating-radial-gradient(circle at 0 0, transparent 0 22px, rgba(36,35,31,.055) 23px, transparent 24px);
    background-size: auto, 520px 520px;
}
.pattern-soft > * { position: relative; z-index: 1; }

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .75rem;
    color: var(--amber);
    font-family: var(--font-main);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}
.section-kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
}

.section-head { margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.55rem); max-width: 780px; margin: 0; }
.section-head--row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    color: var(--ink);
    font-weight: 700;
    font-size: .95rem;
}
.text-link i { transition: transform .2s ease; color: var(--amber); }
.text-link:hover i { transform: translateX(5px); }

.btn {
    border-radius: 0;
    font-weight: 800;
    letter-spacing: -.01em;
    padding: .92rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-height: 50px;
}
.btn-amber {
    background: linear-gradient(135deg, var(--amber), var(--amber-2));
    border: 1px solid rgba(255,255,255,.2);
    color: #fff !important;
    box-shadow: 0 16px 40px rgba(217,150,46,.26);
}
.btn-amber:hover { filter: brightness(1.04); transform: translateY(-1px); }
.btn-outline-hero {
    border: 1px solid rgba(255,255,255,.45);
    color: #fff !important;
    background: rgba(255,255,255,.06);
}
.btn-outline-hero:hover { border-color: var(--amber); background: rgba(217,150,46,.12); }
.btn-dark-min {
    background: var(--dark);
    color: #fff !important;
    border: 1px solid var(--dark);
    box-shadow: 0 20px 50px rgba(0,0,0,.16);
}
.btn-dark-min:hover { background: #000; }
.btn-light-ghost {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
}
.btn-light-ghost:hover { border-color: var(--amber); }

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header .navbar { padding: 1.7rem 0; }
.site-header.is-scrolled {
    position: fixed;
    background: rgba(251,248,242,.93);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(34, 28, 20, .07);
}
.site-header--overlay.is-scrolled .brand__name,
.site-header--overlay.is-scrolled .nav-link,
.site-header--overlay.is-scrolled .navbar-toggler { color: var(--ink); }
.site-header--overlay.is-scrolled .brand__tagline { color: var(--muted); }
.site-header--overlay .brand__name,
.site-header--overlay .brand__tagline,
.site-header--overlay .nav-link { color: #fff; }
.site-header--light .brand__name,
.site-header--light .nav-link { color: var(--ink); }
.site-header--light .brand__tagline { color: var(--muted); }

.brand { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; min-width: 142px; }
.brand__name {
    font-family: var(--font-main);
    font-size: 2rem;
    letter-spacing: -.07em;
    color: var(--ink);
}
.brand__name span { color: var(--amber); }
.brand__tagline {
    margin-top: .35rem;
    color: var(--muted);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.navbar-nav { gap: .75rem; }
.nav-link {
    position: relative;
    color: var(--ink);
    font-size: .92rem;
    font-weight: 800;
    padding: .65rem .55rem !important;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: .55rem;
    right: .55rem;
    bottom: .25rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--amber);
    transition: transform .2s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .6rem;
    min-width: 260px;
    box-shadow: var(--shadow-soft);
    background: rgba(255,253,249,.98);
}
.dropdown-item {
    border-radius: 10px;
    color: var(--ink);
    font-weight: 700;
    padding: .72rem .85rem;
}
.dropdown-item:hover { background: var(--amber-soft); color: var(--ink); }
.navbar-toggler { border: 0; color: var(--ink); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 28px;
    height: 2px;
    background: currentColor;
    display: block;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: currentColor;
}
.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

/* Home hero */
.home-hero {
    min-height: 100vh;
    height: min(980px, 100vh);
    position: relative;
    overflow: hidden;
    background: var(--dark);
}
.home-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.home-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(35,28,23,.92) 0%, rgba(55,43,35,.78) 41%, rgba(55,43,35,.14) 52%, rgba(0,0,0,.03) 100%),
        linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,0) 40%);
}
.home-hero__content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: min(680px, 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    color: #fff;
}
.home-hero h1 {
    margin: 0 0 .5rem;
    color: #fff;
    font-size: clamp(3.6rem, 7vw, 7.25rem);
}
.hero-subtitle {
    margin: 0 0 1.2rem;
    color: rgba(255,255,255,.86);
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 4.15rem);
    line-height: 1.08;
    letter-spacing: -.045em;
    max-width: 650px;
}
.hero-text {
    color: rgba(255,255,255,.76);
    max-width: 575px;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-note { color: rgba(255,255,255,.78); font-size: .94rem; display: flex; align-items: center; gap: .6rem; }
.belgian-dot { width: 18px; height: 18px; border-radius: 50%; display: inline-block; background: linear-gradient(90deg, #101010 0 33%, #ffd500 33% 66%, #ef3340 66%); box-shadow: 0 0 0 2px rgba(255,255,255,.14); }
.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .9s ease;
}
.home-hero__slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.home-hero__slide.active .home-hero__image {
    transform: scale(1.055);
    transition: transform 7.5s ease-out;
}
.hero-slider__controls {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: clamp(1.2rem, 4vh, 2.4rem);
    width: min(880px, calc(100% - 2rem));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: .8rem;
    color: #fff;
}
.hero-slider__button {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    background: rgba(23,23,20,.34);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 36px rgba(0,0,0,.16);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-slider__button:hover {
    background: var(--amber);
    border-color: var(--amber);
    transform: translateY(-2px);
}
.hero-slider__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    min-width: 0;
}
.hero-slider__thumb {
    position: relative;
    overflow: hidden;
    min-height: 82px;
    padding: .45rem .65rem .45rem .45rem;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 12px;
    background: rgba(23,23,20,.36);
    color: rgba(255,255,255,.76);
    backdrop-filter: blur(18px);
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: .72rem;
    align-items: center;
    text-align: left;
    box-shadow: 0 18px 46px rgba(0,0,0,.18);
    transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.hero-slider__thumb:hover,
.hero-slider__thumb.active {
    transform: translateY(-3px);
    color: #fff;
    border-color: rgba(240,178,74,.86);
    background: rgba(23,23,20,.58);
}
.hero-slider__thumb-image {
    display: block;
    width: 88px;
    height: 58px;
    border-radius: 8px;
    background-image: var(--thumb-image);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
.hero-slider__thumb-copy {
    display: grid;
    gap: .1rem;
    min-width: 0;
}
.hero-slider__thumb-copy span {
    color: var(--amber-2);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
}
.hero-slider__thumb-copy strong {
    display: block;
    overflow: hidden;
    color: currentColor;
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .06em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero-slider__thumb-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255,255,255,.14);
}
.hero-slider__thumb-progress::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, var(--amber), var(--amber-2));
}
.hero-slider.is-playing .hero-slider__thumb.active .hero-slider__thumb-progress::after {
    animation: heroThumbProgress 7s linear forwards;
}
@keyframes heroThumbProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Home services */
.section-services { background: var(--paper); border-bottom: 1px solid var(--line); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.service-card {
    min-height: 255px;
    padding: 1.65rem 1.35rem;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(34,28,20,.045);
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217,150,46,.36);
    background: #fff;
    box-shadow: var(--shadow-soft);
    color: var(--ink);
}
.service-card__icon {
    color: var(--amber);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1;
}
.service-card h3 {
    margin: 0 0 .75rem;
    font-family: var(--font-main);
    font-size: 1.28rem;
}
.service-card p { margin: 0; font-size: .92rem; color: var(--muted); }
.service-card__arrow { margin-top: auto; color: var(--amber); font-size: 1.15rem; }

/* Why */
.section-why {
    position: relative;
    background: linear-gradient(90deg, #fbf6ef 0%, #fffdf9 50%, #f8f0e8 100%);
    overflow: hidden;
}
.section-why::after {
    content: "";
    position: absolute;
    right: -14%;
    bottom: -40%;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(217,150,46,.18);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(217,150,46,.035), 0 0 0 100px rgba(217,150,46,.025);
}
.section-why h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; position: relative; z-index: 1; }
.usp-item { padding: 2rem 1.3rem; text-align: center; }
.usp-item span {
    width: 88px; height: 88px; border-radius: 50%; background: rgba(255,255,255,.7); border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--amber); font-size: 2.25rem; margin-bottom: 1.25rem; box-shadow: 0 16px 45px rgba(34,28,20,.06);
}
.usp-item h3 { font-size: 1.2rem; margin: 0 0 .55rem; }
.usp-item p { margin: 0; font-size: .92rem; }

/* Projects */
.section-projects { background: #fff; }
.project-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.project-card { position: relative; border-radius: 12px; overflow: hidden; min-height: 225px; box-shadow: var(--shadow-soft); background: var(--dark); }
.project-card img { width: 100%; height: 100%; min-height: 225px; object-fit: cover; transition: transform .35s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card__overlay {
    position: absolute; inset: auto 0 0; min-height: 100px; padding: 1.1rem 1.2rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,0));
}
.project-card__overlay h3 { color: #fff; margin: 0 0 .2rem; font-size: 1.18rem; }
.project-card__overlay p { margin: 0; color: rgba(255,255,255,.78); font-size: .85rem; }
.project-card__overlay i { color: #fff; opacity: .85; }

/* Bridge */
.section-bridge { background: #f8f0e8; padding: 0; }
.bridge-card {
    transform: translateY(0);
    background: rgba(255,253,249,.88);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 20px 55px rgba(34,28,20,.06);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
}
.bridge-icon { width: 74px; height: 74px; border-radius: 50%; background: #fff; color: var(--amber); display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow-soft); }
.bridge-card h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.bridge-card .section-kicker { margin-bottom: .35rem; }

/* Testimonials */
.section-testimonials { background: var(--paper); padding-top: 3.6rem; padding-bottom: 3.6rem; }
.testimonials-grid { display: grid; grid-template-columns: .28fr 1fr 1fr 1fr 1.15fr; gap: 2rem; align-items: center; }
.quote-mark { font-family: var(--font-main); font-size: 8rem; line-height: .7; color: rgba(217,150,46,.45); }
blockquote { margin: 0; padding-right: 1.4rem; border-right: 1px solid var(--line); }
blockquote p { margin: 0 0 .75rem; color: var(--ink); font-size: .95rem; }
blockquote cite { color: var(--muted); font-style: normal; font-weight: 700; font-size: .86rem; }
.trust-badge { border: 1px solid var(--line); border-radius: 14px; padding: 1.35rem; display: grid; grid-template-columns: auto 1fr; gap: .2rem 1rem; align-items: center; background: rgba(255,255,255,.7); }
.trust-badge i { grid-row: 1 / span 2; color: var(--amber); font-size: 2.5rem; }
.trust-badge strong { color: var(--ink); }
.trust-badge span { color: var(--muted); font-size: .9rem; }

/* Page hero */
.page-hero { padding: 10rem 0 5.5rem; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 6.4rem); max-width: 1050px; margin: 0; }
.page-intro { font-size: 1.12rem; color: var(--muted); margin: 0; }
.breadcrumb-mini { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin-bottom: 2rem; color: rgba(36,35,31,.56); font-size: .86rem; }
.breadcrumb-mini a:hover { color: var(--amber); }
.breadcrumb-mini i { font-size: .7rem; color: var(--amber); }
.page-hero--split .rounded-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 3; }

/* Services index */
.service-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.service-wide { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding: 2rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 12px 38px rgba(34,28,20,.045); transition: transform .22s ease, box-shadow .22s ease; }
.service-wide:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-wide__icon { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--amber-soft); color: var(--amber); font-size: 1.8rem; }
.service-wide h2 { margin: 0 0 .55rem; font-size: 1.8rem; }
.service-wide p { margin-bottom: 1rem; }
.mini-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mini-process > div { padding: 1.6rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.7); }
.mini-process span { color: var(--amber); font-weight: 900; letter-spacing: .12em; }
.mini-process h3 { font-size: 1.35rem; margin: .6rem 0; }

/* Service detail */
.service-hero { padding: 9.6rem 0 0; background: linear-gradient(90deg, #fffdf9 0%, #fffdf9 50%, #d8c1a8 50%, #d8c1a8 100%); }
.service-hero__grid { display: grid; grid-template-columns: 1fr 1.05fr; min-height: 620px; align-items: stretch; }
.service-hero__copy { padding: clamp(2rem, 5vw, 5.5rem) clamp(1rem, 4vw, 5rem) clamp(3rem, 5vw, 5.5rem) 0; display: flex; flex-direction: column; justify-content: center; }
.service-hero__copy h1 { font-size: clamp(3rem, 5.7vw, 6.4rem); margin: 0 0 1.4rem; }
.service-hero__copy p { font-size: 1.08rem; max-width: 570px; margin-bottom: 2rem; }
.service-hero__media { margin-right: calc(clamp(1.25rem, 4vw, 4rem) * -1); border-radius: 0 0 0 38px; overflow: hidden; box-shadow: -30px 30px 70px rgba(34,28,20,.16); }
.service-hero__media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.service-detail-grid { display: grid; grid-template-columns: .86fr 1.2fr; gap: clamp(3rem, 6vw, 7rem); align-items: center; }
.service-copy-stack { display: grid; gap: 2.8rem; }
.service-text-block { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; padding-bottom: 2.8rem; border-bottom: 1px solid var(--line); }
.service-text-block:last-child { border-bottom: 0; padding-bottom: 0; }
.round-icon { width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); color: var(--amber); font-size: 2rem; box-shadow: var(--shadow-soft); }
.service-text-block h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); margin: 0 0 1rem; }
.service-photo-stack { display: grid; gap: 1.2rem; }
.service-photo-stack img { width: 100%; aspect-ratio: 16 / 6.7; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.service-cta { background: var(--cream); }
.bridge-card--service { grid-template-columns: 1fr 1.1fr auto; }
.bridge-card--service h2 { max-width: 500px; }
.bridge-micro { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; color: var(--muted); font-size: .9rem; }
.bridge-micro span { display: flex; flex-direction: column; gap: .4rem; padding-inline: 1rem; border-left: 1px solid var(--line); }
.bridge-micro i { color: var(--amber); font-size: 1.5rem; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step-card { position: relative; min-height: 185px; padding: 1.55rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.7); }
.step-card__number { color: var(--amber); font-weight: 900; letter-spacing: .12em; font-size: .86rem; }
.step-card i { display: block; margin: .9rem 0 .7rem; color: var(--amber); font-size: 1.75rem; }
.step-card h3 { font-size: 1.35rem; margin: 0 0 .45rem; }
.step-card p { margin: 0; font-size: .9rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { padding: 1.7rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; display: grid; min-height: 210px; transition: transform .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); color: var(--ink); }
.related-card span { color: var(--amber); font-size: 1.8rem; }
.related-card h3 { font-size: 1.55rem; margin: .6rem 0; }
.related-card p { font-size: .9rem; margin-bottom: 1rem; }
.related-card > i { color: var(--amber); align-self: end; }

/* Realisaties */
.filter-bar { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2rem; }
.filter-bar button { border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 800; padding: .8rem 1.1rem; border-radius: 999px; }
.filter-bar button.active, .filter-bar button:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.realisatie-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.realisatie-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); transition: opacity .2s ease, transform .2s ease; }
.realisatie-card.is-hidden { display: none; }
.realisatie-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.realisatie-card__body { padding: 1.5rem; }
.realisatie-card__body span { color: var(--amber); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.realisatie-card__body h2 { margin: .45rem 0 .65rem; font-size: 2rem; }
.realisatie-card__body p { margin: 0; }

/* Over/contact/legal */
.large-copy { font-family: var(--font-main); color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.18; letter-spacing: -.04em; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-card { padding: 2rem; background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 16px; }
.value-card i { color: var(--amber); font-size: 2rem; }
.value-card h3 { margin: 1.2rem 0 .7rem; font-size: 1.5rem; }
.contact-panel { background: var(--dark); color: #fff; padding: 2rem; border-radius: 20px; position: sticky; top: 100px; overflow: hidden; }
.contact-panel::after { content: ""; position: absolute; inset: auto -30% -40% auto; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(217,150,46,.22); box-shadow: 0 0 0 60px rgba(217,150,46,.04); }
.contact-panel h2 { color: #fff; font-size: 3rem; }
.contact-panel p { color: rgba(255,255,255,.72); }
.contact-list { display: grid; gap: .75rem; margin-top: 2rem; position: relative; z-index: 1; }
.contact-list a, .contact-list div { display: grid; grid-template-columns: 42px 1fr; align-items: center; color: #fff; }
.contact-list i { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; color: var(--amber); }
.contact-form { padding: clamp(1.5rem, 4vw, 3rem); background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-soft); }
.contact-form label { font-weight: 800; margin-bottom: .5rem; color: var(--ink); }
.form-control, .form-select { border-radius: 0; border: 0; border-bottom: 1px solid var(--line); padding: .9rem .1rem; background: transparent; }
.form-control:focus, .form-select:focus { border-color: var(--amber); box-shadow: none; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.content-narrow { max-width: 820px; }
.legal-content h2 { margin-top: 2rem; font-size: 2rem; }
.legal-content h2:first-child { margin-top: 0; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,.76); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: repeating-radial-gradient(circle at 0 100%, transparent 0 34px, rgba(255,255,255,.16) 35px, transparent 36px); background-size: 680px 680px; }
.footer-cta, .footer-main, .footer-bottom { position: relative; z-index: 1; }
.footer-cta { border-bottom: 1px solid rgba(255,255,255,.1); padding: 3rem 0; }
.footer-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-cta h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 4rem); margin: 0; }
.footer-main { padding: 4.5rem 0; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__tagline { color: rgba(255,255,255,.55); }
.footer-intro { color: rgba(255,255,255,.66); margin-top: 1.2rem; max-width: 320px; }
.socials { display: flex; gap: .7rem; margin-top: 1.3rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.16); color: #fff; }
.socials a:hover { border-color: var(--amber); color: var(--amber); }
.site-footer h3 { color: #fff; font-family: var(--font-main); font-size: .85rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--amber); }
.footer-small, .site-footer address { color: rgba(255,255,255,.62); font-style: normal; }
.footer-link { color: var(--amber) !important; font-weight: 800; display: inline-flex; align-items: center; gap: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; font-size: .86rem; color: rgba(255,255,255,.56); }
.footer-bottom p { color: rgba(255,255,255,.56); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.zichtbaar { opacity: 1; transform: none; }

@media (max-width: 1199.98px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .project-row, .usp-grid, .steps-row, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .quote-mark { display: none; }
    .trust-badge { grid-column: span 2; }
    .bridge-card, .bridge-card--service { grid-template-columns: 1fr; }
    .bridge-micro { grid-template-columns: 1fr 1fr 1fr; }
    .service-hero { background: var(--paper); }
    .service-hero__grid { grid-template-columns: 1fr; }
    .service-hero__copy { padding-right: 0; }
    .service-hero__media { margin-right: 0; border-radius: 24px; }
    .service-hero__media img { min-height: 420px; }
}

@media (max-width: 991.98px) {
    .site-header .navbar { padding: 1rem 0; }
    .site-header,
    .site-header.is-scrolled { position: fixed; background: rgba(251,248,242,.96); backdrop-filter: blur(18px); box-shadow: 0 14px 40px rgba(34, 28, 20, .07); }
    .site-header--overlay .brand__name,
    .site-header--overlay .brand__tagline,
    .site-header--overlay .nav-link { color: var(--ink); }
    .navbar-collapse { margin-top: 1rem; padding: 1rem; background: rgba(255,253,249,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
    .nav-cta { margin-top: 1rem; }
    .home-hero { height: auto; min-height: 820px; }
    .home-hero__shade { background: linear-gradient(90deg, rgba(35,28,23,.94), rgba(35,28,23,.72)); }
    .home-hero__content { min-height: 820px; width: 100%; }
    .section-head--row { display: block; }
    .section-head--row .text-link { margin-top: 1rem; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-photo-stack { order: -1; }
    .service-list-grid, .realisatie-grid { grid-template-columns: 1fr; }
    .mini-process { grid-template-columns: 1fr; }
    .footer-cta__inner { display: block; }
    .footer-cta .btn { margin-top: 1.4rem; }
    .contact-panel { position: static; }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .hero-slider__controls { width: min(720px, calc(100% - 2rem)); grid-template-columns: 44px 1fr 44px; }
    .hero-slider__thumb { grid-template-columns: 72px 1fr; min-height: 72px; }
    .hero-slider__thumb-image { width: 72px; height: 50px; }
    .hero-slider__thumb-copy strong { font-size: .7rem; }
}

@media (max-width: 767.98px) {
    body { font-size: 15px; }
    .container-wide { padding-left: 1rem; padding-right: 1rem; }
    .brand__name { font-size: 1.65rem; }
    .brand__tagline { font-size: .5rem; }
    .home-hero { min-height: 760px; }
    .home-hero__content { min-height: 760px; padding-top: 7rem; }
    .home-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
    .hero-subtitle { font-size: clamp(1.85rem, 9vw, 3rem); }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-slider__controls { left: 1rem; right: 1rem; bottom: 1rem; width: auto; transform: none; grid-template-columns: 42px 1fr 42px; gap: .55rem; }
    .hero-slider__button { width: 42px; height: 42px; }
    .hero-slider__thumbs { gap: .45rem; }
    .hero-slider__thumb { min-height: 58px; grid-template-columns: 1fr; padding: .35rem; border-radius: 10px; }
    .hero-slider__thumb-image { width: 100%; height: 48px; border-radius: 8px; }
    .hero-slider__thumb-copy { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .project-row, .usp-grid, .steps-row, .values-grid, .related-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-badge { grid-column: auto; }
    blockquote { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 1rem; }
    .bridge-card { padding: 1.2rem; }
    .bridge-icon { width: 58px; height: 58px; font-size: 1.5rem; }
    .page-hero { padding-top: 8.2rem; }
    .page-hero h1, .service-hero__copy h1 { font-size: clamp(2.7rem, 14vw, 4.5rem); }
    .service-hero { padding-top: 7.2rem; }
    .service-hero__grid { min-height: 0; }
    .service-hero__media img { min-height: 300px; }
    .service-text-block { grid-template-columns: 1fr; }
    .round-icon { width: 58px; height: 58px; font-size: 1.5rem; }
    .service-photo-stack img { aspect-ratio: 16 / 10; }
    .bridge-micro { grid-template-columns: 1fr; }
    .bridge-micro span { border-left: 0; border-top: 1px solid var(--line); padding: 1rem 0 0; }
    .footer-legal { display: grid; gap: .4rem; }
}

/* V5 refinements: meer lucht rond bridge-blokken en premium portfolio hover */
.section-bridge {
    background: linear-gradient(180deg, #fbf6ef 0%, #f7eee5 100%);
    padding: clamp(4.5rem, 7vw, 7rem) 0;
}
.section-bridge + .section-testimonials { border-top: 1px solid var(--line); }
.bridge-card { box-shadow: 0 30px 90px rgba(34,28,20,.08); }

.project-card { border-radius: 18px; min-height: 260px; }
.project-card::before,
.realisatie-card-premium__frame {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 14px;
    z-index: 3;
    pointer-events: none;
    transition: inset .28s ease, opacity .28s ease;
}
.project-card__line { position:absolute; inset:auto 18px 18px 18px; height:1px; background:rgba(255,255,255,.5); z-index:4; transform-origin:left; transform:scaleX(.35); transition:transform .32s ease; }
.project-card:hover .project-card__line { transform:scaleX(1); }
.project-card__overlay { min-height: 100%; transform: translateY(calc(100% - 112px)); align-items:flex-end; transition: transform .35s ease, background .35s ease; z-index:2; padding: 1.6rem 1.8rem; }
.project-card:hover .project-card__overlay { transform: translateY(0); background: linear-gradient(0deg, rgba(0,0,0,.76), rgba(0,0,0,.28)); }
.project-card__overlay small { display:block; max-width: 90%; margin-top:.75rem; color: rgba(255,255,255,.76); opacity:0; transform:translateY(10px); transition: opacity .3s ease, transform .3s ease; }
.project-card:hover .project-card__overlay small { opacity:1; transform:none; }
.project-card__overlay h3 { font-size: 1.35rem; }

.realisatie-grid--premium { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.realisatie-card-premium { position:relative; min-height: 410px; overflow:hidden; border-radius: 28px; background:var(--dark); box-shadow:0 26px 80px rgba(34,28,20,.12); }
.realisatie-card-premium.is-hidden { display:none; }
.realisatie-card-premium img { width:100%; height:100%; min-height:410px; object-fit:cover; filter: saturate(.96); transition: transform .45s ease, filter .45s ease; }
.realisatie-card-premium::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.42) 55%, rgba(0,0,0,.65) 100%); z-index:1; transition: background .35s ease; }
.realisatie-card-premium__meta { position:absolute; z-index:4; right:30px; bottom:28px; left:30px; text-align:right; color:#fff; transition: transform .35s ease, opacity .35s ease; }
.realisatie-card-premium__meta span { display:block; color:rgba(255,255,255,.85); font-weight:900; font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:.4rem; }
.realisatie-card-premium__meta h2 { margin:0; color:#fff; font-size:clamp(1.8rem,2.6vw,2.6rem); text-transform:uppercase; letter-spacing:.015em; }
.realisatie-card-premium__hover { position:absolute; z-index:5; left:0; right:0; bottom:0; padding:2rem; color:#fff; background:linear-gradient(0deg, rgba(20,20,18,.92), rgba(20,20,18,.62)); transform:translateY(100%); transition: transform .35s ease; }
.realisatie-card-premium__hover span { color:var(--amber-2); text-transform:uppercase; font-weight:900; letter-spacing:.14em; font-size:.74rem; }
.realisatie-card-premium__hover h3 { color:#fff; margin:.55rem 0 .7rem; font-size:2rem; }
.realisatie-card-premium__hover p { color:rgba(255,255,255,.78); margin:0 0 1rem; }
.realisatie-card-premium__hover i { color:var(--amber-2); font-size:1.3rem; }
.realisatie-card-premium:hover img { transform:scale(1.06); filter:saturate(1.05); }
.realisatie-card-premium:hover .realisatie-card-premium__hover { transform:translateY(0); }
.realisatie-card-premium:hover .realisatie-card-premium__meta { transform:translateY(-28px); opacity:.16; }
.realisatie-card-premium:hover .realisatie-card-premium__frame { inset:14px; opacity:.9; }

.reviews-carousel { display:grid; grid-template-columns:48px 1fr 48px 1.1fr; gap:1rem; align-items:stretch; }
.reviews-track { position:relative; min-height:260px; }
.review-card { position:absolute; inset:0; opacity:0; transform:translateX(18px); pointer-events:none; border:1px solid var(--line); border-radius:18px; padding:2rem; background:#fff; box-shadow:var(--shadow-soft); transition:opacity .35s ease, transform .35s ease; }
.review-card.active { opacity:1; transform:none; pointer-events:auto; }
.review-card p { color:var(--ink); font-size:1.1rem; }
.review-card cite { color:var(--muted); font-style:normal; font-weight:800; }
.stars { color:var(--amber); letter-spacing:.14em; margin-bottom:1rem; }
.review-nav { border:1px solid var(--line); background:#fff; color:var(--ink); border-radius:999px; width:48px; min-height:48px; align-self:center; transition:.2s ease; }
.review-nav:hover { background:var(--dark); color:#fff; }

.professionals-hero .rounded-image { aspect-ratio: 16/12; }
.professionals-flow { background:#fff; }

@media (max-width:1199.98px){ .realisatie-grid--premium{grid-template-columns:repeat(2,1fr);} .reviews-carousel{grid-template-columns:48px 1fr 48px;} .reviews-carousel .trust-badge{grid-column:1/-1;} }
@media (max-width:767.98px){ .realisatie-grid--premium{grid-template-columns:1fr;} .realisatie-card-premium{min-height:340px;} .realisatie-card-premium img{min-height:340px;} .reviews-carousel{grid-template-columns:1fr 1fr;} .reviews-track{grid-column:1/-1; order:-1;} .review-nav{width:100%;} .project-card__overlay{transform:translateY(0);} .project-card__overlay small{opacity:1; transform:none;} }

/* ==========================================================================
   V6 fixes — submap test, premium service heroes, professional nav CTA
   ========================================================================== */
.btn-nav-secondary {
    min-height: 50px;
    padding: .82rem 1.05rem;
    border: 1px solid rgba(36,35,31,.16);
    background: rgba(255,253,249,.72);
    color: var(--ink) !important;
    box-shadow: none;
    white-space: nowrap;
}
.site-header--overlay:not(.is-scrolled) .btn-nav-secondary {
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.08);
    color: #fff !important;
}
.btn-nav-secondary:hover,
.btn-nav-secondary.active {
    border-color: rgba(217,150,46,.55);
    background: rgba(217,150,46,.12);
    color: var(--amber) !important;
}
.site-header--overlay:not(.is-scrolled) .btn-nav-secondary:hover,
.site-header--overlay:not(.is-scrolled) .btn-nav-secondary.active {
    color: #fff !important;
    background: rgba(217,150,46,.22);
}
.nav-cta { flex-wrap: nowrap; }

.section-bridge {
    padding: clamp(4rem, 7vw, 7rem) 0;
    background: linear-gradient(90deg, rgba(238,229,218,.82), rgba(251,248,242,.55), rgba(238,229,218,.82));
}
.section-bridge--spacious {
    padding-top: clamp(5.5rem, 8vw, 8.5rem);
    padding-bottom: clamp(5.5rem, 8vw, 8.5rem);
}
.bridge-card {
    margin-top: 0;
    margin-bottom: 0;
}

.breadcrumb-mini--dark,
.breadcrumb-mini--dark a,
.breadcrumb-mini--dark span {
    color: rgba(255,255,255,.78);
}
.breadcrumb-mini--dark i { color: rgba(255,255,255,.45); }

.service-cover-hero,
.pro-hero {
    position: relative;
    min-height: clamp(680px, 100vh, 980px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    isolation: isolate;
}
.service-cover-hero__image,
.pro-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
    z-index: -3;
}
.service-cover-hero__shade,
.pro-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 72% 56%, rgba(217,150,46,.12), transparent 38%),
        linear-gradient(90deg, rgba(18,17,15,.88) 0%, rgba(18,17,15,.70) 40%, rgba(18,17,15,.25) 68%, rgba(18,17,15,.10) 100%),
        linear-gradient(0deg, rgba(18,17,15,.45), rgba(18,17,15,.08) 45%, rgba(18,17,15,.30));
}
.service-cover-hero::after,
.pro-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 170px;
    background: linear-gradient(0deg, var(--cream), rgba(251,248,242,0));
    pointer-events: none;
    z-index: -1;
}
.service-cover-hero__content,
.pro-hero__content {
    width: min(720px, 100%);
    padding-top: 6.8rem;
    color: #fff;
}
.service-cover-hero__content h1,
.pro-hero__content h1 {
    margin: .4rem 0 1.45rem;
    color: #fff;
    font-size: clamp(3.2rem, 7vw, 7.6rem);
    max-width: 900px;
    letter-spacing: -.07em;
}
.pro-hero__content h1 { font-size: clamp(3rem, 6vw, 6.6rem); }
.service-cover-hero__content p,
.pro-hero__content p {
    max-width: 650px;
    color: rgba(255,255,255,.82);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.72;
    margin-bottom: 2rem;
}
.service-cover-hero .section-kicker,
.pro-hero .section-kicker { color: var(--amber-2); }

.service-detail-section {
    background: var(--cream);
    padding-top: clamp(5rem, 8vw, 8.5rem);
}
.service-detail-grid {
    align-items: start;
}
.service-photo-stack {
    display: grid;
    gap: 1.4rem;
}
.service-photo-stack img {
    width: 100%;
    aspect-ratio: 16/7.2;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}
.service-text-block {
    padding: clamp(1.8rem, 3vw, 3rem) 0;
    border-bottom: 1px solid var(--line);
}
.service-text-block:first-child { padding-top: 0; }
.service-text-block:last-child { border-bottom: 0; }
.service-text-block h2 { font-size: clamp(1.55rem, 2.2vw, 2.35rem); }

.pro-intro .lead-text {
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    color: var(--muted);
    max-width: 820px;
}
.pro-flow { background: var(--paper); }
.pro-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.pro-step {
    min-height: 260px;
    padding: 2rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #fffaf2);
    box-shadow: 0 18px 45px rgba(34,28,20,.06);
}
.pro-step span {
    color: var(--amber);
    font-weight: 900;
    letter-spacing: .16em;
    font-size: .8rem;
}
.pro-step h3 { margin: 1.1rem 0 .8rem; font-size: 1.5rem; }
.project-row--three { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1199.98px) {
    .nav-cta { margin-top: 1rem; flex-wrap: wrap; }
    .btn-nav-secondary, .nav-cta .btn-amber { width: 100%; justify-content: center; }
    .pro-flow-grid { grid-template-columns: repeat(2, 1fr); }
    .project-row--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
    .service-cover-hero,
    .pro-hero { min-height: 760px; }
    .service-cover-hero__shade,
    .pro-hero__shade {
        background: linear-gradient(90deg, rgba(18,17,15,.88), rgba(18,17,15,.58)), linear-gradient(0deg, rgba(18,17,15,.50), transparent);
    }
    .service-cover-hero__content,
    .pro-hero__content { padding-top: 9rem; }
}
@media (max-width: 767.98px) {
    .service-cover-hero,
    .pro-hero { min-height: 700px; }
    .service-cover-hero__content h1,
    .pro-hero__content h1 { font-size: clamp(2.7rem, 13vw, 4.7rem); }
    .service-photo-stack img { aspect-ratio: 4/3; }
    .pro-flow-grid,
    .project-row--three { grid-template-columns: 1fr; }
    .section-bridge, .section-bridge--spacious { padding: 3.8rem 0; }
}

/* ==========================================================================
   V7 — premium beheerbare front-end, logo, realisatie details en mobile fixes
   ========================================================================== */
.brand-logo { min-width: 150px; width: 170px; display:inline-flex; align-items:center; }
.brand-logo img { width: 100%; height: auto; max-height: 58px; object-fit: contain; }
.brand-logo__light { display: none; }
.site-header--overlay:not(.is-scrolled) .brand-logo__dark { display: none; }
.site-header--overlay:not(.is-scrolled) .brand-logo__light { display: block; }
.site-header--light .brand-logo__light,
.site-header.is-scrolled .brand-logo__light { display:none; }
.site-header--light .brand-logo__dark,
.site-header.is-scrolled .brand-logo__dark { display:block; }
.brand--footer { width: 175px; margin-bottom: 1.25rem; }
.brand--footer img { width: 100%; height: auto; }

.section-bridge { padding-top: clamp(6rem, 9vw, 10rem); padding-bottom: clamp(6rem, 9vw, 10rem); }
.bridge-card { border-radius: 20px; }
.bridge-card .btn-amber { color: #fff !important; }
.bridge-card p { max-width: 560px; margin: .75rem 0 0; }

.project-row { gap: 1.35rem; }
.project-card { display:block; color:#fff; text-decoration:none; }
.project-card:hover { color:#fff; }
.project-card__overlay { transform: translateY(calc(100% - 92px)); }
.project-card__overlay h3 { margin-bottom: .15rem; }
.project-card__overlay p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 92%; }
.project-card__overlay small { line-height: 1.55; }

.realisatie-card-premium { display:block; color:#fff; text-decoration:none; }
.realisatie-card-premium:hover { color:#fff; }
.realisatie-card-premium__meta { right:auto; left:30px; bottom:30px; text-align:left; max-width: calc(100% - 60px); }
.realisatie-card-premium__meta h2 { font-size: clamp(1.35rem,2vw,2.05rem); text-transform:none; line-height:1.05; }
.realisatie-card-premium__meta span { margin:.35rem 0 0; font-size:.88rem; color:rgba(255,255,255,.88); text-transform:none; letter-spacing:0; font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.realisatie-card-premium:hover .realisatie-card-premium__meta { transform:translateY(-18px); opacity:.08; }
.realisatie-card-premium__hover { padding: 2.1rem; }
.realisatie-card-premium__hover p { display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; }

.service-paired-stack { display:grid; gap: clamp(3rem, 6vw, 6rem); }
.service-pair { display:grid; grid-template-columns: minmax(0, .92fr) minmax(320px, .7fr); gap: clamp(2rem, 6vw, 6rem); align-items:center; }
.service-pair--reverse { grid-template-columns: minmax(320px, .7fr) minmax(0, .92fr); }
.service-pair--reverse .service-text-block { order: 2; }
.service-pair--reverse .service-square-image { order: 1; }
.service-pair .service-text-block { padding:0; border-bottom:0; display:grid; grid-template-columns: 74px 1fr; gap: 1.6rem; }
.service-square-image { justify-self:center; width:min(470px, 100%); }
.service-square-image img { width:100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 26px; box-shadow: 0 28px 85px rgba(34,28,20,.13); }
.service-square-image img[src$='.svg'] { object-fit: contain; background: linear-gradient(135deg,#fff,#f4eadf); padding: 2rem; }

.project-hero { position:relative; min-height: clamp(660px, 95vh, 920px); display:flex; align-items:center; overflow:hidden; background:var(--dark); isolation:isolate; }
.project-hero__image { position:absolute; inset:0; background-size:cover; background-position:center; z-index:-3; transform:scale(1.02); }
.project-hero__shade { position:absolute; inset:0; z-index:-2; background: radial-gradient(circle at 72% 45%, rgba(217,150,46,.16), transparent 34%), linear-gradient(90deg, rgba(18,17,15,.88) 0%, rgba(18,17,15,.64) 45%, rgba(18,17,15,.20) 100%), linear-gradient(0deg, rgba(18,17,15,.45), rgba(18,17,15,.08)); }
.project-hero::after { content:""; position:absolute; inset:auto 0 0 0; height:160px; background:linear-gradient(0deg,var(--cream),rgba(251,248,242,0)); pointer-events:none; z-index:-1; }
.project-hero__content { width:min(760px,100%); padding-top:7rem; color:#fff; }
.project-hero__content h1 { margin:.5rem 0 1.4rem; color:#fff; font-size:clamp(3rem,6vw,6.8rem); letter-spacing:-.07em; }
.project-hero__content p { max-width:650px; color:rgba(255,255,255,.82); font-size:clamp(1rem,1.25vw,1.18rem); }
.project-story-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:1.2rem; }
.story-card { background:#fff; border:1px solid var(--line); border-radius:24px; padding: clamp(1.6rem,3vw,2.6rem); box-shadow: var(--shadow-soft); }
.story-card h2 { font-size: clamp(1.45rem, 2.3vw, 2.3rem); margin:.3rem 0 1rem; }
.project-gallery-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:1.2rem; }
.project-gallery-item { margin:0; position:relative; overflow:hidden; border-radius:24px; box-shadow:var(--shadow-soft); background:#fff; }
.project-gallery-item img { width:100%; aspect-ratio: 4/3; object-fit:cover; transition:transform .35s ease; }
.project-gallery-item:hover img { transform:scale(1.04); }
.project-gallery-item figcaption { position:absolute; left:1rem; right:1rem; bottom:1rem; background:rgba(255,253,249,.92); border:1px solid rgba(255,255,255,.4); border-radius:14px; padding:.75rem .9rem; font-weight:800; color:var(--ink); }

.pro-contact-section { padding: clamp(5rem, 8vw, 8rem) 0; }
.pro-contact-card { display:grid; grid-template-columns: minmax(0, 1fr) auto; gap:2rem; align-items:center; background:rgba(255,253,249,.88); border:1px solid var(--line); border-radius:26px; padding:clamp(1.6rem,4vw,3rem); box-shadow:var(--shadow-soft); }
.pro-contact-card h2 { font-size: clamp(2rem,4vw,4rem); margin:0 0 .75rem; }
.pro-contact-actions { display:flex; flex-direction:column; align-items:flex-start; gap:.9rem; min-width:260px; }
.contact-whatsapp small { display:block; color:var(--muted); font-size:.78rem; line-height:1.35; margin-top:.15rem; }
.contact-list a.contact-whatsapp i { color:#25D366; }

@media (max-width: 1199.98px) {
    .brand-logo { width: 150px; }
    .service-pair,
    .service-pair--reverse { grid-template-columns:1fr; }
    .service-pair--reverse .service-text-block,
    .service-pair--reverse .service-square-image { order:initial; }
    .service-square-image { justify-self:start; width:min(560px,100%); }
    .project-story-grid,
    .project-gallery-grid { grid-template-columns:1fr; }
    .pro-contact-card { grid-template-columns:1fr; }
}
@media (max-width: 767.98px) {
    .brand-logo { width: 128px; min-width:128px; }
    .service-pair .service-text-block { grid-template-columns:1fr; }
    .service-square-image { width:100%; }
    .service-square-image img { border-radius:20px; }
    .project-card__overlay { transform:translateY(calc(100% - 82px)); padding:1.3rem; }
    .project-card__overlay small { display:none; }
    .realisatie-card-premium__meta { left:22px; right:22px; bottom:22px; }
    .realisatie-card-premium__hover { padding:1.4rem; }
    .project-hero__content { padding-top:8.5rem; }
    .project-hero__content h1 { font-size: clamp(2.6rem,13vw,4.5rem); }
}

/* V8 — polish menu, portfolio, lightbox and mobile service visuals */
.site-header { padding: .9rem 0; }
.site-header .navbar { padding: 0; }
.site-header .container-wide {
    width: min(1680px, calc(100% - 48px));
    padding: .75rem 1.05rem;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 0;
    background: rgba(255,253,248,.74);
    backdrop-filter: blur(22px) saturate(1.1);
    box-shadow: 0 20px 70px rgba(20,18,15,.11);
}
.site-header--overlay:not(.is-scrolled) .container-wide { background: rgba(31,27,23,.48); border-color: rgba(255,255,255,.22); }
.site-header.is-scrolled { background: transparent; box-shadow: none; }
.site-header.is-scrolled .container-wide { background: rgba(255,253,248,.94); border-color: rgba(36,35,31,.10); }
.site-header--overlay:not(.is-scrolled) .nav-link { color: #fff; text-shadow: 0 1px 20px rgba(0,0,0,.25); }
.site-header--light .nav-link, .site-header.is-scrolled .nav-link { color: var(--ink); text-shadow:none; }
.site-header--overlay:not(.is-scrolled) .brand-logo__dark { display:none; }
.site-header--overlay:not(.is-scrolled) .brand-logo__light { display:block; }
.navbar-nav { gap: .25rem; }
.nav-link { border-radius: 999px; padding: .72rem .95rem !important; line-height: 1; transition: background .22s ease, color .22s ease, transform .22s ease; }
.nav-link::after { display:none !important; }
.nav-link:hover, .nav-link.active { background: rgba(227,162,46,.16); color: var(--amber-2) !important; transform: translateY(-1px); }
.site-header--light .nav-link:hover, .site-header--light .nav-link.active, .site-header.is-scrolled .nav-link:hover, .site-header.is-scrolled .nav-link.active { color: var(--ink) !important; background: rgba(227,162,46,.18); }
.dropdown-toggle::after { display:inline-block!important; position:static!important; content:""!important; margin-left:.35em!important; vertical-align:.15em!important; width:0!important; height:0!important; border-top:.32em solid!important; border-right:.32em solid transparent!important; border-bottom:0!important; border-left:.32em solid transparent!important; transform:none!important; background:transparent!important; }
.dropdown-menu { border:1px solid rgba(36,35,31,.10); border-radius: 18px; box-shadow:0 26px 70px rgba(34,28,20,.16); padding:.65rem; background:rgba(255,253,248,.98); }
.dropdown-item { border-radius: 12px; padding:.7rem .85rem; font-weight:800; }
.dropdown-item:hover { background:rgba(227,162,46,.13); color:var(--ink); }
.btn-nav-secondary { border-color: rgba(255,255,255,.42); color:#fff!important; background:rgba(255,255,255,.07); box-shadow:none; }
.site-header--light .btn-nav-secondary, .site-header.is-scrolled .btn-nav-secondary { color:var(--ink)!important; border-color:rgba(36,35,31,.16); background:rgba(255,255,255,.72); }
.btn-nav-secondary:hover, .btn-nav-secondary.active { background:linear-gradient(135deg,var(--amber),var(--amber-2))!important; color:#161411!important; border-color:transparent!important; transform:translateY(-1px); box-shadow:0 18px 42px rgba(227,162,46,.24); }
.nav-cta .btn-amber { color:#171410!important; border-color:rgba(255,255,255,.28); }
@media(max-width:1199.98px){ .site-header .container-wide{width:min(100% - 24px,1680px); background:rgba(255,253,248,.95)!important;} .site-header--overlay .brand-logo__dark{display:block!important;} .site-header--overlay .brand-logo__light{display:none!important;} .site-header--overlay .nav-link{color:var(--ink)!important;text-shadow:none!important;} }

.project-card__overlay { transform: none !important; min-height:auto; top:auto; align-items:flex-end; background:linear-gradient(0deg, rgba(0,0,0,.70), rgba(0,0,0,0)) !important; padding: 4rem 1.55rem 1.35rem; }
.project-card:hover .project-card__overlay { transform:none !important; background:linear-gradient(0deg, rgba(0,0,0,.84), rgba(0,0,0,.20)) !important; }
.project-card__overlay h3 { margin:0; line-height:1.05; }
.project-card__overlay p { margin-top:.25rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width: 92%; color:rgba(255,255,255,.82); }
.project-card__overlay small { display:block; max-height:0; opacity:0; overflow:hidden; transform:translateY(8px); margin-top:0; transition: max-height .34s ease, opacity .28s ease, transform .28s ease, margin .28s ease; }
.project-card:hover .project-card__overlay small { max-height: 110px; opacity:1; transform:none; margin-top:.75rem; }
.project-card__line { bottom: 18px; }

.realisatie-card-premium__meta { transform:none!important; opacity:1!important; }
.realisatie-card-premium:hover .realisatie-card-premium__meta { transform:translateY(-4px)!important; opacity:1!important; }
.realisatie-card-premium__hover { padding:2rem; max-height:74%; overflow:hidden; }
.realisatie-card-premium__hover p { display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; }

.service-pair { grid-template-columns:minmax(0,.94fr) minmax(280px,520px); gap:clamp(2rem,5vw,6rem); align-items:center; }
.service-pair--reverse { grid-template-columns:minmax(280px,520px) minmax(0,.94fr); }
.service-square-image { display:flex; align-items:center; justify-content:center; }
.service-square-image img { width: min(100%, 520px); aspect-ratio: 1 / 1; object-fit: cover; object-position:center; border-radius: 26px; box-shadow:0 30px 80px rgba(34,28,20,.10); }
@media(max-width:991.98px){ .service-pair, .service-pair--reverse { grid-template-columns:1fr; } .service-pair--reverse .service-square-image { order:2; } .service-square-image img { width:100%; max-width:520px; } }

.project-gallery-item a, .project-gallery-link { display:block; color:inherit; text-decoration:none; cursor:zoom-in; }
.project-gallery-item img { transition: transform .3s ease, filter .3s ease; }
.project-gallery-item:hover img { transform: scale(1.025); filter:saturate(1.04); }
.elatrik-lightbox { position:fixed; inset:0; z-index:3000; display:grid; place-items:center; padding:clamp(18px,4vw,52px); background:rgba(10,9,8,.88); opacity:0; pointer-events:none; transition:opacity .22s ease; }
.elatrik-lightbox.active { opacity:1; pointer-events:auto; }
.elatrik-lightbox__inner { position:relative; max-width:min(1180px,100%); max-height:100%; display:grid; gap:14px; }
.elatrik-lightbox img { max-width:100%; max-height:82vh; object-fit:contain; border-radius:18px; box-shadow:0 40px 120px rgba(0,0,0,.35); }
.elatrik-lightbox__caption { color:#fff; text-align:center; font-weight:800; }
.elatrik-lightbox__close { position:absolute; top:-18px; right:-18px; width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.28); background:#fff; color:#151413; display:grid; place-items:center; cursor:pointer; font-size:1.25rem; box-shadow:0 18px 50px rgba(0,0,0,.25); }

/* ========================================================================
   V10 — herstel premium menu, betere contact/WhatsApp en stabiele kaarten
   ======================================================================== */
.site-header {
    padding: 1.25rem 0;
}
.site-header .container-wide {
    width: min(1680px, calc(100% - 64px));
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}
.site-header.is-scrolled {
    position: fixed;
    padding: .75rem 0;
    background: rgba(255,253,248,.94) !important;
    backdrop-filter: blur(20px) saturate(1.08);
    box-shadow: 0 12px 46px rgba(34,28,20,.08) !important;
}
.site-header.is-scrolled .container-wide { width:min(1680px, calc(100% - 56px)); }
.navbar-nav { gap: 1rem !important; }
.nav-link {
    border-radius: 0 !important;
    padding: .68rem .2rem !important;
    background: transparent !important;
    transform: none !important;
    color: inherit;
    line-height: 1.2;
}
.nav-link::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: .2rem !important;
    right: .2rem !important;
    bottom: .2rem !important;
    height: 2px !important;
    border: 0 !important;
    width: auto !important;
    background: var(--amber) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform .2s ease !important;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1) !important; }
.dropdown-toggle::after {
    position: static !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    margin-left: .35em !important;
    vertical-align: .12em !important;
    content: "" !important;
    border-top: .32em solid !important;
    border-right: .32em solid transparent !important;
    border-bottom: 0 !important;
    border-left: .32em solid transparent !important;
    transform: none !important;
    background: transparent !important;
}
.site-header--overlay:not(.is-scrolled) .nav-link,
.site-header--overlay:not(.is-scrolled) .navbar-toggler { color:#fff !important; text-shadow:0 1px 24px rgba(0,0,0,.38); }
.site-header--light .nav-link,
.site-header.is-scrolled .nav-link { color:var(--ink) !important; text-shadow:none; }
.site-header--overlay:not(.is-scrolled) .brand-logo__dark { display:none !important; }
.site-header--overlay:not(.is-scrolled) .brand-logo__light { display:block !important; }
.site-header--light .brand-logo__light,
.site-header.is-scrolled .brand-logo__light { display:none !important; }
.site-header--light .brand-logo__dark,
.site-header.is-scrolled .brand-logo__dark { display:block !important; }
.nav-cta { gap: .75rem !important; }
.btn-nav-secondary {
    border-radius: 0 !important;
    min-height: 52px;
    padding: .86rem 1.15rem;
    border: 1px solid rgba(36,35,31,.18) !important;
    background: rgba(255,253,249,.68) !important;
    color: var(--ink) !important;
    box-shadow:none !important;
}
.site-header--overlay:not(.is-scrolled) .btn-nav-secondary {
    border-color: rgba(255,255,255,.52) !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
}
.btn-nav-secondary:hover,
.btn-nav-secondary.active {
    border-color: var(--amber) !important;
    background: rgba(229,163,49,.16) !important;
    color: var(--ink) !important;
    transform: translateY(-1px);
}
.site-header--overlay:not(.is-scrolled) .btn-nav-secondary:hover,
.site-header--overlay:not(.is-scrolled) .btn-nav-secondary.active {
    background: rgba(229,163,49,.92) !important;
    border-color: rgba(229,163,49,.92) !important;
    color: #171410 !important;
}
.nav-cta .btn-amber {
    border-radius: 0 !important;
    min-height: 52px;
    color: #171410 !important;
}
.home-hero::before,
.project-hero::before,
.professionals-hero::before {
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:180px;
    z-index:3;
    pointer-events:none;
    background:linear-gradient(180deg, rgba(0,0,0,.44), rgba(0,0,0,0));
}

.contact-panel {
    background: linear-gradient(145deg, #1f2d34, #171715) !important;
    border: 1px solid rgba(255,255,255,.09);
    padding: clamp(2rem,3vw,3rem) !important;
}
.contact-panel h2 { font-size: clamp(2.2rem,4vw,3.4rem) !important; }
.contact-list { gap: .9rem !important; }
.contact-list a,
.contact-list div {
    display:grid !important;
    grid-template-columns: 48px 1fr !important;
    gap:.8rem;
    align-items:center;
    padding:.75rem;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.035);
}
.contact-list a:hover { background:rgba(229,163,49,.10); border-color:rgba(229,163,49,.28); }
.contact-list i { border-radius:0; width:48px !important; height:48px !important; background:rgba(255,255,255,.045); }
.contact-whatsapp small { color: rgba(255,255,255,.68) !important; }
.contact-whatsapp span strong { display:block; color:#fff; }

.realisatie-card-premium__meta { transform:none!important; opacity:1!important; bottom:26px !important; }
.realisatie-card-premium:hover .realisatie-card-premium__meta { transform:translateY(-6px)!important; opacity:1!important; }
.realisatie-card-premium__hover { padding: 1.8rem !important; }
.realisatie-card-premium__hover p { display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; }

@media(max-width:1199.98px){
    .site-header .container-wide{width:min(100% - 24px,1680px)!important; padding:.75rem 1rem; background:rgba(255,253,248,.96)!important; border:1px solid rgba(36,35,31,.10)!important; backdrop-filter:blur(18px)!important;}
    .site-header--overlay .brand-logo__dark{display:block!important;}
    .site-header--overlay .brand-logo__light{display:none!important;}
    .site-header--overlay .nav-link{color:var(--ink)!important;text-shadow:none!important;}
    .navbar-collapse{margin-top:1rem; padding:1rem; background:#fffdf8; border:1px solid var(--line); box-shadow:var(--shadow-soft);}
    .btn-nav-secondary, .nav-cta .btn-amber { width:100%; justify-content:center; }
}

/* V10b — underline zonder dropdown-arrow te breken */
.nav-link {
    background-image: linear-gradient(var(--amber), var(--amber)) !important;
    background-repeat: no-repeat !important;
    background-position: left calc(100% - 2px) !important;
    background-size: 0 2px !important;
    transition: background-size .2s ease, color .2s ease !important;
}
.nav-link:hover,
.nav-link.active { background-size: 100% 2px !important; }
.nav-link::after { display:none !important; }
.dropdown-toggle::after {
    display:inline-block!important;
    position:static!important;
    content:""!important;
    margin-left:.38em!important;
    vertical-align:.14em!important;
    width:0!important;height:0!important;
    border-top:.32em solid currentColor!important;
    border-right:.32em solid transparent!important;
    border-bottom:0!important;
    border-left:.32em solid transparent!important;
    transform:none!important;
    background:transparent!important;
}
