:root {
    --dak-pink: #ef3f7a;
    --dak-pink-dark: #d92f68;
    --dak-pink-soft: #fff0f5;
    --dak-cream: #fffaf7;
    --dak-white: #ffffff;
    --dak-text: #292326;
    --dak-muted: #6d6267;
    --dak-line: #f0e3e7;
    --dak-shadow: 0 16px 44px rgba(60, 30, 40, .08);
    --dak-radius: 22px;
    --dak-shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.dak-site {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 10% 5%, rgba(239, 63, 122, .06), transparent 28rem),
        var(--dak-cream);
    color: var(--dak-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

body.nav-open { overflow: hidden; }
a { color: var(--dak-pink-dark); }
a:hover { color: var(--dak-pink); }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.site-shell { width: min(var(--dak-shell), 100%); margin-inline: auto; padding-inline: 20px; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: #fff; padding: 10px 14px; border-radius: 8px; box-shadow: var(--dak-shadow); }

.site-topbar { background: var(--dak-pink); color: #fff; padding: 7px 0; text-align: center; font-size: .94rem; }
.site-topbar p { margin: 0; }

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--dak-line);
    box-shadow: 0 5px 24px rgba(60, 30, 40, .035);
}
.header-inner { min-height: 112px; display: flex; align-items: center; gap: 34px; }
.site-brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.site-brand img { width: 138px; max-height: 94px; object-fit: contain; display: block; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.site-nav li { margin: 0; padding: 0; }
.site-nav a {
    position: relative;
    display: block;
    padding: 12px 13px;
    border-radius: 12px;
    color: var(--dak-text);
    text-decoration: none;
    font-size: .98rem;
    font-weight: 750;
    line-height: 1.2;
    transition: background-color .18s ease, color .18s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--dak-pink-dark); background: var(--dak-pink-soft); outline: none; }
.site-nav .active > a,
.site-nav .current > a,
.site-nav a[aria-current="page"] { color: var(--dak-pink-dark); background: var(--dak-pink-soft); }
.site-nav .active > a::after,
.site-nav .current > a::after,
.site-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    border-radius: 2px;
    background: var(--dak-pink);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--dak-line);
    border-radius: 12px;
    background: #fff;
    color: var(--dak-text);
    padding: 9px 12px;
    cursor: pointer;
    font-weight: 750;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: rgba(239, 63, 122, .35); color: var(--dak-pink-dark); outline: none; }
.nav-toggle-icon { width: 21px; display: grid; gap: 4px; }
.nav-toggle-icon span { display: block; height: 2px; border-radius: 2px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-banner { overflow: hidden; }
.site-main { flex: 1 0 auto; padding: 50px 0 72px; }
.content-grid.has-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; }
.component-area, .sidebar, .module-area { min-width: 0; }
.component-area > :first-child, .module-area > :first-child { margin-top: 0; }
.main-top { margin-bottom: 30px; }
.main-bottom { margin-top: 30px; }

.component-area h1,
.component-area .page-header h1,
.component-area .page-header h2 {
    margin: 0 0 22px;
    color: var(--dak-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -.025em;
}
.component-area h2, .component-area h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; }
.component-area p { max-width: 78ch; }
.component-area .item-page,
.component-area .com-content-article {
    background: var(--dak-white);
    border: 1px solid var(--dak-line);
    border-radius: var(--dak-radius);
    padding: clamp(24px, 4vw, 44px);
    box-shadow: var(--dak-shadow);
}

.sidebar > .moduletable,
.sidebar > .moduletable-card,
.module-area > .moduletable,
.module-area > .moduletable-card,
.sidebar > module,
.module-area > module {
    background: var(--dak-white);
    border: 1px solid var(--dak-line);
    border-radius: var(--dak-radius);
    padding: 24px;
    box-shadow: var(--dak-shadow);
}
.sidebar > * + * { margin-top: 22px; }

.alert { border-radius: 14px; }
.btn, button, input[type="submit"] { border-radius: 11px; }

.site-footer { margin-top: auto; background: #fff; border-top: 1px solid var(--dak-line); color: var(--dak-muted); }
.footer-inner { min-height: 92px; display: flex; align-items: center; justify-content: center; text-align: center; }
.site-footer p { margin: 0; }

@media (max-width: 860px) {
    .header-inner { min-height: 88px; }
    .site-brand img { width: 116px; max-height: 76px; }
    .nav-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin: 0;
        padding: 10px 20px 20px;
        background: #fff;
        border-bottom: 1px solid var(--dak-line);
        box-shadow: 0 18px 34px rgba(60, 30, 40, .10);
    }
    .site-nav.is-open { display: block; }
    .site-nav ul { display: grid; gap: 4px; }
    .site-nav a { padding: 13px 14px; }
    .site-nav .active > a::after,
    .site-nav .current > a::after,
    .site-nav a[aria-current="page"]::after { display: none; }
    .content-grid.has-sidebar { grid-template-columns: 1fr; }
    .site-main { padding: 34px 0 52px; }
}

@media (max-width: 480px) {
    .site-shell { padding-inline: 15px; }
    .nav-toggle-label { display: none; }
    .site-main { padding-top: 26px; }
    .component-area .item-page,
    .component-area .com-content-article { padding: 22px 18px; border-radius: 18px; }
}

/* 1.0.3 - actuele mededeling en modulaire homepage */
.site-notice {
    background: #fff4f7;
    border-bottom: 1px solid rgba(239, 63, 122, .16);
    color: #754052;
}
.site-notice .site-shell { padding-top: 13px; padding-bottom: 13px; }
.site-notice p { margin: 0; }
.site-notice a { font-weight: 700; }

.dak-home .site-main { padding-top: 0; }
.home-stack { padding-top: 42px; padding-bottom: 72px; }
.home-stack > * + * { margin-top: 28px; }
.home-section { min-width: 0; }

.home-hero {
    background: linear-gradient(135deg, #fff7f3 0%, #fff 52%, #fff0f5 100%);
    border-bottom: 1px solid var(--dak-line);
}
.home-hero > .moduletable,
.home-hero > .moduletable-card,
.home-hero > module,
.home-hero > .hero-stage {
    width: min(var(--dak-shell), 100%);
    margin-inline: auto;
    padding: clamp(42px, 7vw, 86px) 20px;
}

.home-intro > .moduletable,
.home-intro > .moduletable-card,
.home-intro > module,
.home-card-section > .moduletable,
.home-card-section > .moduletable-card,
.home-card-section > module,
.home-contact > .moduletable,
.home-contact > .moduletable-card,
.home-contact > module {
    background: var(--dak-white);
    border: 1px solid var(--dak-line);
    border-radius: var(--dak-radius);
    padding: clamp(24px, 4vw, 38px);
    box-shadow: var(--dak-shadow);
}

.home-section h1,
.home-section h2,
.home-section h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.15;
    color: var(--dak-text);
}
.home-section h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-top: 0; }
.home-section p:last-child { margin-bottom: 0; }

.home-menu > *,
.home-events > * { border-top: 5px solid var(--dak-pink); }
.home-dagbesteding > * { background: #fffaf7; }
.home-actions > * { background: #fff4f7; }

.home-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}
.home-two-column .home-section,
.home-two-column .home-section > * { height: 100%; }

.home-contact > * {
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #fff4f7 100%);
}

@media (max-width: 760px) {
    .home-stack { padding-top: 28px; padding-bottom: 52px; }
    .home-stack > * + * { margin-top: 20px; }
    .home-two-column { grid-template-columns: 1fr; gap: 20px; }
    .home-hero > .moduletable,
    .home-hero > .moduletable-card,
    .home-hero > module,
    .home-hero > .hero-stage { padding: 34px 15px; }
}

/* 1.0.6 - opgeschoonde hero: één foto, correcte missiecirkel en plant */
:root { --dak-shell: 1480px; }

.header-inner { min-height: 82px; gap: 28px; }
.site-brand img { width: 118px; max-height: 78px; }
.site-nav a { padding: 10px 12px; font-size: .94rem; font-weight: 700; }

.home-hero {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    background: #fff8f3;
    border-bottom: 1px solid var(--dak-line);
}

.home-hero > .hero-stage {
    position: relative;
    z-index: 1;
    min-height: 300px;
    width: min(var(--dak-shell), 100%);
    margin-inline: auto;
    padding: 30px 170px 28px 170px;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.home-hero > .hero-stage::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0 0 0 39%;
    background: url('../images/hero-home.jpg') center 47% / cover no-repeat;
}

.home-hero > .hero-stage::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg,
        #fff8f3 0%,
        #fff8f3 35%,
        rgba(255,248,243,.98) 40%,
        rgba(255,248,243,.88) 46%,
        rgba(255,248,243,.55) 52%,
        rgba(255,248,243,.15) 60%,
        rgba(255,248,243,0) 68%);
}

.home-hero .dak-hero-content,
.home-hero .custom,
.home-hero .mod-custom {
    position: relative;
    z-index: 2;
}

.home-hero .dak-hero-content { width: 610px; max-width: 610px; }
.home-hero h1 {
    max-width: 650px;
    margin: 0 0 12px;
    font-size: clamp(2.7rem, 3.35vw, 3.85rem);
    line-height: .98;
    letter-spacing: -.035em;
}
.home-hero p {
    max-width: 58ch;
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.45;
}
.home-hero .dak-hero-actions,
.home-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}
.home-hero .dak-button,
.home-hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.1;
}
.home-hero .dak-button-primary,
.home-hero .btn-primary {
    color: #fff;
    background: var(--dak-pink);
    border-color: var(--dak-pink);
    box-shadow: 0 8px 20px rgba(239,63,122,.18);
}
.home-hero .dak-button-secondary,
.home-hero .btn-secondary {
    color: var(--dak-text);
    background: rgba(255,255,255,.88);
    border-color: #4b4447;
}

.hero-plant {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 0;
    width: clamp(118px, 10vw, 165px);
    height: auto;
    pointer-events: none;
    user-select: none;
}

.hero-mission {
    position: absolute;
    z-index: 5;
    right: max(3.5vw, 34px);
    top: 50%;
    transform: translateY(-50%);
    width: 142px;
    height: 142px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.97);
    box-shadow: 0 8px 26px rgba(60,30,40,.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #211d1f;
    font-size: .88rem;
    font-weight: 750;
    line-height: 1.24;
    pointer-events: none;
}
.hero-mission-heart {
    display: block;
    margin-bottom: 7px;
    color: var(--dak-pink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.05rem;
    font-weight: 400;
    line-height: .8;
}

@media (max-width: 1180px) {
    .home-hero > .hero-stage { padding-left: 125px; padding-right: 150px; }
    .home-hero .dak-hero-content { width: 540px; max-width: 540px; }
    .hero-mission { right: 24px; width: 126px; height: 126px; font-size: .8rem; }
}

@media (max-width: 860px) {
    :root { --dak-shell: 1180px; }
    .header-inner { min-height: 88px; }
    .site-brand img { width: 116px; max-height: 76px; }
    .home-hero { min-height: 0; }
    .home-hero > .hero-stage {
        min-height: 0;
        display: block;
        padding: 30px 20px 285px;
    }
    .home-hero > .hero-stage::after {
        inset: auto 0 0 0;
        height: 250px;
        background-position: 58% center;
    }
    .home-hero > .hero-stage::before {
        background: linear-gradient(180deg,
            #fff8f3 0%,
            #fff8f3 57%,
            rgba(255,248,243,.96) 64%,
            rgba(255,248,243,.18) 78%,
            rgba(255,248,243,0) 90%);
    }
    .home-hero .dak-hero-content { width: 100%; max-width: 640px; }
    .home-hero h1 { font-size: clamp(2.35rem, 8vw, 3.3rem); }
    .hero-plant { width: 110px; }
    .hero-mission {
        right: 18px;
        top: auto;
        bottom: 56px;
        transform: none;
        width: 108px;
        height: 108px;
        font-size: .72rem;
    }
    .hero-mission-heart { font-size: 1.55rem; margin-bottom: 4px; }
}

@media (max-width: 520px) {
    .home-hero > .hero-stage { padding: 24px 15px 245px; }
    .home-hero > .hero-stage::after { height: 215px; background-position: 61% center; }
    .home-hero h1 { font-size: clamp(2.05rem, 10.5vw, 2.8rem); }
    .home-hero p { font-size: .96rem; }
    .home-hero .dak-hero-actions,
    .home-hero .hero-actions { display: grid; grid-template-columns: 1fr; }
    .home-hero .dak-button,
    .home-hero .btn { width: 100%; }
    .hero-plant { width: 92px; }
    .hero-mission { width: 92px; height: 92px; right: 12px; bottom: 50px; font-size: .64rem; }
}


/* 1.0.7 - mobiele hero volgens goedgekeurde mockup */
@media (max-width: 520px) {
    .header-inner {
        min-height: 104px;
        padding-inline: 18px;
    }
    .site-brand img {
        width: 108px;
        max-height: 88px;
    }
    .nav-toggle {
        border: 0;
        background: transparent;
        color: var(--dak-pink);
        padding: 10px;
        border-radius: 0;
    }
    .nav-toggle-icon {
        width: 27px;
        gap: 5px;
    }
    .nav-toggle-icon span {
        height: 3px;
    }

    .home-hero {
        min-height: 370px;
        background: #fff8f3;
    }
    .home-hero > .hero-stage {
        min-height: 370px;
        padding: 30px 16px 22px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }
    .home-hero > .hero-stage::after {
        inset: 0;
        height: auto;
        background-position: 64% center;
        background-size: cover;
    }
    .home-hero > .hero-stage::before {
        inset: 0;
        background:
            linear-gradient(90deg,
                rgba(255,248,243,.99) 0%,
                rgba(255,248,243,.97) 34%,
                rgba(255,248,243,.84) 48%,
                rgba(255,248,243,.36) 62%,
                rgba(255,248,243,0) 76%),
            linear-gradient(180deg,
                rgba(255,248,243,.18) 0%,
                rgba(255,248,243,0) 75%,
                rgba(255,248,243,.12) 100%);
    }
    .home-hero .dak-hero-content,
    .home-hero .custom,
    .home-hero .mod-custom {
        width: 60%;
        max-width: 235px;
    }
    .home-hero .dak-hero-content {
        width: 60%;
        max-width: 235px;
    }
    .home-hero h1 {
        max-width: 235px;
        margin-bottom: 12px;
        font-size: clamp(1.72rem, 7.7vw, 2rem);
        line-height: 1.01;
        letter-spacing: -.025em;
        color: #17382d;
    }
    .home-hero p {
        max-width: 230px;
        margin-bottom: 14px;
        font-size: .76rem;
        line-height: 1.38;
        color: #1d211f;
    }
    .home-hero .dak-hero-actions,
    .home-hero .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }
    .home-hero .dak-button,
    .home-hero .btn {
        width: 100%;
        min-height: 38px;
        padding: 8px 13px;
        font-size: .78rem;
        border-radius: 5px;
    }
    .hero-plant,
    .hero-mission {
        display: none;
    }
}

@media (max-width: 390px) {
    .home-hero > .hero-stage { min-height: 358px; }
    .home-hero .dak-hero-content,
    .home-hero .custom,
    .home-hero .mod-custom { width: 61%; max-width: 228px; }
    .home-hero h1 { font-size: 1.78rem; max-width: 228px; }
    .home-hero p { font-size: .74rem; max-width: 222px; }
    .home-hero > .hero-stage::after { background-position: 65% center; }
}

/* 1.0.8 - aparte mobiele herocompositie op basis van de goedgekeurde mobiele mockup */
@media (max-width: 520px) {
    .home-hero {
        min-height: 372px;
        background: #fff8f3;
    }

    .home-hero > .hero-stage {
        min-height: 372px;
        padding: 26px 16px 22px;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
    }

    /* Gebruik op mobiel een aparte, goedgekeurde uitsnede. Geen background-size: cover. */
    .home-hero > .hero-stage::after {
        inset: 0 0 0 auto;
        width: 285px;
        height: 375px;
        background-image: url('../images/hero-home-mobile.jpg');
        background-repeat: no-repeat;
        background-position: right top;
        background-size: 285px 375px;
    }

    .home-hero > .hero-stage::before {
        inset: 0;
        background: linear-gradient(90deg,
            #fff8f3 0%,
            rgba(255,248,243,.99) 39%,
            rgba(255,248,243,.94) 51%,
            rgba(255,248,243,.76) 62%,
            rgba(255,248,243,.36) 73%,
            rgba(255,248,243,0) 86%);
    }

    .home-hero .dak-hero-content,
    .home-hero .custom,
    .home-hero .mod-custom {
        width: 270px;
        max-width: 270px;
        margin: 0;
    }

    .home-hero h1 {
        width: 270px;
        max-width: 270px;
        margin: 0 0 13px;
        font-size: 1.76rem;
        line-height: 1.02;
        letter-spacing: -.025em;
        color: #17382d;
    }

    .home-hero p {
        width: 245px;
        max-width: 245px;
        margin: 0 0 14px;
        font-size: .72rem;
        line-height: 1.36;
        color: #1d211f;
    }

    .home-hero .dak-hero-actions,
    .home-hero .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 240px;
        max-width: 240px;
    }

    .home-hero .dak-button,
    .home-hero .btn {
        width: 240px;
        min-height: 41px;
        padding: 9px 13px;
        font-size: .78rem;
        border-radius: 5px;
    }

    .hero-plant,
    .hero-mission {
        display: none;
    }
}

@media (max-width: 390px) {
    .home-hero,
    .home-hero > .hero-stage { min-height: 365px; }

    .home-hero > .hero-stage {
        padding: 24px 15px 20px;
    }

    .home-hero > .hero-stage::after {
        width: 277px;
        height: 365px;
        background-size: 277px 365px;
    }

    .home-hero .dak-hero-content,
    .home-hero .custom,
    .home-hero .mod-custom,
    .home-hero h1 {
        width: 258px;
        max-width: 258px;
    }

    .home-hero h1 { font-size: 1.68rem; }
    .home-hero p { width: 236px; max-width: 236px; font-size: .70rem; }
    .home-hero .dak-hero-actions,
    .home-hero .hero-actions,
    .home-hero .dak-button,
    .home-hero .btn { width: 232px; max-width: 232px; }
}

/* 1.0.9 - mobiele polish: compactere hero en footer */
@media (max-width: 520px) {
    /* Op een nog grotendeels lege homepage mag de footer direct na de inhoud volgen. */
    .dak-home .site-main {
        flex: 0 0 auto;
        padding-bottom: 0;
    }

    .home-hero,
    .home-hero > .hero-stage {
        min-height: 332px;
    }

    .home-hero > .hero-stage {
        padding: 22px 14px 18px;
    }

    .home-hero > .hero-stage::after {
        width: 258px;
        height: 332px;
        background-size: 252px 332px;
        background-position: right top;
    }

    .home-hero > .hero-stage::before {
        background: linear-gradient(90deg,
            #fff8f3 0%,
            rgba(255,248,243,.995) 42%,
            rgba(255,248,243,.95) 53%,
            rgba(255,248,243,.76) 64%,
            rgba(255,248,243,.34) 75%,
            rgba(255,248,243,0) 88%);
    }

    .home-hero .dak-hero-content,
    .home-hero .custom,
    .home-hero .mod-custom {
        width: 278px;
        max-width: 278px;
    }

    .home-hero h1 {
        width: 278px;
        max-width: 278px;
        margin: 0 0 9px;
        font-size: 1.38rem;
        line-height: 1.03;
        letter-spacing: -.018em;
    }

    .home-hero p {
        width: 248px;
        max-width: 248px;
        margin: 0 0 11px;
        font-size: .69rem;
        line-height: 1.31;
    }

    .home-hero .dak-hero-actions,
    .home-hero .hero-actions {
        width: 235px;
        max-width: 235px;
        gap: 6px;
    }

    .home-hero .dak-button,
    .home-hero .btn {
        width: 235px;
        min-height: 37px;
        padding: 7px 11px;
        font-size: .74rem;
    }

    .site-footer {
        margin-top: 0;
    }

    .footer-inner {
        width: 100%;
        max-width: 343px;
        min-height: 58px;
        padding: 13px 16px;
        margin-inline: auto;
        font-size: .78rem;
        line-height: 1.25;
    }
}

