/* ═══════════════════════════════════════════
   BITMOODY — v5  (open/editorial)
   Fonts: Lexend (headings) · AvenueX (body)
   Achtergrond: #E6E3DB · Tekst: #2E2E2E
   ═══════════════════════════════════════════ */

/* ── Font definitie ── */
@font-face {
    font-family: 'AvenueX';
    src: url('Expose-Bold.otf') format('opentype');
    font-weight: bold;
    font-display: swap;
}

/* ── Custom properties ── */
:root {
    --bg:    #E6E3DB;
    --text:  #2E2E2E;
    --green: #046D54;
    --gold:  #D4AF37;
    --pink:  #FF4D6D;
    --muted: #9A9690;
    --subtle: rgba(46,46,46,0.09);
    --f-head: 'Lexend', sans-serif;
    --f-body: 'AvenueX', 'Manrope', sans-serif;
    --section-pad: 140px;
    --container: 1600px;
    --gutter: 40px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }
a    { text-decoration: none; color: inherit; }

body {
    font-family: var(--f-body);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.55;
}

/* Subtiele textuur */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(46,46,46,0.018) 0 1px,
        transparent 1px 28px
    );
    pointer-events: none;
    z-index: 0;
}


/* ═══════════════════════════════════════════
   SITE HEADER + LOGO
   ═══════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    background: var(--bg);
    border-bottom: 1px solid var(--subtle);
}

.logo4 {
    background: transparent !important;
    padding: 14px 0 !important;
    display: block;
}
.logo4 .name {
    font-family: 'Lexend', sans-serif !important;
    font-size: 26px !important;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text);
    line-height: 1;
}
.logo4 .name span { font-weight: 700; }
.logo4 .tag {
    font-family: var(--f-body) !important;
    font-size: 11px !important;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 4px !important;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.main-nav a {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    transition: color .2s;
}
.main-nav a:hover { color: var(--text); }

.nav-pill {
    background: var(--text) !important;
    color: var(--bg) !important;
    padding: 10px 22px !important;
    border-radius: 100px !important;
    font-size: 12px !important;
    transition: background .2s, color .2s !important;
}
.nav-pill:hover {
    background: var(--green) !important;
    color: #fff !important;
}

@media (max-width: 820px) {
    .site-header { padding: 0 24px; }
    .main-nav { gap: 20px; }
    .main-nav a:not(.nav-pill) { display: none; }
}


/* ═══════════════════════════════════════════
   HERO  — volledig gecentreerd, creatieve foto
   ═══════════════════════════════════════════ */
.hero {
    background: var(--text);
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;   /* center-content + marquee */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* ── Afbeelding: rechts, vervaagt in achtergrond ── */
.hero-aside-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 46px;        /* boven marquee */
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
/* Gradient: rechts-zijde vervaagt naar donker */
.hero-aside-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--text) 10%, transparent 55%),
        linear-gradient(to top, var(--text) 0%, transparent 55%);
    z-index: 1;
}
.hero-aside-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.5) saturate(0.55);
    transition: filter .6s ease;
}
.hero:hover .hero-aside-img img {
    filter: brightness(0.6) saturate(0.7);
}

/* ── Gecentreerde content ── */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px var(--gutter) 60px;
    position: relative;
    z-index: 2;
    gap: 0;
}

/* Logo groot boven de heading */
.hero-brand {
    font-family: var(--f-head);
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(230,227,219,0.4);
    margin-bottom: 64px;
    user-select: none;
}
.hero-brand strong {
    font-weight: 800;
    color: rgba(230,227,219,0.4);
}

/* H1 — scherm-breed, gecentreerd */
.hero-h1 {
    font-family: var(--f-head);
    font-size: clamp(68px, 10.5vw, 154px);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -3px;
    color: var(--bg);
    margin-bottom: 60px;
    text-align: center;
}
.hero-line {
    display: block;
}
/* Elk woord = eigen blok voor GSAP transform */
.hw {
    display: inline-block;
    will-change: transform, opacity;
}
.hw + .hw { margin-left: 0.25em; }
.hero-h1 em {
    font-style: normal;
    color: var(--gold);
}

