/* Praktijk d'Hollosy — frontend stijlen */

/* ─────────────────────────────────────────────────────────
   GLOBAL: body, typografie, page offset
   ───────────────────────────────────────────────────────── */
body { background: #fdfaf7 !important; color: #3d2b22; font-family: 'Lato', system-ui, sans-serif; line-height: 1.7; margin: 0; padding: 0; }
body, body * { box-sizing: border-box; }
body h1, body h2, body h3, body h4, body h5,
.elementor-widget-heading h1, .elementor-widget-heading h2, .elementor-widget-heading h3 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 400 !important;
    color: #3d2b22 !important;
    letter-spacing: -0.005em;
}
body h1 em, body h2 em, body h3 em { font-style: italic; color: #c4896e; }
body a { color: inherit; }

/* Pagina-content schuift onder de fixed header */
.elementor, body #content { padding-top: 110px; }
@media (max-width: 1024px) { .elementor, body #content { padding-top: 88px; } }

/* ─────────────────────────────────────────────────────────
   HEADER (sticky, blur, logo, nav, mobile drawer)
   ───────────────────────────────────────────────────────── */
.pdh-header {
    position: fixed; inset-inline: 0; top: 0; z-index: 9999;
    background: rgba(253, 250, 247, 0.94);
    backdrop-filter: saturate(135%) blur(14px);
    -webkit-backdrop-filter: saturate(135%) blur(14px);
    border-bottom: 1px solid rgba(232, 221, 214, 0.55);
    transition: box-shadow .35s ease, border-color .35s ease, background .35s ease, top .2s ease;
}
.pdh-header.is-scrolled { box-shadow: 0 12px 36px -24px rgba(61, 43, 34, 0.35); border-bottom-color: #e8ddd6; }
/* Onder de WP admin-balk hangen */
body.admin-bar .pdh-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .pdh-header { top: 46px; } }
@media (max-width: 600px) { body.admin-bar .pdh-header { top: 0; } }

.pdh-header__inner {
    max-width: 75rem; margin: 0 auto; padding: 0.85rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; min-height: 96px;
}
@media (min-width: 768px) {
    .pdh-header__inner { padding: 0.9rem 2rem; min-height: calc(var(--pdh-header-logo-h, 110px) * 0.85 + 24px); }
}
@media (min-width: 1280px) {
    .pdh-header__inner { padding: 1rem 3rem; min-height: calc(var(--pdh-header-logo-h, 110px) + 30px); }
}

.pdh-header__logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.pdh-header__logo img {
    display: block;
    height: 72px;                              /* mobile default — leesbaar */
    width: auto;
    max-width: 240px;
    object-fit: contain;
    transition: transform .35s ease, height .25s ease;
}
@media (min-width: 768px) {
    /* Tablet: 85% van de customizer-hoogte */
    .pdh-header__logo img { height: calc(var(--pdh-header-logo-h, 110px) * 0.85); max-width: 320px; }
}
@media (min-width: 1280px) {
    /* Desktop: exact wat in customizer staat */
    .pdh-header__logo img { height: var(--pdh-header-logo-h, 110px); max-width: 380px; }
}
.pdh-header__logo:hover img { transform: translateY(-1px); }
.pdh-header__nav { display: none; }
@media (min-width: 1024px) {
    .pdh-header__nav { display: flex; align-items: center; flex: 1; justify-content: flex-end; gap: 2rem; padding-right: 2rem; }
}
.pdh-nav__list, .pdh-drawer__list { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 1.75rem; }
@media (min-width: 1280px) { .pdh-nav__list { gap: 2.25rem; } }
.pdh-nav__list li { margin: 0; }
.pdh-nav__list a {
    position: relative; font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 500;
    color: rgba(61, 43, 34, 0.85); text-decoration: none; padding: 0.3rem 0; line-height: 1; white-space: nowrap;
    transition: color .25s ease;
}
.pdh-nav__list a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 2px; background: #c4896e; border-radius: 1px;
    transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.pdh-nav__list a:hover { color: #c4896e; }
.pdh-nav__list a:hover::after, .pdh-nav__list .current-menu-item > a::after { transform: scaleX(1); }
/* CTA-knop boven (alleen desktop) — op telefoon/tablet NOOIT zichtbaar, dat staat al in de hamburger-drawer.
   Hogere specificiteit (.pdh-header .pdh-header__cta) om .pdh-btn { display: inline-flex } te overrulen. */
.pdh-header .pdh-header__cta,
a.pdh-header__cta,
a.pdh-header__cta.pdh-btn {
    display: none !important;
    padding: 0.7rem 1.25rem !important;
    font-size: 0.85rem !important;
}
@media (min-width: 1024px) {
    .pdh-header .pdh-header__cta,
    a.pdh-header__cta,
    a.pdh-header__cta.pdh-btn { display: inline-flex !important; }
}
.pdh-header__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 999px;
    border: 1px solid #e8ddd6; background: rgba(249, 245, 242, 0.7);
    color: #3d2b22 !important; cursor: pointer; padding: 0;
    transition: background .25s ease, border-color .25s ease;
    position: relative; flex-shrink: 0;
}
@media (min-width: 1024px) { .pdh-header__toggle { display: none !important; } }
.pdh-header__toggle:hover { background: #f5ede4; border-color: #c4896e; }
.pdh-header__toggle span {
    position: absolute; left: 14px; right: 14px; height: 2px;
    background: #3d2b22 !important;       /* bruin (bark) ipv wit */
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease, top .3s ease, background .25s ease;
}
.pdh-header__toggle:hover span { background: #c4896e !important; }
.pdh-header__toggle span:nth-child(1) { top: 16px; }
.pdh-header__toggle span:nth-child(2) { top: 21px; }
.pdh-header__toggle span:nth-child(3) { top: 26px; }
.pdh-header__toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.pdh-header__toggle.is-open span:nth-child(2) { opacity: 0; }
.pdh-header__toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.pdh-header__drawer {
    border-top: 1px solid rgba(232, 221, 214, 0.7); background: #fdfaf7;
    padding: 2rem 1.5rem; max-height: calc(100vh - 72px); overflow-y: auto;
}
.pdh-drawer__list { flex-direction: column; align-items: stretch; gap: 0; }
.pdh-drawer__list li { border-bottom: 1px solid rgba(232, 221, 214, 0.7); }
.pdh-drawer__list a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
    color: #3d2b22; text-decoration: none;
}
.pdh-drawer__list a::after { content: "→"; color: #c4896e; margin-left: 1rem; }
.pdh-drawer__cta { display: flex !important; margin-top: 2rem; width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.pdh-footer { background: #f7eee5; color: #3d2b22; margin-top: 3rem; padding-top: 0; }
/* Top divider — transparant zoals gevraagd, geen extra ruimte boven de footer */
.pdh-footer__divider { height: 0; background: transparent; }
.pdh-footer__main {
    max-width: 72rem; margin: 0 auto;
    padding: 2.5rem 1.25rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    align-items: start;
}
@media (min-width: 768px) {
    .pdh-footer__main {
        padding: 3rem 2rem 1rem;
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}
@media (min-width: 1024px) {
    .pdh-footer__main {
        padding: 2rem 3rem 0;          /* tight aan top én geen extra ruimte tussen kolommen en de streep */
        grid-template-columns: 4fr 2fr 2fr 4fr;
        gap: 3rem;
    }
}
/* Geen onnodige ruimte op het laatste element binnen elke kolom */
.pdh-footer__col ul,
.pdh-footer__col dl { margin-bottom: 0; padding-bottom: 0; }
.pdh-footer__brand > *:last-child { margin-bottom: 0; }
.pdh-footer__brand { grid-column: 1 / -1; }
@media (min-width: 1024px) { .pdh-footer__brand { grid-column: 1; } }
.pdh-footer__logo img {
    display: block;
    height: 90px;                                 /* mobile default — leesbaar */
    width: auto;
    max-width: 280px;
    margin: 0 auto;
    object-fit: contain;
}
@media (min-width: 768px) {
    /* Desktop / tablet: customizer-hoogte */
    .pdh-footer__logo img {
        margin: 0;
        height: var(--pdh-footer-logo-h, 130px);
        max-width: 380px;
    }
}
.pdh-footer__tagline { margin-top: 1.5rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(128, 96, 77, 0.85); }
.pdh-footer__bio { margin-top: 1rem; font-size: 0.9rem; line-height: 1.65; color: #80604d; max-width: 24rem; }
@media (max-width: 767px) { .pdh-footer__bio { margin-left: auto; margin-right: auto; } }
.pdh-footer__social { margin-top: 1.5rem; display: flex; gap: 0.6rem; justify-content: center; }
@media (min-width: 768px) { .pdh-footer__social { justify-content: flex-start; } }
.pdh-social-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.4rem; height: 2.4rem; border-radius: 999px;
    border: 1px solid #e8ddd6; background: rgba(253, 250, 247, 0.92);
    color: #3d2b22; text-decoration: none;
    transition: transform .25s ease, color .25s ease, border-color .25s ease, background .25s ease;
}
.pdh-social-btn:hover { color: #c4896e; border-color: #c4896e; background: rgba(196, 137, 110, 0.08); transform: translateY(-1px); }
.pdh-footer__col h4 { margin: 0 0 1.25rem; font-family: 'Lato', sans-serif !important; font-weight: 500; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(128, 96, 77, 0.75); }
.pdh-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.pdh-footer__col a { color: rgba(61, 43, 34, 0.85); text-decoration: none; font-size: 0.92rem; transition: color .2s ease; }
.pdh-footer__col a:hover { color: #c4896e; }
.pdh-footer__col dl { margin: 0; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.92rem; color: rgba(61, 43, 34, 0.85); }
.pdh-footer__col dd { margin: 0; line-height: 1.55; }
.pdh-footer__col dt { display: none; }
.pdh-footer__kvkrow { display: flex; gap: 0.75rem; }
@media (max-width: 767px) { .pdh-footer__kvkrow { justify-content: center; } }
.pdh-footer__kvkrow dt { display: block; width: 3.5rem; flex-shrink: 0; color: rgba(128, 96, 77, 0.75); }
.pdh-footer__hr {
    height: 1px;
    background: rgba(232, 221, 214, 0.85);
    max-width: 72rem;
    margin: 0 auto;
    border: none;
}
/* Forceer geen dubbele rand op footer-elementen (theme/plugins kunnen border toevoegen) */
.pdh-footer, .pdh-footer * { border-top: 0; border-bottom: 0; }
.pdh-footer hr { display: none; }
.pdh-footer__divider { display: block !important; }
.pdh-footer__hr { display: block !important; }
/* Geen onderrand op main, geen bovenrand op legal */
.pdh-footer__main { border-bottom: none !important; }
.pdh-footer__legal { border-top: none !important; }
/* Eén regel: copyright | privacylinks | online actief — flex-wrap zodat ze elegant breken op klein scherm */
.pdh-footer__legal {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.1rem 1.5rem 0.85rem;     /* meer ruimte tussen hr-lijn en copyright */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem 1.5rem;
    font-size: 0.78rem;
    color: rgba(128, 96, 77, 0.85);
}
.pdh-footer__legal > div { white-space: nowrap; }
.pdh-footer__legal > div:nth-child(2) { white-space: normal; }
@media (max-width: 700px) {
    .pdh-footer__legal {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.4rem;
    }
    .pdh-footer__legal > div { white-space: normal; }
}
.pdh-footer__legal a { color: inherit; text-decoration: none; transition: color .2s ease; }
.pdh-footer__legal a + a { margin-left: 1rem; }
.pdh-footer__legal a:hover { color: #c4896e; }
.pdh-footer__legal-oa { color: #c4896e !important; }
.pdh-footer__legal-oa:hover { color: #3d2b22 !important; }

/* ─────────────────────────────────────────────────────────
   FOOTER MOBIEL — alles gecentreerd, kolommen onder elkaar
   ───────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .pdh-footer__main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.25rem 2.5rem;
    }
    .pdh-footer__brand,
    .pdh-footer__col {
        text-align: center;
        grid-column: 1 / -1;
    }
    .pdh-footer__col h4 { text-align: center; }
    .pdh-footer__col ul,
    .pdh-footer__col dl {
        align-items: center;
    }
    .pdh-footer__col ul li,
    .pdh-footer__col dd { text-align: center; }
    .pdh-footer__bio { margin-left: auto; margin-right: auto; }
    .pdh-footer__social { justify-content: center; }
    .pdh-footer__logo img { margin: 0 auto; height: 64px; }
    .pdh-footer__kvkrow {
        display: inline-flex;
        justify-content: center;
        gap: 0.5rem;
    }
    .pdh-footer__kvkrow dt { width: auto; }

    .pdh-footer__legal {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        padding: 1.25rem 1.25rem;
    }
    .pdh-footer__legal > div { white-space: normal; text-align: center !important; }
    .pdh-footer__legal a + a { margin-left: 0.85rem; }
}

/* Heel kleine telefoons (≤380px): privacy-links onder elkaar */
@media (max-width: 380px) {
    .pdh-footer__legal > div:nth-child(2) {
        display: flex; flex-direction: column; gap: 0.4rem;
    }
    .pdh-footer__legal > div:nth-child(2) a + a { margin-left: 0; }
}

:root {
    --pdh-cream: #fdfaf7;
    --pdh-shell: #f9f5f2;
    --pdh-sand: #f5ede4;
    --pdh-linen: #e8ddd6;
    --pdh-blush: #d4a899;
    --pdh-peach: #c4896e;
    --pdh-taupe: #b0978a;
    --pdh-cocoa: #80604d;
    --pdh-bark: #3d2b22;
    --pdh-sage: #8d9787;
    --pdh-font-serif: 'Cormorant Garamond', Georgia, serif;
    --pdh-font-sans: 'Lato', system-ui, sans-serif;
}

/* ─────────────────────────────────────────────────────────
   Elementor widget overrides — speciale looks
   ───────────────────────────────────────────────────────── */
/* Arched image (boog-vorm boven, recht onder) */
.pdh-arch-img img {
    border-top-left-radius: 50% 30% !important;
    border-top-right-radius: 50% 30% !important;
    border-bottom-left-radius: 1.25rem !important;
    border-bottom-right-radius: 1.25rem !important;
    box-shadow: 0 30px 80px -40px rgba(61, 43, 34, 0.35);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    max-width: 28rem;
}
.pdh-arch-img.elementor-widget-image .elementor-widget-container { display: flex; justify-content: center; }
.pdh-arch-img img { transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.pdh-arch-img:hover img { transform: scale(1.03); }

/* ─────────────────────────────────────────────────────────
   REVEAL ANIMATIES — fade + slide on scroll
   (zoals de originele Statamic-versie: 900ms ease-soft)
   ───────────────────────────────────────────────────────── */
.pdh-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}
.pdh-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.pdh-reveal-stagger > * {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 800ms cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pdh-reveal-stagger.is-revealed > * { opacity: 1; transform: translateY(0); }
.pdh-reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 0ms; }
.pdh-reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 90ms; }
.pdh-reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 180ms; }
.pdh-reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 270ms; }
.pdh-reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 360ms; }
.pdh-reveal-stagger.is-revealed > *:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
    .pdh-reveal, .pdh-reveal-stagger > *,
    .pdh-arch-img img { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Card hover micro-animaties */
.elementor-element.pdh-aanbod-card-col,
.elementor-column.pdh-aanbod-card-col {
    transition: transform 400ms cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 400ms cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color 400ms cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}
.elementor-element.pdh-aanbod-card-col:hover,
.elementor-column.pdh-aanbod-card-col:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -24px rgba(61, 43, 34, 0.18);
}

/* Button micro-animatie */
.pdh-btn { transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.pdh-btn:hover { box-shadow: 0 8px 18px -10px rgba(61, 43, 34, 0.4); }

/* Smooth scroll voor anchor links */
html { scroll-behavior: smooth; }

/* ─────────────────────────────────────────────────────────
   GLOBAL RESPONSIVE POLISH
   ───────────────────────────────────────────────────────── */

/* Hero buttons op mobiel: gecentreerd */
@media (max-width: 900px) {
    .pdh-hero__inner { text-align: center; }
    .pdh-hero__sub { margin-left: auto; margin-right: auto; }
    .pdh-hero__buttons { justify-content: center; }
    .pdh-hero__copy { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .pdh-hero__buttons { width: 100%; flex-direction: column; }
    .pdh-hero__buttons .pdh-btn { width: 100%; }
}

/* Section heading split: stack op mobiel + tekst gecentreerd */
@media (max-width: 900px) {
    .pdh-section-heading--split { text-align: center; }
    .pdh-section-heading--split .pdh-section-heading__eyebrow { justify-content: center; }
    .pdh-section-heading__intro { margin-left: auto; margin-right: auto; }
}

/* Stepper op kleine telefoons (≤480px): kleinere cirkels + label op 2 regels mag */
@media (max-width: 480px) {
    .pdh-stepper { padding: 0.85rem 0.5rem 0.65rem; }
    .pdh-stepper__circle { width: 26px; height: 26px; font-size: 0.78rem; }
    .pdh-stepper__label { font-size: 0.6rem; letter-spacing: 0.06em; line-height: 1.1; }
    .pdh-stepper__item::after { top: 13px; }
}
/* Op héél kleine telefoons (≤340px): label verbergen, alleen cijfers */
@media (max-width: 340px) {
    .pdh-stepper__label { display: none; }
}

/* Slot-grid op mobiel: 3 kolommen werkt beter dan minmax */
@media (max-width: 480px) {
    .pdh-slots__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .pdh-slot-btn { padding: 0.7rem 0.5rem; font-size: 0.95rem; }
}

/* Booking wizard op mobiel: smallere body padding */
@media (max-width: 600px) {
    .pdh-booking { border-radius: 1rem; }
    .pdh-booking__body { padding: 1.25rem; }
    .pdh-booking__nav { flex-wrap: wrap; gap: 0.75rem; }
    .pdh-booking__back { padding: 0.5rem 0; }
    .pdh-booking__nav .pdh-btn { width: 100%; justify-content: center; }
}

/* Form-row breakpoint consistent */
@media (max-width: 720px) {
    .pdh-form-row { grid-template-columns: 1fr !important; gap: 1rem !important; }
}

/* Body global text overflow */
body, .elementor-element {
    overflow-wrap: break-word;
    word-wrap: break-word;
}
img { max-width: 100%; height: auto; }

/* Voorkom horizontaal scrollen op mobiel — alleen op body, niet op html
   (dubbele declaratie geeft 2 scrollbars in sommige browsers/themes) */
body { overflow-x: clip; overflow-y: visible; }
html { overflow-x: clip; }

/* ─────────────────────────────────────────────────────────
   MOBILE POLISH — alle pagina's compact en goed op telefoon
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Hero op telefoon: compact + image niet té groot */
    .pdh-hero__inner { gap: 1.75rem; }
    .pdh-hero__headline {
        font-size: clamp(2rem, 8vw, 2.85rem) !important;
        line-height: 1.1 !important;
    }
    .pdh-hero__sub { font-size: 1.05rem; }
    .pdh-hero .pdh-arch { max-width: 20rem; }

    /* Aanbod-cards mobile: minder padding */
    .pdh-aanbod-card { padding: 1.5rem 1.25rem; }
    .pdh-aanbod-card__title { font-size: 1.25rem !important; }

    /* Reviews-cards mobile: idem */
    .pdh-review-card { padding: 1.5rem 1.25rem; }
    .pdh-review-card__quote { font-size: 1rem; }

    /* Aanbod row (lijstweergave): tighter */
    .pdh-aanbod-row__title { font-size: 1.4rem !important; }
    .pdh-aanbod-row__body { padding: 1.25rem 1.25rem 0.5rem; gap: 0.4rem; }
    .pdh-aanbod-row__foot { padding: 1rem 1.25rem; }

    /* Quote-block mobile: kleinere padding */
    .pdh-quote-block { padding: 2.75rem 1.5rem; }
    .pdh-quote-block blockquote p { font-size: 1.15rem; }

    /* Section heading mobile: gecentreerd, kleinere h2 */
    .pdh-section-heading__title { font-size: clamp(1.6rem, 6vw, 2rem) !important; }

    /* CTA mobile: compact */
    .pdh-cta { padding: 1.85rem 1.25rem; }
    .pdh-cta__heading { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
    .pdh-cta__text { font-size: 1rem; }

    /* Single aanbod sidebar mobile: stacks normaal, top-margin weg */
    .pdh-aanbod-sidebar { padding: 1.25rem 1.5rem; }
    .pdh-aanbod-single__tagline { font-size: 1.15rem; }
    .pdh-aanbod-single__summary { font-size: 1rem; }

    /* Features grid mobile: 1 kolom */
    .pdh-features { gap: 0.5rem 0; max-width: 100%; }
    .pdh-features__item { padding: 0.65rem 0; }

    /* Forms mobile: full-width, geen rare overflow */
    .pdh-form { gap: 1rem; }

    /* Booking wizard mobile: compact maar leesbaar */
    .pdh-booking { border-radius: 0.85rem; }
    .pdh-booking__body { padding: 1.5rem 1rem 1.25rem; }
    .pdh-booking__step h3 { font-size: 1.25rem; }
    .pdh-booking__lead { font-size: 0.92rem; }
    .pdh-cal { padding: 0.85rem; }
    .pdh-cal__title { font-size: 1.15rem; }
    .pdh-cal__head button { width: 2rem; height: 2rem; font-size: 0.95rem; }

    /* Over-page accent-cijfers (01, 02) mobile */
    .pdh-arch-img img { max-width: 18rem; margin: 0 auto; }

    /* Bedankt-page check icoon kleiner */
    .pdh-thanks-icon { width: 64px; height: 64px; font-size: 2rem; }
}

/* Heel kleine telefoons (≤380px) — extra compact */
@media (max-width: 380px) {
    .pdh-hero__headline { font-size: 1.85rem !important; }
    .pdh-section-heading__title { font-size: 1.5rem !important; }
    .pdh-aanbod-card__title { font-size: 1.15rem !important; }
    .pdh-cta__heading { font-size: 1.4rem !important; }
    .pdh-cal__day { font-size: 0.85rem; }
    .pdh-aanbod-row__title { font-size: 1.2rem !important; }
}

/* ─────────────────────────────────────────────────────────
   AANBOD OVERZICHTSPAGINA — horizontale rijen, 1 per rij
   ───────────────────────────────────────────────────────── */
.pdh-aanbod-row {
    position: relative;                 /* anchor voor stretched-link */
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0 0 1rem;
    background: #fff;
    border: 1px solid #e8ddd6;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    cursor: pointer;
}
.pdh-aanbod-row:hover {
    transform: translateY(-2px);
    border-color: #d4a899;
    box-shadow: 0 20px 40px -24px rgba(61, 43, 34, 0.18);
}
.pdh-aanbod-row__link {
    position: absolute; inset: 0;
    z-index: 1;
    text-decoration: none;
}
.pdh-aanbod-row__link:focus-visible {
    outline: 2px solid #c4896e;
    outline-offset: -2px;
}
.pdh-aanbod-row > *:not(.pdh-aanbod-row__link) {
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.pdh-aanbod-row__body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 1.75rem 2rem;
    display: flex; flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}
.pdh-aanbod-row__title {
    margin: 0 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    color: #3d2b22 !important;
}
.pdh-aanbod-row__tagline {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #c4896e;
}
.pdh-aanbod-row__summary {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #80604d;
}
.pdh-aanbod-row__duration {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #80604d;
}
.pdh-aanbod-row__foot {
    flex: 0 0 220px;
    display: flex; flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.75rem 2rem;
    border-left: 1px solid #e8ddd6;
    background: rgba(249, 245, 242, 0.5);
}
.pdh-aanbod-row__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #3d2b22;
    line-height: 1;
    white-space: nowrap;
}

/* Op tablet / mobiel: stack verticaal — body boven, foot onder */
@media (max-width: 768px) {
    .pdh-aanbod-row { flex-direction: column; align-items: stretch; }
    .pdh-aanbod-row__body { padding: 1.5rem 1.5rem 0.75rem; }
    .pdh-aanbod-row__foot {
        flex: 0 0 auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        border-left: none;
        border-top: 1px solid #e8ddd6;
    }
    .pdh-aanbod-row__price { font-size: 1.3rem; }
}

/* ─────────────────────────────────────────────────────────
   ALGEMENE THEME-RESET — voorkom witte page bg's via Astra/WP
   ───────────────────────────────────────────────────────── */
body.single-pdh_aanbod #content,
body.single-pdh_aanbod #primary,
body.single-pdh_aanbod main,
body.single-pdh_aanbod .ast-container,
body.single-pdh_aanbod .entry-content,
body.single-pdh_aanbod article,
body.single-pdh_aanbod .single-pdh_aanbod {
    background: transparent !important;
    box-shadow: none !important;
}

/* ─────────────────────────────────────────────────────────
   SINGLE AANBOD pagina
   ───────────────────────────────────────────────────────── */
.pdh-back-link {
    display: inline-flex; align-items: center;
    color: var(--pdh-cocoa);
    text-decoration: none !important;
    border: none !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color .2s ease;
}
.pdh-back-link:hover { color: var(--pdh-peach); }

.pdh-aanbod-single__tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--pdh-peach);
    font-size: 1.35rem;
    line-height: 1.4;
    margin: 0 0 1rem;
}
.pdh-aanbod-single__summary {
    color: var(--pdh-cocoa);
    font-size: 1.15rem;
    line-height: 1.65;
    margin: 0 0 1.5rem;
}

/* Sidebar info-card — transparante achtergrond, alleen border */
.pdh-aanbod-sidebar {
    background: transparent;
    border: 1px solid var(--pdh-linen);
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem;
}
.pdh-aanbod-sidebar__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--pdh-linen);
}
.pdh-aanbod-sidebar__row:last-child { border-bottom: none; padding-bottom: 0.5rem; }
.pdh-aanbod-sidebar__row:first-child { padding-top: 0.25rem; }
.pdh-aanbod-sidebar__row--block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}
.pdh-aanbod-sidebar__label {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pdh-cocoa);
}
.pdh-aanbod-sidebar__value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--pdh-bark);
}
.pdh-aanbod-sidebar__text {
    margin: 0;
    color: var(--pdh-bark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section marker — peach lijn + label boven kop */
.pdh-section-marker {
    display: inline-flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem;
}
.pdh-section-marker__line {
    display: inline-block;
    width: 2.5rem;
    height: 1px;
    background: var(--pdh-peach);
}
.pdh-section-marker__label {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--pdh-peach);
}

/* Features grid — 2 kolommen op desktop */
.pdh-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 50rem;
}
@media (max-width: 768px) { .pdh-features { grid-template-columns: 1fr; } }
.pdh-features__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--pdh-linen);
    color: var(--pdh-bark);
    line-height: 1.55;
}
.pdh-features__check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: rgba(196, 137, 110, 0.12);
    color: var(--pdh-peach);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ─────────────────────────────────────────────────────────
   Post-navigation verbergen op single aanbod
   (Astra/WP voegen vorige/volgende standaard toe)
   ───────────────────────────────────────────────────────── */
