/* ==========================================================================
   Lucas Tuinondersteuning — Main stylesheet
   Complete design system, mobile-first, responsive up to desktop.
   ========================================================================== */

:root {
    /* Semantic theme tokens — runtime overschreven door inc/themes.php (light + [data-theme="dark"]). */
    --c-bg: #FBF8F0;
    --c-surface: #F4EFE4;
    --c-card: #FFFFFF;
    --c-text: #1A1918;
    --c-text-muted: #6B5D48;
    --c-primary: #1F3B24;
    --c-secondary: #5A6B3A;
    --c-accent-warm: #8B6F47;
    --c-highlight: #C8D98F;

    /* Legacy aliases — exact Lucas-defaults (Default-thema pixel-perfect). Runtime CSS overschrijft per actief thema; --wit blijft altijd wit. */
    --mos: #1F3B24;
    --mos-dark: #0F2014;
    --mos-mid: #2D5435;
    --olijf: #5A6B3A;
    --olijf-licht: #8A9B5A;
    --aarde: #8B6F47;
    --aarde-licht: #B89770;
    --highlight: #C8D98F;
    --highlight-licht: #E4EDC4;
    --zand: #F4EFE4;
    --zand-licht: #FBF8F0;
    --wit: #FFFFFF;
    --antraciet: #1A1918;
    --grijs: #6B5D48;
    --grijs-licht: #9A8F7A;
    --lijn: rgba(26, 25, 24, 0.08);
    --lijn-sterk: rgba(26, 25, 24, 0.15);

    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--antraciet);
    background: var(--zand-licht);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, figure, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--lijn); margin: 2rem 0; }

img, svg, video, canvas { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

button, input, select, textarea {
    font: inherit;
    color: inherit;
}
button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

/* Heading defaults — section/component CSS overruled deze waar nodig */
.hero__title,
.section__title,
.service-card__title,
.about__sig-name,
.project__title,
.hero__visual-caption-title,
.about__quote,
.testimonial__quote,
.about__years-big,
.about__years-sub,
.site-logo,
.site-footer__brand,
.marquee__item {
    font-family: var(--serif);
}

h1.hero__title,
h2.section__title,
h2.cta__title,
h3.service-card__title {
    font-family: var(--serif);
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: color-mix(in srgb, var(--c-bg) 85%, transparent);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--lijn);
}

.site-header__inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.site-nav { margin-left: auto; }

.site-logo {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-logo-mark);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.site-logo__mark {
    width: 34px;
    height: 34px;
    background: var(--mos);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight);
    flex-shrink: 0;
}

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

.site-logo--default,
.site-header .custom-logo-link {
    display: inline-flex;
    align-items: center;
    color: var(--c-logo-mark);
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo--default svg,
.site-header .custom-logo-link img {
    display: block;
    height: var(--lucas-logo-height, 56px);
    width: auto;
    max-width: 320px;
}

.site-logo--default,
.site-logo--default:hover,
.site-logo--default:focus,
.site-logo--default:active,
.site-header .custom-logo-link,
.site-header .custom-logo-link:hover,
.site-header .custom-logo-link:focus,
.site-header .custom-logo-link:active {
    color: var(--c-logo-mark);
    opacity: 1;
    text-decoration: none;
}

.site-nav__menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.site-nav__menu > li > a,
.site-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--antraciet);
    transition: color 0.2s;
}

.site-nav__menu > li > a:hover { color: var(--mos); }

.site-nav__menu > li > a.site-nav__cta,
.site-nav__menu .site-nav__cta > a,
.site-nav__menu li.menu-item-cta > a {
    background: var(--mos);
    color: var(--wit);
    padding: 0.65rem 1.3rem;
    border-radius: 100px;
    font-size: 14px;
    transition: all 0.25s;
}

.site-nav__menu > li > a.site-nav__cta:hover {
    background: var(--mos-dark);
    transform: translateY(-1px);
    color: var(--wit);
}

/* Light/dark theme toggle */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--lijn-sterk);
    border-radius: 100px;
    padding: 0;
    cursor: pointer;
    color: var(--c-text);
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.theme-toggle + .site-nav__toggle { margin-left: 0; }

.theme-toggle:hover {
    background: color-mix(in srgb, var(--c-text) 6%, transparent);
    border-color: color-mix(in srgb, var(--c-text) 25%, transparent);
    color: var(--c-primary);
}

.theme-toggle:focus { outline: none; }

.theme-toggle:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 2px;
}

.theme-toggle__icon { display: none; }
[data-theme="light"] .theme-toggle__icon--moon { display: block; }
[data-theme="dark"]  .theme-toggle__icon--sun  { display: block; }
:root:not([data-theme]) .theme-toggle__icon--moon { display: block; }
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) .theme-toggle__icon--moon { display: none; }
    :root:not([data-theme]) .theme-toggle__icon--sun  { display: block; }
}

/* Mobile nav toggle */
.site-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--lijn-sterk);
    border-radius: 10px;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    color: var(--c-primary);
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-nav__toggle:hover {
    background: color-mix(in srgb, var(--c-text) 6%, transparent);
    border-color: color-mix(in srgb, var(--c-text) 25%, transparent);
}