/* Subtitel */
.hero-sub {
    font-family: var(--f-body);
    font-size: 20px;
    color: rgba(230,227,219,0.45);
    line-height: 1.7;
    margin-bottom: 44px;
}

/* CTA pill */
.cta-pill {
    display: inline-block;
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    background: var(--bg);
    padding: 16px 34px;
    border-radius: 100px;
    white-space: nowrap;
    transition: background .25s, color .25s, transform .15s;
}
.cta-pill:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Marquee bar */
.marquee-bar {
    background: var(--green);
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 2;
}
.marquee-inner {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee 26s linear infinite;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}
.marquee-inner em { color: var(--gold); font-style: normal; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 820px) {
    .hero { min-height: 100svh; }
    .hero-center { padding: 80px 24px 48px; }
    .hero-h1 { font-size: clamp(52px, 14vw, 90px); letter-spacing: -2px; }
    .hero-aside-img { opacity: 0.6; }
    .hero-brand { letter-spacing: 5px; margin-bottom: 40px; }
}


/* ═══════════════════════════════════════════
   GEDEELDE HELPERS
   ═══════════════════════════════════════════ */
h2 {
    font-family: var(--f-head);
    font-size: clamp(48px, 6.5vw, 96px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -1.5px;
    color: var(--text);
    margin-bottom: 36px;
}
h2 em { font-style: italic; color: var(--green); }

/* Diensten lijst */
.dienst-ul {
    list-style: none;
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dienst-ul li {
    font-family: var(--f-body);
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--subtle);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5a5855;
    transition: padding-left .2s, color .2s;
}
.dienst-ul li::before { content: "→"; color: var(--green); font-size: 14px; flex-shrink: 0; }
.dienst-ul li:hover { padding-left: 8px; color: var(--text); }
.dienst-ul--light li {
    border-color: rgba(230,227,219,0.12);
    color: rgba(230,227,219,0.7);
}
.dienst-ul--light li::before { color: var(--gold); }
.dienst-ul--light li:hover { color: rgba(230,227,219,1); }

/* Text CTA */
.text-cta {
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .2s;
}
.text-cta:hover { gap: 14px; }
.text-cta--light { color: var(--gold); }


/* Image blocks — lighter treatment */
.img-block {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.img-block:hover img { transform: scale(1.03); }

/* Subtle tilt — left (design sectie) */
.img-block--tilt-left {
    border: 2px solid rgba(46,46,46,0.14);
    box-shadow: -10px 12px 0 rgba(46,46,46,0.08);
    transform: rotate(-1.2deg);
    transition: transform .4s ease, box-shadow .4s ease;
}
.img-block--tilt-left:hover {
    transform: rotate(0deg);
    box-shadow: -4px 6px 0 rgba(46,46,46,0.05);
}

/* Subtle tilt — right (software sectie, op donkere achtergrond) */
.img-block--tilt-right {
    border: 2px solid rgba(230,227,219,0.1);
    box-shadow: 10px 12px 0 rgba(212,175,55,0.18);
    transform: rotate(1.2deg);
    transition: transform .4s ease, box-shadow .4s ease;
}
.img-block--tilt-right:hover {
    transform: rotate(0deg);
    box-shadow: 4px 6px 0 rgba(212,175,55,0.1);
}
.img-block--tilt-right img {
    filter: brightness(0.72) saturate(0.6);
    transition: filter .5s;
}
.img-block--tilt-right:hover img { filter: brightness(0.82) saturate(0.75); }


/* ═══════════════════════════════════════════
   SECTIE WRAPPER (gedeeld)
   ═══════════════════════════════════════════ */
.section-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}


/* ═══════════════════════════════════════════
   DESIGN SECTIE
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   DESIGN SECTIE — open, beige, full-bleed
   ═══════════════════════════════════════════ */
.section-design {
    border-top: 1px solid var(--subtle);
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Geen padding — full-bleed grid net als software */
}

/* Grote decoratieve outline-tekst linksboven */
.sd-deco-wrap {
    position: absolute;
    top: -24px;
    left: -16px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}
.sd-deco-text {
    display: block;
    font-family: var(--f-head);
    font-size: clamp(110px, 17vw, 260px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -5px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(46,46,46,0.055);
    white-space: nowrap;
}

/* Grid — container (niet full-bleed) */
.sd-grid {
    margin: 0 auto;
    padding: 60px var(--gutter);
    display: grid;
    grid-template-columns: 1fr 50%;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Tekst kolom ── */
.sd-text {
    padding: 10px 22px 10px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--subtle);
}

/* Eyebrow label in groen */
.sd-eyebrow {
    display: block;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green);
    margin-bottom: 20px;
}

/* Groene accent-lijn */
.sd-accent-line {
    display: block;
    width: 0;                /* GSAP animeert naar 44px */
    height: 2px;
    background: var(--green);
    margin-bottom: 32px;
    transform-origin: left center;
}

/* H2 clip-reveal containers */
.sd-clip {
    display: block;
    overflow: hidden;
    padding-bottom: 0.2em;
}
.sd-word {
    display: block;
    will-change: transform;
}

.sd-text p {
    font-family: var(--f-body);
    font-size: 17px;
    color: #5a5855;
    line-height: 1.75;
    max-width: 500px;
}

/* ── Afbeelding: contained, gekanteld ── */
.sd-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 64px 60px 20px;
}
.sd-img .img-block {
    width: 100%;
    max-height: 520px;
    aspect-ratio: 4/5;
}