body.single-pdh_aanbod .nav-links,
body.single-pdh_aanbod .post-navigation,
body.single-pdh_aanbod .navigation,
body.single-pdh_aanbod .ast-pagination,
body.single-pdh_aanbod .ast-single-related-posts,
body.single-pdh_aanbod .ast-author-details,
body.single-pdh_aanbod .ast-comments-area,
body.single-pdh_aanbod #comments,
body.single-pdh_aanbod .nav-below,
body.single-pdh_aanbod .post-pagination { display: none !important; }

/* Underline-vrij op alle pdh-knoppen + Elementor-buttons in onze pagina's */
.pdh-btn, .pdh-btn:hover, .pdh-btn:focus,
a.pdh-btn, a.pdh-btn:visited,
.elementor-button, .elementor-button:hover, .elementor-button:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}
.pdh-btn span, .elementor-button span { text-decoration: none !important; border: none !important; }

/* Aanbod-card: het 'Lees meer →' linkje binnen de card mag ook geen underline hebben */
.pdh-aanbod-card__more, .pdh-aanbod-card a { text-decoration: none !important; border: none !important; }

/* Globaal: anchors binnen Elementor text-editor — clean, geen border, geen underline */
.elementor-widget-text-editor a {
    color: var(--pdh-peach);
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    transition: color .2s ease;
}
.elementor-widget-text-editor a:hover {
    color: var(--pdh-bark);
}