.site-nav__toggle:active {
    background: color-mix(in srgb, var(--c-text) 12%, transparent);
    border-color: color-mix(in srgb, var(--c-text) 35%, transparent);
}

.site-nav__toggle:focus { outline: none; }

.site-nav__toggle:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 2px;
}

.site-nav__toggle[aria-expanded="true"] {
    background: color-mix(in srgb, var(--c-text) 8%, transparent);
    border-color: color-mix(in srgb, var(--c-text) 25%, transparent);
}

.site-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s;
    margin: 0 auto;
}

.site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile: menu shown when toggled */
.site-nav.is-open .site-nav__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--zand-licht);
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--lijn);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    align-items: flex-start;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    padding: 7rem 0 3rem;
    background: var(--zand);
    overflow: hidden;
}

.hero__leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: block;
}

.hero.is-blowing {
    cursor: var(--c-cursor-blower-right) 59 45, auto;
}

.hero.is-blowing.is-blowing-left {
    cursor: var(--c-cursor-blower-left) 5 45, auto;
}

/* Bladblazer-cursor uitsluiten op interactieve/leesbare zones */
.hero.is-blowing .hero__content,
.hero.is-blowing .hero__visual {
    cursor: auto;
}
.hero.is-blowing .hero__contact-cta,
.hero.is-blowing .hero__contact-cta * {
    cursor: pointer;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 11px;
    font-weight: 600;
    color: var(--olijf);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--olijf);
}

.hero__title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    font-weight: 400;
    line-height: 1;
    color: var(--mos);
    letter-spacing: -0.035em;
    margin: 0 0 1.5rem;
}

.hero__title-line {
    display: block;
    white-space: nowrap;
}

.hero__title-line--indent { margin-left: 1em; }

.hero__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--c-glimlach);
    position: relative;
}

.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0; right: 0;
    height: 4px;
    background: var(--c-glimlach-underline);
    opacity: 0.6;
    border-radius: 2px;
    z-index: -1;
}

.hero__lead {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--antraciet);
    max-width: 500px;
    margin: 0 0 2rem;
    line-height: 1.5;
    font-style: italic;
}

.hero__lead strong {
    font-style: normal;
    font-weight: 500;
    color: var(--mos);
}

.hero__cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--mos);
    color: var(--wit);
    padding: 0.9rem 1.6rem;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 0;
}

.btn-primary:hover {
    background: var(--mos-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(31, 59, 36, 0.3);
    color: var(--wit);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.2rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--mos);
    transition: gap 0.25s;
}

.btn-secondary:hover { gap: 0.9rem; }

/* Tap-highlight + focus-ring reset voor alle pill-knoppen (was Webkit-blauw bij active/focus) */
.btn-primary,
.btn-secondary,
.cta__outline,
.site-nav__menu > li > a.site-nav__cta,
.site-nav__menu .site-nav__cta > a,
.site-nav__menu li.menu-item-cta > a {
    -webkit-tap-highlight-color: transparent;
    outline: 0;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.cta__outline:focus-visible,
.site-nav__menu > li > a.site-nav__cta:focus-visible,
.site-nav__menu .site-nav__cta > a:focus-visible,
.site-nav__menu li.menu-item-cta > a:focus-visible {
    outline: 2px solid var(--mos);
    outline-offset: 3px;
}

/* Hero visual */
.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 500px;
}

.hero__visual-main {
    position: relative;
    flex: 1;
    background: linear-gradient(160deg, var(--mos-mid) 0%, var(--mos) 100%);
    border-radius: 120px 120px 20px 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 25, 24, 0.15);
}

/* Wanneer een Customizer-foto is ingesteld: gebruik die als background; verberg de decoratieve SVG. */
.hero__visual-main.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero__visual-main.has-image .hero__scene {
    display: none;
}

.hero__visual-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--c-glow-green) 18%, transparent) 0%, transparent 45%),
        radial-gradient(circle at 70% 80%, color-mix(in srgb, var(--c-glow-brown) 22%, transparent) 0%, transparent 45%);
}

.hero__visual-main::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(to top, color-mix(in srgb, var(--c-overlay-dark) 85%, transparent) 0%, transparent 100%);
    pointer-events: none;
}

.hero__scene {
    position: absolute;
    inset: 0;
    color: var(--highlight);
}

.hero__visual-tag {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--highlight);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 0.7;
    z-index: 2;
}

.hero__visual-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: var(--wit);
    z-index: 2;
}

.hero__visual-caption-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--highlight);
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.hero__visual-caption-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

/* Hero contact CTA card (vervangt oude klantreactie mini-kaart) */
.hero__contact-cta {
    background: var(--c-card);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: 0 20px 50px rgba(26, 25, 24, 0.1);
    border: 1px solid var(--lijn);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.hero__contact-cta__icons {
    display: flex;
    gap: 0.6rem;
    flex: 1;
    justify-content: flex-end;
}

.hero__contact-cta .btn-primary,
.hero__contact-cta__icon {
    cursor: pointer;
    -webkit-user-drag: none;
    user-select: none;
}

.hero__contact-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--c-primary) 8%, transparent);
    color: var(--c-primary);
    border: 1px solid color-mix(in srgb, var(--c-primary) 18%, transparent);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
}