@media (max-width: 960px) {
    .sd-grid { grid-template-columns: 1fr; min-height: auto; padding: 60px 0; }
    .sd-img  { padding: 0 24px 48px; order: -1; }
    .sd-img .img-block { max-height: 340px; aspect-ratio: 4/3; }
    .sd-text { padding: 48px 24px 64px; border-right: none;
               border-top: 1px solid var(--subtle); }
    .sd-deco-text { font-size: clamp(80px, 22vw, 160px); }
}

/* ═══════════════════════════════════════════
   SOFTWARE SECTIE (donker)
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   SOFTWARE SECTIE — cinematisch, donker
   ═══════════════════════════════════════════ */
.section-software {
    background: var(--text);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Grote decoratieve outline-tekst op de achtergrond */
.ss-deco-wrap {
    position: absolute;
    bottom: -20px;
    right: -20px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}
.ss-deco-text {
    display: block;
    font-family: var(--f-head);
    font-size: clamp(110px, 17vw, 260px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -5px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(230,227,219,0.055);
    white-space: nowrap;
}

/* Grid */
.ss-grid {
    display: grid;
    grid-template-columns: 50% 1fr;
    min-height: 88vh;
    position: relative;
    z-index: 1;
}

/* ── Afbeelding met curtain reveal ── */
.ss-img {
    position: relative;
    overflow: hidden;
}
.ss-curtain {
    position: absolute;
    inset: 0;
    background: var(--text);
    transform-origin: right center;
    z-index: 2;
}
.ss-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.5);
    transform: scale(1.06);
    transition: filter .5s;
}
.ss-img:hover img { filter: brightness(0.72) saturate(0.65); }

/* ── Tekst kolom ── */
.ss-text {
    padding: 100px 72px 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(230,227,219,0.07);
}