/* "Lees meer →" in cards — schoon clickbare CTA, met arrow-glide bij hover */
.pdh-card-link {
    color: var(--pdh-peach) !important;
    font-weight: 500;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color .2s ease;
}
.pdh-card-link:hover { color: var(--pdh-bark) !important; }
.pdh-card-link__arrow { transition: transform .25s ease; display: inline-block; }
.pdh-card-link:hover .pdh-card-link__arrow { transform: translateX(3px); }

/* Hero buttons rij — beide knoppen naast elkaar, mobiel onder elkaar */
.pdh-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.pdh-hero-buttons .pdh-btn {
    flex: 0 0 auto;
}
@media (max-width: 480px) {
    .pdh-hero-buttons .pdh-btn { width: 100%; justify-content: center; }
}

/* Section ademruimte — meer lucht tussen secties */
.elementor-section { background-clip: padding-box; }
.elementor-section > .elementor-container { gap: 0; }

/* CRUCIAAL: aanbod + reviews grids krijgen ECHT spacing tussen kaarten */
.pdh-aanbod-grid-section > .elementor-container,
.pdh-reviews-grid-section > .elementor-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
    justify-content: center;
}
.pdh-aanbod-grid-section > .elementor-container > .elementor-column {
    flex: 1 1 calc(25% - 1.5rem) !important;
    width: auto !important;
    max-width: calc(25% - 1.5rem);
    min-width: 220px;
}
.pdh-reviews-grid-section > .elementor-container > .elementor-column {
    flex: 1 1 calc(33.333% - 1.5rem) !important;
    width: auto !important;
    max-width: calc(33.333% - 1.5rem);
    min-width: 260px;
}
@media (max-width: 1024px) {
    .pdh-aanbod-grid-section > .elementor-container > .elementor-column {
        flex: 1 1 calc(50% - 1.5rem) !important;
        max-width: calc(50% - 1.5rem);
    }
    .pdh-reviews-grid-section > .elementor-container > .elementor-column {
        flex: 1 1 calc(50% - 1.5rem) !important;
        max-width: calc(50% - 1.5rem);
    }
}
@media (max-width: 600px) {
    .pdh-aanbod-grid-section > .elementor-container,
    .pdh-reviews-grid-section > .elementor-container {
        gap: 1rem !important;
    }
    .pdh-aanbod-grid-section > .elementor-container > .elementor-column,
    .pdh-reviews-grid-section > .elementor-container > .elementor-column {
        flex: 1 1 100% !important;
        max-width: 100%;
    }
}