.hero__contact-cta__icon:hover,
.hero__contact-cta__icon:focus-visible {
    background: var(--c-primary);
    color: var(--c-card);
    border-color: var(--c-primary);
    transform: translateY(-2px);
}

/* Tablet en kleiner: hele hero-visual (beeld + contact-balk) stapelt onder de tekst en
   voegt niets toe → verbergen. Contact verhuist naar de floating-contact knop. */
@media (max-width: 899px) {
    .hero__visual { display: none; }
}

/* ==========================================================================
   Floating contact (FAB) — alleen tablet en mobiel
   ========================================================================== */
.floating-contact { display: none; }

@media (max-width: 899px) {
    .floating-contact {
        display: block;
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        z-index: 200;
    }

    .floating-contact__menu {
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0s linear 0.3s;
    }

    .floating-contact.is-open .floating-contact__menu {
        visibility: visible;
        pointer-events: auto;
        transition: visibility 0s;
    }

    /* Items poppen/sliden in op openen, en weer uit op sluiten */
    .floating-contact__call,
    .floating-contact__social {
        opacity: 0;
        transition: opacity 0.2s ease, transform 0.25s ease;
    }

    .floating-contact__call {
        transform: translateX(0.8rem) scale(0.92);
    }

    .floating-contact__social {
        transform: translateY(0.8rem) scale(0.6);
    }

    .floating-contact.is-open .floating-contact__call,
    .floating-contact.is-open .floating-contact__social {
        opacity: 1;
        transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .floating-contact.is-open .floating-contact__call {
        transform: translateX(0) scale(1);
    }

    .floating-contact.is-open .floating-contact__social {
        transform: translateY(0) scale(1);
    }

    .floating-contact.is-open .floating-contact__social:nth-child(1) { transition-delay: 0.05s; }
    .floating-contact.is-open .floating-contact__social:nth-child(2) { transition-delay: 0.10s; }
    .floating-contact.is-open .floating-contact__social:nth-child(3) { transition-delay: 0.15s; }
    .floating-contact.is-open .floating-contact__social:nth-child(4) { transition-delay: 0.20s; }

    /* Belknop opent naar links, naast de toggle */
    .floating-contact__call {
        position: absolute;
        right: calc(100% + 0.75rem);
        bottom: 0;
        height: 60px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
        padding: 0 1.1rem;
        border-radius: 999px;
        background: var(--c-primary);
        color: var(--c-card);
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 12px 30px rgba(26, 25, 24, 0.2);
    }

    /* Socials openen naar boven, gestapeld boven de toggle */
    .floating-contact__socials {
        position: absolute;
        right: 6px;
        bottom: calc(100% + 0.75rem);
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 0.6rem;
    }

    .floating-contact__social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--c-card);
        color: var(--c-primary);
        border: 1px solid var(--lijn);
        box-shadow: 0 12px 30px rgba(26, 25, 24, 0.15);
        transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
        text-decoration: none;
    }

    .floating-contact__social:hover,
    .floating-contact__social:focus-visible {
        background: var(--c-primary);
        color: var(--c-card);
        transform: translateY(-2px);
    }

    .floating-contact__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        background: var(--c-primary);
        color: var(--c-card);
        box-shadow: 0 16px 36px rgba(26, 25, 24, 0.28);
        transition: transform 0.2s ease;
    }

    .floating-contact__toggle:hover { transform: scale(1.05); }

    .floating-contact__toggle svg { transition: opacity 0.18s ease, transform 0.18s ease; }
    .floating-contact__toggle .floating-contact__icon-close { display: none; }

    .floating-contact.is-open .floating-contact__toggle .floating-contact__icon-open { display: none; }
    .floating-contact.is-open .floating-contact__toggle .floating-contact__icon-close { display: block; }
    .floating-contact.is-open .floating-contact__toggle { transform: rotate(90deg); }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
    background: var(--mos);
    color: var(--highlight);
    padding: .5em 0;
    overflow: hidden;
    border-top: 1px solid rgba(200,217,143,0.1);
    border-bottom: 1px solid rgba(200,217,143,0.1);
    margin-top: 0;
}

.marquee__track {
    display: flex;
    gap: 0;
    animation: marquee-scroll 80s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee__item {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 2rem;
}

.marquee__item::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-dot-accent);
    border-radius: 50%;
    opacity: 0.5;
}

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

/* ==========================================================================
   Section basics
   ========================================================================== */
.section { padding: 4rem 0; }

/* Afwisselende achtergronden voor de content-secties (services/about/projecten/
   testimonial). Via :nth-child-pariteit blijft de afwisseling kloppen, ook als
   een sectie wegvalt (bv. projecten verbergt zich als er geen projecten zijn). */
.site-main > .section--alt:nth-child(odd) { background: var(--zand-licht); }
.site-main > .section--alt:nth-child(even) { background: var(--zand); }

.section__head {
    max-width: 700px;
    margin-bottom: 3rem;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 11px;
    font-weight: 600;
    color: var(--olijf);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section__eyebrow::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--olijf);
}