@media (max-width: 390px) {
    .home-hero,
    .home-hero > .hero-stage {
        min-height: 326px;
    }

    .home-hero > .hero-stage {
        padding: 21px 14px 17px;
    }

    .home-hero > .hero-stage::after {
        width: 252px;
        height: 326px;
        background-size: 247px 326px;
    }

    .home-hero .dak-hero-content,
    .home-hero .custom,
    .home-hero .mod-custom,
    .home-hero h1 {
        width: 270px;
        max-width: 270px;
    }

    .home-hero h1 {
        font-size: 1.34rem;
    }

    .home-hero p {
        width: 244px;
        max-width: 244px;
        font-size: .68rem;
    }

    .home-hero .dak-hero-actions,
    .home-hero .hero-actions,
    .home-hero .dak-button,
    .home-hero .btn {
        width: 230px;
        max-width: 230px;
    }
}

/* 1.0.10 - mobiele header/hero/footer verfijning */
@media (max-width: 520px) {
    /* De mobiele homepage hoeft de viewport niet kunstmatig op te vullen. */
    body.dak-site.dak-home {
        min-height: auto;
    }

    /* Compactere mobiele header, dichter bij de goedgekeurde mockup. */
    .header-inner {
        min-height: 72px;
        gap: 16px;
    }

    .site-brand img {
        width: 94px;
        max-height: 62px;
    }

    .nav-toggle {
        min-height: 38px;
        padding: 7px 9px;
        border: 0;
        background: transparent;
        color: var(--dak-pink);
    }

    .nav-toggle-icon {
        width: 24px;
        gap: 5px;
    }

    .nav-toggle-icon span {
        height: 3px;
    }

    /* Foto verder naar rechts en een rustiger, vrijwel effen tekstvlak links. */
    .home-hero > .hero-stage::after {
        right: -5px;
        width: 250px;
        height: 326px;
        background-size: 250px 326px;
        background-position: right top;
    }

    .home-hero > .hero-stage::before {
        background: linear-gradient(90deg,
            #fff8f3 0%,
            #fff8f3 42%,
            rgba(255,248,243,.995) 53%,
            rgba(255,248,243,.97) 61%,
            rgba(255,248,243,.82) 70%,
            rgba(255,248,243,.46) 79%,
            rgba(255,248,243,.08) 90%,
            rgba(255,248,243,0) 100%);
    }

    /* Geen resterende lege viewportstrook onder de footer. */
    .dak-home .site-footer {
        margin-top: 0;
    }
}

@media (max-width: 390px) {
    .header-inner {
        min-height: 68px;
    }

    .site-brand img {
        width: 90px;
        max-height: 58px;
    }

    .home-hero > .hero-stage::after {
        right: -5px;
        width: 244px;
        height: 326px;
        background-size: 244px 326px;
    }
}

/* 1.0.11 - laatste mobiele correcties hero en lege homepage */
html {
    background: #fff;
}

@media (max-width: 520px) {
    /* De mobiele uitsnede is fysiek ontdaan van de zwarte rechterrand. */
    .home-hero > .hero-stage::after {
        right: -10px;
        width: 244px;
        height: 326px;
        background-size: 244px 326px;
        background-position: right top;
    }

    /* Houd het gezicht iets verder rechts en het tekstvlak rustig. */
    .home-hero > .hero-stage::before {
        background: linear-gradient(90deg,
            #fff8f3 0%,
            #fff8f3 43%,
            rgba(255,248,243,.998) 54%,
            rgba(255,248,243,.975) 63%,
            rgba(255,248,243,.84) 72%,
            rgba(255,248,243,.46) 81%,
            rgba(255,248,243,.06) 91%,
            rgba(255,248,243,0) 100%);
    }

    /* Als er nog geen blokken onder de hero zijn, volgt de footer direct. */
    .dak-home .site-main {
        padding-bottom: 0;
    }
}

@media (max-width: 390px) {
    .home-hero > .hero-stage::after {
        right: -11px;
        width: 240px;
        height: 326px;
        background-size: 240px 326px;
    }
}


/* 1.0.12 - natuurlijke documentflow op de mobiele homepage */
@media (max-width: 520px) {
    /* Laat de korte homepage niet langer als flex-kolom de viewport opvullen. */
    body.dak-site.dak-home {
        display: block;
        min-height: 0;
        background: #fff;
    }

    .dak-home .site-main {
        display: block;
        flex: none;
        min-height: 0;
        padding-bottom: 0;
    }

    .dak-home .site-footer {
        display: block;
        margin-top: 0;
    }

    .dak-home .footer-inner {
        min-height: 58px;
    }
}


/* 1.0.13 - footer onderaan viewport bij korte mobiele homepage */
@media (max-width: 520px) {
    body.dak-site.dak-home {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        background: #fff;
    }

    .dak-home .site-main {
        display: block;
        flex: 1 0 auto;
        min-height: 0;
        padding-bottom: 0;
    }

    .dak-home .site-footer {
        display: block;
        margin-top: auto;
    }
}

/* 1.0.14 - beheerbare homepage-kaarten Lunchroom / Catering / Dagbesteding */
.home-features {
    margin-top: 16px;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-feature-slot {
    min-width: 0;
}

.dak-feature-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 42%) 1fr;
    min-height: 164px;
    overflow: visible;
    border: 1px solid #eadfd9;
    border-radius: 16px;
    background: #fffaf6;
    box-shadow: 0 8px 24px rgba(71, 39, 31, .06);
}

.dak-feature-media {
    min-height: 164px;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}

.dak-feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dak-feature-body {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 15px 22px;
}

.dak-feature-icon {
    position: absolute;
    z-index: 2;
    top: -14px;
    left: calc(42% - 26px);
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 4px solid #fffaf6;
    border-radius: 50%;
    background: var(--dak-pink);
    color: #fff;
    font-size: 25px;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(239, 63, 122, .18);
}

.dak-feature-card h2,
.dak-feature-card h3 {
    margin: 0 0 6px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.25rem, 1.5vw, 1.65rem);
    line-height: 1.08;
    color: #241d1d;
}

.dak-feature-card p {
    margin: 0 0 10px;
    font-size: .94rem;
    line-height: 1.42;
    color: #342c2b;
}

.dak-feature-link {
    margin-top: auto;
    color: var(--dak-pink);
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
}

.dak-feature-link::after {
    content: '›';
    margin-left: 8px;
    font-size: 1.2em;
}

.dak-feature-link:hover,
.dak-feature-link:focus-visible {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .home-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dak-feature-card {
        grid-template-columns: minmax(180px, 34%) 1fr;
    }

    .dak-feature-icon {
        left: calc(34% - 26px);
    }
}

@media (max-width: 520px) {
    .home-stack {
        padding-top: 12px;
        padding-bottom: 16px;
    }

    .home-features {
        margin-top: 0;
    }

    .home-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .dak-feature-card {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        border-radius: 10px;
    }

    .dak-feature-media {
        width: 100%;
        height: 94px;
        min-height: 94px;
        border-radius: 9px 9px 0 0;
    }

    .dak-feature-body {
        flex: 1 1 auto;
        padding: 11px 9px 10px;
    }

    .dak-feature-icon {
        top: -12px;
        left: 9px;
        width: 42px;
        height: 42px;
        border-width: 3px;
        font-size: 20px;
    }

    .dak-feature-card h2,
    .dak-feature-card h3 {
        margin-bottom: 5px;
        font-size: .94rem;
        line-height: 1.05;
    }

    .dak-feature-card p {
        margin-bottom: 8px;
        font-size: .68rem;
        line-height: 1.3;
    }

    .dak-feature-link {
        font-size: .67rem;
        line-height: 1.2;
    }

    .dak-feature-link::after {
        margin-left: 3px;
    }
}

/* 1.0.15 - feature cards dichter bij de goedgekeurde mockup */
.dak-home .site-main,
.dak-home .home-stack {
    background: #fff8f4;
}

.home-stack {
    padding-top: 14px;
}

.home-features {
    margin-top: 0;
}

.home-feature-grid {
    gap: 16px;
}

.dak-feature-card {
    min-height: 146px;
    border-color: #eadfd8;
    border-radius: 14px;
    background: #fffaf6;
    box-shadow: 0 5px 16px rgba(71, 39, 31, .045);
}

.dak-feature-media {
    min-height: 146px;
    border-radius: 13px 0 0 13px;
}

.dak-feature-body {
    padding: 14px 16px 12px 20px;
}

.dak-feature-card h2,
.dak-feature-card h3 {
    margin-bottom: 5px;
    font-size: clamp(1.2rem, 1.35vw, 1.52rem);
}

.dak-feature-card p {
    margin-bottom: 8px;
    font-size: .88rem;
    line-height: 1.36;
}

.dak-feature-link {
    font-size: .86rem;
}

/* Geen emoji/placeholders: vaste iconen uit de goedgekeurde vormtaal. */
.dak-feature-icon {
    width: 50px;
    height: 50px;
    top: -12px;
    font-size: 0;
    background-color: var(--dak-pink);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 29px 29px;
}

.feature-lunchroom .dak-feature-icon {
    background-image: url('../images/icon-lunchroom.svg');
}

.feature-catering .dak-feature-icon {
    background-image: url('../images/icon-catering.svg');
}

.feature-dagbesteding .dak-feature-icon {
    background-image: url('../images/icon-dagbesteding.svg');
}

@media (max-width: 980px) and (min-width: 521px) {
    .home-stack {
        padding-top: 12px;
    }
}

@media (max-width: 520px) {
    .home-stack {
        padding-top: 8px;
        padding-bottom: 14px;
    }

    .home-feature-grid {
        gap: 7px;
    }

    .dak-feature-card {
        border-radius: 9px;
        box-shadow: 0 3px 10px rgba(71, 39, 31, .035);
    }

    .dak-feature-media {
        height: 90px;
        min-height: 90px;
        border-radius: 8px 8px 0 0;
    }

    .dak-feature-body {
        padding: 10px 8px 9px;
    }

    .dak-feature-icon {
        top: -11px;
        left: 8px;
        width: 40px;
        height: 40px;
        border-width: 3px;
        background-size: 23px 23px;
    }

    .dak-feature-card h2,
    .dak-feature-card h3 {
        font-size: .91rem;
    }

    .dak-feature-card p {
        font-size: .66rem;
        line-height: 1.28;
    }

    .dak-feature-link {
        font-size: .65rem;
    }
}


/* 1.0.16 - gelijke featurekaarten + compacte roze footer */
.home-feature-grid {
    align-items: stretch;
}

.home-feature-slot,
.home-feature-slot > div,
.home-feature-slot .mod-custom,
.home-feature-slot .dak-feature-card {
    height: 100%;
}

.dak-feature-card {
    min-height: 158px;
}

.dak-feature-body {
    min-height: 0;
}

.dak-feature-body .dak-feature-link {
    margin-top: auto;
}

/* Footer zoals in de goedgekeurde mockup: smalle roze onderbalk. */
.site-footer {
    margin-top: auto;
    background: var(--dak-pink);
    border-top: 0;
    color: #fff;
}

.footer-inner {
    min-height: 28px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: .72rem;
    line-height: 1.15;
}

.site-footer p,
.site-footer a {
    color: #fff;
}

@media (max-width: 520px) {
    .home-feature-slot,
    .home-feature-slot > div,
    .home-feature-slot .mod-custom,
    .home-feature-slot .dak-feature-card {
        height: 100%;
    }

    .dak-feature-card {
        min-height: 100%;
    }

    .dak-feature-body {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
    }

    .footer-inner {
        min-height: 26px;
        padding: 5px 10px;
        font-size: .66rem;
    }
}

/* 1.0.17 - Agenda, Acties en promotieblok in één rij zoals de goedgekeurde mockup */
.home-info-grid {
    display: grid;
    grid-template-columns: 1.18fr 1fr 1.18fr;
    gap: 16px;
    align-items: stretch;
}

.home-info-grid > .home-section,
.home-info-grid > .home-section > *,
.home-info-grid > .home-section > .moduletable,
.home-info-grid > .home-section > .moduletable-card,
.home-info-grid > .home-section > module {
    min-width: 0;
    height: 100%;
}

.home-info-grid .home-card-section > .moduletable,
.home-info-grid .home-card-section > .moduletable-card,
.home-info-grid .home-card-section > module,
.home-info-grid .home-promo > * {
    padding: 14px 16px;
    border: 1px solid #eadfd8;
    border-radius: 14px;
    background: #fffaf6;
    box-shadow: 0 5px 16px rgba(71, 39, 31, .04);
}

.home-info-grid .home-events > *,
.home-info-grid .home-actions > * {
    border-top-width: 1px;
    background: #fffaf6;
}

.home-info-grid h2,
.home-info-grid h3 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 1.45vw, 1.58rem);
    line-height: 1.08;
}

/* Promo rechts: tekst links, foto rechts, beheerbaar via Custom module. */
.dak-home-promo-card {
    position: relative;
    min-height: 168px;
    overflow: hidden;
    border-radius: 11px;
    background: #fffaf6;
}

.dak-home-promo-card::after {
    content: "";
    position: absolute;
    inset: 0 0 0 42%;
    z-index: 0;
    background:
        linear-gradient(90deg, #fffaf6 0%, rgba(255,250,246,.74) 14%, rgba(255,250,246,.06) 52%, rgba(255,250,246,0) 100%),
        url('../images/home-promo-feesten.jpg') center / cover no-repeat;
}

.dak-home-promo-content {
    position: relative;
    z-index: 1;
    width: 61%;
    padding: 22px 18px 18px 20px;
}

.dak-home-promo-content h2,
.dak-home-promo-content h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.24rem, 1.5vw, 1.65rem);
    line-height: 1.08;
}

.dak-home-promo-content p {
    margin: 0 0 14px;
    font-size: .82rem;
    line-height: 1.38;
}

.dak-home-promo-content .dak-button,
.dak-home-promo-content .btn {
    min-height: 36px;
    padding: 8px 15px;
    font-size: .78rem;
}

@media (max-width: 980px) {
    .home-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    .home-promo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .home-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .home-promo {
        grid-column: auto;
    }
    .home-info-grid .home-card-section > .moduletable,
    .home-info-grid .home-card-section > .moduletable-card,
    .home-info-grid .home-card-section > module,
    .home-info-grid .home-promo > * {
        padding: 10px;
        border-radius: 10px;
    }
    .dak-home-promo-card {
        min-height: 142px;
    }
    .dak-home-promo-card::after {
    }
    .dak-home-promo-content {
        width: 65%;
        padding: 16px 12px 14px;
    }
    .dak-home-promo-content h2,
    .dak-home-promo-content h3 {
        font-size: 1.08rem;
    }
    .dak-home-promo-content p {
        font-size: .7rem;
        line-height: 1.32;
        margin-bottom: 10px;
    }
}
@media (max-width: 620px) {
    .dak-home-promo-card::after { inset: 0 0 0 44%; }
}

/* 1.0.18 - Joomla Artikelen override voor Agenda & evenementen en Acties */
.home-events > .moduletable,
.home-actions > .moduletable,
.home-events > module,
.home-actions > module {
    position: relative;
    padding: 12px 14px 13px;
}

.home-events .moduletable > h3,
.home-actions .moduletable > h3,
.home-events module > h3,
.home-actions module > h3 {
    margin: 0 0 10px;
    padding-right: 132px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    line-height: 1.08;
}

.dak-article-module {
    position: relative;
}

.dak-module-all-link {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 2;
    color: var(--dak-pink);
    font-size: .65rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.dak-module-all-link:hover,
.dak-module-all-link:focus-visible {
    text-decoration: underline;
}

.dak-article-card-grid {
    display: grid;
    gap: 7px;
    align-items: stretch;
}

.dak-event-module .dak-article-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dak-action-module .dak-article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dak-mini-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #eadfd8;
    border-radius: 8px;
    background: #fff;
}

.dak-mini-card-image {
    display: block;
    height: 72px;
    overflow: hidden;
    background: #f5eee9;
}

.dak-mini-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dak-event-module .dak-mini-card-image {
    height: 67px;
}

.dak-event-date {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    width: 40px;
    min-height: 58px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 7px 0 7px 0;
    background: rgba(255,255,255,.96);
    box-shadow: 0 1px 4px rgba(50,30,25,.13);
    color: #201816;
    line-height: 1;
}

.dak-event-month,
.dak-event-weekday {
    font-size: .48rem;
    font-weight: 800;
    letter-spacing: .03em;
}

.dak-event-day {
    margin: 3px 0;
    font-size: 1.08rem;
    font-family: Georgia, "Times New Roman", serif;
}

.dak-action-label {
    position: absolute;
    top: 5px;
    left: 6px;
    z-index: 3;
    max-width: calc(100% - 12px);
    padding: 3px 6px;
    border-radius: 3px;
    background: var(--dak-pink);
    color: #fff;
    font-size: .48rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.dak-mini-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 7px 8px 8px;
}

.dak-mini-card-body h4 {
    margin: 0 0 4px;
    font-family: inherit;
    font-size: .69rem;
    font-weight: 800;
    line-height: 1.12;
}

.dak-mini-card-body h4 a {
    color: #211916;
    text-decoration: none;
}

.dak-mini-card-body h4 a:hover,
.dak-mini-card-body h4 a:focus-visible {
    color: var(--dak-pink);
}

.dak-mini-card-body p {
    margin: 0;
    font-size: .58rem;
    line-height: 1.25;
}

.dak-event-time {
    margin-top: auto !important;
    padding-top: 6px;
    color: #332825;
    font-weight: 700;
}

.dak-action-price {
    margin-top: auto !important;
    padding-top: 5px;
    color: var(--dak-pink) !important;
    font-size: .95rem !important;
    font-weight: 800;
}

@media (max-width: 980px) {
    .home-events .moduletable > h3,
    .home-actions .moduletable > h3,
    .home-events module > h3,
    .home-actions module > h3 {
        padding-right: 110px;
    }
}