/* Paragraph + widget spacing binnen secties */
.elementor-widget-text-editor p { margin: 0 0 1rem; }
.elementor-widget-text-editor p:last-child { margin-bottom: 0; }
.elementor-widget-text-editor blockquote { margin: 1.25rem 0; }
.elementor-widget:not(:last-child) { margin-bottom: 0; }
.elementor-widget-heading { margin-bottom: 0; }

/* Image columns ademen mee */
.elementor-widget-image .elementor-widget-container { padding: 0; }
.pdh-arch-img { margin: 0 auto; }

/* Buttons in footer / hero rij krijgen wat lucht eromheen op klein scherm */
.pdh-hero-buttons { margin-top: 0.75rem; }

/* Italic emphasis in headings */
.elementor-widget-heading h1 em,
.elementor-widget-heading h2 em,
.elementor-widget-heading h3 em {
    font-style: italic;
    color: #c4896e;
    font-weight: inherit;
}

/* Eyebrow widget — dash voor de tekst */
.pdh-eyebrow-widget .elementor-heading-title,
[class*="pdh-eyebrow"] .elementor-heading-title {
    display: inline-flex !important;
    align-items: center;
    gap: 0.6rem;
}
.pdh-eyebrow-widget .elementor-heading-title::before {
    content: "";
    width: 1.5rem;
    height: 1px;
    background: #c4896e;
    display: inline-block;
}

/* Make Elementor button hover not gross */
.elementor-button { letter-spacing: 0.02em !important; }

/* Bedankt-pagina check-icoon */
.pdh-thanks-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 80px; height: 80px;
    border-radius: 999px;
    background: #c4896e;
    color: #fff;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 40px -20px rgba(196, 137, 110, 0.5);
}

/* ─────────────────────────────────────────────────────────
   PDH 404 PAGE — full-width centered
   ───────────────────────────────────────────────────────── */
.pdh-page-content { width: 100%; max-width: 100%; margin: 0; padding: 0; }
.pdh-404 {
    width: 100%;
    min-height: calc(100vh - 240px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 5rem;
    text-align: center;
}
@media (max-width: 768px) { .pdh-404 { padding: 6rem 1rem 3rem; min-height: 50vh; } }
.pdh-404__inner {
    max-width: 36rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.pdh-404__eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: 'Lato', sans-serif;
    font-size: .78rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .22em;
    color: #c4896e; margin-bottom: 1.5rem;
    justify-content: center;
}
.pdh-404__eyebrow::before { content: ""; width: 1.5rem; height: 1px; background: #c4896e; }
.pdh-404__title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #3d2b22 !important;
    font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem) !important;
    line-height: 1.15 !important;
    margin: 0 0 1.25rem !important;
}
.pdh-404__lede {
    font-size: 1.1rem; line-height: 1.7;
    color: #80604d;
    margin: 0 0 2.5rem;
}
.pdh-404__actions {
    display: flex; flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.pdh-404__links {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8ddd6;
}
.pdh-404__links a {
    color: #80604d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color .2s ease;
}
.pdh-404__links a:hover { color: #c4896e; }

/* ─────────────────────────────────────────────────────────
   PDH HERO widget
   ───────────────────────────────────────────────────────── */
.pdh-hero { width: 100%; }
.pdh-hero__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 900px) { .pdh-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.pdh-hero__copy { min-width: 0; }
.pdh-hero__headline {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #3d2b22 !important;
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem !important;
}
.pdh-hero__headline em { font-style: italic; color: #c4896e; }
.pdh-hero__sub {
    font-size: 1.2rem; line-height: 1.7; color: #80604d;
    max-width: 32rem; margin: 0 0 2rem;
}
.pdh-hero__buttons {
    display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center;
}
.pdh-hero__visual { display: flex; justify-content: center; }
.pdh-hero .pdh-arch {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
    background: #f5ede4; max-width: 28rem; width: 100%;
    border-top-left-radius: 50% 30%; border-top-right-radius: 50% 30%;
    border-bottom-left-radius: 1.25rem; border-bottom-right-radius: 1.25rem;
    box-shadow: 0 30px 80px -40px rgba(61, 43, 34, 0.35);
}
.pdh-hero .pdh-arch img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pdh-hero .pdh-arch:hover img { transform: scale(1.03); }

/* ─────────────────────────────────────────────────────────
   PDH SECTION HEADING widget
   ───────────────────────────────────────────────────────── */
.pdh-section-heading__eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: 'Lato', sans-serif;
    font-size: .78rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .18em;
    color: #c4896e;
    margin-bottom: 1rem;
}
.pdh-section-heading__eyebrow::before {
    content: ""; width: 1.5rem; height: 1px; background: #c4896e;
}
.pdh-section-heading__title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #3d2b22 !important;
    font-size: clamp(1.85rem, 2.5vw + 0.8rem, 2.5rem) !important;
    line-height: 1.15 !important;
    margin: 0 !important;
}
.pdh-section-heading__title em { font-style: italic; color: #c4896e; }
.pdh-section-heading__intro {
    font-size: 1.15rem; line-height: 1.65; color: #80604d;
    max-width: 36rem; margin: 0;
}
.pdh-section-heading--centered { text-align: center; }
.pdh-section-heading--centered .pdh-section-heading__eyebrow { justify-content: center; }
.pdh-section-heading--centered .pdh-section-heading__intro { margin: 1.25rem auto 0; }

.pdh-section-heading--split {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem; align-items: end;
}
@media (max-width: 900px) {
    .pdh-section-heading--split { grid-template-columns: 1fr; gap: 1.25rem; align-items: start; }
}
.pdh-section-heading--split .pdh-section-heading__col--right {
    align-self: end;
}

.pdh-section-heading--stacked .pdh-section-heading__intro { margin-top: 1rem; }

/* ─────────────────────────────────────────────────────────
   PDH AANBOD GRID widget — grid + list mode
   ───────────────────────────────────────────────────────── */
.pdh-aanbod-grid {
    display: grid;
    gap: 1.5rem;
}
.pdh-aanbod-grid--grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) { .pdh-aanbod-grid--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .pdh-aanbod-grid--grid { grid-template-columns: 1fr; } }

.pdh-aanbod-grid--list { grid-template-columns: 1fr; gap: 1rem; }

.pdh-aanbod-card {
    position: relative;                 /* anchor voor stretched-link */
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid #e8ddd6;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    cursor: pointer;
}
.pdh-aanbod-card:hover {
    transform: translateY(-3px);
    border-color: #d4a899;
    box-shadow: 0 20px 40px -24px rgba(61, 43, 34, 0.18);
}
/* Stretched-link: hele kaart klikbaar */
.pdh-aanbod-card__link {
    position: absolute; inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-decoration: none;
}
.pdh-aanbod-card__link:focus-visible {
    outline: 2px solid #c4896e;
    outline-offset: -2px;
}
.pdh-aanbod-card > *:not(.pdh-aanbod-card__link) {
    position: relative;
    z-index: 2;
    pointer-events: none;               /* doorlaten naar de stretched-link */
}
.pdh-aanbod-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.pdh-aanbod-card__title {
    margin: 0 0 0.5rem !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
    color: #3d2b22 !important;
}
.pdh-aanbod-card__tagline {
    margin: 0 0 0.85rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem; line-height: 1.45;
    color: #c4896e;
}
.pdh-aanbod-card__summary {
    margin: 0;
    font-size: 0.9rem; line-height: 1.65; color: #80604d;
}

/* ── GRID MODE — uniforme regel-hoogtes zodat foot/prijs op 1 lijn staat ── */
.pdh-aanbod-grid:not(.pdh-aanbod-grid--list) .pdh-aanbod-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.4rem * 1.3 * 2);          /* 2 regels gereserveerd */
}
.pdh-aanbod-grid:not(.pdh-aanbod-grid--list) .pdh-aanbod-card__tagline {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(0.95rem * 1.45 * 2);
}
.pdh-aanbod-grid:not(.pdh-aanbod-grid--list) .pdh-aanbod-card__summary {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(0.9rem * 1.65 * 4);
}
.pdh-aanbod-grid:not(.pdh-aanbod-grid--list) .pdh-aanbod-card__foot {
    margin-top: auto;                            /* duwt de foot naar onderen */
}
.pdh-aanbod-card__duration {
    margin: 0.85rem 0 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #80604d;
}
.pdh-aanbod-card__foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding-top: 1.1rem;
    margin-top: 1.25rem;
    border-top: 1px solid #e8ddd6;
    font-size: 0.95rem;
}
.pdh-aanbod-card__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: #3d2b22;
    white-space: nowrap;
}