.section__title {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 6vw, 3.25rem);
    font-weight: 400;
    color: var(--mos);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.section__title em {
    font-style: italic;
    color: var(--c-glimlach);
    font-weight: 300;
}

.section__lead {
    font-size: 1rem;
    color: var(--grijs);
    line-height: 1.6;
    max-width: 560px;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services .section__lead { max-width: 660px; }

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.service-card {
    background: var(--c-service-card);
    border-radius: 20px;
    border: 1px solid var(--lijn);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--c-service-overlay);
}

.service-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--c-service-overlay) 30%, transparent);
    pointer-events: none;
}

.service-card__image--placeholder {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--c-service-icon-bg) 60%, transparent),
        color-mix(in srgb, var(--c-service-overlay) 40%, transparent));
}

.service-card:hover .service-card__image {
    transform: scale(1.04);
}

.service-card__icon-wrap {
    margin: -42px 0 0 1.25rem;
    width: 100px;
    aspect-ratio: 63.76 / 52.39;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    align-self: flex-start;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--c-service-icon-fg);
}

.service-card__icon-frame {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

.service-card__icon-frame svg {
    width: 72px;
    height: 72px;
    display: block;
    overflow: visible;
    margin-top: 7px;
    margin-left: 4px;
}

.service-card__icon-disc {
    position: absolute;
    width: 58%;
    aspect-ratio: 1;
    left: 35%;
    top: 52%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--c-service-icon-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.service-card__icon-glyph {
    position: absolute;
    left: 35%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-service-icon-fg);
    z-index: 3;
}

.service-card__icon-glyph svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card__icon-glyph img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.service-card:hover .service-card__icon-wrap {
    transform: translateY(-3px) rotate(-4deg);
}

.service-card__body {
    padding: 1.25rem 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-text);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.service-card__text {
    color: var(--grijs);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.service-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: none;
}

.service-card__list li {
    font-size: 13px;
    color: var(--antraciet);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--lijn);
}

.service-card__list li:last-child { border-bottom: none; }

.service-card__list li::before {
    content: '';
    width: 13px;
    height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6B3A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    flex-shrink: 0;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(26, 25, 24, 0.1);
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
    position: relative;
    overflow: hidden;
}

.about__bg-word {
    position: absolute;
    bottom: -5%;
    left: -5%;
    font-family: var(--serif);
    font-size: 22vw;
    font-weight: 300;
    color: var(--mos);
    opacity: 0.03;
    line-height: 0.8;
    letter-spacing: -0.05em;
    pointer-events: none;
    font-style: italic;
    display: none;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

.about__visual {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(160deg, var(--olijf) 0%, var(--mos) 100%);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 25, 24, 0.15);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about__visual.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 10%, color-mix(in srgb, var(--c-glow-green) 20%, transparent) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, color-mix(in srgb, var(--c-glow-brown) 20%, transparent) 0%, transparent 45%);
    pointer-events: none;
}

.about__visual.has-image::before {
    background-image:
        linear-gradient(
            to bottom,
            color-mix(in srgb, var(--c-about-overlay) 90%, transparent) 0%,
            color-mix(in srgb, var(--c-about-overlay) 50%, transparent) 18%,
            color-mix(in srgb, var(--c-about-overlay) 18%, transparent) 45%,
            color-mix(in srgb, var(--c-about-overlay) 45%, transparent) 100%
        ),
        radial-gradient(circle at 87% 10%, color-mix(in srgb, var(--c-glow-green) 20%, transparent) 0%, transparent 12%),
        radial-gradient(circle at 10% 90%, color-mix(in srgb, var(--c-glow-brown) 20%, transparent) 0%, transparent 45%);
}

.about__years {
    position: relative;
    color: var(--c-feature-highlight);
}

.about__years-label {
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about__years-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.about__years-big {
    font-family: var(--serif);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--c-feature-highlight);
}

.about__years-sub {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-top: 1rem;
    line-height: 1.3;
}

.about__highlights {
    position: relative;
    display: grid;
    gap: 0.6rem;
}

.about__highlight {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--zand-licht);
    transition: all 0.3s;
}

.about__highlight:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(200,217,143,0.3);
}

.about__highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(200,217,143,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight);
    flex-shrink: 0;
}

.about__highlight-text { font-size: 13px; line-height: 1.3; }

.about__highlight-text strong {
    display: block;
    color: var(--wit);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 0.1rem;
}

.about__content { max-width: 560px; }

.about__quote {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--mos);
    line-height: 1.3;
    margin: 2rem 0;
    letter-spacing: -0.015em;
    position: relative;
    padding-left: 2.5rem;
}

.about__quote::before {
    content: '"';
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: -0.75rem;
    color: var(--c-quote-mark);
    line-height: 1;
}

.about__content p {
    color: var(--antraciet);
    margin: 0 0 1rem;
    line-height: 1.7;
}

.about__sig {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lijn-sterk);
}

.about__sig-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olijf), var(--mos));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight);
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about__sig-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--mos);
    font-weight: 500;
}