/* Eyebrow label in goud */
.ss-eyebrow {
    display: block;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Gouden accent-lijn */
.ss-gold-line {
    display: block;
    width: 0;                /* GSAP animeert naar 44px */
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
    transform-origin: left center;
}

/* H2 clip-reveal: elk woord schuift omhoog vanuit een overflow:hidden container */
.ss-clip {
    display: block;
    overflow: hidden;
    padding-bottom: 0.2em;   /* ruimte voor descenders */
    color: white;

    em {
        color: var(--gold);
    }
}
.ss-word {
    display: block;
    will-change: transform;
}

.ss-text p {
    font-family: var(--f-body);
    font-size: 17px;
    color: rgba(230,227,219,0.52);
    line-height: 1.75;
    max-width: 500px;
}

@media (max-width: 960px) {
    .ss-grid { grid-template-columns: 1fr; min-height: auto; }
    .ss-img  { min-height: 380px; }
    .ss-curtain { display: none; }
    .ss-text { padding: 64px 24px; border-left: none;
               border-top: 1px solid rgba(230,227,219,0.07); }
    .ss-deco-text { font-size: clamp(80px, 22vw, 160px); }
}


/* ═══════════════════════════════════════════
   WEBAPPS — scrollende service-rijen
   ═══════════════════════════════════════════ */
/* ─── WEBAPPS SECTION ─── */
.section-webapps {
    background: #1a1a18;
    padding: var(--section-pad) 0 calc(var(--section-pad) + 48px);
    border-top: 1px solid rgba(230,227,219,0.06);
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

/* Atmosferische achtergrondgloed */
.section-webapps::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 15% 0%, rgba(4,109,84,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 100%, rgba(212,175,55,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 50% 50%, rgba(46,46,46,0.4) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Fijne grid-textuur overlay */
.section-webapps::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(230,227,219,0.018) 0 1px, transparent 1px 60px),
        repeating-linear-gradient(90deg, rgba(230,227,219,0.018) 0 1px, transparent 1px 60px);
    pointer-events: none;
    z-index: 0;
}

/* Decoratieve achtergrondtekst */
.wa-deco-wrap {
    position: absolute;
    top: -30px;
    right: -30px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}
.wa-deco-text {
    display: block;
    font-family: var(--f-head);
    font-size: clamp(160px, 22vw, 380px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -8px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(230,227,219,0.055);
    white-space: nowrap;
}

/* Header area */
.wa-header {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter) 88px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 48px;
    align-items: start;
}

.wa-eyebrow {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gold);
    margin-bottom: 22px;
}
.wa-eyebrow::before {
    content: "";
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.wa-gold-line {
    display: none;
}

.wa-header .h2-light {
    grid-column: 1;
    grid-row: 2;
}

.wa-lead {
    grid-column: 2;
    grid-row: 2;
    font-family: var(--f-body);
    font-size: 17px;
    color: rgba(230,227,219,0.42);
    line-height: 1.8;
    max-width: 420px;
    margin-top: 12px;
    align-self: end;
}

/* Heading typografie — scoped naar webapps */
.section-webapps .h2-light {
    font-family: var(--f-head);
    font-size: clamp(52px, 7.5vw, 112px);
    font-weight: 300;
    letter-spacing: -3px;
    line-height: 0.92;
    color: rgba(230,227,219,0.88);
}
.section-webapps .h2-light em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #F0D060 45%, #B8932A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wa-clip {
    display: block;
    overflow: hidden;
    padding-bottom: 0.2em;
}
.wa-word {
    display: block;
    will-change: transform;
}

/* Scrollende track met edge-fade */
.scroll-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* Edge-fade masker */
.scroll-track::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            #1a1a18 0%,
            transparent 8%,
            transparent 92%,
            #1a1a18 100%
        );
    z-index: 10;
    pointer-events: none;
}

.scroll-row {
    overflow: visible;
    position: relative;
    padding: 10px 0 10px;
}

/* Subtiele scheidingslijn tussen rijen */
.scroll-row + .scroll-row {
    border-top: 1px solid rgba(230,227,219,0.04);
}

.scroll-inner {
    display: inline-flex;
    align-items: center;
    width: max-content;
    animation: wa-scroll-r 42s linear infinite;
    white-space: nowrap;
}
.scroll-inner--left  { animation: wa-scroll-l 30s linear infinite; }
.scroll-inner--slow  { animation: wa-scroll-r 58s linear infinite; }