/* ── LIST MODE — horizontale rij per item ── */
.pdh-aanbod-grid--list .pdh-aanbod-card {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
}
.pdh-aanbod-grid--list .pdh-aanbod-card__body { display: flex; flex-direction: column; gap: 0.4rem; }
.pdh-aanbod-grid--list .pdh-aanbod-card__title { margin: 0 !important; font-size: 1.5rem !important; }
.pdh-aanbod-grid--list .pdh-aanbod-card__tagline { margin: 0; }
.pdh-aanbod-grid--list .pdh-aanbod-card__summary { margin: 0.25rem 0 0; }
.pdh-aanbod-grid--list .pdh-aanbod-card__foot {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    border-left: 1px solid #e8ddd6;
    padding-left: 2rem;
    min-width: 180px;
}
.pdh-aanbod-grid--list .pdh-aanbod-card__price { font-size: 1.25rem; }

@media (max-width: 768px) {
    .pdh-aanbod-grid--list .pdh-aanbod-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.5rem;
    }
    .pdh-aanbod-grid--list .pdh-aanbod-card__foot {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-left: none;
        padding-left: 0;
        padding-top: 1rem;
        border-top: 1px solid #e8ddd6;
        min-width: 0;
    }
}

/* ─────────────────────────────────────────────────────────
   PDH REVIEWS GRID widget
   ───────────────────────────────────────────────────────── */
.pdh-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (max-width: 1024px) { .pdh-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .pdh-reviews-grid { grid-template-columns: 1fr; } }

.pdh-review-card {
    margin: 0;
    background: #fff;
    border: 1px solid #e8ddd6;
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex; flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pdh-review-card:hover {
    transform: translateY(-3px);
    border-color: #d4a899;
    box-shadow: 0 20px 40px -24px rgba(61, 43, 34, 0.18);
}
.pdh-stars { color: #c4896e; font-size: 1rem; letter-spacing: .15em; margin-bottom: 1rem; }
.pdh-review-card__quote {
    margin: 0; flex-grow: 1;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem; line-height: 1.55;
    color: #3d2b22;
    border: none; padding: 0;
}
.pdh-review-card__caption {
    margin-top: 1.5rem; padding-top: 1.1rem;
    border-top: 1px solid #e8ddd6;
    font-size: 0.9rem;
}
.pdh-review-card__author { font-weight: 500; color: #3d2b22; }
.pdh-review-card__source {
    font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: #80604d; margin-top: 0.25rem;
}
.pdh-reviews-grid__link {
    text-align: center;
    margin-top: 2.5rem;
}

/* ─────────────────────────────────────────────────────────
   PDH QUOTE BLOCK widget
   ───────────────────────────────────────────────────────── */
.pdh-quote-block {
    position: relative;
    padding: 5rem 2rem;
    border-radius: 2rem;
    background-size: cover; background-position: center;
    color: #fff;
    max-width: 1100px; margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.pdh-quote-block__overlay {
    position: absolute; inset: 0; border-radius: inherit;
}
.pdh-quote-block__mark {
    position: absolute;
    top: 1.5rem; left: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 6rem;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.4);
    user-select: none;
    z-index: 1;
}
.pdh-quote-block blockquote {
    position: relative; max-width: 720px; margin: 0 auto;
    text-align: center;
    z-index: 2;
}
.pdh-quote-block blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2vw + 0.4rem, 1.85rem);
    line-height: 1.4;
    margin: 0; color: #fff;
}
.pdh-quote-block blockquote footer {
    margin-top: 1.75rem;
    display: flex; align-items: center; justify-content: center; gap: .75rem;
    font-size: .78rem; text-transform: uppercase; letter-spacing: .22em;
    color: rgba(255,255,255,.85);
    flex-wrap: wrap;
}
.pdh-quote-block blockquote footer span {
    width: 2rem; height: 1px;
    background: #c4896e;
    flex-shrink: 0;
}

/* Tablet ≤768px */
@media (max-width: 768px) {
    .pdh-quote-block {
        padding: 2.5rem 1.5rem;
        border-radius: 1.25rem;
    }
    .pdh-quote-block__mark {
        top: 0.75rem; left: 1rem;
        font-size: 3.5rem;
    }
    .pdh-quote-block blockquote p { font-size: 1.05rem; line-height: 1.55; }
    .pdh-quote-block blockquote footer {
        margin-top: 1.25rem;
        font-size: 0.7rem; letter-spacing: 0.18em;
        gap: 0.5rem;
    }
    .pdh-quote-block blockquote footer span { width: 1.25rem; }
}

/* Telefoon ≤480px — compact, breed, comfortabel leesbaar */
@media (max-width: 480px) {
    .pdh-quote-block {
        padding: 1.85rem 1.1rem 1.65rem;
        border-radius: 1rem;
    }
    .pdh-quote-block__mark {
        top: 0.4rem; left: 0.7rem;
        font-size: 2.5rem;
    }
    .pdh-quote-block blockquote {
        padding: 0;
    }
    .pdh-quote-block blockquote p {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .pdh-quote-block blockquote footer {
        margin-top: 0.9rem;
        font-size: 0.58rem;
        letter-spacing: 0.14em;
        gap: 0.35rem;
    }
    .pdh-quote-block blockquote footer span { width: 0.75rem; }
}

/* ─────────────────────────────────────────────────────────
   PDH CTA widget — compacter, minder wit eromheen
   ───────────────────────────────────────────────────────── */
.pdh-cta {
    background: #f9f5f2;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 800px; margin: 0 auto;
}
@media (max-width: 600px) { .pdh-cta { padding: 2rem 1.25rem; } }
.pdh-cta__eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: 'Lato', sans-serif;
    font-size: .78rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .18em;
    color: #c4896e; margin-bottom: 0.85rem;
    justify-content: center;
}
.pdh-cta__eyebrow::before {
    content: ""; width: 1.5rem; height: 1px; background: #c4896e;
}
.pdh-cta__heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #3d2b22 !important;
    font-size: clamp(1.85rem, 3vw + 0.5rem, 2.4rem) !important;
    line-height: 1.2 !important;
    margin: 0 0 0.85rem !important;
}
.pdh-cta__heading em { font-style: italic; color: #c4896e; }
.pdh-cta__text {
    color: #80604d;
    font-size: 1.05rem; line-height: 1.65;
    max-width: 38rem; margin: 0 auto 1.5rem;
}

/* CTA-section in elke pagina — compacter padding rondom */
.elementor-section .pdh-cta { margin: 0 auto; }

/* ─────────────────────────────────────────────────────────
   BUTTONS — pill-vormig, niet gecropt
   Geldt voor: .pdh-btn (custom HTML), .elementor-button (Elementor widget)
   ───────────────────────────────────────────────────────── */
.pdh-btn,
a.pdh-btn,
a.pdh-btn:visited,
.elementor-button-link,
.elementor-widget-button .elementor-button,
.elementor-element .elementor-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    padding: 0.85rem 1.6rem !important;
    border-radius: 9999px !important;
    -webkit-border-radius: 9999px !important;
    font-family: 'Lato', system-ui, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-color: transparent;
    box-sizing: border-box !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    cursor: pointer;
    vertical-align: middle;
    white-space: normal;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}