.about__sig-role {
    font-size: 12px;
    color: var(--grijs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ==========================================================================
   Projects
   ========================================================================== */
.projects { position: relative; }

.projects__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.projects__head .section__head { margin-bottom: 0; }

.projects__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 1.5px solid var(--mos);
    border-radius: 100px;
    color: var(--mos);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
}

.projects__view-all:hover {
    background: var(--mos);
    color: var(--wit);
}

.projects__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    grid-auto-flow: dense;
}

.project-card {
    background: var(--c-card);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(26, 25, 24, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(26, 25, 24, 0.12);
}

.project-gallery { position: relative; }
.project-gallery__viewport { position: relative; }

.project-gallery__slide { display: none; }
.project-gallery__slide.is-active {
    display: block;
    animation: project-fade 0.4s ease;
}

@keyframes project-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.project-gallery__image {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-gallery__image--placeholder {
    background:
        radial-gradient(circle at 30% 70%, color-mix(in srgb, var(--c-glow-green) 30%, transparent) 0%, transparent 55%),
        linear-gradient(135deg, var(--mos-mid) 0%, var(--mos) 100%);
}

/* Label/tag-pill op de foto */
.project__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(200, 217, 143, 0.2);
    backdrop-filter: blur(8px);
    color: var(--highlight);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(200, 217, 143, 0.2);
}

.project__tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-dot-accent);
}

.project-gallery__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
}

/* Pijlen — verticaal gecentreerd op de afbeeldingscontainer, altijd zichtbaar
   bij meerdere afbeeldingen. Geen blauwe UA-states. */
.project-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: rgba(26, 25, 24, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 4;
    outline: 0;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
}

.project-gallery__arrow::-moz-focus-inner { border: 0; padding: 0; }
.project-gallery__arrow:hover { background: rgba(26, 25, 24, 0.75); color: #fff; box-shadow: none; }
.project-gallery__arrow:active { background: rgba(26, 25, 24, 0.85); color: #fff; box-shadow: none; }
.project-gallery__arrow:focus { outline: 0; box-shadow: none; }
.project-gallery__arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.project-gallery__arrow--prev { left: 0.6rem; }
.project-gallery__arrow--next { right: 0.6rem; }

/* Bolletjes — onderaan gecentreerd óp de afbeelding */
.project-gallery__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.85rem;
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    z-index: 4;
}

.project-gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: all 0.25s;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
}

.project-gallery__dot::-moz-focus-inner { border: 0; padding: 0; }
.project-gallery__dot:hover { background: rgba(255, 255, 255, 0.8); }
.project-gallery__dot.is-active { background: #fff; width: 22px; border-radius: 4px; }
.project-gallery__dot:focus { outline: 0; }
.project-gallery__dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* Kaart-body — titel boven beschrijving */
.project-card__body { padding: 1rem 1.25rem 1.25rem; }

.project-card__title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--c-text);
}

.project-card__meta {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.project-card__desc {
    margin-top: 0.6rem;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.project-card__desc-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: pre-line;
}

.project-card__desc.is-expanded .project-card__desc-text {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.project-card__readmore {
    padding: 0.15rem 0;
    margin-top: 0.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Volledige state-reset: geen achtergrond/rand/schaduw in welke staat dan ook. */
.project-card__readmore,
.project-card__readmore:hover,
.project-card__readmore:focus,
.project-card__readmore:active,
.project-card__readmore:focus-visible {
    background: none;
    border: 0;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
}

.project-card__readmore::-moz-focus-inner { border: 0; padding: 0; }

.project-card__readmore[hidden] { display: none; }
/* Kleur blijft in ÁLLE states de leesbare tekstkleur (--c-text contrasteert per
   thema altijd met de kaart) → de link valt nergens weg, ook niet in hover/
   active/focus. Feedback bij hover/active = alleen een dikkere onderlijn. */
.project-card__readmore,
.project-card__readmore:hover,
.project-card__readmore:focus,
.project-card__readmore:active,
.project-card__readmore:focus-visible { color: var(--c-text); }
.project-card__readmore:hover,
.project-card__readmore:active { text-decoration-thickness: 2px; }
.project-card__readmore:focus { outline: none; }
.project-card__readmore:focus-visible {
    outline: 2px solid var(--c-text);
    outline-offset: 2px;
    border-radius: 3px;
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial {
    padding: 4rem 0;
}

.testimonial__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial__slider {
    position: relative;
}

.testimonial__slide {
    display: none;
    animation: testimonial-fade 0.5s ease;
}

.testimonial__slide.is-active {
    display: block;
}

@keyframes testimonial-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial__stars {
    display: inline-flex;
    gap: 3px;
    margin-bottom: 1.5rem;
    color: var(--c-star-fill);
}

.testimonial__star {
    color: var(--c-star-empty);
    transition: color 0.2s;
}

.testimonial__star.is-filled {
    color: var(--c-star-fill);
}

/* Accentlijn krimpt mee met korte reacties: fit-content tegen de tekst aan,
   max-width = container zodat lange quotes gewoon wrappen. */
.testimonial__quote {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 4vw, 2.25rem);
    font-style: italic;
    font-weight: 300;
    color: var(--mos);
    line-height: 1.3;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 2rem;
    padding-left: 1.25rem;
    border-left: 4px solid currentColor;
    letter-spacing: -0.015em;
}

.testimonial__author { font-size: 14px; color: var(--grijs); }

.testimonial__author strong {
    color: var(--mos);
    font-weight: 600;
    display: block;
    font-size: 15px;
    margin-bottom: 0.15rem;
}

/* Slideshow navigatie (alleen bij meerdere reacties) */
.testimonial__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.testimonial__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--lijn-sterk);
    background: transparent;
    color: var(--mos);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.testimonial__arrow:hover {
    background: var(--mos);
    color: var(--wit);
    border-color: var(--mos);
    transform: translateY(-1px);
}

.testimonial__arrow:focus-visible {
    outline: 2px solid var(--olijf);
    outline-offset: 2px;
}

.testimonial__dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testimonial__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(107, 93, 72, 0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s;
}

.testimonial__dot:hover {
    background: rgba(107, 93, 72, 0.5);
}

.testimonial__dot.is-active {
    background: var(--mos);
    width: 24px;
    border-radius: 4px;
}

.testimonial__dot:focus-visible {
    outline: 2px solid var(--olijf);
    outline-offset: 3px;
}

/* ==========================================================================
   Werkgebied
   ========================================================================== */
.werkgebied { position: relative; overflow: hidden; }

.werkgebied__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.werkgebied__content { max-width: 560px; }

.werkgebied__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1.5rem;
    margin: 1.75rem 0;
    padding: 0;
}

.werkgebied__list li {
    font-size: 14px;
    color: var(--antraciet);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--lijn);
}