@media (max-width: 620px) {
    .home-events > .moduletable,
    .home-actions > .moduletable,
    .home-events > module,
    .home-actions > module {
        padding: 9px 9px 10px;
    }

    .home-events .moduletable > h3,
    .home-actions .moduletable > h3,
    .home-events module > h3,
    .home-actions module > h3 {
        margin-bottom: 8px;
        padding-right: 0;
        font-size: 1rem;
    }

    .dak-module-all-link {
        position: static;
        display: block;
        margin: -2px 0 7px;
        text-align: right;
        font-size: .6rem;
    }

    .dak-event-module .dak-article-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }

    .dak-action-module .dak-article-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .dak-mini-card-image,
    .dak-event-module .dak-mini-card-image {
        height: 66px;
    }

    .dak-event-date {
        width: 34px;
        min-height: 52px;
    }

    .dak-event-day {
        font-size: .9rem;
    }

    .dak-event-month,
    .dak-event-weekday,
    .dak-action-label {
        font-size: .42rem;
    }

    .dak-mini-card-body {
        padding: 6px;
    }

    .dak-mini-card-body h4 {
        font-size: .61rem;
    }

    .dak-mini-card-body p {
        font-size: .49rem;
        line-height: 1.23;
    }

    .dak-action-price {
        font-size: .78rem !important;
    }
}

/* 1.0.19 - Joomla 6.1 mod_articles fix + titeliconen volgens mockup */
.home-events .moduletable > h3,
.home-actions .moduletable > h3,
.home-events module > h3,
.home-actions module > h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-events .moduletable > h3::before,
.home-events module > h3::before,
.home-actions .moduletable > h3::before,
.home-actions module > h3::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.home-events .moduletable > h3::before,
.home-events module > h3::before {
    background-image: url("../images/icon-agenda.svg");
}

.home-actions .moduletable > h3::before,
.home-actions module > h3::before {
    background-image: url("../images/icon-actions.svg");
}

@media (max-width: 620px) {
    .home-events .moduletable > h3,
    .home-actions .moduletable > h3,
    .home-events module > h3,
    .home-actions module > h3 {
        gap: 6px;
    }

    .home-events .moduletable > h3::before,
    .home-events module > h3::before,
    .home-actions .moduletable > h3::before,
    .home-actions module > h3::before {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
    }
}

/* 1.0.20 - compactere tweede homerij conform goedgekeurde mockup */
.home-info-grid {
    align-items: start;
}

.home-info-grid > .home-section,
.home-info-grid > .home-section > *,
.home-info-grid > .home-section > .moduletable,
.home-info-grid > .home-section > .moduletable-card,
.home-info-grid > .home-section > module {
    height: auto;
}

.home-info-grid .home-card-section > .moduletable,
.home-info-grid .home-card-section > .moduletable-card,
.home-info-grid .home-card-section > module,
.home-info-grid .home-promo > * {
    min-height: 0;
}

.home-events > .moduletable,
.home-actions > .moduletable,
.home-events > module,
.home-actions > module {
    padding-bottom: 12px;
}

.dak-home-promo-card {
    min-height: 0;
    height: 196px;
}

.dak-home-promo-card::after {
    inset: 0 0 0 47%;
}

.dak-home-promo-content {
    width: 55%;
    padding: 18px 14px 14px 16px;
}

.dak-home-promo-content h2,
.dak-home-promo-content h3 {
    margin-bottom: 7px;
    font-size: clamp(1.05rem, 1.16vw, 1.34rem);
    line-height: 1.04;
}

.dak-home-promo-content p {
    max-width: 25em;
    margin-bottom: 10px;
    font-size: .72rem;
    line-height: 1.32;
}

.dak-home-promo-content .dak-button,
.dak-home-promo-content .btn {
    min-height: 31px;
    padding: 6px 12px;
    font-size: .7rem;
}

@media (max-width: 980px) {
    .dak-home-promo-card {
        height: 176px;
    }
}

@media (max-width: 620px) {
    .home-info-grid {
        align-items: start;
    }

    .dak-home-promo-card {
        height: 150px;
    }

    .dak-home-promo-card::after {
        inset: 0 0 0 46%;
    }

    .dak-home-promo-content {
        width: 59%;
        padding: 13px 10px 11px;
    }

    .dak-home-promo-content h2,
    .dak-home-promo-content h3 {
        font-size: .98rem;
    }

    .dak-home-promo-content p {
        margin-bottom: 8px;
        font-size: .66rem;
        line-height: 1.28;
    }
}

/* 1.0.21 - desktopverhoudingen tweede rij + bredere hero volgens mockup */
@media (min-width: 981px) {
    /* Hero over de volledige viewportbreedte; tekst blijft op dezelfde visuele lijn. */
    .home-hero > .hero-stage {
        width: 100%;
        max-width: none;
        padding-left: max(170px, calc((100vw - 1480px) / 2 + 170px));
        padding-right: 40px;
    }

    .home-hero > .hero-stage::after {
        inset: 0 0 0 39%;
        background-position: center 47%;
    }

    /* De drie blokken vormen één even hoge rij. */
    .home-info-grid {
        align-items: stretch;
    }

    .home-info-grid > .home-section,
    .home-info-grid > .home-section > *,
    .home-info-grid > .home-section > .moduletable,
    .home-info-grid > .home-section > .moduletable-card,
    .home-info-grid > .home-section > module {
        height: 196px;
        min-height: 196px;
    }

    .home-events > .moduletable,
    .home-actions > .moduletable,
    .home-events > module,
    .home-actions > module,
    .home-promo > * {
        display: flex;
        flex-direction: column;
    }

    .home-events .dak-article-module,
    .home-actions .dak-article-module {
        flex: 1 1 auto;
        min-height: 0;
    }

    .dak-home-promo-card {
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    /* Alle drie sectietitels dezelfde typografie. */
    .home-events .moduletable > h3,
    .home-actions .moduletable > h3,
    .home-events module > h3,
    .home-actions module > h3,
    .dak-home-promo-content h2,
    .dak-home-promo-content h3 {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.18rem;
        font-weight: 700;
        line-height: 1.08;
    }

    /* Promo: meer tekstbreedte, iets minder beeldbreedte voor compactere kop. */
    .dak-home-promo-card::after {
        inset: 0 0 0 54%;
    }

    .dak-home-promo-content {
        width: 64%;
        padding: 18px 14px 14px 16px;
    }

    .dak-home-promo-content h2,
    .dak-home-promo-content h3 {
        max-width: 19em;
        margin-bottom: 7px;
    }

    .dak-home-promo-content p {
        max-width: 31em;
    }
}

/* 1.0.22 - locatie, openingstijden en optioneel informatieblok */
.home-details {
    margin-top: 12px;
}

.home-details-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.05fr;
    gap: 12px;
    align-items: stretch;
}

.home-details-grid.no-info {
    grid-template-columns: 1.15fr 1fr;
}

.home-detail-card {
    min-width: 0;
    border: 1px solid rgba(98, 60, 51, .13);
    border-radius: 14px;
    background: rgba(255, 252, 249, .86);
    box-shadow: 0 10px 28px rgba(92, 51, 45, .045);
    overflow: hidden;
}

.dak-contact-card,
.dak-hours-card,
.dak-info-card {
    height: 100%;
    padding: 16px 18px;
}

.dak-contact-card h2,
.dak-hours-card h2,
.dak-info-card h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    line-height: 1.08;
    color: #211a19;
}

.dak-contact-list {
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.dak-contact-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
    align-items: start;
    font-size: .78rem;
    line-height: 1.35;
}

.dak-contact-list .dak-contact-icon {
    color: #ef3f7a;
    font-weight: 700;
    text-align: center;
}

.dak-contact-list a {
    color: inherit;
    text-decoration: none;
}

.dak-contact-list a:hover,
.dak-contact-list a:focus-visible {
    color: #ef3f7a;
    text-decoration: underline;
}

.dak-route-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid #2d2928;
    border-radius: 7px;
    color: #211a19;
    font-size: .7rem;
    font-weight: 700;
    text-decoration: none;
}

.dak-route-link:hover,
.dak-route-link:focus-visible {
    border-color: #ef3f7a;
    color: #ef3f7a;
}

.dak-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .76rem;
}

.dak-hours-table th,
.dak-hours-table td {
    padding: 5px 0;
    border-bottom: 1px solid rgba(98, 60, 51, .10);
}

.dak-hours-table tr:last-child th,
.dak-hours-table tr:last-child td {
    border-bottom: 0;
}

.dak-hours-table th {
    font-weight: 700;
    text-align: left;
}

.dak-hours-table td {
    text-align: right;
    white-space: nowrap;
}

.home-info {
    background: linear-gradient(135deg, #fff4f7 0%, #fffaf8 100%);
}

.dak-info-card {
    position: relative;
}

.dak-info-card::before {
    content: "i";
    display: grid;
    place-items: center;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ef3f7a;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .9rem;
    font-weight: 700;
}

.dak-info-card h2 {
    padding-right: 36px;
}

.dak-info-card p {
    margin: 0;
    color: #6e3d48;
    font-size: .76rem;
    line-height: 1.42;
}

@media (max-width: 980px) {
    .home-details-grid,
    .home-details-grid.no-info {
        grid-template-columns: 1fr 1fr;
    }

    .home-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .home-details {
        margin-top: 9px;
    }

    .home-details-grid,
    .home-details-grid.no-info {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-info {
        grid-column: auto;
    }

    .dak-contact-card,
    .dak-hours-card,
    .dak-info-card {
        padding: 12px 13px;
    }

    .dak-contact-card h2,
    .dak-hours-card h2,
    .dak-info-card h2 {
        margin-bottom: 9px;
        font-size: .96rem;
    }

    .dak-contact-list li,
    .dak-hours-table,
    .dak-info-card p {
        font-size: .68rem;
    }
}

/* 1.0.23 - locatie volgens mockup, openingstijden aparte rij, consistente homerij-spacing */
.dak-home .home-stack > * + * {
    margin-top: 12px;
}

.home-location-info,
.home-hours-row {
    margin-top: 0;
}

.home-location-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 12px;
    align-items: stretch;
}

.home-location-info-grid.no-info {
    grid-template-columns: 1fr;
}

.home-location-info-grid > .home-detail-card {
    height: 100%;
}

.dak-location-card {
    display: grid;
    grid-template-columns: 150px minmax(240px, 360px) minmax(260px, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 176px;
    padding: 14px 16px;
}

.dak-location-title {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    align-self: start;
    padding-top: 3px;
}

.dak-location-title img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #211a19;
}

.dak-location-title h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    line-height: 1.03;
    color: #211a19;
}

.dak-location-photo {
    display: block;
    width: 100%;
    height: 145px;
    object-fit: cover;
    object-position: center 55%;
    border-radius: 9px;
}

.dak-location-details {
    min-width: 0;
}

.dak-location-details h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.1;
    color: #211a19;
}

.dak-location-address {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 0 0 12px;
    color: #2a2422;
    font-size: .77rem;
    line-height: 1.38;
}

.dak-location-address img {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 1px;
}

.dak-location-address strong {
    display: block;
}

.home-hours-row .home-detail-card {
    width: 100%;
}

.home-hours-row .dak-hours-card {
    padding: 13px 16px 14px;
}

.home-hours-row .dak-hours-card h2 {
    margin-bottom: 10px;
}

.home-hours-row .dak-hours-table,
.home-hours-row .dak-hours-table tbody {
    display: grid;
    width: 100%;
}