.pdh-btn--primary, a.pdh-btn--primary,
.elementor-button.pdh-style-primary,
.pdh-btn-primary {
    background-color: #3d2b22 !important;
    color: #fdfaf7 !important;
    border-color: #3d2b22 !important;
}
.pdh-btn--primary:hover, a.pdh-btn--primary:hover,
.elementor-button.pdh-style-primary:hover,
.pdh-btn-primary:hover {
    background-color: #80604d !important;
    color: #fdfaf7 !important;
    border-color: #80604d !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -10px rgba(61, 43, 34, 0.4);
}
.pdh-btn--ghost, a.pdh-btn--ghost,
.elementor-button.pdh-style-ghost,
.pdh-btn-ghost {
    background-color: transparent !important;
    color: #3d2b22 !important;
    border-color: #3d2b22 !important;
}
.pdh-btn--ghost:hover, a.pdh-btn--ghost:hover,
.elementor-button.pdh-style-ghost:hover,
.pdh-btn-ghost:hover {
    background-color: #3d2b22 !important;
    color: #fdfaf7 !important;
    transform: translateY(-1px);
}

.elementor-button .elementor-button-text {
    line-height: 1.4 !important;
    color: inherit !important;
}
.pdh-btn__arrow { display: inline-block; transition: transform .25s ease; }
.pdh-btn:hover .pdh-btn__arrow { transform: translateX(3px); }
.pdh-link-arrow {
    color: var(--pdh-peach); font-weight: 500; text-decoration: none;
    transition: color .25s ease, transform .25s ease;
    display: inline-flex; align-items: center; gap: .35rem;
}
.pdh-link-arrow:hover { color: var(--pdh-cocoa); }
.pdh-link-arrow:hover span { transform: translateX(3px); }
.pdh-link-arrow span { transition: transform .25s ease; }

/* Eyebrow */
.pdh-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .78rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: .18em; color: var(--pdh-peach); margin: 0 0 1rem;
    font-family: var(--pdh-font-sans);
}
.pdh-eyebrow::before { content: ""; width: 1.5rem; height: 1px; background: var(--pdh-peach); }

/* Aanbod grid */
.pdh-aanbod-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.pdh-aanbod-card {
    display: flex; flex-direction: column; height: 100%;
    padding: 1.75rem; background: #fff; border: 1px solid var(--pdh-linen);
    border-radius: 1.25rem; text-decoration: none; color: inherit;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.pdh-aanbod-card:hover {
    transform: translateY(-3px);
    border-color: var(--pdh-blush);
    box-shadow: 0 20px 40px -24px rgba(61, 43, 34, 0.18);
}
.pdh-aanbod-card.is-warm { background: var(--pdh-sand); border-color: transparent; }
.pdh-aanbod-card.is-warm:hover { background: var(--pdh-blush); }
.pdh-aanbod-card__body { flex: 1 1 auto; display: flex; flex-direction: column; }
.pdh-aanbod-card h3 {
    margin: 0; font-family: var(--pdh-font-serif);
    font-size: 1.35rem; line-height: 1.3; font-weight: 500; color: var(--pdh-bark);
}
.pdh-aanbod-card__tagline {
    margin: .5rem 0 0; font-family: var(--pdh-font-serif); font-style: italic;
    font-size: .95rem; line-height: 1.45; color: var(--pdh-peach);
}
.pdh-aanbod-card__summary {
    margin: .85rem 0 0; font-size: .9rem; line-height: 1.65;
    color: var(--pdh-cocoa); flex-grow: 1;
}
.pdh-aanbod-card__foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-top: 1.5rem; padding-top: 1.1rem;
    border-top: 1px solid var(--pdh-linen); font-size: .875rem;
}
.pdh-aanbod-card__price { font-family: var(--pdh-font-serif); font-size: 1rem; color: var(--pdh-bark); }
.pdh-aanbod-card__more { color: var(--pdh-peach); font-weight: 500; }

/* Aanbod summary sidebar */
.pdh-aanbod-summary {
    background: var(--pdh-shell); padding: 1.75rem; border-radius: 1.25rem;
    position: sticky; top: 100px;
}
.pdh-aanbod-summary__row { display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid var(--pdh-linen); }
.pdh-aanbod-summary__row:last-of-type { border-bottom: none; }
.pdh-aanbod-summary__row strong { color: var(--pdh-bark); font-family: var(--pdh-font-sans); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.pdh-aanbod-summary__row--block { flex-direction: column; align-items: flex-start; }
.pdh-aanbod-summary__row--block p { margin: .5rem 0 0; color: var(--pdh-cocoa); font-size: .95rem; }
.pdh-aanbod-summary__btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* Reviews */
.pdh-reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.pdh-review-card {
    margin: 0; background: #fff; padding: 1.75rem; border-radius: 1.25rem;
    border: 1px solid var(--pdh-linen); display: flex; flex-direction: column;
}
.pdh-stars { color: var(--pdh-peach); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .15em; }
.pdh-review-card blockquote {
    margin: 0; flex-grow: 1; font-family: var(--pdh-font-serif); font-style: italic;
    font-size: 1.1rem; line-height: 1.55; color: var(--pdh-bark);
}
.pdh-review-card figcaption {
    margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--pdh-linen); font-size: .9rem;
}
.pdh-review-card__author { font-weight: 500; color: var(--pdh-bark); }
.pdh-review-card__source {
    font-size: .75rem; text-transform: uppercase; letter-spacing: .18em;
    color: var(--pdh-cocoa); margin-top: .25rem;
}

/* Quote block */
.pdh-quote-block {
    position: relative; padding: 4rem 2rem; border-radius: 2rem;
    background-size: cover; background-position: center;
    color: #fff; max-width: 1000px; margin: 0 auto;
}
.pdh-quote-block__overlay {
    position: absolute; inset: 0; background: rgba(61, 43, 34, .6);
    border-radius: inherit;
}
.pdh-quote-block__mark {
    position: absolute; top: -1rem; left: 2rem;
    font-family: var(--pdh-font-serif); font-style: italic;
    font-size: 9rem; line-height: 1; color: rgba(196, 137, 110, .7); user-select: none;
}
.pdh-quote-block blockquote {
    position: relative; max-width: 720px; margin: 0 auto; text-align: center;
}
.pdh-quote-block blockquote p {
    font-family: var(--pdh-font-serif); font-size: 1.75rem;
    line-height: 1.35; margin: 0;
}
.pdh-quote-block blockquote footer {
    margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: .75rem;
    font-size: .75rem; text-transform: uppercase; letter-spacing: .22em; color: rgba(255,255,255,.85);
}
.pdh-quote-block blockquote footer span { width: 2rem; height: 1px; background: var(--pdh-peach); }

/* Arched image */
.pdh-arch-wrap { position: relative; max-width: 28rem; margin: 0 auto; }
.pdh-arch {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
    background: var(--pdh-sand);
    border-top-left-radius: 50% 30%; border-top-right-radius: 50% 30%;
    border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem;
    box-shadow: 0 30px 80px -40px rgba(61, 43, 34, 0.35);
}
.pdh-arch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdh-arch-badge {
    position: absolute; bottom: -1.5rem; left: -1.5rem;
    background: var(--pdh-cream); border: 1px solid var(--pdh-linen);
    border-radius: 1rem; padding: 1rem 1.25rem; max-width: 220px;
    display: flex; gap: .75rem;
    box-shadow: 0 20px 40px -24px rgba(61, 43, 34, 0.25);
}
.pdh-arch-badge__icon {
    width: 2.5rem; height: 2.5rem; border-radius: 999px; background: var(--pdh-sand);
    display: flex; align-items: center; justify-content: center; color: var(--pdh-peach);
    flex-shrink: 0;
}
.pdh-arch-badge__title { font-family: var(--pdh-font-serif); font-size: 1.05rem; color: var(--pdh-bark); line-height: 1.2; }
.pdh-arch-badge__text { font-size: .75rem; color: var(--pdh-cocoa); margin-top: .25rem; line-height: 1.4; }