.werkgebied__list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-dot-accent);
    flex-shrink: 0;
}

.werkgebied__note {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--c-card);
    border-left: 3px solid var(--olijf);
    border-radius: 4px;
    font-size: 13px;
    color: var(--grijs);
    line-height: 1.5;
}

.werkgebied__note strong {
    color: var(--mos);
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    font-size: 14px;
}

.werkgebied__inner {
    position: relative;
    z-index: 1;
}

.werkgebied__map {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--c-surface);
    box-shadow: 0 30px 60px rgba(26, 25, 24, 0.15);
}

.werkgebied__map-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.werkgebied__map-canvas .leaflet-container {
    font: inherit;
    background: var(--c-surface);
}

.werkgebied__bg-skyline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: 76px;
    fill: var(--c-primary);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.werkgebied__map-canvas .werkgebied-pin {
    background: none;
    border: 0;
    filter: drop-shadow(0 2px 3px rgba(26, 25, 24, 0.35));
}

.werkgebied__map-canvas .werkgebied-tip--center {
    font-weight: 600;
}

/* ==========================================================================
   LucasTuinplan
   ========================================================================== */
.tuinplan__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--c-card);
    border: 1px solid var(--lijn);
    border-radius: 24px;
    overflow: hidden;
}

.tuinplan__content {
    padding: 1.75rem;
}

.tuinplan__intro p {
    font-size: 15px;
    color: var(--grijs);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.tuinplan__outro {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--mos);
    line-height: 1.5;
    margin: 0 0 1.5rem;
}

.tuinplan__panel {
    background: color-mix(in srgb, var(--highlight) 22%, transparent);
    padding: 1.75rem;
}

.tuinplan__panel-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--olijf);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 1rem;
}

.tuinplan__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tuinplan__list li {
    font-size: 14px;
    color: var(--antraciet);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--lijn);
}

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

.tuinplan__list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-dot-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
    background: var(--mos);
    color: var(--wit);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, color-mix(in srgb, var(--c-glow-green) 15%, transparent) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 11px;
    font-weight: 600;
    color: var(--highlight);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta__eyebrow::before, .cta__eyebrow::after {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--highlight);
    opacity: 0.5;
}

.cta__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 7vw, 4.25rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    color: var(--wit);
}

.cta__title em {
    font-style: italic;
    color: var(--highlight);
    font-weight: 300;
}

.cta__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.cta__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__actions .btn-primary {
    background: var(--highlight);
    color: var(--mos);
    padding: 1rem 1.75rem;
    font-size: 15px;
}

.cta__actions .btn-primary:hover {
    background: var(--wit);
    color: var(--mos);
    box-shadow: 0 20px 40px rgba(200, 217, 143, 0.3);
}

.cta__outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border: 1.5px solid rgba(200, 217, 143, 0.3);
    border-radius: 100px;
    color: var(--highlight);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s;
}