.home-hours-row .dak-hours-table tbody {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.home-hours-row .dak-hours-table tr {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid rgba(98, 60, 51, .10);
    border-radius: 8px;
    background: rgba(255,255,255,.42);
}

.home-hours-row .dak-hours-table th,
.home-hours-row .dak-hours-table td {
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
    white-space: normal;
    font-size: .7rem;
    line-height: 1.25;
}

.home-hours-row .dak-hours-table td {
    color: #4b403c;
}

.home-location-info .home-info .dak-info-card {
    min-height: 176px;
}

@media (max-width: 1100px) {
    .dak-location-card {
        grid-template-columns: 130px minmax(220px, 320px) minmax(220px, 1fr);
        gap: 12px;
    }

    .home-hours-row .dak-hours-table tbody {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-location-info-grid,
    .home-location-info-grid.no-info {
        grid-template-columns: 1fr;
    }

    .dak-location-card {
        grid-template-columns: 120px minmax(200px, 1fr) minmax(220px, 1fr);
    }
}

@media (max-width: 620px) {
    .dak-home .home-stack > * + * {
        margin-top: 8px;
    }

    .home-location-info-grid {
        gap: 8px;
    }

    .dak-location-card {
        grid-template-columns: 1fr 1.35fr;
        gap: 9px 10px;
        min-height: 0;
        padding: 11px 12px;
    }

    .dak-location-title {
        grid-column: 1 / -1;
        align-items: center;
        padding-top: 0;
    }

    .dak-location-title img {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .dak-location-title h2 {
        font-size: .98rem;
    }

    .dak-location-photo {
        height: 105px;
    }

    .dak-location-details h3 {
        margin-bottom: 6px;
        font-size: .86rem;
    }

    .dak-location-address {
        gap: 6px;
        margin-bottom: 8px;
        font-size: .66rem;
    }

    .dak-location-address img {
        width: 14px;
        height: 14px;
        flex-basis: 14px;
    }

    .home-location-info .home-info .dak-info-card {
        min-height: 0;
    }

    .home-hours-row .dak-hours-card {
        padding: 11px 12px 12px;
    }

    .home-hours-row .dak-hours-table tbody {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .home-hours-row .dak-hours-table tr {
        padding: 7px 8px;
    }

    .home-hours-row .dak-hours-table th,
    .home-hours-row .dak-hours-table td {
        font-size: .64rem;
    }
}


/* 1.0.24 - uniforme infoheading + beheerbare footerkaartregel */
.dak-info-card::before { content: none; }
.dak-info-card h2 {
    display: flex; align-items: center; gap: 9px;
    margin: 0 0 12px; padding-right: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem; font-weight: 700; line-height: 1.03; color: #211a19;
}
.dak-info-card h2::before {
    content: ""; width: 22px; height: 22px; flex: 0 0 22px; background: currentColor;
    -webkit-mask: url("../images/icon-info.svg") center / contain no-repeat;
    mask: url("../images/icon-info.svg") center / contain no-repeat;
}
.home-footer-card-grid {
    display: grid; grid-template-columns: 1.15fr 1fr .9fr 1.15fr;
    gap: 12px; align-items: stretch;
}
.home-footer-card {
    min-width: 0; min-height: 132px; padding: 14px 16px;
    border: 1px solid rgba(98,60,51,.13); border-radius: 14px;
    background: rgba(255,252,249,.86); box-shadow: 0 10px 28px rgba(92,51,45,.045);
}
.home-footer-card h2,.home-footer-card h3 {
    margin: 0 0 9px; font-family: Georgia,"Times New Roman",serif;
    font-size: 1rem; font-weight: 700; line-height: 1.08; color: #211a19;
}
.home-footer-card p,.home-footer-card li,.home-footer-card a { font-size: .72rem; line-height: 1.4; }
.home-footer-card p:last-child { margin-bottom: 0; }
.home-footer-card ul { margin: 0; padding: 0; list-style: none; }
.home-footer-card li + li { margin-top: 4px; }
.home-footer-card a { color: #211a19; }
.home-footer-card a:hover,.home-footer-card a:focus-visible { color: #ef3f7a; }
.dak-footer-brand-wrap { display: grid; grid-template-columns: 58px 1fr; gap: 11px; align-items: center; }
.dak-footer-brand-wrap img { width: 58px; height: 58px; object-fit: contain; }
.dak-footer-brand-name { margin: 0 0 2px; font-family: Georgia,"Times New Roman",serif; font-size: 1rem; font-weight: 700; }
.dak-footer-tagline { margin: 0; font-size: .68rem; }
.dak-footer-socials { display: flex; gap: 7px; margin-top: 9px; }
.dak-footer-socials a { display: inline-grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: #ef3f7a; color: #fff; font-size: .66rem; font-weight: 700; text-decoration: none; }
.dak-footer-contact-list,.dak-footer-link-list { display: grid; gap: 5px; }
.dak-footer-contact-list a,.dak-footer-link-list a { text-decoration-thickness: 1px; text-underline-offset: 2px; }
.dak-footer-newsletter-note { color: #5f504b; }
@media (max-width: 980px) { .home-footer-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 620px) {
    .dak-info-card h2 { gap: 7px; font-size: .98rem; }
    .dak-info-card h2::before { width: 18px; height: 18px; flex-basis: 18px; }
    .home-footer-card-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .home-footer-card { min-height: 0; padding: 11px 12px; }
    .home-footer-card h2,.home-footer-card h3 { font-size: .88rem; }
    .home-footer-card p,.home-footer-card li,.home-footer-card a { font-size: .64rem; }
    .dak-footer-brand-wrap { grid-template-columns: 42px 1fr; gap: 8px; }
    .dak-footer-brand-wrap img { width: 42px; height: 42px; }
    .dak-footer-brand-name { font-size: .86rem; }
    .dak-footer-socials a { width: 24px; height: 24px; }
}
@media (max-width: 420px) { .home-footer-card-grid { grid-template-columns: 1fr; } }

/* 1.0.25 - definitieve compacte footerzone volgens mockup */
.dak-home .home-stack {
    padding-bottom: 10px;
}

.dak-home .site-main {
    flex: 0 0 auto;
    padding-bottom: 0;
}

.dak-home .site-footer {
    margin-top: 0;
}

.home-footer-cards {
    margin-top: 12px;
    padding: 0;
    border: 1px solid rgba(98,60,51,.11);
    border-radius: 12px;
    background: rgba(255,252,249,.78);
    overflow: hidden;
    box-shadow: 0 7px 20px rgba(92,51,45,.025);
}

.home-footer-card-grid {
    display: grid;
    grid-template-columns: 1.12fr .86fr .92fr 1.1fr;
    gap: 0;
    align-items: stretch;
}

.home-footer-card {
    min-width: 0;
    min-height: 104px;
    padding: 12px 18px 11px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-footer-card + .home-footer-card {
    border-left: 1px solid rgba(98,60,51,.11);
}

.home-footer-card h2,
.home-footer-card h3 {
    margin: 0 0 7px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.08;
}

.home-footer-card p,
.home-footer-card li,
.home-footer-card a {
    font-size: .67rem;
    line-height: 1.3;
}

.dak-footer-brand-wrap {
    grid-template-columns: 54px 1fr;
    gap: 10px;
    align-items: center;
}

.dak-footer-brand-wrap > img {
    width: 54px;
    height: 54px;
}

.dak-footer-brand-name {
    margin-bottom: 1px;
    font-size: .94rem;
    line-height: 1.05;
}

.dak-footer-tagline {
    font-size: .64rem;
    line-height: 1.25;
}

.dak-footer-socials {
    gap: 7px;
    margin-top: 7px;
}

.dak-footer-socials a {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 50%;
    background: var(--dak-pink);
    color: #fff;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
}

.dak-footer-socials a::before {
    content: "";
    width: 14px;
    height: 14px;
    background: #fff;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
}

.dak-footer-socials a:nth-child(1)::before {
    -webkit-mask-image: url('../images/icon-facebook.svg');
    mask-image: url('../images/icon-facebook.svg');
}
.dak-footer-socials a:nth-child(2)::before {
    -webkit-mask-image: url('../images/icon-instagram.svg');
    mask-image: url('../images/icon-instagram.svg');
}
.dak-footer-socials a:nth-child(3)::before {
    -webkit-mask-image: url('../images/icon-tiktok.svg');
    mask-image: url('../images/icon-tiktok.svg');
}

.dak-footer-contact-list {
    gap: 7px;
}

.dak-footer-contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 18px;
    padding-left: 24px;
}

.dak-footer-contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    background: #211a19;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
}

.dak-footer-contact-list li:nth-child(1)::before {
    -webkit-mask-image: url('../images/icon-phone.svg');
    mask-image: url('../images/icon-phone.svg');
}
.dak-footer-contact-list li:nth-child(2)::before {
    -webkit-mask-image: url('../images/icon-mail.svg');
    mask-image: url('../images/icon-mail.svg');
}

.dak-footer-contact-list a,
.dak-footer-link-list a {
    color: #211a19;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.dak-footer-link-list {
    gap: 2px;
}

.home-footer-newsletter p {
    max-width: 220px;
}

/* De roze copyrightbalk moet direct op de footerzone aansluiten. */
.site-footer .footer-inner {
    min-height: 24px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: .66rem;
}

@media (max-width: 980px) {
    .home-footer-card-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .home-footer-card:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(98,60,51,.11);
    }
    .home-footer-card:nth-child(4) {
        border-top: 1px solid rgba(98,60,51,.11);
    }
}

@media (max-width: 620px) {
    .dak-home .home-stack {
        padding-bottom: 6px;
    }
    .home-footer-cards {
        margin-top: 8px;
    }
    .home-footer-card-grid {
        grid-template-columns: 1fr 1fr;
    }
    .home-footer-card {
        min-height: 0;
        padding: 10px 11px;
    }
    .home-footer-card h2,
    .home-footer-card h3 {
        font-size: .82rem;
    }
    .home-footer-card p,
    .home-footer-card li,
    .home-footer-card a {
        font-size: .61rem;
    }
    .dak-footer-brand-wrap {
        grid-template-columns: 40px 1fr;
        gap: 7px;
    }
    .dak-footer-brand-wrap > img {
        width: 40px;
        height: 40px;
    }
    .dak-footer-socials a {
        width: 23px;
        height: 23px;
    }
    .dak-footer-socials a::before {
        width: 12px;
        height: 12px;
    }
    .dak-footer-contact-list li {
        padding-left: 20px;
    }
    .dak-footer-contact-list li::before {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 420px) {
    .home-footer-card-grid {
        grid-template-columns: 1fr;
    }
    .home-footer-card + .home-footer-card,
    .home-footer-card:nth-child(3),
    .home-footer-card:nth-child(4) {
        border-left: 0;
        border-top: 1px solid rgba(98,60,51,.11);
    }
}


/* 1.0.26 - larger brand logo in compact footer */
@media (min-width: 769px) {
  .home-footer-brand .dak-footer-brand-wrap {
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: center;
  }
  .home-footer-brand .dak-footer-brand-wrap > img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .home-footer-brand .dak-footer-brand-wrap {
    grid-template-columns: 68px 1fr;
    gap: 9px;
    align-items: center;
  }
  .home-footer-brand .dak-footer-brand-wrap > img {
    width: 68px;
    height: 68px;
    object-fit: contain;
  }
}

/* 1.0.27 - openingstijden-icoon en kleine footerinteractie */
.home-hours-row .dak-hours-card > h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-hours-row .dak-hours-card > h2::before {
    content: "";
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    background: url('../images/icon-hours.svg') center / contain no-repeat;
}
@media (max-width: 700px) {
    .home-hours-row .dak-hours-card > h2 {
        gap: 8px;
    }
    .home-hours-row .dak-hours-card > h2::before {
        width: 19px;
        height: 19px;
        flex-basis: 19px;
    }
}

/* 1.0.28 - mobiele social-iconen footer consistent centreren */
@media (max-width: 768px) {
  .home-footer-brand .dak-footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    line-height: 1;
  }

  .home-footer-brand .dak-footer-socials a,
  .home-footer-brand .dak-footer-socials a:hover,
  .home-footer-brand .dak-footer-socials a:focus,
  .home-footer-brand .dak-footer-socials a:focus-visible,
  .home-footer-brand .dak-footer-socials a:active {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    margin: 0;
    padding: 0;
    border: 0 !important;
    outline: 0;
    border-radius: 50%;
    background: var(--dak-pink);
    color: #fff;
    text-decoration: none;
    box-shadow: none;
    vertical-align: middle;
    overflow: hidden;
  }

  .home-footer-brand .dak-footer-socials a::before {
    display: block;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin: 0;
    padding: 0;
    background: #fff;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}


/* 1.0.29 - social footer: Facebook, Instagram en TikTok; tekstlabels verbergen */
.dak-footer-socials a,
.home-footer-card .dak-footer-socials a,
.home-footer-brand .dak-footer-socials a {
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    text-indent: 0;
    white-space: nowrap;
}
.dak-footer-socials a::before,
.home-footer-brand .dak-footer-socials a::before {
    color: #fff;
}

/* 1.0.30 - footer micro-alignment + evenement-detailpagina */
.home-footer-brand .dak-footer-brand-wrap > div {
    transform: translateY(3px);
}
.home-footer-brand .dak-footer-tagline {
    margin-bottom: 8px;
}

.dak-article-detail {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.dak-event-detail {
    background: #fffaf7;
    border: 1px solid rgba(98, 60, 51, .14);
    border-radius: 22px;
    padding: clamp(20px, 3.2vw, 42px);
    box-shadow: 0 18px 40px rgba(83, 48, 42, .06);
}

.dak-event-back-row {
    margin-bottom: 18px;
}

.dak-event-back {
    color: var(--dak-pink);
    font-weight: 700;
    text-decoration: none;
}

.dak-event-back:hover,
.dak-event-back:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dak-event-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
}

.dak-event-date-badge {
    display: grid;
    place-items: center;
    flex: 0 0 92px;
    width: 92px;
    min-height: 104px;
    padding: 10px 8px;
    border: 1px solid rgba(98, 60, 51, .14);
    border-radius: 16px;
    background: #fff;
    text-align: center;
    line-height: 1;
}

.dak-event-month,
.dak-event-weekday {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.dak-event-day {
    margin: 2px 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.25rem;
    line-height: 1;
}

.dak-event-heading-copy h1,
.dak-generic-article-header h1 {
    margin: 0;
    color: #211a19;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: .98;
}

.dak-event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0;
    color: #4c3a35;
    font-size: 1rem;
    font-weight: 700;
}

.dak-event-time-icon {
    width: 18px;
    height: 18px;
    background: url('../images/icon-hours.svg') center / contain no-repeat;
}

.dak-event-image,
.dak-generic-article-image {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 18px;
    background: #f6ece8;
}

.dak-event-image img,
.dak-generic-article-image img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.dak-event-content,
.dak-generic-article-content {
    max-width: 820px;
    color: #2a2321;
    font-size: 1.04rem;
    line-height: 1.7;
}

.dak-event-content > :first-child,
.dak-generic-article-content > :first-child {
    margin-top: 0;
}

.dak-event-content h2,
.dak-event-content h3,
.dak-generic-article-content h2,
.dak-generic-article-content h3 {
    color: #211a19;
    font-family: Georgia, 'Times New Roman', serif;
}

.dak-generic-article-header {
    margin-bottom: 22px;
}

@media (max-width: 700px) {
    .home-footer-brand .dak-footer-brand-wrap > div {
        transform: translateY(2px);
    }
    .home-footer-brand .dak-footer-tagline {
        margin-bottom: 6px;
    }

    .dak-event-detail {
        border-radius: 16px;
        padding: 18px 16px 22px;
    }

    .dak-event-header {
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 18px;
    }

    .dak-event-date-badge {
        flex-basis: 66px;
        width: 66px;
        min-height: 78px;
        border-radius: 12px;
        padding: 7px 5px;
    }

    .dak-event-month,
    .dak-event-weekday {
        font-size: .64rem;
    }

    .dak-event-day {
        font-size: 1.7rem;
    }

    .dak-event-heading-copy h1,
    .dak-generic-article-header h1 {
        font-size: clamp(1.75rem, 8.5vw, 2.45rem);
        line-height: 1.02;
    }

    .dak-event-time {
        margin-top: 9px;
        font-size: .9rem;
    }

    .dak-event-image,
    .dak-generic-article-image {
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .dak-event-content,
    .dak-generic-article-content {
        font-size: .98rem;
        line-height: 1.62;
    }
}

/* 1.0.31 - evenementenoverzicht + mobiele detailcorrecties */
.dak-event-detail .dak-event-month,
.dak-event-detail .dak-event-weekday {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
}
.dak-event-detail .dak-event-day {
    margin: 2px 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.25rem;
    line-height: 1;
}
/* Keep the compact homepage event badge isolated from detail styles. */
.dak-event-module .dak-event-month,
.dak-event-module .dak-event-weekday {
    font-size: .48rem;
}
.dak-event-module .dak-event-day {
    margin: 3px 0;
    font-size: 1.08rem;
}

.dak-events-overview {
    width: min(100%, 1240px);
    margin: 0 auto;
}
.dak-events-overview-header {
    margin: 0 0 24px;
}
.dak-events-overview-header h1 {
    margin: 0 0 8px;
    color: #211a19;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}
.dak-events-overview-intro {
    max-width: 760px;
    margin: 0;
    color: #57443e;
    font-size: 1rem;
}
.dak-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.dak-event-overview-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(98, 60, 51, .14);
    border-radius: 16px;
    background: #fffaf7;
    box-shadow: 0 10px 24px rgba(83,48,42,.05);
}
.dak-event-overview-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f6ece8;
}
.dak-event-overview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .2s ease;
}
.dak-event-overview-card:hover .dak-event-overview-image img {
    transform: scale(1.015);
}
.dak-event-overview-date {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    width: 58px;
    min-height: 70px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 2px 9px rgba(50,30,25,.15);
    color: #211916;
    line-height: 1;
}
.dak-event-overview-date span {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
}
.dak-event-overview-date strong {
    margin: 4px 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.55rem;
}
.dak-event-overview-body {
    display: flex;
    min-height: 195px;
    flex-direction: column;
    padding: 16px 17px 17px;
}
.dak-event-overview-body h2 {
    margin: 0 0 7px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    line-height: 1.1;
}
.dak-event-overview-body h2 a {
    color: #211916;
    text-decoration: none;
}
.dak-event-overview-body h2 a:hover,
.dak-event-overview-body h2 a:focus-visible {
    color: var(--dak-pink);
}
.dak-event-overview-body > p:not(.dak-event-overview-time) {
    margin: 0 0 12px;
    color: #4c3a35;
    line-height: 1.45;
}
.dak-event-overview-time {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: auto 0 12px;
    color: #322724;
    font-weight: 700;
}
.dak-event-overview-time span {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background: url('../images/icon-hours.svg') center / contain no-repeat;
}
.dak-event-overview-link {
    align-self: flex-start;
    color: var(--dak-pink);
    font-weight: 800;
    text-decoration: none;
}
.dak-event-overview-link:hover,
.dak-event-overview-link:focus-visible { text-decoration: underline; }
.dak-events-pagination { margin-top: 26px; }

.dak-event-detail .dak-event-heading-copy {
    min-width: 0;
}
.dak-event-detail .dak-event-heading-copy h1 {
    overflow-wrap: anywhere;
}
.dak-event-detail .dak-event-image img {
    max-height: 560px;
    aspect-ratio: auto;
    object-fit: cover;
}

@media (max-width: 980px) {
    .dak-events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .dak-event-module .dak-event-day { font-size: .9rem; }
    .dak-event-module .dak-event-month,
    .dak-event-module .dak-event-weekday { font-size: .42rem; }

    .dak-events-overview-header { margin-bottom: 16px; }
    .dak-events-overview-header h1 { font-size: 2rem; }
    .dak-events-grid { grid-template-columns: 1fr; gap: 14px; }
    .dak-event-overview-body { min-height: 0; padding: 14px 15px 15px; }
    .dak-event-overview-body h2 { font-size: 1.2rem; }
    .dak-event-overview-time { margin-top: 8px; }

    .dak-event-detail .dak-event-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .dak-event-detail .dak-event-date-badge {
        width: 64px;
        min-height: 74px;
        flex-basis: auto;
    }
    .dak-event-detail .dak-event-heading-copy h1 {
        max-width: 100%;
        font-size: clamp(1.75rem, 9vw, 2.25rem);
        line-height: 1.02;
        overflow-wrap: break-word;
        word-break: normal;
    }
    .dak-event-detail .dak-event-time { font-size: .92rem; }
    .dak-event-detail .dak-event-image img {
        max-height: 360px;
        aspect-ratio: 3 / 2;
    }
}


/* 1.0.33 - Acties: compacte homepagekaarten, overzicht en detailpagina */
.home-actions .dak-action-module .dak-mini-card-image {
    height: 62px;
}
.home-actions .dak-action-module .dak-mini-card-body {
    min-height: 0;
    padding: 6px 7px 7px;
}
.home-actions .dak-action-module .dak-mini-card-body h4 {
    margin-bottom: 3px;
}
.home-actions .dak-action-module .dak-mini-card-body > p:not(.dak-action-price) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
.home-actions .dak-action-module .dak-action-price {
    margin-top: auto;
    padding-top: 5px;
    line-height: 1;
}

.dak-actions-overview {
    width: min(100%, 1240px);
    margin: 0 auto;
}
.dak-actions-overview-header { margin: 0 0 24px; }
.dak-actions-overview-header h1 {
    margin: 0 0 8px;
    color: #211a19;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}
.dak-actions-overview-intro {
    max-width: 760px;
    margin: 0;
    color: #57443e;
    font-size: 1rem;
}
.dak-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.dak-action-overview-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 16px;
    background: #fffaf7;
    box-shadow: 0 10px 24px rgba(83,48,42,.05);
}
.dak-action-overview-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f6ece8;
}
.dak-action-overview-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}
.dak-action-overview-card:hover .dak-action-overview-image img { transform: scale(1.015); }
.dak-action-overview-label,
.dak-action-detail-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    background: var(--dak-pink);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}
.dak-action-overview-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    font-size: .66rem;
}
.dak-action-overview-body {
    display: flex;
    min-height: 205px;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 16px 17px 17px;
}
.dak-action-overview-body h2 {
    margin: 0 0 7px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    line-height: 1.1;
}
.dak-action-overview-body h2 a { color: #211916; text-decoration: none; }
.dak-action-overview-body h2 a:hover,
.dak-action-overview-body h2 a:focus-visible { color: var(--dak-pink); }
.dak-action-overview-body > p:not(.dak-action-overview-price) {
    margin: 0 0 12px;
    color: #4c3a35;
    line-height: 1.45;
}
.dak-action-overview-price {
    margin: auto 0 12px;
    color: var(--dak-pink);
    font-size: 1.25rem;
    font-weight: 800;
}
.dak-action-overview-link {
    align-self: flex-start;
    color: var(--dak-pink);
    font-weight: 800;
    text-decoration: none;
}
.dak-action-overview-link:hover,
.dak-action-overview-link:focus-visible { text-decoration: underline; }

.dak-action-detail {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 40px;
    overflow: hidden;
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 22px;
    background: #fffaf7;
    box-shadow: 0 16px 34px rgba(83,48,42,.06);
}
.dak-action-back-row { margin-bottom: 22px; }
.dak-action-back {
    color: var(--dak-pink);
    font-weight: 800;
    text-decoration: none;
}
.dak-action-back:hover,
.dak-action-back:focus-visible { text-decoration: underline; }
.dak-action-detail-header { margin-bottom: 22px; }
.dak-action-detail-label {
    margin-bottom: 10px;
    padding: 6px 11px;
    font-size: .72rem;
}
.dak-action-detail-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.dak-action-detail-title-row h1 {
    min-width: 0;
    margin: 0;
    color: #211a19;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: .98;
    overflow-wrap: anywhere;
}
.dak-action-detail-price {
    flex: 0 0 auto;
    margin: 0;
    color: var(--dak-pink);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1;
}
.dak-action-detail-image {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 18px;
    background: #f6ece8;
}
.dak-action-detail-image img {
    display: block;
    width: 100%;
    max-height: 560px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.dak-action-detail-content {
    max-width: 820px;
    color: #2a2321;
    font-size: 1.04rem;
    line-height: 1.7;
}
.dak-action-detail-content > :first-child { margin-top: 0; }

@media (max-width: 980px) {
    .dak-actions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .home-actions .dak-action-module .dak-mini-card-image { height: 60px; }
    .home-actions .dak-action-module .dak-mini-card-body > p:not(.dak-action-price) { -webkit-line-clamp: 3; line-clamp: 3; }

    .dak-actions-overview-header { margin-bottom: 16px; }
    .dak-actions-overview-header h1 { font-size: 2rem; }
    .dak-actions-grid { grid-template-columns: 1fr; gap: 14px; }
    .dak-action-overview-body { min-height: 0; padding: 14px 15px 15px; }
    .dak-action-overview-body h2 { font-size: 1.2rem; }
    .dak-action-overview-price { margin-top: 8px; }

    .dak-action-detail {
        border-radius: 16px;
        padding: 18px 16px 22px;
    }
    .dak-action-back-row { margin-bottom: 16px; }
    .dak-action-detail-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .dak-action-detail-title-row h1 {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
        line-height: 1.02;
    }
    .dak-action-detail-image {
        margin-bottom: 20px;
        border-radius: 14px;
    }
    .dak-action-detail-image img { max-height: 360px; }
    .dak-action-detail-content { font-size: .98rem; line-height: 1.62; }
}

/* 1.0.34 - Homepage Agenda & evenementen binnen de bestaande tweede rij houden.
   Alleen de compacte homepage-eventkaarten worden aangepast; Acties, promo,
   evenementenoverzicht en detailpagina's blijven ongemoeid. */
@media (min-width: 981px) {
    .home-events .dak-event-module .dak-mini-card-image {
        height: 58px;
    }

    .home-events .dak-event-module .dak-mini-card-body {
        min-height: 0;
        padding: 6px 7px 7px;
    }

    .home-events .dak-event-module .dak-mini-card-body h4 {
        margin-bottom: 3px;
    }

    .home-events .dak-event-module .dak-mini-card-body > p:not(.dak-event-time) {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .home-events .dak-event-module .dak-event-time {
        margin-top: auto !important;
        padding-top: 4px;
        line-height: 1.1;
    }
}

/* 1.0.36 - Menukaartenpagina gebruikt een echte coverafbeelding uit templates/site/dasanderekoek/images/menukaart. PDF's worden automatisch uit /images/menukaart gelezen. */
.dak-menu-page {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 44px 0 56px;
}
.dak-menu-page-header {
    margin: 0 0 26px;
}
.dak-menu-page-header h1 {
    margin: 0 0 8px;
    color: #211a19;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.35rem, 4.6vw, 3.6rem);
    line-height: 1;
}
.dak-menu-page-header p {
    max-width: 720px;
    margin: 0;
    color: #5a4039;
    font-size: 1.05rem;
    line-height: 1.55;
}
.dak-menu-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}
.dak-menu-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 18px;
    background: #fffaf7;
    box-shadow: 0 12px 28px rgba(83,48,42,.055);
}
.dak-menu-card-visual {
    display: block;
    min-height: 0;
    background: none;
    color: inherit;
}
.dak-menu-card-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.dak-menu-card-body {
    display: flex;
    min-height: 230px;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px;
}
.dak-menu-card-body h2 {
    margin: 0 0 9px;
    color: #211a19;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    line-height: 1.08;
}
.dak-menu-card-body p {
    margin: 0 0 20px;
    color: #4d3934;
    line-height: 1.5;
}
.dak-menu-card-actions {
    display: flex;
    margin-top: auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
}
.dak-menu-card-primary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    border-radius: 10px;
    background: var(--dak-pink);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 7px 16px rgba(239,63,122,.16);
}
.dak-menu-card-primary:hover,
.dak-menu-card-primary:focus-visible {
    color: #fff;
    filter: brightness(.96);
}
.dak-menu-card-primary span {
    font-size: 1.2em;
    line-height: 1;
}
.dak-menu-card-secondary {
    color: #5a4039;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.dak-menu-card-secondary:hover,
.dak-menu-card-secondary:focus-visible { color: var(--dak-pink); }
.dak-menu-empty {
    padding: 26px;
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 16px;
    background: #fffaf7;
}
.dak-menu-empty h2 {
    margin: 0 0 6px;
    font-family: Georgia, 'Times New Roman', serif;
}
.dak-menu-empty p { margin: 0; }

@media (max-width: 980px) {
    .dak-menu-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .dak-menu-page { padding: 28px 0 38px; }
    .dak-menu-page-header { margin-bottom: 18px; }
    .dak-menu-page-header h1 { font-size: 2rem; }
    .dak-menu-page-header p { font-size: .98rem; }
    .dak-menu-card-grid { grid-template-columns: 1fr; gap: 14px; }
    .dak-menu-card { border-radius: 15px; }
    .dak-menu-card-visual img { aspect-ratio: 3 / 2; }
    .dak-menu-card-icon { width: 72px; height: 72px; }
        .dak-menu-card-body { min-height: 0; padding: 18px; }
    .dak-menu-card-body h2 { font-size: 1.35rem; }
    .dak-menu-card-primary { width: 100%; justify-content: center; }
    .dak-menu-card-secondary { width: 100%; text-align: center; }
}


/* 1.0.37 - Menukaart cover uit /images/menukaart + basisopmaak Dagbesteding */
.dak-menu-card-visual {
    overflow: hidden;
    background: transparent;
}
.dak-menu-card-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* Dagbesteding: nette basis voor een regulier Joomla-artikel zonder de inhoud hard te coderen. */
.dak-page-dagbesteding {
    max-width: 1180px;
    margin-inline: auto;
}
.dak-page-dagbesteding .component-area > .com-content-article,
.dak-page-dagbesteding .component-area > .item-page,
.dak-page-dagbesteding .component-area .com-content-article,
.dak-page-dagbesteding .component-area .item-page {
    overflow: hidden;
    border: 1px solid rgba(98, 60, 51, .14);
    border-radius: 22px;
    background: #fffaf7;
    box-shadow: 0 12px 30px rgba(83, 48, 42, .055);
}
.dak-page-dagbesteding .component-area .page-header,
.dak-page-dagbesteding .component-area .article-info,
.dak-page-dagbesteding .component-area .com-content-article__body,
.dak-page-dagbesteding .component-area .item-page > :not(.item-image):not(.page-header) {
    margin-inline: 0;
}
.dak-page-dagbesteding .component-area .page-header {
    padding: 34px 40px 10px;
    border: 0;
}
.dak-page-dagbesteding .component-area .page-header h1,
.dak-page-dagbesteding .component-area .page-header h2 {
    margin: 0;
    color: #211a19;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.02;
}
.dak-page-dagbesteding .component-area .item-image {
    margin: 0;
}
.dak-page-dagbesteding .component-area .item-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}
.dak-page-dagbesteding .component-area .com-content-article__body,
.dak-page-dagbesteding .component-area .item-page {
    color: #2b2421;
    font-size: 1.06rem;
    line-height: 1.7;
}
.dak-page-dagbesteding .component-area .com-content-article__body {
    padding: 24px 40px 40px;
}
.dak-page-dagbesteding .component-area .item-page > p,
.dak-page-dagbesteding .component-area .item-page > h2,
.dak-page-dagbesteding .component-area .item-page > h3,
.dak-page-dagbesteding .component-area .item-page > ul,
.dak-page-dagbesteding .component-area .item-page > ol {
    margin-left: 40px;
    margin-right: 40px;
}
.dak-page-dagbesteding .component-area h2,
.dak-page-dagbesteding .component-area h3 {
    color: #211a19;
    font-family: Georgia, "Times New Roman", serif;
}
.dak-page-dagbesteding .component-area a {
    color: var(--dak-pink);
}
@media (max-width: 700px) {
    .dak-page-dagbesteding .component-area > .com-content-article,
    .dak-page-dagbesteding .component-area > .item-page,
    .dak-page-dagbesteding .component-area .com-content-article,
    .dak-page-dagbesteding .component-area .item-page {
        border-radius: 16px;
    }
    .dak-page-dagbesteding .component-area .page-header {
        padding: 24px 20px 8px;
    }
    .dak-page-dagbesteding .component-area .com-content-article__body {
        padding: 18px 20px 28px;
    }
    .dak-page-dagbesteding .component-area .item-page > p,
    .dak-page-dagbesteding .component-area .item-page > h2,
    .dak-page-dagbesteding .component-area .item-page > h3,
    .dak-page-dagbesteding .component-area .item-page > ul,
    .dak-page-dagbesteding .component-area .item-page > ol {
        margin-left: 20px;
        margin-right: 20px;
    }
    .dak-page-dagbesteding .component-area .item-image img {
        max-height: 340px;
    }
}


/* 1.0.38 - Dagbesteding-pagina volgens de gekozen mockup */
.dak-dagbesteding-page {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0 22px;
}
.dak-dagbesteding-hero {
    position: relative;
    display: grid;
    min-height: 360px;
    grid-template-columns: 41% 59%;
    overflow: hidden;
    border: 1px solid rgba(98,60,51,.10);
    border-radius: 0;
    background: #fff7f2;
}
.dak-dagbesteding-hero-copy {
    position: relative;
    z-index: 2;
    padding: 46px 44px 38px;
    background: linear-gradient(90deg, #fff7f2 0%, #fff7f2 72%, rgba(255,247,242,.82) 88%, rgba(255,247,242,0) 100%);
}
.dak-dagbesteding-hero h1 {
    margin: 0 0 12px;
    color: #14362f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: .98;
}
.dak-dagbesteding-hero p {
    max-width: 650px;
    margin: 0;
    color: #302723;
    font-size: 1.05rem;
    line-height: 1.6;
}
.dak-dagbesteding-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.dak-dagbesteding-hero-image {
    min-width: 0;
}
.dak-dagbesteding-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
.dak-dagbesteding-mission {
    position: absolute;
    right: 56px;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    padding: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 28px rgba(55,34,28,.12);
    text-align: center;
    transform: translateY(-50%);
}
.dak-dagbesteding-mission span {
    display: block;
    margin-bottom: 2px;
    color: var(--dak-pink);
    font-size: 2rem;
    line-height: 1;
}
.dak-dagbesteding-mission strong {
    color: #211a19;
    font-size: .96rem;
    line-height: 1.2;
}
.dak-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 20px;
    border: 2px solid #4b403d;
    border-radius: 9px;
    font-weight: 800;
    text-decoration: none;
}
.dak-button-primary {
    border-color: var(--dak-pink);
    background: var(--dak-pink);
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(239,63,122,.16);
}
.dak-button-secondary {
    background: #fff;
    color: #211a19 !important;
}
.dak-dagbesteding-grid {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}
.dak-dagbesteding-grid-top {
    grid-template-columns: 1.05fr 1.8fr 1.05fr;
}
.dak-dagbesteding-grid-bottom {
    grid-template-columns: 1.65fr .8fr .95fr;
}
.dak-dagbesteding-card {
    min-width: 0;
    padding: 20px 22px;
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 16px;
    background: #fffaf7;
    box-shadow: 0 8px 24px rgba(83,48,42,.04);
}
.dak-dagbesteding-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    color: #211a19;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.1;
}
.dak-dagbesteding-card p {
    margin: 0 0 12px;
    color: #332925;
    line-height: 1.55;
}
.dak-small-icon {
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
}
.dak-check-list {
    display: grid;
    gap: 6px;
    margin: 12px 0 16px;
    padding: 0;
    list-style: none;
}
.dak-check-list li {
    position: relative;
    padding-left: 23px;
}
.dak-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .08em;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    background: var(--dak-pink);
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
}
.dak-text-link {
    color: var(--dak-pink) !important;
    font-weight: 800;
    text-decoration: none;
}
.dak-skills-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 16px;
}
.dak-skills-grid > div {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    padding: 4px 10px 2px;
    border-right: 1px solid rgba(98,60,51,.10);
    text-align: center;
}
.dak-skills-grid > div:last-child {
    border-right: 0;
}
.dak-skill-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #fff0f5;
    color: var(--dak-pink);
    font-size: 1.55rem;
}
.dak-skills-grid strong {
    display: block;
    margin-bottom: 5px;
    color: #211a19;
    font-size: .95rem;
}
.dak-skills-grid small {
    color: #50423d;
    font-size: .78rem;
    line-height: 1.35;
}
.dak-homefeel-card {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    overflow: hidden;
    padding: 0;
}
.dak-homefeel-copy {
    padding: 22px;
}
.dak-homefeel-card img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}
.dak-journey-card > p {
    margin-bottom: 18px;
}
.dak-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.dak-journey::before {
    content: "";
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    top: 17px;
    border-top: 2px dotted #ef8bad;
}
.dak-journey-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.dak-journey-step > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--dak-pink);
    color: #fff;
    font-weight: 900;
}
.dak-journey-step strong,
.dak-journey-step small {
    display: block;
}
.dak-journey-step strong {
    margin-bottom: 5px;
    color: #211a19;
}
.dak-journey-step small {
    color: #50423d;
    line-height: 1.35;
}
.dak-dagbesteding-cta {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 20px;
    margin-top: 14px;
    padding: 16px 24px;
    border: 1px solid rgba(239,63,122,.18);
    border-radius: 16px;
    background: linear-gradient(90deg, #fff5f8 0%, #ffe7f0 62%, #fff8f5 100%);
}
.dak-dagbesteding-cta img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}
.dak-dagbesteding-cta h2 {
    margin: 0 0 4px;
    color: #14362f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
}
.dak-dagbesteding-cta p {
    margin: 0;
    color: #3e322d;
}