/* Meeting options */
.pdh-meeting-options {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem; margin: 1.5rem 0;
}
.pdh-meeting-card {
    background: var(--pdh-shell); padding: 1.5rem; border-radius: 1rem;
}
.pdh-meeting-card h3 { margin: 0 0 .5rem; font-size: 1.15rem; color: var(--pdh-bark); }
.pdh-meeting-card p { margin: 0; color: var(--pdh-cocoa); font-size: .95rem; }

/* Forms */
.pdh-form {
    display: grid;
    gap: 1.25rem;
    width: 100%;
    max-width: none;
}
.pdh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 720px) { .pdh-form-row { grid-template-columns: 1fr; } }

.pdh-form label {
    display: block;
    font-size: .88rem;
    color: var(--pdh-bark);
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Strakke label-input layout: label staat erboven, full-width */
.pdh-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    min-width: 0;
}
.pdh-field__label {
    font-family: var(--pdh-font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pdh-bark);
    letter-spacing: 0.01em;
    line-height: 1.3;
    display: block;
}
.pdh-field__hint {
    font-weight: 400;
    color: var(--pdh-cocoa);
    font-size: 0.8rem;
    margin-left: 0.25rem;
}
.pdh-field input,
.pdh-field select,
.pdh-field textarea { margin-top: 0 !important; }

/* Alleen tekst-achtige inputs op 100% breedte. Checkboxes blijven klein. */
.pdh-form input[type="text"],
.pdh-form input[type="email"],
.pdh-form input[type="tel"],
.pdh-form input[type="url"],
.pdh-form input[type="number"],
.pdh-form input[type="search"],
.pdh-form input[type="date"],
.pdh-form input[type="time"],
.pdh-form input:not([type]),
.pdh-form select,
.pdh-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: .4rem;
    padding: 0 1rem;              /* horizontale padding; verticale via height */
    height: 3rem;                  /* exact zelfde hoogte voor input én select */
    min-height: 3rem;
    border: 1px solid var(--pdh-linen);
    border-radius: .6rem;
    background: #fff;
    font-family: var(--pdh-font-sans);
    font-size: 0.95rem;            /* iets kleiner voor betere fit */
    color: var(--pdh-bark);
    line-height: 1.4;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: ellipsis;       /* tekst niet uit veld lopen */
    overflow: hidden;
    white-space: nowrap;
    transition: border-color .2s ease, box-shadow .2s ease;
}

/* Textarea is anders: meerdere regels, mag wrappen */
.pdh-form textarea {
    height: auto;
    min-height: 7rem;
    padding: 0.85rem 1rem;
    line-height: 1.6;
    white-space: normal;
    overflow: auto;
    resize: vertical;
}

/* Native pijltje terug op select (na appearance:none) */
.pdh-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'><path fill='none' stroke='%23c4896e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.pdh-form input:focus,
.pdh-form select:focus,
.pdh-form textarea:focus {
    outline: none;
    border-color: var(--pdh-peach);
    box-shadow: 0 0 0 3px rgba(196, 137, 110, 0.18);
}
/* (textarea-regel boven, zie .pdh-form textarea) */

/* Consent checkbox: vinkje + tekst naast elkaar, mooi uitgelijnd */
.pdh-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--pdh-bark);
    cursor: pointer;
    padding: 0.5rem 0;
}
.pdh-form input[type="checkbox"],
.pdh-checkbox input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    flex-shrink: 0;
    margin: 0.15rem 0 0 0;
    padding: 0;
    accent-color: var(--pdh-peach);
    cursor: pointer;
}
.pdh-checkbox span { flex: 1; min-width: 0; word-wrap: break-word; }

.pdh-honeypot { position: absolute !important; left: -9999px !important; }
.pdh-form-feedback { font-size: .9rem; min-height: 1.5em; line-height: 1.5; }
.pdh-form-feedback.is-success { color: #2d7a4d; }
.pdh-form-feedback.is-error { color: #b54a2e; }

/* ─────────────────────────────────────────────────────────
   CONTACT FORM 7 — exact zelfde look als onze .pdh-form
   ───────────────────────────────────────────────────────── */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}
.wpcf7-form .pdh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 0;
}
@media (max-width: 720px) {
    .wpcf7-form .pdh-form-row { grid-template-columns: 1fr; gap: 1rem; }
}
.wpcf7-form .pdh-field {
    display: flex; flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    min-width: 0;
    margin: 0;
}
.wpcf7-form p { margin: 0 !important; padding: 0; }       /* CF7 kan <p> toevoegen */
.wpcf7-form br { display: none; }                          /* CF7 kan <br> toevoegen */
.wpcf7-form-control-wrap { display: block; width: 100%; margin: 0; }

/* Inputs / selects / textareas — exact zelfde styling als pdh-form */
.wpcf7-form input.wpcf7-form-control[type="text"],
.wpcf7-form input.wpcf7-form-control[type="email"],
.wpcf7-form input.wpcf7-form-control[type="tel"],
.wpcf7-form input.wpcf7-form-control[type="url"],
.wpcf7-form input.wpcf7-form-control[type="number"],
.wpcf7-form input.wpcf7-form-control[type="date"],
.wpcf7-form select.wpcf7-form-control,
.wpcf7-form textarea.wpcf7-form-control {
    display: block; width: 100%; max-width: 100%;
    box-sizing: border-box;
    height: 3rem; min-height: 3rem;
    padding: 0 1.1rem;
    border: 1px solid #e8ddd6;
    border-radius: 0.6rem;
    background: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #3d2b22;
    line-height: 1.4;
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wpcf7-form select.wpcf7-form-control {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'><path fill='none' stroke='%23c4896e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.wpcf7-form textarea.wpcf7-form-control {
    height: auto; min-height: 7rem;
    padding: 0.85rem 1rem;
    line-height: 1.6;
    white-space: normal; overflow: auto; resize: vertical;
}
.wpcf7-form .wpcf7-form-control:focus {
    outline: none;
    border-color: #c4896e;
    box-shadow: 0 0 0 3px rgba(196, 137, 110, 0.18);
}

/* Acceptance (consent vinkje) — match .pdh-checkbox */
.pdh-cf7-consent { margin: 0; }
.wpcf7-form .wpcf7-acceptance,
.wpcf7-form .wpcf7-form-control-wrap[data-name="consent"] {
    display: block;
    width: 100%;
}
.wpcf7-form .wpcf7-list-item {
    display: flex; align-items: flex-start;
    gap: 0.75rem; margin: 0;
    font-size: 0.92rem; line-height: 1.5; color: #3d2b22;
    cursor: pointer; padding: 0.5rem 0;
}
.wpcf7-form .wpcf7-list-item input[type="checkbox"] {
    width: 18px !important; height: 18px !important;
    min-width: 18px;
    margin: 0.15rem 0 0;
    accent-color: #c4896e;
    flex-shrink: 0;
    cursor: pointer;
}
.wpcf7-form .wpcf7-list-item-label { flex: 1; min-width: 0; word-wrap: break-word; }

/* Submit-knop — krijgt al pdh-btn classes via shortcode */
.pdh-cf7-submit {
    margin: 0.5rem 0 0;
    display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
}
.wpcf7-form .wpcf7-submit { /* .pdh-btn class regelt alle styling */ }

/* Validatie en response */
.wpcf7-not-valid-tip {
    color: #b54a2e !important;
    font-size: 0.82rem;
    margin-top: 0.35rem;
    line-height: 1.4;
}
.wpcf7-form-control.wpcf7-not-valid {
    border-color: #b54a2e !important;
}
.wpcf7-response-output {
    margin: 1rem 0 0 !important;
    padding: 0.85rem 1rem !important;
    border: 1px solid #e8ddd6 !important;
    border-radius: 0.6rem !important;
    font-size: 0.9rem;
    line-height: 1.5;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: rgba(181, 74, 46, 0.4) !important;
    background: rgba(181, 74, 46, 0.05) !important;
    color: #b54a2e;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: rgba(45, 122, 77, 0.4) !important;
    background: rgba(45, 122, 77, 0.05) !important;
    color: #2d7a4d;
}
.wpcf7-spinner {
    background-color: #c4896e !important;
    width: 16px !important; height: 16px !important;
    margin: 0 0 0 0.75rem !important;
}

/* Verberg CF7's standaard success-melding (onze JS redirect naar /bedankt/ doet de rest) */
.wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
}

/* ─────────────────────────────────────────────────────────
   BOOKING WIZARD — 4 stappen met progress-stepper
   ───────────────────────────────────────────────────────── */
.pdh-booking {
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--pdh-linen);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -40px rgba(61, 43, 34, 0.18);
}