.cta__outline:hover {
    border-color: var(--highlight);
    background: rgba(200, 217, 143, 0.1);
    transform: translateY(-2px);
    color: var(--highlight);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--c-footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.site-footer__mark {
    position: absolute;
    right: -140px;
    bottom: -74px;
    width: 620px;
    color: var(--highlight);
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
    transform: rotate(-12deg);
    transform-origin: bottom right;
}

.site-footer__mark svg {
    display: block;
    width: 100%;
    height: auto;
}

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


.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.site-footer__logo {
    display: inline-flex;
    margin-bottom: 1rem;
}

/* Wordmark in het logo gebruikt currentColor → wit op de donkere footer (blad blijft getokeniseerd groen). */
.site-footer__logo .site-logo--default {
    color: var(--wit);
}

.site-footer__logo .custom-logo-link img {
    display: block;
    height: var(--lucas-logo-height, 56px);
    width: auto;
    max-width: 320px;
}

.site-footer__tagline {
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
    font-family: var(--serif);
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.site-footer__socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--wit) 10%, transparent);
    color: var(--wit);
    border: 1px solid color-mix(in srgb, var(--wit) 22%, transparent);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
    background: var(--highlight);
    color: var(--c-footer-bg);
    border-color: var(--highlight);
    transform: translateY(-2px);
}

.site-footer__heading {
    color: var(--wit);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer__heading::before {
    content: '';
    width: 16px;
    height: 1px;
    background: rgba(200,217,143,0.4);
}

.site-footer__list { list-style: none; margin: 0; padding: 0; }

.site-footer__list li {
    margin-bottom: 0.5rem;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.site-footer__list a {
    transition: color 0.2s;
}

.site-footer__list a:hover { color: var(--highlight); }

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__legal {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Responsive breakpoints (mobile-first)
   ========================================================================== */

/* Tablet: 600px+ */
@media (min-width: 600px) {
    .container { padding: 0 1.5rem; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .services__grid .service-card:nth-child(3) { grid-column: span 2; max-width: 50%; }
    .projects__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .projects__grid .project-card { grid-column: span var(--c-span, 1); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .werkgebied__list { gap: 0.5rem 2rem; }
}

/* Desktop: 900px+ */
@media (min-width: 900px) {
    .section { padding: 7rem 0; }
    .hero { padding: 9rem 0 5rem; }
    .hero__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .hero__title { font-size: clamp(3rem, 7vw, 5.5rem); }
    .hero__lead { font-size: 1.35rem; }
    .hero__visual { height: 620px; }
    .hero__visual-main { border-radius: 200px 200px 24px 24px; }
    .hero__visual-caption { bottom: 2rem; left: 2.5rem; right: 2.5rem; }
    .hero__visual-caption-title { font-size: 1.5rem; }
    .hero__visual-tag { top: 2rem; }
    .hero__contact-cta { padding: 1.25rem 1.5rem; }
    .hero__contact-cta__icon { width: 48px; height: 48px; }

    .marquee { padding: .5em 0; margin-top: 0; }
    .marquee__item { font-size: 2rem; gap: 3rem; }

    .section__head { margin-bottom: 3rem; }

    .services__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .services__grid .service-card:nth-child(3) { grid-column: auto; max-width: none; }

    .about__inner { grid-template-columns: 1fr 1.15fr; gap: 5rem; }
    .about__bg-word { display: block; }
    .about__years-big { font-size: 5.5rem; }
    .about__visual { padding: 3rem; aspect-ratio: 4/5; flex-direction: column; justify-content: space-between; }
    .about__quote { font-size: 2rem; padding-left: 3rem; }

    .projects__grid {
        grid-template-columns: repeat(var(--grid-cols, 3), 1fr);
        gap: 1.75rem;
    }
    .project-card { grid-column: span var(--c-span, 1); }
    .project-card__title { font-size: 1.5rem; }

    /* Homepage = bento: vaste rij-context + row-spans + afbeelding vult de cel.
       /projecten negeert rijen (oneindig) — daar tellen alleen kolommen. */
    .projects__grid--home {
        grid-auto-rows: minmax(260px, auto);
        align-items: stretch;
    }
    .projects__grid--home .project-card {
        grid-row: span var(--r-span, 1);
        display: grid;
        grid-template-rows: 1fr auto;
    }
    .projects__grid--home .project-gallery { min-height: 180px; }
    .projects__grid--home .project-gallery,
    .projects__grid--home .project-gallery__viewport,
    .projects__grid--home .project-gallery__slide.is-active,
    .projects__grid--home .project-gallery__image { height: 100%; }
    .projects__grid--home .project-gallery__image { aspect-ratio: auto; }

    .testimonial { padding: 7rem 0; }

    .werkgebied__inner { grid-template-columns: 1fr 1.2fr; gap: 5rem; }

    .tuinplan__card { grid-template-columns: 1.15fr 1fr; }
    .tuinplan__content { padding: 3rem; }
    .tuinplan__panel { padding: 3rem; }

    .cta { padding: 8rem 0; }
    .cta__text { font-size: 1.15rem; }

    .site-header { padding: 1.25rem 0; }
    .site-logo { font-size: 1.35rem; }
    .site-nav__menu { display: flex; }
    .site-nav__toggle { display: none; }
    .site-footer { padding: 5rem 0 2rem; }
    .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
}

/* Large desktop: 1200px+ */
@media (min-width: 1200px) {
    .container { padding: 0 2rem; }
    .hero__visual-main { border-radius: 280px 280px 24px 24px; }
}

/* ==========================================================================
   Body content (single posts, pages, archive intros, 404)
   Scope met `.entry-content` zodat homepage-secties ongemoeid blijven.
   ========================================================================== */
.entry-content { font-size: 1.0625rem; line-height: 1.7; color: var(--antraciet); }
.entry-content > * + * { margin-top: 1.25rem; }
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--mos);
    line-height: 1.2;
    margin-top: 2.5rem;
}
.entry-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
.entry-content h3 { font-size: clamp(1.3rem, 2.5vw, 1.5rem); }
.entry-content h4 { font-size: 1.15rem; }
.entry-content p { margin: 0; }
.entry-content a {
    color: var(--mos);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--olijf); }
.entry-content strong { font-weight: 600; }
.entry-content em { font-style: italic; }
.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    list-style: disc;
}
.entry-content ol { list-style: decimal; }
.entry-content li + li { margin-top: 0.5rem; }
.entry-content blockquote {
    border-left: 3px solid var(--mos);
    padding: 0.25rem 0 0.25rem 1.25rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--mos);
}
.entry-content figure { margin: 2rem 0; }
.entry-content figure img { border-radius: 12px; }
.entry-content figcaption {
    font-size: 0.875rem;
    color: var(--grijs);
    margin-top: 0.5rem;
    text-align: center;
}
.entry-content code {
    background: var(--zand);
    padding: 0.1em 0.4em;
    border-radius: 4px;
    font-size: 0.95em;
}
.entry-content hr {
    border: 0;
    border-top: 1px solid var(--lijn);
    margin: 2.5rem 0;
}