.scroll-row:hover .scroll-inner { animation-play-state: paused; }

@keyframes wa-scroll-r {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes wa-scroll-l {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* Service pill */
.service-tag {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: default;
    margin: 0 5px;
}
.service-name {
    font-family: var(--f-head);
    font-size: clamp(13px, 1.15vw, 17px);
    font-weight: 500;
    color: rgba(230,227,219,0.32);
    padding: 13px 26px;
    border: 1.5px solid rgba(230,227,219,0.07);
    border-radius: 100px;
    white-space: nowrap;
    transition: color .22s, border-color .22s, background .22s;
    display: block;
}
.service-tag:hover .service-name {
    color: var(--bg);
    border-color: rgba(230,227,219,0.28);
    background: rgba(230,227,219,0.07);
}

/* Goud ster-separator */
.scroll-dot {
    color: var(--gold);
    font-size: 9px;
    opacity: 0.28;
    padding: 0 12px;
    flex-shrink: 0;
    display: inline-block;
}

/* Tooltip */
.service-tip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 13px;
    line-height: 1.45;
    padding: 10px 18px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 30;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.service-tip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: var(--bg);
}
.service-tag:hover .service-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .wa-header { padding: 0 24px 48px;
        display: flex; flex-wrap: wrap;  }
    .service-name { font-size: 13px; padding: 11px 20px; }
    .scroll-inner      { animation-duration: 24s; }
    .scroll-inner--left{ animation-duration: 18s; }
    .scroll-inner--slow{ animation-duration: 34s; }
}


/* ═══════════════════════════════════════════
   WERKWIJZE (open cards)
   ═══════════════════════════════════════════ */
.section-werkwijze {
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--subtle);
    position: relative;
    z-index: 1;
}

.ww-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.ww-header {
    margin-bottom: 80px;
}

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

.principe {
    padding-top: 32px;
    border-top: 2px solid rgba(46,46,46,0.15);
    position: relative;
    cursor: default;
    transition: border-color .3s;
}
.principe:hover { border-color: var(--gold); }

/* Decoratief getal — licht op de achtergrond */
.pr-n {
    display: block;
    font-family: var(--f-head);
    font-size: 52px;
    font-weight: 200;
    color: rgba(46,46,46,0.07);
    line-height: 1;
    margin-bottom: 20px;
    transition: color .25s;
    letter-spacing: -1px;
}
.principe:hover .pr-n { color: rgba(46,46,46,0.12); }

.principe h3 {
    font-family: var(--f-head);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text);
}

.principe p {
    font-family: var(--f-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 960px) {
    .section-werkwijze { padding: calc(var(--section-pad) * 0.7) 0; }
    .ww-container { padding: 0 24px; }
    .principes { grid-template-columns: 1fr; gap: 48px; }
}


/* ═══════════════════════════════════════════
   OVER ONS (donker, editorial)
   ═══════════════════════════════════════════ */
.section-over {
    background: var(--text);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Decoratieve "16" op de achtergrond */
.over-deco-wrap {
    position: absolute;
    bottom: -60px;
    right: -30px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}
.over-deco-text {
    display: block;
    font-family: var(--f-head);
    font-size: clamp(260px, 36vw, 560px);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(230,227,219,0.045);
    white-space: nowrap;
}

.over-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--section-pad) var(--gutter);
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.over-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.over-img-col .img-block {
    width: 100%;
    max-height: 580px;
    aspect-ratio: 3/4;
}

/* Eyebrow */
.over-eyebrow {
    display: block;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Gouden accent-lijn */
.over-gold-line {
    display: block;
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
    transform-origin: left center;
}

/* Clip-reveal H2 */
.over-clip {
    display: block;
    overflow: hidden;
    padding-bottom: 0.2em;
    color: white;

    em {
        color: var(--gold);
    }
}
.over-word {
    display: block;
    will-change: transform;
}

.over-text-col p {
    font-family: var(--f-body);
    font-size: 17px;
    color: rgba(230,227,219,0.58);
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 500px;
}

/* Benefit tags */
.over-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.over-tags span {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(230,227,219,0.13);
    color: rgba(230,227,219,0.7);
    transition: background .2s, color .2s, border-color .2s;
    cursor: default;
}
.over-tags span:hover {
    background: var(--gold);
    color: var(--text);
    border-color: var(--gold);
}

@media (max-width: 960px) {
    .over-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 64px 24px;
    }
    .over-img-col .img-block { max-height: 360px; aspect-ratio: 4/3; }
    .over-deco-wrap { bottom: -20px; right: -10px; }
}


/* ═══════════════════════════════════════════
   TESTIMONIALS (editorial, beige)
   ═══════════════════════════════════════════ */
.section-testimonials {
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--subtle);
    position: relative;
    z-index: 1;
}