@media (max-width: 1120px) {
    .dak-dagbesteding-grid-top,
    .dak-dagbesteding-grid-bottom {
        grid-template-columns: 1fr 1fr;
    }
    .dak-learning-card,
    .dak-journey-card {
        grid-column: 1 / -1;
    }
    .dak-skills-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
        row-gap: 16px;
    }
    .dak-skills-grid > div:nth-child(3) {
        border-right: 0;
    }
}
@media (max-width: 800px) {
    .dak-dagbesteding-page {
        padding-bottom: 14px;
    }
    .dak-dagbesteding-hero {
        grid-template-columns: 1fr;
        border-radius: 0;
    }
    .dak-dagbesteding-hero-copy {
        padding: 28px 22px 24px;
        background: #fff7f2;
    }
    .dak-dagbesteding-hero-image img {
        min-height: 260px;
        max-height: 360px;
    }
    .dak-dagbesteding-mission {
        display: none;
    }
    .dak-dagbesteding-grid-top,
    .dak-dagbesteding-grid-bottom {
        grid-template-columns: 1fr;
    }
    .dak-learning-card,
    .dak-journey-card {
        grid-column: auto;
    }
    .dak-homefeel-card {
        grid-template-columns: 1fr;
    }
    .dak-homefeel-card img {
        min-height: 220px;
    }
    .dak-skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dak-skills-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(98,60,51,.10);
        padding-bottom: 14px;
    }
    .dak-journey {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .dak-journey::before {
        display: none;
    }
    .dak-journey-step {
        display: grid;
        grid-template-columns: 42px 1fr;
        grid-template-rows: auto auto;
        column-gap: 12px;
        text-align: left;
    }
    .dak-journey-step > span {
        grid-row: 1 / span 2;
        margin: 0;
    }
    .dak-dagbesteding-cta {
        grid-template-columns: 74px 1fr;
        padding: 16px;
    }
    .dak-dagbesteding-cta img {
        width: 66px;
        height: 66px;
    }
    .dak-dagbesteding-cta .dak-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}


/* 1.0.39 - Dagbesteding volgt dezelfde verticale maatvoering als Home */
.dak-dagbesteding-page {
    --dak-page-row-gap: 16px;
    max-width: var(--dak-shell);
    padding-bottom: 10px;
}

/* Hero: dezelfde desktophoogte als de Home-hero. */
.dak-dagbesteding-hero {
    min-height: 300px;
    height: 300px;
    grid-template-columns: 42% 58%;
}
.dak-dagbesteding-hero-copy {
    padding: 28px 44px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dak-dagbesteding-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(2.65rem, 3.35vw, 3.85rem);
}
.dak-dagbesteding-hero p {
    font-size: 1rem;
    line-height: 1.45;
}
.dak-dagbesteding-actions {
    margin-top: 18px;
    gap: 12px;
}
.dak-dagbesteding-hero-image img {
    min-height: 300px;
    height: 300px;
}
.dak-dagbesteding-mission {
    right: 52px;
    width: 138px;
    height: 138px;
}

/* Rij-afstanden gelijk aan de 16px grid op Home. */
.dak-dagbesteding-grid,
.dak-dagbesteding-cta,
.dak-dagbesteding-footer-cards {
    margin-top: var(--dak-page-row-gap);
}
.dak-dagbesteding-grid {
    gap: var(--dak-page-row-gap);
    align-items: stretch;
}

/* Zelfde compacte kaartmaatvoering als de informatieblokken op Home. */
.dak-dagbesteding-card {
    min-height: 168px;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(71,39,31,.04);
}
.dak-dagbesteding-grid-top {
    grid-template-columns: 1.02fr 1.72fr 1.08fr;
}
.dak-dagbesteding-grid-bottom {
    grid-template-columns: 1.52fr .78fr .92fr;
}
.dak-dagbesteding-card h2 {
    margin-bottom: 7px;
    font-size: clamp(1.18rem, 1.35vw, 1.48rem);
}
.dak-dagbesteding-card p {
    margin-bottom: 9px;
    font-size: .88rem;
    line-height: 1.42;
}
.dak-check-list {
    gap: 4px;
    margin: 8px 0 10px;
}
.dak-check-list li {
    font-size: .84rem;
    line-height: 1.35;
}

/* Skills compacter en zonder overlappende titels. */
.dak-skills-grid {
    gap: 0;
    margin-top: 10px;
}
.dak-skills-grid > div {
    padding: 2px 7px 0;
}
.dak-skill-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 6px;
    font-size: 1.3rem;
}
.dak-skills-grid strong {
    min-height: 2.5em;
    margin-bottom: 3px;
    font-size: .78rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
}
.dak-skills-grid small {
    font-size: .67rem;
    line-height: 1.25;
}

/* Rechter sfeerkaart compacter zoals de promo-kaart op Home. */
.dak-homefeel-card {
    min-height: 168px;
}
.dak-homefeel-copy {
    padding: 16px;
}
.dak-homefeel-card img {
    min-height: 168px;
}

/* Stappenrij lager en compacter. */
.dak-journey-card > p {
    margin-bottom: 12px;
}
.dak-journey {
    gap: 10px;
}
.dak-journey::before {
    top: 15px;
}
.dak-journey-step > span {
    width: 30px;
    height: 30px;
    margin-bottom: 7px;
}
.dak-journey-step strong {
    font-size: .78rem;
}
.dak-journey-step small {
    font-size: .67rem;
    line-height: 1.25;
}

/* CTA sluit aan op dezelfde compacte verticale ritmiek. */
.dak-dagbesteding-cta {
    grid-template-columns: 78px 1fr auto;
    gap: 14px;
    padding: 10px 18px;
    min-height: 92px;
}
.dak-dagbesteding-cta img {
    width: 66px;
    height: 66px;
}
.dak-dagbesteding-cta h2 {
    font-size: 1.45rem;
}
.dak-dagbesteding-cta p {
    font-size: .82rem;
    line-height: 1.35;
}

/* Footerkaarten: exact dezelfde modules en CSS als Home. */
.dak-dagbesteding-footer-cards {
    margin-bottom: 0;
}

/* Buiten Home mag de globale site-main niet extra ruimte onder de Dagbesteding-footer zetten. */
body:has(.dak-dagbesteding-page) .site-main {
    padding-bottom: 0;
}
body:has(.dak-dagbesteding-page) .site-footer {
    margin-top: 0;
}

/* Tablet: houd dezelfde compacte structuur, maar laat inhoud ademen. */
@media (max-width: 1120px) {
    .dak-dagbesteding-hero {
        height: auto;
        min-height: 300px;
    }
    .dak-dagbesteding-hero-image img {
        height: 100%;
        min-height: 300px;
    }
    .dak-dagbesteding-grid-top,
    .dak-dagbesteding-grid-bottom {
        grid-template-columns: 1fr 1fr;
    }
    .dak-learning-card,
    .dak-journey-card {
        grid-column: 1 / -1;
    }
}

/* Mobiel blijft bewust inhoudsgestuurd; geen vaste 300px hoogte. */
@media (max-width: 800px) {
    .dak-dagbesteding-page {
        padding-bottom: 6px;
    }
    .dak-dagbesteding-hero {
        height: auto;
        min-height: 0;
    }
    .dak-dagbesteding-hero-copy {
        padding: 24px 20px 20px;
    }
    .dak-dagbesteding-hero-image img {
        height: auto;
        min-height: 240px;
        max-height: 310px;
    }
    .dak-dagbesteding-grid,
    .dak-dagbesteding-cta,
    .dak-dagbesteding-footer-cards {
        margin-top: 12px;
    }
    .dak-dagbesteding-card,
    .dak-homefeel-card {
        min-height: 0;
    }
    .dak-dagbesteding-cta {
        min-height: 0;
    }
}

/* 1.0.40 - Dagbesteding hero full-width + iconen conform mockup */
.dak-dagbesteding-page {
    max-width: none;
    width: 100%;
    padding-top: 0;
}
.dak-dagbesteding-hero-outer {
    background: #fff7f2;
    border-top: 1px solid rgba(98,60,51,.10);
    border-bottom: 1px solid rgba(98,60,51,.10);
}
.dak-dagbesteding-hero {
    width: min(var(--dak-shell), 100%);
    margin: 0 auto;
    padding-inline: 20px;
    box-sizing: border-box;
    border: 0;
    background: transparent;
}
.dak-dagbesteding-shell {
    width: min(var(--dak-shell), 100%);
    margin: 0 auto;
    padding-inline: 20px;
    box-sizing: border-box;
}
body:has(.dak-dagbesteding-page) .site-main {
    padding-top: 0;
    padding-bottom: 0;
}

.dak-small-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    align-items: center;
    justify-content: center;
    color: #2b2422;
}
.dak-small-icon svg,
.dak-skill-icon svg,
.dak-journey-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}
.dak-skill-icon {
    font-size: 0;
}
.dak-skill-icon svg {
    width: 24px;
    height: 24px;
}
.dak-journey-icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    margin: 0 auto 8px;
    color: var(--dak-pink);
}
.dak-skills-grid strong {
    min-height: 2.75em;
    font-size: .8rem;
    line-height: 1.2;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
}
.dak-skills-grid small {
    font-size: .69rem;
}
.dak-skills-grid > div {
    padding: 2px 8px 0;
}
.dak-dagbesteding-card h2 {
    gap: 8px;
}
.dak-journey-step strong {
    margin-bottom: 4px;
}