/* ==========================================================================
   Pagination (WordPress `the_posts_pagination`)
   ========================================================================== */
.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 1px solid var(--lijn-sterk);
    border-radius: 8px;
    color: var(--antraciet);
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
}
.nav-links .page-numbers:hover { background: var(--zand); border-color: var(--mos); }
.nav-links .page-numbers.current {
    background: var(--mos);
    color: var(--highlight);
    border-color: var(--mos);
}
.nav-links .page-numbers.dots { border: 0; }

/* ==========================================================================
   Generic page wrappers — padding under fixed header
   ========================================================================== */
.project-archive,
.project-single,
.page-fallback,
.page-404 {
    padding: 7rem 0 4rem;
    background: var(--zand-licht);
}

/* ==========================================================================
   Project archive — uniform raster (géén bento-spans): 1 kolom (mobiel) /
   2 kolommen (tablet en groter). Kaarten in dezelfde rij zijn even hoog
   (fill-layout); de rijhoogte schaalt mee met de breedte (clamp + vw).
   ========================================================================== */
.project-archive__head { margin-bottom: 3rem; }
.project-archive__intro { margin-top: 1rem; max-width: 60ch; }

.project-archive .projects__grid--archive {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
}
.project-archive .projects__grid--archive .project-card {
    grid-column: auto;
    grid-row: auto;
}

@media (min-width: 600px) {
    .project-archive .projects__grid--archive {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: clamp(360px, 40vw, 560px);
        align-items: stretch;
    }
    .project-archive .projects__grid--archive .project-card {
        display: grid;
        grid-template-rows: 1fr auto;
        height: 100%;
    }
    .project-archive .projects__grid--archive .project-gallery,
    .project-archive .projects__grid--archive .project-gallery__viewport,
    .project-archive .projects__grid--archive .project-gallery__slide.is-active,
    .project-archive .projects__grid--archive .project-gallery__image { height: 100%; }
    .project-archive .projects__grid--archive .project-gallery__image { aspect-ratio: auto; min-height: 0; }
}

/* ==========================================================================
   Project single — slideshow full-width + optionele body-tekst
   ========================================================================== */
.project-single__stage {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}
.project-single__stage .project-card:hover {
    transform: none;
    box-shadow: 0 1px 2px rgba(26, 25, 24, 0.04);
}
.project-single__content {
    max-width: 70ch;
    margin: 0 auto;
}
.project-single__back-wrap {
    text-align: center;
    margin-top: 2.5rem;
}
.project-single__nav-back {
    color: var(--mos);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    padding: 0.75rem;
}

/* ==========================================================================
   404 page
   ========================================================================== */
.page-404__inner { max-width: 60ch; }
.page-404__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.25rem, 6vw, 4rem);
    line-height: 1.1;
    color: var(--mos);
    margin: 0.75rem 0 1.5rem;
}
.page-404__title em {
    font-style: italic;
    color: var(--c-glimlach);
}

/* ==========================================================================
   Generic fallback (index.php) — list view
   ========================================================================== */
.page-fallback__inner { max-width: 70ch; }
.page-fallback__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--mos);
    margin-bottom: 2.5rem;
}
.page-fallback__list { display: flex; flex-direction: column; gap: 2.5rem; }
.page-fallback__item {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--lijn);
}
.page-fallback__item:last-child { border-bottom: 0; }
.page-fallback__item-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--mos);
}
.page-fallback__item-title a:hover { color: var(--olijf); }
.page-fallback__item-meta {
    font-size: 0.875rem;
    color: var(--grijs);
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Tablet/desktop overrides voor archive/single
   ========================================================================== */
@media (min-width: 900px) {
    .project-archive,
    .project-single,
    .page-fallback,
    .page-404 { padding: 9rem 0 6rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