.testi-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.testi-eyebrow {
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 32px;
}

/* Elk testimonial: 2-koloms — meta links, quote rechts */
.testi-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testi-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    padding: 56px 0;
    border-top: 1px solid var(--subtle);
    align-items: start;
}
.testi-item:last-child {
    border-bottom: 1px solid var(--subtle);
}

.testi-meta {
    padding-top: 6px;
}
.testi-meta strong {
    display: block;
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 6px;
}
.testi-meta span {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.testi-quote {
    font-family: var(--f-body);
    font-size: 17px;
    color: #5a5855;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    max-width: 780px;
    border: none;
    margin: 0;
    padding: 0;
}
/* Opening quote mark */
.testi-quote::before {
    content: "\201C";
    position: absolute;
    top: -28px;
    left: -4px;
    font-family: var(--f-head);
    font-size: 80px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    pointer-events: none;
}

@media (max-width: 820px) {
    .section-testimonials { padding: calc(var(--section-pad) * 0.7) 0; }
    .testi-container { padding: 0 24px; }
    .testi-item {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0;
    }
}


/* ═══════════════════════════════════════════
   CONTACT (groen)
   ═══════════════════════════════════════════ */
.section-contact {
    background: var(--green);
    display: grid;
    grid-template-columns: 1fr 38%;
    position: relative;
    z-index: 1;
}

.contact-inner {
    padding: 120px var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-h2 {
    font-size: clamp(48px, 6.5vw, 88px);
}
.section-contact h2.h2-light { color: #fff; }
.section-contact h2.h2-light em { color: var(--gold); -webkit-text-fill-color: var(--gold); background: none; }

.contact-lead {
    font-family: var(--f-body);
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 340px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 36px;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--f-body);
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 18px 22px;
    border: 1.5px solid rgba(255,255,255,0.16);
    border-radius: 6px;
    transition: background .2s, border-color .2s;
}
.contact-link:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.45);
}
.cl-icon {
    width: 28px;
    text-align: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-meta {
    font-family: var(--f-body);
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.5px;
    line-height: 2;
}

.contact-img-col {
    overflow: hidden;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.contact-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0) brightness(0.7);
    mix-blend-mode: luminosity;
    transition: filter .5s;
}
.contact-img-col:hover img {
    filter: saturate(0.3) brightness(0.8);
}

@media (max-width: 820px) {
    .section-contact { grid-template-columns: 1fr; }
    .contact-inner { padding: 80px 24px; }
    .contact-img-col { display: none; }
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 64px;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-logo {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(230,227,219,0.45);
    letter-spacing: 1px;
}
.footer-logo strong { font-weight: 700; color: var(--bg); }
.footer-copy {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(230,227,219,0.22);
}
.footer-tagline {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(230,227,219,0.18);
}

@media (max-width: 640px) {
    .footer { padding: 20px 24px; justify-content: center; text-align: center; }
    .footer-tagline { display: none; }
}