@media (max-width: 1120px) {
    .dak-dagbesteding-hero,
    .dak-dagbesteding-shell {
        padding-inline: 15px;
    }
}

@media (max-width: 800px) {
    .dak-dagbesteding-hero,
    .dak-dagbesteding-shell {
        padding-inline: 15px;
    }
    .dak-journey-step {
        grid-template-columns: 42px 1fr;
        grid-template-rows: auto auto auto;
    }
    .dak-journey-step > span {
        grid-row: 1 / span 3;
    }
    .dak-journey-icon {
        grid-column: 2;
        grid-row: 1;
        margin: 0 0 4px;
    }
    .dak-journey-step strong {
        grid-column: 2;
        grid-row: 2;
    }
    .dak-journey-step small {
        grid-column: 2;
        grid-row: 3;
    }
}

/* 1.0.41 - Dagbesteding hero gelijk opgebouwd als Home */
.dak-dagbesteding-hero-outer {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    background: #fff8f3;
    border-top: 0;
    border-bottom: 1px solid var(--dak-line);
}
.dak-dagbesteding-hero {
    position: relative;
    z-index: 1;
    min-height: 300px;
    height: 300px;
    width: min(var(--dak-shell), 100%);
    margin-inline: auto;
    padding: 30px 170px 28px 170px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    isolation: isolate;
    background: transparent;
}
.dak-dagbesteding-hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0 0 0 39%;
    background: url('../images/dagbesteding-hero.webp') center 48% / cover no-repeat;
}
.dak-dagbesteding-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg,
        #fff8f3 0%,
        #fff8f3 35%,
        rgba(255,248,243,.98) 40%,
        rgba(255,248,243,.88) 46%,
        rgba(255,248,243,.55) 52%,
        rgba(255,248,243,.15) 60%,
        rgba(255,248,243,0) 68%);
}
.dak-dagbesteding-hero-copy {
    position: relative;
    z-index: 2;
    width: 610px;
    max-width: 610px;
    padding: 0;
    background: none;
}
.dak-dagbesteding-hero h1 {
    max-width: 650px;
    margin: 0 0 12px;
    font-size: clamp(2.7rem, 3.35vw, 3.85rem);
    line-height: .98;
    letter-spacing: -.035em;
}
.dak-dagbesteding-hero p {
    max-width: 58ch;
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.45;
}
.dak-dagbesteding-actions {
    margin-top: 0;
}
.dak-dagbesteding-hero-image {
    display: none;
}
.dak-dagbesteding-plant {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 0;
    width: clamp(118px, 10vw, 165px);
    height: auto;
    pointer-events: none;
    user-select: none;
}
.dak-dagbesteding-mission {
    right: 48px;
    top: 50%;
    width: 138px;
    height: 138px;
}

@media (max-width: 1200px) {
    .dak-dagbesteding-hero {
        padding-left: 125px;
        padding-right: 150px;
    }
    .dak-dagbesteding-hero-copy {
        width: 540px;
        max-width: 540px;
    }
}

@media (max-width: 900px) {
    .dak-dagbesteding-hero {
        height: auto;
        min-height: 0;
        padding: 28px 22px 255px;
        display: block;
    }
    .dak-dagbesteding-hero::after {
        inset: auto 0 0 0;
        height: 230px;
        background-position: center 42%;
    }
    .dak-dagbesteding-hero::before {
        background: linear-gradient(180deg,
            #fff8f3 0%,
            #fff8f3 52%,
            rgba(255,248,243,.96) 60%,
            rgba(255,248,243,0) 78%);
    }
    .dak-dagbesteding-hero-copy {
        width: 100%;
        max-width: 640px;
    }
    .dak-dagbesteding-mission {
        display: none;
    }
    .dak-dagbesteding-plant {
        width: 105px;
    }
}

@media (max-width: 560px) {
    .dak-dagbesteding-hero {
        padding: 24px 15px 225px;
    }
    .dak-dagbesteding-hero::after {
        height: 205px;
        background-position: 50% 40%;
    }
    .dak-dagbesteding-hero h1 {
        font-size: clamp(2.05rem, 10.5vw, 2.8rem);
    }
    .dak-dagbesteding-hero p {
        font-size: .96rem;
    }
    .dak-dagbesteding-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .dak-dagbesteding-actions .dak-button {
        width: 100%;
    }
    .dak-dagbesteding-plant {
        width: 92px;
    }
}


/* 1.0.42 - Dagbesteding hero zonder witte zijranden */
.dak-dagbesteding-hero-outer {
    width: 100%;
    margin: 0;
}

.dak-dagbesteding-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: 0;
}

/* behoud dezelfde interne tekstpositie als voorheen */
.dak-dagbesteding-hero-copy {
    padding-left: max(44px, calc((100vw - var(--dak-shell)) / 2 + 44px));
}

/* badge iets van de uiterste rechterrand houden */
.dak-dagbesteding-mission {
    right: max(52px, calc((100vw - var(--dak-shell)) / 2 + 52px));
}

@media (max-width: 1120px) {
    .dak-dagbesteding-hero {
        padding-inline: 0;
    }

    .dak-dagbesteding-hero-copy {
        padding-left: 28px;
    }

    .dak-dagbesteding-mission {
        right: 28px;
    }
}

@media (max-width: 800px) {
    .dak-dagbesteding-hero {
        padding-inline: 0;
    }

    .dak-dagbesteding-hero-copy {
        padding-left: 20px;
    }
}


/* 1.0.43 - Dagbesteding iconen en skill-labels conform mockup */
.dak-small-icon svg {
    width: 18px;
    height: 18px;
}
.dak-skill-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
}
.dak-skill-icon svg {
    width: 28px;
    height: 28px;
}
.dak-skills-grid strong {
    min-height: 2.6em;
    margin-bottom: 6px;
    font-size: .92rem;
    line-height: 1.2;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
}
.dak-skills-grid small {
    font-size: .78rem;
    line-height: 1.35;
}
.dak-skills-grid > div {
    padding: 4px 10px 2px;
}
.dak-journey-icon {
    width: 26px;
    height: 26px;
}
@media (max-width: 1120px) {
    .dak-skills-grid strong {
        font-size: .88rem;
    }
}
@media (max-width: 800px) {
    .dak-skills-grid strong {
        min-height: 0;
    }
}


/* 1.0.44 - Hero plantpositie en vaardighedenblok conform mockup */
@media (min-width: 1201px) {
    .dak-dagbesteding-hero {
        box-sizing: border-box;
        padding: 30px 170px 28px 170px;
    }
    .dak-dagbesteding-hero-copy {
        padding-left: 0;
    }
    .dak-dagbesteding-plant {
        left: 0;
        bottom: 0;
        width: clamp(118px, 10vw, 165px);
    }
}

.dak-learning-card {
    overflow: hidden;
}
.dak-learning-card > h2 {
    margin-bottom: 6px;
}
.dak-learning-card > p {
    margin-bottom: 12px;
}
.dak-small-icon-chef {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
}
.dak-small-icon-chef svg {
    width: 20px;
    height: 20px;
}
.dak-skills-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 10px;
    align-items: stretch;
}
.dak-skills-grid > .dak-skill-item {
    min-width: 0;
    min-height: 172px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 10px 8px;
    border-right: 1px solid rgba(98,60,51,.13);
    text-align: center;
    box-sizing: border-box;
}
.dak-skills-grid > .dak-skill-item:last-child {
    border-right: 0;
}
.dak-skill-icon {
    display: grid;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    place-items: center;
    margin: 0 0 9px;
    border-radius: 50%;
    background: #fff0f5;
    color: var(--dak-pink);
}
.dak-skill-icon svg {
    width: 34px;
    height: 34px;
}
.dak-skills-grid strong {
    display: block;
    width: 100%;
    min-height: 2.45em;
    margin: 0 0 7px;
    color: #211a19;
    font-size: .80rem;
    font-weight: 800;
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}
.dak-skills-grid small {
    display: block;
    width: 100%;
    margin-top: auto;
    color: #50423d;
    font-size: .71rem;
    line-height: 1.28;
}

@media (max-width: 1200px) and (min-width: 801px) {
    .dak-skills-grid strong { font-size: .76rem; }
    .dak-skills-grid small { font-size: .68rem; }
    .dak-skill-icon { width: 56px; height: 56px; flex-basis: 56px; }
    .dak-skill-icon svg { width: 30px; height: 30px; }
}

@media (max-width: 800px) {
    .dak-skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dak-skills-grid > .dak-skill-item {
        min-height: 0;
        padding: 12px 8px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(98,60,51,.13);
    }
    .dak-skills-grid > .dak-skill-item:nth-child(odd) {
        border-right: 1px solid rgba(98,60,51,.13);
    }
    .dak-skills-grid strong {
        min-height: 0;
        font-size: .86rem;
    }
    .dak-skills-grid small {
        margin-top: 0;
        font-size: .76rem;
    }
}


/* 1.0.45 - Wat leren deelnemers: titels binnen eigen kolom houden */
.dak-learning-card .dak-skills-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dak-learning-card .dak-skill-item {
    min-width: 0;
    overflow: hidden;
    padding-left: 7px;
    padding-right: 7px;
}

.dak-learning-card .dak-skill-item strong {
    width: 100%;
    max-width: 100%;
    min-height: 2.7em;
    margin: 0 0 7px;
    padding: 0 2px;
    box-sizing: border-box;
    font-size: .72rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

.dak-learning-card .dak-skill-item small {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 3px;
    font-size: .69rem;
    line-height: 1.28;
    text-align: center;
}

@media (min-width: 1450px) {
    .dak-learning-card .dak-skill-item strong {
        font-size: .76rem;
    }
    .dak-learning-card .dak-skill-item small {
        font-size: .71rem;
    }
}

@media (max-width: 1200px) and (min-width: 801px) {
    .dak-learning-card .dak-skill-item strong {
        font-size: .68rem;
    }
    .dak-learning-card .dak-skill-item small {
        font-size: .65rem;
    }
}


/* 1.0.46 - Dagbesteding sfeerkaart zoals Home-promo: doorlopende tekst + scherpe achtergrond */
.dak-homefeel-card-flow {
    position: relative;
    display: block;
    min-height: 168px;
    overflow: hidden;
    padding: 0;
    background: #fffaf7;
}
.dak-homefeel-card-flow::after {
    content: "";
    position: absolute;
    inset: 0 0 0 43%;
    z-index: 0;
    background:
        linear-gradient(90deg, #fffaf7 0%, rgba(255,250,247,.80) 16%, rgba(255,250,247,.10) 54%, rgba(255,250,247,0) 100%),
        url('../images/dagbesteding/dagbesteding-thuis.webp') center / cover no-repeat;
}
.dak-homefeel-card-flow .dak-homefeel-copy {
    position: relative;
    z-index: 1;
    width: 63%;
    max-width: 63%;
    padding: 18px 18px 16px 20px;
    box-sizing: border-box;
}
.dak-homefeel-card-flow .dak-homefeel-copy h2 {
    display: block;
    margin: 0 0 8px;
    max-width: 100%;
    font-size: clamp(1.20rem, 1.45vw, 1.55rem);
    line-height: 1.08;
}
.dak-homefeel-card-flow .dak-homefeel-copy p {
    margin: 0 0 14px;
    max-width: 92%;
    font-size: .82rem;
    line-height: 1.38;
}
.dak-homefeel-card-flow .dak-text-link {
    font-size: .78rem;
}

@media (max-width: 980px) {
    .dak-homefeel-card-flow::after {
        inset: 0 0 0 46%;
    }
    .dak-homefeel-card-flow .dak-homefeel-copy {
        width: 66%;
        max-width: 66%;
    }
}

@media (max-width: 800px) {
    .dak-homefeel-card-flow {
        min-height: 220px;
    }
    .dak-homefeel-card-flow::after {
        inset: 0;
        background:
            linear-gradient(90deg, rgba(255,250,247,.98) 0%, rgba(255,250,247,.94) 52%, rgba(255,250,247,.38) 78%, rgba(255,250,247,.08) 100%),
            url('../images/dagbesteding/dagbesteding-thuis.webp') center / cover no-repeat;
    }
    .dak-homefeel-card-flow .dak-homefeel-copy {
        width: 76%;
        max-width: 76%;
        padding: 18px;
    }
}


/* 1.0.47 - Mobiele Dagbesteding-hero gebruikt dezelfde compositie als Home */
@media (max-width: 560px) {
    .dak-dagbesteding-hero-outer {
        min-height: 372px;
        background: #fff8f3;
    }

    .dak-dagbesteding-hero {
        position: relative;
        min-height: 372px;
        height: 372px;
        padding: 26px 16px 22px;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
    }

    /* Foto blijft onderdeel van de hero, net als op Home. */
    .dak-dagbesteding-hero::after {
        inset: 0 0 0 auto;
        width: 285px;
        height: 375px;
        background-image: url('../images/dagbesteding-hero.webp');
        background-repeat: no-repeat;
        background-position: 52% center;
        background-size: cover;
    }

    .dak-dagbesteding-hero::before {
        inset: 0;
        background: linear-gradient(90deg,
            #fff8f3 0%,
            rgba(255,248,243,.99) 39%,
            rgba(255,248,243,.94) 51%,
            rgba(255,248,243,.76) 62%,
            rgba(255,248,243,.36) 73%,
            rgba(255,248,243,0) 86%);
    }

    .dak-dagbesteding-hero-copy {
        width: 270px;
        max-width: 270px;
        margin: 0;
        padding: 0;
    }

    .dak-dagbesteding-hero h1 {
        width: 270px;
        max-width: 270px;
        margin: 0 0 13px;
        font-size: 1.76rem;
        line-height: 1.02;
        letter-spacing: -.025em;
        color: #17382d;
    }

    .dak-dagbesteding-hero p {
        width: 245px;
        max-width: 245px;
        margin: 0 0 14px;
        font-size: .72rem;
        line-height: 1.36;
        color: #1d211f;
    }

    .dak-dagbesteding-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 240px;
        max-width: 240px;
        margin: 0;
    }

    .dak-dagbesteding-actions .dak-button {
        width: 240px;
        min-height: 41px;
        padding: 9px 13px;
        box-sizing: border-box;
        font-size: .78rem;
        border-radius: 5px;
    }

    /* Zoals Home: decoratieve plant en ronde badge verdwijnen op mobiel. */
    .dak-dagbesteding-plant,
    .dak-dagbesteding-mission {
        display: none;
    }
}

@media (max-width: 390px) {
    .dak-dagbesteding-hero-outer,
    .dak-dagbesteding-hero {
        min-height: 365px;
        height: 365px;
    }

    .dak-dagbesteding-hero {
        padding: 24px 15px 20px;
    }

    .dak-dagbesteding-hero::after {
        width: 277px;
        height: 365px;
        background-position: 53% center;
    }

    .dak-dagbesteding-hero-copy,
    .dak-dagbesteding-hero h1 {
        width: 258px;
        max-width: 258px;
    }

    .dak-dagbesteding-hero h1 {
        font-size: 1.68rem;
    }

    .dak-dagbesteding-hero p {
        width: 236px;
        max-width: 236px;
        font-size: .70rem;
    }

    .dak-dagbesteding-actions,
    .dak-dagbesteding-actions .dak-button {
        width: 232px;
        max-width: 232px;
    }
}


/* 1.0.48 - Mobiele Dagbesteding-content rustig en gelijk aan Home; hero ongemoeid */
@media (max-width: 800px) {
    .dak-dagbesteding-shell {
        padding-inline: 14px;
    }

    .dak-dagbesteding-grid-top,
    .dak-dagbesteding-grid-bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .dak-dagbesteding-grid-top > *,
    .dak-dagbesteding-grid-bottom > *,
    .dak-learning-card,
    .dak-journey-card {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .dak-dagbesteding-card {
        min-height: 0;
        padding: 18px;
        border-radius: 14px;
    }

    .dak-dagbesteding-card h2 {
        margin-bottom: 8px;
        font-size: 1.32rem;
        line-height: 1.12;
    }

    .dak-dagbesteding-card p {
        font-size: .95rem;
        line-height: 1.45;
    }

    .dak-check-list {
        gap: 7px;
        margin: 12px 0 14px;
    }

    .dak-check-list li {
        font-size: .92rem;
        line-height: 1.35;
    }

    /* Zes vaardigheden: 2 kolommen x 3 rijen in plaats van desktopkolommen. */
    .dak-learning-card .dak-skills-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        margin-top: 12px;
    }

    .dak-learning-card .dak-skill-item {
        min-width: 0;
        min-height: 190px;
        overflow: visible;
        padding: 15px 10px 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(98,60,51,.12);
        text-align: center;
    }

    .dak-learning-card .dak-skill-item:nth-child(odd) {
        border-right: 1px solid rgba(98,60,51,.12);
    }

    .dak-learning-card .dak-skill-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .dak-learning-card .dak-skill-item strong {
        width: 100%;
        min-height: 0;
        margin: 0 0 8px;
        padding: 0 3px;
        font-size: .88rem;
        line-height: 1.18;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: auto;
    }

    .dak-learning-card .dak-skill-item small {
        width: 100%;
        margin-top: auto;
        padding: 0 4px;
        font-size: .78rem;
        line-height: 1.35;
    }

    .dak-learning-card .dak-skill-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        margin-bottom: 10px;
    }

    .dak-learning-card .dak-skill-icon svg {
        width: 31px;
        height: 31px;
    }

    /* Sfeerkaart als brede Home-achtige promo, niet als smalle hoge kaart. */
    .dak-homefeel-card-flow {
        min-height: 225px;
        width: 100%;
    }

    .dak-homefeel-card-flow::after {
        inset: 0;
        background:
            linear-gradient(90deg, rgba(255,250,247,.99) 0%, rgba(255,250,247,.97) 48%, rgba(255,250,247,.68) 66%, rgba(255,250,247,.10) 100%),
            url('../images/dagbesteding/dagbesteding-thuis.webp') 72% center / cover no-repeat;
    }

    .dak-homefeel-card-flow .dak-homefeel-copy {
        width: 70%;
        max-width: 70%;
        padding: 20px 18px;
    }

    .dak-homefeel-card-flow .dak-homefeel-copy h2 {
        margin-bottom: 10px;
        font-size: 1.42rem;
        line-height: 1.08;
    }

    .dak-homefeel-card-flow .dak-homefeel-copy p {
        max-width: 100%;
        margin-bottom: 16px;
        font-size: .91rem;
        line-height: 1.42;
    }

    /* Trajectstappen als rustige verticale lijst. */
    .dak-journey {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 6px;
    }

    .dak-journey::before {
        display: none;
    }

    .dak-journey-step {
        display: grid;
        grid-template-columns: 38px 30px 1fr;
        grid-template-rows: auto auto;
        column-gap: 10px;
        row-gap: 2px;
        align-items: start;
        padding: 12px 0;
        border-bottom: 1px solid rgba(98,60,51,.10);
        text-align: left;
    }

    .dak-journey-step:last-child {
        border-bottom: 0;
    }

    .dak-journey-step > span {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 32px;
        height: 32px;
        margin: 0;
    }

    .dak-journey-icon {
        grid-column: 2;
        grid-row: 1 / span 2;
        width: 26px;
        height: 26px;
        margin: 2px 0 0;
    }

    .dak-journey-step strong {
        grid-column: 3;
        grid-row: 1;
        margin: 0 0 3px;
        font-size: .92rem;
        line-height: 1.2;
    }

    .dak-journey-step small {
        grid-column: 3;
        grid-row: 2;
        font-size: .78rem;
        line-height: 1.35;
    }

    /* CTA onderaan als één rustige mobiele kaart. */
    .dak-dagbesteding-cta {
        grid-template-columns: 62px 1fr;
        gap: 12px;
        margin-top: 12px;
        padding: 16px;
    }

    .dak-dagbesteding-cta img {
        width: 58px;
        height: 58px;
    }

    .dak-dagbesteding-cta h2 {
        font-size: 1.28rem;
        line-height: 1.15;
    }

    .dak-dagbesteding-cta p {
        font-size: .86rem;
        line-height: 1.4;
    }

    .dak-dagbesteding-cta .dak-button {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }

    .dak-dagbesteding-footer-cards {
        margin-top: 12px;
    }
}