/* Stepper — wit zoals de rest, ruim wit tussen labels en de scheidingslijn eronder */
.pdh-stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.85rem 2rem 3.5rem;       /* duidelijk meer wit tussen labels en de streep */
    background: #fff;
    border-bottom: 1px solid var(--pdh-linen);
    position: relative;
}
.pdh-stepper__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    color: var(--pdh-cocoa);
    transition: color .3s ease;
}
.pdh-stepper__item::after {
    content: "";
    position: absolute;
    left: 60%; right: -40%;
    top: 18px;
    height: 2px;
    background: var(--pdh-linen);
    z-index: 0;
}
.pdh-stepper__item:last-child::after { display: none; }
.pdh-stepper__item.is-done::after,
.pdh-stepper__item.is-active::after { background: var(--pdh-peach); }
.pdh-stepper__circle {
    width: 36px; height: 36px;
    border-radius: 999px;
    background: #fff;
    border: 2px solid var(--pdh-linen);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--pdh-font-serif);
    font-size: 1rem;
    color: var(--pdh-cocoa);
    font-weight: 500;
    position: relative; z-index: 1;
    transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.pdh-stepper__item.is-active .pdh-stepper__circle {
    background: var(--pdh-bark);
    border-color: var(--pdh-bark);
    color: var(--pdh-cream);
    transform: scale(1.05);
}
.pdh-stepper__item.is-done .pdh-stepper__circle {
    background: var(--pdh-peach);
    border-color: var(--pdh-peach);
    color: #fff;
}
.pdh-stepper__item.is-active { color: var(--pdh-bark); }
.pdh-stepper__item.is-done { color: var(--pdh-peach); }
.pdh-stepper__label {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
@media (max-width: 600px) {
    .pdh-stepper { padding: 1rem 0.75rem 0.85rem; }
    .pdh-stepper__circle { width: 30px; height: 30px; font-size: 0.85rem; }
    .pdh-stepper__label { font-size: 0.65rem; letter-spacing: 0.08em; }
    .pdh-stepper__item::after { top: 15px; }
}

/* Step body — extra top-padding zodat er ademruimte is na de stepper-streep */
.pdh-booking__body { padding: 2.25rem 1.75rem 1.75rem; background: #fff; }
@media (min-width: 768px)  { .pdh-booking__body { padding: 2.75rem 2.5rem 2.25rem; } }
@media (min-width: 1100px) { .pdh-booking__body { padding: 3rem 3.5rem 2.5rem; } }
.pdh-booking__step { display: none; animation: pdhFadeIn .35s ease; background: #fff; }
.pdh-booking__step.is-current { display: block; }

/* Wizard formulier: ruimer tussen velden voor leesbaarheid */
.pdh-booking .pdh-form { max-width: none; gap: 1.5rem; }
.pdh-booking .pdh-form-row { gap: 1.5rem; }
@media (max-width: 720px) {
    .pdh-booking .pdh-form-row { grid-template-columns: 1fr; gap: 1.25rem; }
    .pdh-booking .pdh-form { gap: 1.25rem; }
}
.pdh-booking .pdh-form .pdh-checkbox { padding: 0.85rem 0 0.5rem; }
.pdh-booking__step h3 {
    margin: 0 0 0.5rem;
    font-family: var(--pdh-font-serif);
    font-size: 1.5rem;
    color: var(--pdh-bark);
    font-weight: 400;
}
.pdh-booking__lead {
    color: var(--pdh-cocoa);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}
.pdh-booking__chosen {
    background: var(--pdh-shell);
    padding: 0.85rem 1.1rem;
    border-radius: 0.6rem;
    color: var(--pdh-bark);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border-left: 3px solid var(--pdh-peach);
}
.pdh-booking__nav {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--pdh-linen);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
}
.pdh-booking__back {
    background: none;
    border: none;
    color: var(--pdh-cocoa);
    font-family: var(--pdh-font-sans);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 0;
    transition: color .2s ease;
}
.pdh-booking__back:hover { color: var(--pdh-peach); }

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

/* Calendar inside wizard — witte achtergrond voor zuivere look + volledige breedte */
.pdh-cal {
    background: #fff;
    border: 1px solid var(--pdh-linen);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}
@media (min-width: 768px) { .pdh-cal { padding: 1.75rem 2rem; } }
.pdh-cal__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pdh-cal__head button {
    background: #fff; border: 1px solid var(--pdh-linen); border-radius: 999px;
    width: 2.4rem; height: 2.4rem; cursor: pointer; color: var(--pdh-bark);
    transition: background .2s ease, border-color .2s ease;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.pdh-cal__head button:disabled { opacity: .35; cursor: not-allowed; }
.pdh-cal__head button:hover:not(:disabled) { background: var(--pdh-bark); color: var(--pdh-cream); border-color: var(--pdh-bark); }
.pdh-cal__title { font-family: var(--pdh-font-serif); font-size: 1.35rem; color: var(--pdh-bark); }
.pdh-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.pdh-cal__weekday { text-align: center; font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--pdh-cocoa); padding: .5rem 0; }
.pdh-cal__day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid transparent; border-radius: .65rem;
    font-size: 1rem;
    cursor: default;
    transition: all .2s ease;
    position: relative;
    /* Niet-beschikbaar: gedempt, doorgekruist gevoel */
    color: rgba(128, 96, 77, 0.35);
    background: transparent;
    text-decoration: line-through;
    text-decoration-color: rgba(128, 96, 77, 0.2);
}
.pdh-cal__day.is-available {
    background: #fff;
    color: var(--pdh-bark);
    cursor: pointer;
    border-color: var(--pdh-peach);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(196, 137, 110, 0.15);
}
.pdh-cal__day.is-available::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 999px;
    background: var(--pdh-peach);
}
.pdh-cal__day.is-available:hover {
    background: var(--pdh-sand);
    border-color: var(--pdh-bark);
    transform: translateY(-1px);
}
.pdh-cal__day.is-selected,
.pdh-cal__day.is-available.is-selected {
    background: var(--pdh-bark) !important;
    color: var(--pdh-cream) !important;
    border-color: var(--pdh-bark) !important;
    box-shadow: 0 6px 14px -8px rgba(61,43,34,0.5);
    text-decoration: none;
}
.pdh-cal__day.is-selected::after { background: var(--pdh-cream); }
.pdh-cal__day.is-empty { visibility: hidden; }

/* Legenda onder kalender — leg uit wat de stippen betekenen */
.pdh-cal__legend {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid var(--pdh-linen);
    font-size: 0.78rem; color: var(--pdh-cocoa);
}
.pdh-cal__legend-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.pdh-cal__legend-dot {
    display: inline-block; width: 0.65rem; height: 0.65rem;
    border-radius: 999px; background: var(--pdh-peach);
}
.pdh-cal__legend-dot--unavailable { background: rgba(128, 96, 77, 0.25); }

/* Time slots */
.pdh-slots__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.6rem;
}
.pdh-slot-btn {
    background: #fff;
    border: 1px solid var(--pdh-linen);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--pdh-bark);
    font-family: var(--pdh-font-sans);
    font-weight: 500;
    transition: all .2s ease;
}
.pdh-slot-btn:hover {
    border-color: var(--pdh-peach);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px -6px rgba(196,137,110,0.5);
}
.pdh-slot-btn.is-selected {
    background: var(--pdh-bark);
    color: var(--pdh-cream);
    border-color: var(--pdh-bark);
}

/* Thanks step */
.pdh-booking__thanks-icon {
    width: 64px; height: 64px;
    border-radius: 999px;
    background: var(--pdh-peach);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.pdh-booking__summary {
    background: var(--pdh-shell);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    color: var(--pdh-bark);
    font-family: var(--pdh-font-serif);
    font-size: 1.15rem;
}

/* CTA + Footer */
.pdh-cta {
    background: var(--pdh-shell); padding: 3rem 2rem; border-radius: 1.5rem;
    text-align: center; max-width: 800px; margin: 0 auto;
}
.pdh-cta h2 { margin: 0 0 1rem; font-family: var(--pdh-font-serif); font-size: 2rem; color: var(--pdh-bark); }
.pdh-cta p { margin: 0 0 2rem; color: var(--pdh-cocoa); font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.pdh-cta .pdh-btn { margin-top: 1rem; }

.pdh-footer {
    background: var(--pdh-shell); padding: 4rem 2rem 2rem;
    color: var(--pdh-cocoa); font-family: var(--pdh-font-sans);
}
.pdh-footer__cta { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.pdh-footer__cta h2 { font-family: var(--pdh-font-serif); font-size: 2.25rem; color: var(--pdh-bark); margin: 0 0 1rem; }
.pdh-footer__cols {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.pdh-footer__cols h4 { font-family: var(--pdh-font-serif); color: var(--pdh-bark); margin: 0 0 1rem; }
.pdh-footer__cols a { color: var(--pdh-bark); text-decoration: none; }
.pdh-footer__cols a:hover { color: var(--pdh-peach); }
.pdh-footer__cols ul { list-style: none; padding: 0; margin: 0; }
.pdh-footer__cols ul li { margin-bottom: .5rem; }
.pdh-footer__legal {
    margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--pdh-linen);
    text-align: center; font-size: .85rem;
}

.pdh-contact-details > div { margin-bottom: 1.25rem; }
.pdh-contact-details strong { color: var(--pdh-bark); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }
.pdh-contact-details a { color: var(--pdh-peach); }

.pdh-legal h2 { font-family: var(--pdh-font-serif); margin-top: 2rem; color: var(--pdh-bark); }
.pdh-legal p { color: var(--pdh-cocoa); }