@media (max-width: 390px) {
    .dak-dagbesteding-shell {
        padding-inline: 12px;
    }

    .dak-dagbesteding-card {
        padding: 16px;
    }

    .dak-learning-card .dak-skill-item {
        min-height: 184px;
        padding-left: 7px;
        padding-right: 7px;
    }

    .dak-learning-card .dak-skill-item strong {
        font-size: .82rem;
    }

    .dak-learning-card .dak-skill-item small {
        font-size: .74rem;
    }

    .dak-homefeel-card-flow .dak-homefeel-copy {
        width: 76%;
        max-width: 76%;
        padding: 18px 16px;
    }
}


/* 1.0.49 - Contactpagina */
.dak-contact-page {
    width: min(var(--dak-shell), 100%);
    margin: 0 auto;
    padding: 0 20px 10px;
    box-sizing: border-box;
}

.dak-contact-hero {
    display: grid;
    grid-template-columns: 1fr 150px;
    align-items: center;
    gap: 24px;
    min-height: 190px;
    margin-bottom: 16px;
    padding: 28px 34px;
    border: 1px solid rgba(98,60,51,.12);
    border-radius: 18px;
    background: linear-gradient(110deg, #fff7f2 0%, #fff2f6 72%, #ffe7f0 100%);
    overflow: hidden;
}

.dak-contact-hero-copy h1 {
    margin: 0 0 10px;
    color: #14362f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: .98;
}

.dak-contact-hero-copy p {
    max-width: 720px;
    margin: 0;
    color: #3b302c;
    font-size: 1.02rem;
    line-height: 1.55;
}

.dak-contact-hero-mark {
    display: grid;
    place-items: center;
}

.dak-contact-hero-mark img {
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.dak-contact-grid {
    display: grid;
    grid-template-columns: 1fr .85fr 1.15fr;
    gap: 16px;
    align-items: stretch;
}

.dak-contact-panel {
    min-width: 0;
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 16px;
    background: #fffaf7;
    box-shadow: 0 6px 18px rgba(83,48,42,.04);
}

.dak-contact-details,
.dak-contact-hours {
    padding: 20px 22px;
}

.dak-contact-panel h2,
.dak-contact-form-section h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: #211a19;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.1;
}

.dak-contact-panel h2 img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.dak-contact-detail-row {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 11px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(98,60,51,.10);
}

.dak-contact-detail-row:last-of-type {
    border-bottom: 0;
}

.dak-contact-detail-row > img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.dak-contact-detail-row strong,
.dak-contact-detail-row span,
.dak-contact-detail-row a {
    display: block;
}

.dak-contact-detail-row strong {
    margin-bottom: 3px;
    color: #211a19;
    font-size: .9rem;
}

.dak-contact-detail-row span,
.dak-contact-detail-row a {
    color: #4b3c37;
    line-height: 1.45;
    text-decoration: none;
}

.dak-contact-detail-row a:hover,
.dak-contact-detail-row a:focus-visible {
    color: var(--dak-pink);
    text-decoration: underline;
}

.dak-contact-route {
    margin-top: 16px;
}

.dak-contact-hours-list {
    margin: 0;
}

.dak-contact-hours-list > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(98,60,51,.10);
}

.dak-contact-hours-list > div:last-child {
    border-bottom: 0;
}

.dak-contact-hours-list dt {
    font-weight: 700;
}

.dak-contact-hours-list dd {
    margin: 0;
    text-align: right;
}

.dak-contact-current-info {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(98,60,51,.12);
}

.dak-contact-current-info h2 {
    font-size: 1.2rem;
}

.dak-contact-photo-card {
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    padding: 0;
}

.dak-contact-photo-card > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 255px;
    object-fit: cover;
}

.dak-contact-photo-copy {
    padding: 16px 18px 18px;
}

.dak-contact-photo-copy h2 {
    margin-bottom: 7px;
}

.dak-contact-photo-copy p {
    margin: 0;
    color: #4b3c37;
    line-height: 1.45;
}

.dak-contact-form-section {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 24px;
    margin-top: 16px;
    padding: 22px;
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 16px;
    background: #fffaf7;
}

.dak-contact-form-copy p {
    margin: 0;
    color: #4b3c37;
    line-height: 1.5;
}

.dak-contact-component {
    min-width: 0;
}

.dak-contact-component .com-contact,
.dak-contact-component .contact {
    margin: 0;
}

.dak-contact-component fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.dak-contact-component .control-group,
.dak-contact-component .mb-3 {
    margin-bottom: 12px;
}

.dak-contact-component label {
    display: block;
    margin-bottom: 5px;
    color: #211a19;
    font-weight: 700;
}

.dak-contact-component input[type="text"],
.dak-contact-component input[type="email"],
.dak-contact-component input[type="tel"],
.dak-contact-component textarea,
.dak-contact-component select {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    box-sizing: border-box;
    border: 1px solid rgba(98,60,51,.22);
    border-radius: 9px;
    background: #fff;
    color: #211a19;
    font: inherit;
}

.dak-contact-component textarea {
    min-height: 120px;
    resize: vertical;
}

.dak-contact-component button,
.dak-contact-component .btn-primary {
    border: 0;
    border-radius: 9px;
    background: var(--dak-pink);
    color: #fff;
    font-weight: 800;
    padding: 10px 18px;
}

.dak-contact-footer-cards {
    margin-top: 16px;
}

body:has(.dak-contact-page) .site-main {
    padding-top: 22px;
    padding-bottom: 0;
}

body:has(.dak-contact-page) .site-footer {
    margin-top: 0;
}

@media (max-width: 980px) {
    .dak-contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dak-contact-photo-card {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }
    .dak-contact-photo-card > img {
        min-height: 220px;
    }
}

@media (max-width: 700px) {
    .dak-contact-page {
        padding-inline: 15px;
    }

    .dak-contact-hero {
        grid-template-columns: 1fr 74px;
        min-height: 0;
        gap: 10px;
        padding: 22px 18px;
        border-radius: 15px;
    }

    .dak-contact-hero-copy h1 {
        font-size: 2.25rem;
    }

    .dak-contact-hero-copy p {
        font-size: .94rem;
        line-height: 1.45;
    }

    .dak-contact-hero-mark img {
        width: 66px;
        height: 66px;
    }

    .dak-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dak-contact-details,
    .dak-contact-hours {
        padding: 18px;
    }

    .dak-contact-photo-card {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .dak-contact-photo-card > img {
        min-height: 210px;
        max-height: 260px;
    }

    .dak-contact-form-section {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 12px;
        padding: 18px;
    }

    .dak-contact-footer-cards {
        margin-top: 12px;
    }

    body:has(.dak-contact-page) .site-main {
        padding-top: 16px;
    }
}


/* 1.0.50 - Contact: nette berichtsectie + dubbele Joomla-titel verbergen */
.dak-contact-form-section {
    display: block;
}

.dak-contact-form-copy {
    max-width: 760px;
}

.dak-contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.dak-contact-form-actions .dak-button {
    min-width: 150px;
    justify-content: center;
}

.dak-contact-component {
    margin-top: 18px;
}

/* De paginatitel "Contact" uit de Joomla-component niet nogmaals tonen. */
.dak-contact-component > h1,
.dak-contact-component > .page-header,
.dak-contact-component .com-contact > .page-header,
.dak-contact-component .contact > .page-header,
.dak-contact-component .componentheading {
    display: none !important;
}

/* Geen nutteloze ruimte wanneer de component na het verbergen van de titel leeg is. */
.dak-contact-component:empty {
    display: none;
    margin: 0;
}

/* Als Joomla wel een contactformulier levert, toon dat als rustige volledige-breedte kaartinhoud. */
.dak-contact-component form {
    max-width: 820px;
    margin: 0;
}

@media (max-width: 700px) {
    .dak-contact-form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .dak-contact-form-actions .dak-button {
        width: 100%;
        box-sizing: border-box;
    }

    .dak-contact-component {
        margin-top: 14px;
    }
}


/* 1.0.51 - eigen contactformulier */
.dak-contact-form-section {
    display: block;
}
.dak-contact-form-copy {
    max-width: 820px;
    margin-bottom: 18px;
}
.dak-contact-form-copy p {
    margin: 0;
}
.dak-contact-form {
    max-width: 980px;
}
.dak-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}
.dak-form-field {
    min-width: 0;
}
.dak-form-field-full {
    grid-column: 1 / -1;
}
.dak-form-field label {
    display: block;
    margin-bottom: 6px;
    color: #211a19;
    font-weight: 700;
}
.dak-optional,
.dak-form-required {
    color: #786a65;
    font-size: .82rem;
    font-weight: 400;
}
.dak-contact-form input[type="text"],
.dak-contact-form input[type="email"],
.dak-contact-form input[type="tel"],
.dak-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(98,60,51,.24);
    border-radius: 10px;
    background: #fff;
    color: #211a19;
    font: inherit;
    padding: 11px 12px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.dak-contact-form input[type="text"],
.dak-contact-form input[type="email"],
.dak-contact-form input[type="tel"] {
    min-height: 46px;
}
.dak-contact-form textarea {
    min-height: 145px;
    resize: vertical;
}
.dak-contact-form input:focus,
.dak-contact-form textarea:focus {
    outline: none;
    border-color: var(--dak-pink);
    box-shadow: 0 0 0 3px rgba(239,63,122,.12);
}
.dak-form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 820px;
    margin: 16px 0 0;
    color: #4b3c37;
    line-height: 1.4;
    cursor: pointer;
}
.dak-form-privacy input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--dak-pink);
    flex: 0 0 auto;
}
.dak-form-submit-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}
.dak-form-message {
    max-width: 980px;
    margin: 0 0 16px;
    padding: 13px 15px;
    border-radius: 10px;
    line-height: 1.45;
}
.dak-form-message strong,
.dak-form-message span {
    display: block;
}
.dak-form-success {
    border: 1px solid rgba(40,120,80,.28);
    background: #f1faf5;
}
.dak-form-error {
    border: 1px solid rgba(180,60,60,.28);
    background: #fff4f4;
}
.dak-form-error ul {
    margin: 7px 0 0 20px;
    padding: 0;
}
.dak-form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
@media (max-width: 700px) {
    .dak-form-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }
    .dak-form-field-full {
        grid-column: auto;
    }
    .dak-form-submit-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .dak-form-submit-row .dak-button {
        width: 100%;
        justify-content: center;
    }
}


/* 1.0.52 - na verzenden direct terug naar formulier/resultaat */
#contactformulier {
    scroll-margin-top: 110px;
}

#dak-contact-result:focus {
    outline: none;
}

@media (max-width: 700px) {
    #contactformulier {
        scroll-margin-top: 95px;
    }
}


/* 1.0.53 - Lunchroom pagina volgens mockup */
.dak-lunchroom-page {
    background: #fffaf7;
}

.dak-lunchroom-hero-outer {
    width: 100%;
    background: #fff8f3;
}

.dak-lunchroom-hero {
    position: relative;
    min-height: 338px;
    overflow: hidden;
    background: #fff8f3;
}

.dak-lunchroom-hero::after {
    content: "";
    position: absolute;
    inset: 0 0 0 37%;
    z-index: 0;
    background: url('../images/lunchroom/lunchroom-hero.webp') center / cover no-repeat;
}

.dak-lunchroom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
        #fff8f3 0%,
        rgba(255,248,243,.99) 31%,
        rgba(255,248,243,.93) 40%,
        rgba(255,248,243,.62) 50%,
        rgba(255,248,243,.18) 61%,
        rgba(255,248,243,0) 72%);
    pointer-events: none;
}

.dak-lunchroom-hero-copy {
    position: relative;
    z-index: 2;
    width: min(520px, 44vw);
    padding: 34px 0 30px max(5.5vw, 58px);
}

.dak-lunchroom-hero h1 {
    margin: 0 0 12px;
    color: #17382d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.65rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.02em;
}

.dak-lunchroom-hero p {
    max-width: 470px;
    margin: 0 0 20px;
    color: #211d1b;
    font-size: 1rem;
    line-height: 1.5;
}

.dak-lunchroom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dak-lunchroom-shell {
    width: min(var(--dak-shell), calc(100% - 40px));
    margin: 0 auto;
    padding: 14px 0 0;
}

.dak-lunchroom-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.dak-lunchroom-feature-card,
.dak-lunchroom-card,
.dak-lunchroom-info-row {
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 14px;
    background: #fffaf7;
    box-shadow: 0 4px 14px rgba(83,48,42,.035);
}

.dak-lunchroom-feature-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: start;
    padding: 15px 17px;
}

.dak-lunchroom-round-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f24c82, #eb2e70);
    color: #fff;
    font-size: 2rem;
}

.dak-lunchroom-feature-card h2,
.dak-lunchroom-card h2,
.dak-lunchroom-info-row h2 {
    margin: 0 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    color: #211a19;
}

.dak-lunchroom-feature-card h2 {
    font-size: 1.25rem;
}

.dak-lunchroom-feature-card p {
    margin: 0 0 7px;
    color: #4b3c37;
    line-height: 1.42;
}

.dak-lunchroom-middle-grid {
    display: grid;
    grid-template-columns: 1.55fr .92fr .92fr;
    gap: 14px;
    margin-top: 14px;
}

.dak-lunchroom-card {
    min-width: 0;
    overflow: hidden;
    padding: 14px;
}

.dak-lunchroom-dishes h2,
.dak-lunchroom-card-heading h2 {
    font-size: 1.24rem;
}

.dak-lunchroom-dishes h2 > span {
    color: var(--dak-pink);
}

.dak-dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.dak-dishes-grid article {
    min-width: 0;
    border-right: 1px solid rgba(98,60,51,.10);
    padding-right: 9px;
}

.dak-dishes-grid article:last-child {
    border-right: 0;
    padding-right: 0;
}

.dak-dishes-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
    border-radius: 8px;
}

.dak-dishes-grid h3 {
    margin: 8px 0 3px;
    font-size: .9rem;
}

.dak-dishes-grid p {
    min-height: 46px;
    margin: 0 0 5px;
    color: #4b3c37;
    font-size: .78rem;
    line-height: 1.35;
}

.dak-dishes-grid strong {
    color: var(--dak-pink);
    font-size: 1rem;
}

.dak-lunchroom-menu-button {
    display: none;
    margin-top: 12px;
}

.dak-lunchroom-groups {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: stretch;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(255,250,247,.15) 0%, rgba(255,250,247,.80) 47%, #fffaf7 68%),
        url('../images/home-promo-feesten.jpg') left center / cover no-repeat;
}

.dak-lunchroom-groups-copy {
    width: 56%;
    margin-left: auto;
    padding: 28px 18px 20px;
    box-sizing: border-box;
}

.dak-lunchroom-groups-copy h2 {
    font-size: 1.45rem;
}

.dak-lunchroom-groups-copy p {
    color: #4b3c37;
    line-height: 1.45;
}

.dak-lunchroom-agenda {
    min-height: 260px;
}

.dak-lunchroom-card-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.dak-lunchroom-card-heading > a {
    color: var(--dak-pink);
    font-size: .76rem;
    font-weight: 800;
    text-decoration: none;
}

.dak-lunchroom-events-module .home-section,
.dak-lunchroom-events-module .mod-articlesnews-horizontal,
.dak-lunchroom-events-module .mod-articlesnews {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.dak-lunchroom-events-module .home-card-header,
.dak-lunchroom-events-module > h3 {
    display: none;
}

.dak-lunchroom-empty {
    color: #4b3c37;
}

.dak-lunchroom-info-row {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 1fr 1.15fr;
    margin-top: 14px;
    overflow: hidden;
}

.dak-lunchroom-info-row article {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 11px;
    padding: 16px 18px;
    border-right: 1px solid rgba(98,60,51,.11);
}

.dak-lunchroom-info-row article:last-child {
    border-right: 0;
}

.dak-lunchroom-info-row img {
    width: 24px;
    height: 24px;
}

.dak-lunchroom-info-row h2 {
    font-size: 1rem;
}

.dak-lunchroom-info-row p,
.dak-lunchroom-info-row a {
    margin: 0;
    color: #4b3c37;
    line-height: 1.42;
    text-decoration: none;
}

.dak-lunchroom-footer-cards {
    margin-top: 14px;
}

body:has(.dak-lunchroom-page) .site-main {
    padding-top: 0;
    padding-bottom: 0;
}

body:has(.dak-lunchroom-page) .site-footer {
    margin-top: 0;
}

@media (max-width: 1050px) {
    .dak-lunchroom-middle-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dak-lunchroom-dishes {
        grid-column: 1 / -1;
    }

    .dak-lunchroom-info-row {
        grid-template-columns: 1fr 1fr;
    }

    .dak-lunchroom-info-row article:nth-child(2) {
        border-right: 0;
    }

    .dak-lunchroom-info-row article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(98,60,51,.11);
    }
}

@media (max-width: 800px) {
    .dak-lunchroom-shell {
        width: calc(100% - 28px);
        padding-top: 12px;
    }

    .dak-lunchroom-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dak-lunchroom-feature-card {
        grid-template-columns: 62px 1fr;
        padding: 14px;
    }

    .dak-lunchroom-round-icon {
        width: 54px;
        height: 54px;
        font-size: 1.55rem;
    }

    .dak-lunchroom-middle-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 10px;
    }

    .dak-lunchroom-dishes {
        grid-column: auto;
    }

    .dak-dishes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dak-dishes-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(98,60,51,.10);
        padding: 0 0 10px;
    }

    .dak-lunchroom-menu-button {
        display: inline-flex;
    }

    .dak-lunchroom-info-row {
        grid-template-columns: 1fr;
        margin-top: 10px;
    }

    .dak-lunchroom-info-row article,
    .dak-lunchroom-info-row article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(98,60,51,.11);
    }

    .dak-lunchroom-info-row article:last-child {
        border-bottom: 0;
    }
}

/* Lunchroom hero: mobiel exact dezelfde compositie-aanpak als Dagbesteding/Home */
@media (max-width: 560px) {
    .dak-lunchroom-hero-outer {
        min-height: 372px;
        background: #fff8f3;
    }

    .dak-lunchroom-hero {
        position: relative;
        min-height: 372px;
        height: 372px;
        padding: 26px 16px 22px;
        box-sizing: border-box;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
    }

    .dak-lunchroom-hero::after {
        inset: 0 0 0 auto;
        width: 285px;
        height: 375px;
        background-image: url('../images/lunchroom/lunchroom-hero.webp');
        background-repeat: no-repeat;
        background-position: 53% center;
        background-size: cover;
    }

    .dak-lunchroom-hero::before {
        inset: 0;
        background: linear-gradient(90deg,
            #fff8f3 0%,
            rgba(255,248,243,.99) 39%,
            rgba(255,248,243,.94) 51%,
            rgba(255,248,243,.76) 62%,
            rgba(255,248,243,.36) 73%,
            rgba(255,248,243,0) 86%);
    }

    .dak-lunchroom-hero-copy {
        position: relative;
        z-index: 2;
        width: 270px;
        max-width: 270px;
        margin: 0;
        padding: 0;
    }

    .dak-lunchroom-hero h1 {
        width: 270px;
        max-width: 270px;
        margin: 0 0 13px;
        font-size: 1.76rem;
        line-height: 1.02;
        letter-spacing: -.025em;
        color: #17382d;
    }

    .dak-lunchroom-hero p {
        width: 245px;
        max-width: 245px;
        margin: 0 0 14px;
        font-size: .72rem;
        line-height: 1.36;
        color: #1d211f;
    }

    .dak-lunchroom-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 240px;
        max-width: 240px;
        margin: 0;
    }

    .dak-lunchroom-actions .dak-button {
        width: 240px;
        min-height: 41px;
        padding: 9px 13px;
        box-sizing: border-box;
        font-size: .78rem;
        border-radius: 5px;
    }
}

@media (max-width: 390px) {
    .dak-lunchroom-hero-outer,
    .dak-lunchroom-hero {
        min-height: 365px;
        height: 365px;
    }

    .dak-lunchroom-hero {
        padding: 24px 15px 20px;
    }

    .dak-lunchroom-hero::after {
        width: 277px;
        height: 365px;
        background-position: 54% center;
    }

    .dak-lunchroom-hero-copy,
    .dak-lunchroom-hero h1 {
        width: 258px;
        max-width: 258px;
    }

    .dak-lunchroom-hero h1 {
        font-size: 1.68rem;
    }

    .dak-lunchroom-hero p {
        width: 236px;
        max-width: 236px;
        font-size: .70rem;
    }

    .dak-lunchroom-actions,
    .dak-lunchroom-actions .dak-button {
        width: 232px;
        max-width: 232px;
    }
}


/* 1.0.54 - Lunchroom: hero verhouding, correcte iconen en gevulde agenda */
.dak-lunchroom-hero::after {
    background-size: cover;
    background-position: center center;
}

.dak-lunchroom-round-icon img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.dak-lunchroom-agenda-list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.dak-lunchroom-agenda-item {
    display: grid;
    grid-template-columns: 54px 92px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.dak-lunchroom-agenda-date {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 68px;
    padding: 5px 3px;
    border: 1px solid rgba(98,60,51,.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 8px rgba(83,48,42,.05);
    line-height: 1;
}

.dak-lunchroom-agenda-date span {
    font-size: .66rem;
    font-weight: 800;
}

.dak-lunchroom-agenda-date strong {
    margin: 3px 0;
    font-size: 1.28rem;
}

.dak-lunchroom-agenda-image {
    display: block;
    height: 68px;
    overflow: hidden;
    border-radius: 8px;
}

.dak-lunchroom-agenda-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dak-lunchroom-agenda-copy {
    min-width: 0;
}

.dak-lunchroom-agenda-copy h3 {
    margin: 0 0 5px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .92rem;
    line-height: 1.15;
}

.dak-lunchroom-agenda-copy h3 a {
    color: #211a19;
    text-decoration: none;
}

.dak-lunchroom-agenda-copy p {
    margin: 0;
    color: #4b3c37;
    font-size: .76rem;
    line-height: 1.25;
}

@media (max-width: 560px) {
    .dak-lunchroom-hero::after {
        background-size: cover;
        background-position: 56% center;
    }

    .dak-lunchroom-round-icon img {
        width: 34px;
        height: 34px;
    }

    .dak-lunchroom-agenda-item {
        grid-template-columns: 50px 80px minmax(0, 1fr);
        gap: 8px;
    }

    .dak-lunchroom-agenda-date,
    .dak-lunchroom-agenda-image {
        min-height: 62px;
        height: 62px;
    }
}


/* 1.0.55 - Lunchroom hero: foto en tekst als één geheel + verbeterd croissant-icoon */
.dak-lunchroom-hero::after {
    inset: 0;
    width: auto;
    height: auto;
    background-image: url('../images/lunchroom/lunchroom-hero.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.dak-lunchroom-hero::before {
    inset: 0;
    background: linear-gradient(90deg,
        #fff8f3 0%,
        rgba(255,248,243,.99) 24%,
        rgba(255,248,243,.95) 33%,
        rgba(255,248,243,.82) 42%,
        rgba(255,248,243,.52) 51%,
        rgba(255,248,243,.18) 60%,
        rgba(255,248,243,0) 70%);
}

.dak-lunchroom-hero-copy {
    width: min(560px, 46vw);
}

.dak-lunchroom-round-icon img {
    width: 44px;
    height: 44px;
}

@media (max-width: 560px) {
    .dak-lunchroom-hero::after {
        inset: 0;
        width: auto;
        height: auto;
        background-position: 58% center;
        background-size: cover;
    }

    .dak-lunchroom-hero::before {
        inset: 0;
        background: linear-gradient(90deg,
            #fff8f3 0%,
            rgba(255,248,243,.99) 34%,
            rgba(255,248,243,.94) 48%,
            rgba(255,248,243,.78) 59%,
            rgba(255,248,243,.42) 71%,
            rgba(255,248,243,.12) 82%,
            rgba(255,248,243,0) 92%);
    }
}


/* 1.0.56 - Lunchroom: iconen exacter, compactere tweede rij, agenda-icoon en hero-overlap */
.dak-lunchroom-hero::before {
    background: linear-gradient(90deg,
        #fff8f3 0%,
        rgba(255,248,243,.99) 20%,
        rgba(255,248,243,.93) 29%,
        rgba(255,248,243,.72) 39%,
        rgba(255,248,243,.40) 49%,
        rgba(255,248,243,.14) 59%,
        rgba(255,248,243,0) 68%);
}

.dak-lunchroom-hero-copy {
    width: min(500px, 42vw);
}

.dak-lunchroom-round-icon img {
    width: 36px;
    height: 36px;
}

.dak-dishes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dak-dishes-grid article {
    padding-right: 10px;
}

.dak-dishes-grid p {
    min-height: 42px;
}

.dak-lunchroom-groups,
.dak-lunchroom-agenda {
    min-height: 0;
}

.dak-lunchroom-card-heading h2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dak-heading-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dak-heading-icon-agenda {
    background-image: url('../images/icon-agenda.svg');
}

@media (max-width: 800px) {
    .dak-dishes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dak-dishes-grid article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .dak-lunchroom-hero::before {
        background: linear-gradient(90deg,
            #fff8f3 0%,
            rgba(255,248,243,.99) 31%,
            rgba(255,248,243,.92) 43%,
            rgba(255,248,243,.68) 55%,
            rgba(255,248,243,.28) 68%,
            rgba(255,248,243,.08) 80%,
            rgba(255,248,243,0) 90%);
    }

    .dak-lunchroom-round-icon img {
        width: 30px;
        height: 30px;
    }
}


/* 1.0.57 - Lunchroom: tweede rij efficiënter en dubbele infobalk verwijderd */
.dak-lunchroom-middle-grid {
    grid-template-columns: 1.18fr 1.08fr .94fr;
    align-items: stretch;
}

.dak-lunchroom-dishes,
.dak-lunchroom-groups,
.dak-lunchroom-agenda {
    min-height: 0;
    height: auto;
}

.dak-lunchroom-dishes {
    padding: 12px 12px 14px;
}

.dak-dishes-grid {
    gap: 12px;
}

.dak-dishes-grid img {
    aspect-ratio: 1.72;
}

.dak-dishes-grid p {
    min-height: 0;
}

.dak-lunchroom-groups {
    min-height: 236px;
    background:
        linear-gradient(90deg,
            rgba(255,250,247,.05) 0%,
            rgba(255,250,247,.22) 29%,
            rgba(255,250,247,.72) 47%,
            rgba(255,250,247,.96) 62%,
            #fffaf7 78%),
        url('../images/home-promo-feesten.jpg') left center / cover no-repeat;
}

.dak-lunchroom-groups-copy {
    width: 61%;
    padding: 20px 16px 18px 18px;
}

.dak-lunchroom-groups-copy h2 {
    margin-bottom: 8px;
    font-size: 1.34rem;
}

.dak-lunchroom-groups-copy p {
    margin: 0 0 14px;
    font-size: .92rem;
    line-height: 1.38;
}

.dak-lunchroom-groups-copy .dak-button {
    min-height: 40px;
    padding: 9px 13px;
    font-size: .86rem;
}

.dak-lunchroom-agenda {
    padding: 12px;
}

.dak-lunchroom-agenda-list {
    gap: 10px;
    margin-top: 10px;
}

.dak-lunchroom-agenda-item {
    grid-template-columns: 48px 76px minmax(0, 1fr);
    gap: 8px;
}

.dak-lunchroom-agenda-date,
.dak-lunchroom-agenda-image {
    min-height: 60px;
    height: 60px;
}

.dak-lunchroom-agenda-copy h3 {
    font-size: .88rem;
}

.dak-lunchroom-agenda-copy p {
    font-size: .72rem;
}

.dak-lunchroom-footer-cards {
    margin-top: 14px;
    scroll-margin-top: 100px;
}

@media (max-width: 1100px) {
    .dak-lunchroom-middle-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dak-lunchroom-dishes {
        grid-column: 1 / -1;
    }
}

@media (max-width: 800px) {
    .dak-lunchroom-middle-grid {
        grid-template-columns: 1fr;
    }

    .dak-lunchroom-dishes {
        grid-column: auto;
    }

    .dak-lunchroom-groups {
        min-height: 220px;
    }

    .dak-lunchroom-groups-copy {
        width: 64%;
    }
}

@media (max-width: 560px) {
    .dak-lunchroom-groups {
        min-height: 210px;
    }

    .dak-lunchroom-groups-copy {
        width: 68%;
        padding: 18px 14px;
    }

    .dak-lunchroom-footer-cards {
        scroll-margin-top: 86px;
    }
}


/* 1.0.58 - Lunchroom: lagere hero zoals Home, exacte iconen en drie nette gerechten */
@media (min-width: 801px) {
    .dak-lunchroom-hero,
    .dak-lunchroom-hero-outer {
        min-height: 300px;
        height: 300px;
    }

    .dak-lunchroom-hero {
        display: flex;
        align-items: center;
    }

    .dak-lunchroom-hero-copy {
        width: 560px;
        max-width: 560px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .dak-lunchroom-hero h1 {
        max-width: 560px;
        margin-bottom: 10px;
        font-size: clamp(2.7rem, 3.35vw, 3.85rem);
        line-height: .98;
    }

    .dak-lunchroom-hero p {
        max-width: 470px;
        margin-bottom: 14px;
        line-height: 1.42;
    }

    .dak-lunchroom-actions {
        gap: 10px;
    }

    .dak-lunchroom-actions .dak-button {
        min-height: 42px;
        padding: 10px 18px;
    }
}

.dak-lunchroom-round-icon {
    overflow: hidden;
    background: transparent;
}

.dak-lunchroom-round-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dak-dishes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
}

.dak-dishes-grid article {
    width: auto;
    max-width: 100%;
}

.dak-dishes-grid article:nth-child(n+4) {
    display: none;
}

.dak-dishes-grid img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

@media (max-width: 800px) {
    .dak-dishes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .dak-dishes-grid {
        grid-template-columns: 1fr;
    }
}


/* 1.0.59 - Lunchroom: Home-openingstijdenbalk boven de standaardfooter */
.dak-lunchroom-hours-row {
    margin-top: 14px;
    scroll-margin-top: 100px;
}

.dak-lunchroom-hours-row + .dak-lunchroom-footer-cards {
    margin-top: 12px;
}

@media (max-width: 700px) {
    .dak-lunchroom-hours-row {
        scroll-margin-top: 86px;
    }
}


/* 1.0.60 - Lunchroom: één hero-CTA en dynamische uitgelichte gerechten */
.dak-lunchroom-actions {
    display: flex;
    gap: 0;
}

.dak-lunchroom-dishes .dak-dishes-grid article img {
    background: #fff;
}

@media (max-width: 560px) {
    .dak-lunchroom-actions {
        display: block;
        width: auto;
        max-width: none;
    }

    .dak-lunchroom-actions .dak-button {
        width: auto;
        max-width: none;
    }
}


/* 1.0.61 - Gerechtenbeheer:
   bestaand custom field 'prijs' kan aan meerdere categorieën worden gekoppeld.
   Voor Lunchroom-uitlichting wordt bij voorkeur custom field alias 'uitgelicht' gebruikt. */


/* 1.0.62 - Alleen expliciet uitgelichte gerechten tonen.
   Geen selectie = blok volledig verbergen. */
.dak-lunchroom-middle-grid.no-dishes {
    grid-template-columns: 1.15fr .85fr;
}

.dak-lunchroom-middle-grid.no-dishes .dak-lunchroom-groups,
.dak-lunchroom-middle-grid.no-dishes .dak-lunchroom-agenda {
    min-height: 230px;
}

@media (max-width: 800px) {
    .dak-lunchroom-middle-grid.no-dishes {
        grid-template-columns: 1fr;
    }
}


/* 1.0.63 - meerdere menukaarten met standaard/per-kaart cover */
.dak-menu-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.dak-menu-card {
    height: 100%;
}

.dak-menu-card-visual img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .dak-menu-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .dak-menu-card-grid {
        grid-template-columns: 1fr;
    }
}


/* 1.0.64 - centrale Bedrijfsgegevens */
.dak-central-location {
    overflow: hidden;
}

.dak-central-location-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px 8px;
}

.dak-central-location-title h2,
.dak-central-location-copy h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #211a19;
}

.dak-central-location-icon {
    font-size: 1.25rem;
}

.dak-central-location-body {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) minmax(220px, .9fr);
    align-items: stretch;
}

.dak-central-location-body > img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
}

.dak-central-location-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 18px 18px;
}

.dak-central-location-copy p {
    margin: 8px 0 14px;
    line-height: 1.45;
}

@media (max-width: 700px) {
    .dak-central-location-body {
        grid-template-columns: 1fr;
    }

    .dak-central-location-body > img {
        min-height: 205px;
        max-height: 260px;
    }
}


/* 1.0.65 - Home locatieblok terug naar compacte verhouding van vóór 1.0.64 */
.home-location-info-grid {
    align-items: stretch;
}

.home-detail-card.home-location.dak-central-location {
    min-height: 0;
    height: auto;
}

.dak-central-location-title {
    padding: 12px 16px 6px;
}

.dak-central-location-title h2 {
    font-size: clamp(1.35rem, 1.7vw, 1.85rem);
}

.dak-central-location-body {
    grid-template-columns: minmax(250px, 1.15fr) minmax(220px, .85fr);
    min-height: 0;
}

.dak-central-location-body > img {
    min-height: 0;
    height: 170px;
    max-height: 170px;
    object-fit: cover;
}

.dak-central-location-copy {
    min-height: 170px;
    padding: 14px 16px;
}

.dak-central-location-copy h3 {
    font-size: 1.08rem;
}

.dak-central-location-copy p {
    margin: 6px 0 10px;
}

.dak-central-location-copy .dak-button {
    min-height: 36px;
    padding: 8px 12px;
    font-size: .84rem;
}

@media (max-width: 900px) {
    .dak-central-location-body {
        grid-template-columns: 1fr;
    }

    .dak-central-location-body > img {
        height: 210px;
        max-height: 210px;
    }

    .dak-central-location-copy {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .dak-central-location-body > img {
        height: 190px;
        max-height: 190px;
    }
}


/* 1.0.66 - Home locatieblok terug naar oorspronkelijke compacte compositie */
.dak-central-location-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1.35fr) minmax(240px, .95fr);
    align-items: stretch;
}

.dak-central-location-left {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
}

.dak-central-location-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 8px;
}

.dak-central-location-title h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #211a19;
    font-size: clamp(1.35rem, 1.55vw, 1.72rem);
    line-height: 1.05;
}

.dak-central-location-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    object-fit: contain;
}

.dak-central-location-photo {
    display: block;
    width: 100%;
    height: 138px;
    object-fit: cover;
}

.dak-central-location-copy {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 18px;
}

.dak-central-location-copy h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #211a19;
    font-size: 1.02rem;
}

.dak-central-location-copy p {
    margin: 6px 0 11px;
    line-height: 1.38;
}

.dak-central-location-copy .dak-button {
    min-height: 34px;
    padding: 7px 12px;
    font-size: .82rem;
}

/* overschrijft de eerdere 1.0.64/1.0.65 locatie-layout */
.dak-central-location-body,
.dak-central-location-body > img {
    display: initial;
    min-height: 0;
    height: auto;
    max-height: none;
}

@media (max-width: 900px) {
    .dak-central-location-grid {
        grid-template-columns: 1fr;
    }

    .dak-central-location-photo {
        height: 200px;
    }

    .dak-central-location-copy {
        padding: 14px 16px 16px;
    }
}

@media (max-width: 560px) {
    .dak-central-location-title {
        padding: 11px 14px 7px;
    }

    .dak-central-location-photo {
        height: 185px;
    }
}


/* 1.0.67 - Home locatie exact terug naar oorspronkelijke driedeling:
   titel links, foto midden, adres rechts */
.dak-central-location-grid {
    display: grid;
    grid-template-columns: 180px minmax(340px, 1.25fr) minmax(240px, .9fr);
    align-items: stretch;
    min-height: 0;
}

.dak-central-location-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 12px 14px 16px;
}

.dak-central-location-title h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #211a19;
    font-size: 1.18rem;
    line-height: 1.1;
    font-weight: 700;
}

.dak-central-location-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 1px;
    object-fit: contain;
}

.dak-central-location-photo {
    display: block;
    width: 100%;
    height: 164px;
    min-height: 164px;
    max-height: 164px;
    object-fit: cover;
}

.dak-central-location-copy {
    display: flex;
    min-height: 164px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 14px 18px;
}

.dak-central-location-copy h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #211a19;
    font-size: 1rem;
    line-height: 1.15;
}

.dak-central-location-copy p {
    margin: 6px 0 10px;
    font-size: .9rem;
    line-height: 1.35;
}

.dak-central-location-copy .dak-button {
    min-height: 34px;
    padding: 7px 12px;
    font-size: .8rem;
}

/* oude tussenversies neutraliseren */
.dak-central-location-left {
    display: contents;
}

@media (max-width: 1000px) {
    .dak-central-location-grid {
        grid-template-columns: 150px minmax(280px, 1fr) minmax(220px, .85fr);
    }
}

@media (max-width: 800px) {
    .dak-central-location-grid {
        grid-template-columns: 1fr;
    }

    .dak-central-location-title {
        padding: 13px 15px 8px;
    }

    .dak-central-location-photo {
        height: 210px;
        min-height: 210px;
        max-height: 210px;
    }

    .dak-central-location-copy {
        min-height: 0;
        padding: 14px 15px 16px;
    }
}


/* 1.0.70 - Uitgelichte gerechten: prijzen onderaan uitlijnen */
.dak-dishes-grid article {
    display: flex;
    flex-direction: column;
}

.dak-dishes-grid strong {
    display: block;
    margin-top: auto;
    padding-top: 4px;
}
