:root {
    --ink: #242522;
    --ink-soft: #5e605b;
    --paper: #fbfaf7;
    --sand: #eee7dc;
    --sand-light: #f5f1eb;
    --cream: #fffdf9;
    --olive: #788071;
    --line: rgba(36, 37, 34, 0.14);
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(32, 30, 25, 0.13);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
    --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.025em; }
h1 { font-size: clamp(3.3rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.3rem); }
h3 { font-size: 1.35rem; }
p { color: var(--ink-soft); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.container-wide { width: min(1420px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.section-space { padding: clamp(55px, 6.5vw, 98px) 0; }
.soft-bg { background: var(--sand-light); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: 16px; z-index: 1000; padding: 10px 16px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--olive);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(255, 255, 255, 0.88); }
.lead { color: var(--ink); font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.55; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 20px; font-size: 0.72rem; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #080907; }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--sand); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.button-ghost { border-color: var(--line); background: transparent; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.text-link.light { color: var(--white); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 2000;
    color: var(--white);
    transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled, .legal-page .site-header { color: var(--ink); background: rgba(251, 250, 247, 0.94); box-shadow: 0 10px 35px rgba(20, 20, 18, 0.07); backdrop-filter: blur(16px); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 1.3rem; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.brand-copy small { opacity: 0.72; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; }
.site-navigation { display: flex; align-items: center; gap: 34px; }
.site-navigation > a:not(.button) { position: relative; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.site-navigation > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right var(--transition); }
.site-navigation > a:hover::after, .site-navigation > a.is-active::after { right: 0; }
.site-header:not(.is-scrolled) .button-dark { background: var(--white); color: var(--ink); }
.legal-page .site-header .button-dark, .site-header.is-scrolled .button-dark { background: var(--ink); color: var(--white); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: currentColor; }

.hero { position: relative; min-height: 94vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 17, 15, 0.68) 0%, rgba(16, 17, 15, 0.2) 58%, rgba(16, 17, 15, 0.08) 100%), linear-gradient(0deg, rgba(12, 13, 11, 0.28), transparent 55%); }
.hero-content { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: clamp(72px, 10vh, 120px); }
.hero-copy { max-width: 790px; }
.hero-copy h1 { margin-bottom: 24px; color: var(--white); }
.hero-copy p { max-width: 680px; margin-bottom: 34px; color: rgba(255, 255, 255, 0.84); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-badge { display: grid; place-items: center; width: 150px; height: 150px; margin-bottom: 4px; border: 1px solid rgba(255, 255, 255, 0.58); border-radius: 50%; text-align: center; }
.hero-badge strong { font-family: var(--serif); font-size: 2.8rem; line-height: 1; }
.hero-badge span { font-size: 0.48rem; letter-spacing: 0.2em; }

.feature-strip { position: relative; z-index: 3; margin-top: -1px; background: var(--cream); border-bottom: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-card { min-height: 240px; padding: 52px 34px; border-right: 1px solid var(--line); }
.feature-card:first-child { border-left: 1px solid var(--line); }
.feature-icon { color: var(--olive); font-family: var(--serif); font-style: italic; }
.feature-card h2 { margin: 46px 0 10px; font-family: var(--sans); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
.feature-card p { margin: 0; font-size: 0.92rem; }

.split-layout { display: grid; grid-template-columns: 1.03fr 0.82fr; gap: clamp(64px, 9vw, 140px); align-items: center; }
.split-layout.reverse { grid-template-columns: 0.82fr 1.03fr; }
.image-stack { position: relative; min-height: 720px; }
.image-frame { position: absolute; margin: 0; overflow: hidden; background: var(--sand); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame-main { inset: 0 17% 0 0; }
.image-frame-small { right: 0; bottom: 8%; width: 42%; height: 43%; border: 12px solid var(--paper); box-shadow: var(--shadow); }
.content-column { max-width: 560px; }
.content-column h2 { margin-bottom: 28px; }
.content-column p { margin-bottom: 24px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); margin: 42px 0; padding: 25px 0; border-block: 1px solid var(--line); }
.stats-row div { display: flex; flex-direction: column; gap: 4px; }
.stats-row strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.stats-row span { color: var(--ink-soft); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.mosaic-gallery { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; grid-template-rows: 290px 290px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: var(--sand); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-large { grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 2 / 4; }
.wide-image { margin: 0; overflow: hidden; background: transparent; }
.wide-image img { display: block; width: 100%; height: auto; object-fit: cover; }
.editorial-gallery { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 330px 330px; gap: 18px; }
.editorial-photo { overflow: hidden; border: 0; padding: 0; background: var(--sand); }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.editorial-photo:hover img { transform: scale(1.035); }
.editorial-photo-wide { grid-row: 1 / 3; }
.editorial-photo-tall { grid-column: 2; }
.apartment-gallery { background: var(--sand-light); }
.distance-list { margin-top: 42px; border-top: 1px solid var(--line); }
.distance-list div { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); }
.distance-list span { color: var(--ink-soft); }

.booking-cta { background: var(--ink); color: var(--white); }
.booking-cta-inner { min-height: 400px; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.booking-cta h2 { max-width: 800px; margin-bottom: 18px; color: var(--white); }
.booking-cta p { margin: 0; color: rgba(255, 255, 255, 0.64); }

.site-footer {
    padding: 0 0 32px;
    overflow: hidden;
    background: #1c1d1a;
    color: var(--white);
}
.footer-booking-cta {
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(115deg, #20211e 0%, #1a1b18 100%);
}
.footer-booking-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 7vw, 110px);
    min-height: 275px;
    padding-block: 58px;
}
.footer-booking-cta-inner > div { max-width: 790px; }
.footer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.72);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.footer-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(255,255,255,.45);
}
.footer-booking-cta h2 {
    max-width: 760px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(2.45rem, 4.4vw, 4.35rem);
}
.footer-booking-cta p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.61);
}
.footer-booking-button {
    flex: 0 0 auto;
    min-width: 286px;
    height: 62px;
    min-height: 62px;
    padding: 0 34px;
    line-height: 1;
    text-align: center;
}
.footer-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(190px, .95fr) minmax(260px, 1.05fr);
    gap: 0;
    padding-block: 62px 58px;
}
.footer-intro {
    padding-right: clamp(42px, 6vw, 88px);
}
.footer-column {
    padding-left: clamp(38px, 5vw, 76px);
    border-left: 1px solid rgba(255,255,255,.12);
}
.footer-brand-logo {
    display: block;
    width: 178px;
    height: auto;
    margin: 0 0 24px;
    filter: invert(1);
    opacity: .96;
}
.footer-intro p {
    max-width: 455px;
    margin: 0;
    color: rgba(255,255,255,.58);
}
.site-footer h3 {
    position: relative;
    margin-bottom: 34px;
    color: var(--white);
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.site-footer h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-top: 16px;
    background: rgba(255,255,255,.28);
}
.site-footer a:not(.button),
.site-footer .footer-contact p {
    display: block;
    margin-bottom: 14px;
    color: rgba(255,255,255,.68);
}
.site-footer a { transition: color var(--transition), transform var(--transition); }
.site-footer a:hover { color: var(--white); }
.footer-navigation a:hover,
.footer-contact a:hover { transform: translateX(3px); }
.footer-contact p { max-width: none; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.48);
}
.footer-bottom div { display: flex; gap: 28px; }
.footer-bottom a { margin: 0; color: rgba(255,255,255,.58); }

@media (max-width: 900px) {
    .footer-booking-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
    }
    .footer-booking-button { min-width: min(100%, 320px); }
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 48px;
    }
    .footer-intro {
        grid-column: 1 / 3;
        padding-right: 0;
    }
    .footer-navigation { padding-left: 0; border-left: 0; }
}

@media (max-width: 620px) {
    .footer-booking-cta-inner { padding-block: 48px; }
    .footer-booking-button { width: 100%; min-width: 0; }
    .footer-main-grid { grid-template-columns: 1fr; padding-block: 50px 42px; }
    .footer-intro { grid-column: auto; }
    .footer-column {
        padding: 34px 0 0;
        border-top: 1px solid rgba(255,255,255,.12);
        border-left: 0;
    }
    .footer-brand-logo { width: 154px; }
    .footer-bottom { flex-direction: column; }
}

.page-hero { position: relative; min-height: 68vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); }
.page-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.page-hero-apartment .page-hero-media { object-position: center 54%; }
.page-hero-location .page-hero-media { object-position: center 58%; }
.page-hero-booking .page-hero-media { object-position: center 50%; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(13,14,12,.68), rgba(13,14,12,.08) 70%); }
.page-hero-content { position: relative; z-index: 2; padding-bottom: clamp(60px, 9vw, 110px); }
.page-hero h1 { margin-bottom: 16px; font-size: clamp(3.4rem, 7vw, 6.7rem); color: var(--white); }
.page-hero p { margin: 0; color: rgba(255,255,255,.78); font-size: 1.2rem; }
.article-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.article-heading { position: sticky; top: 130px; align-self: start; }
.article-copy { max-width: 750px; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.room-card { background: var(--paper); }
.room-card img { width: 100%; aspect-ratio: 1.1; object-fit: cover; }
.room-card div { padding: 30px; }
.room-card div > span { color: var(--olive); font-family: var(--serif); font-style: italic; }
.room-card h3 { margin: 20px 0 10px; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.info-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.check-list, .rule-list { list-style: none; padding: 0; margin: 40px 0 0; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.check-list li { padding: 16px 0 16px 30px; border-bottom: 1px solid var(--line); position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--olive); }
.rule-list li { display: grid; grid-template-columns: 180px 1fr; gap: 25px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.rule-list span { color: var(--ink-soft); }
.map-section iframe { display: block; width: 100%; height: 520px; border: 0; filter: saturate(.75) contrast(.95); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.experience-card { min-height: 280px; padding: 42px; background: var(--paper); }
.experience-card span { color: var(--olive); font-family: var(--serif); font-style: italic; }
.experience-card h3 { margin-top: 60px; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }

.booking-intro { background: var(--cream); border-bottom: 1px solid var(--line); }
.booking-highlights { display: grid; grid-template-columns: repeat(3, 1fr); }
.booking-highlights > div { display: grid; grid-template-columns: auto 1fr; column-gap: 20px; padding: 34px 40px; border-inline-start: 1px solid var(--line); }
.booking-highlights > div:last-child { border-inline-end: 1px solid var(--line); }
.booking-highlights span { grid-row: 1 / 3; color: var(--olive); font-family: var(--serif); font-style: italic; }
.booking-highlights strong { font-size: 1rem; }
.booking-highlights small { color: var(--ink-soft); }
.booking-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.booking-copy { position: sticky; top: 130px; }
.booking-note { margin-top: 40px; padding: 24px; border: 1px solid var(--line); background: var(--sand-light); }
.booking-note p { margin: 8px 0 0; font-size: .92rem; }
.form-card { padding: clamp(28px, 5vw, 58px); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 20px; }
.form-grid.two-columns { grid-template-columns: 1fr 1fr; }
.form-card label:not(.checkbox-label) { display: block; margin-bottom: 20px; font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.form-card label span { color: #9d493c; }
input, select, textarea { width: 100%; margin-top: 8px; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
input, select { height: 54px; padding: 0 15px; }
textarea { padding: 15px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(120,128,113,.12); }
.checkbox-label { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 24px; font-size: .9rem; }
.checkbox-label input { width: 18px; height: 18px; margin: 4px 0 0; }
.checkbox-label a { text-decoration: underline; }
.form-errors, .form-success { margin-bottom: 24px; padding: 20px 22px; }
.form-errors { border: 1px solid #c9877b; background: #fff3f0; }
.form-success { border: 1px solid #9db09b; background: #f0f7ef; }
.form-errors ul { margin-bottom: 0; }
.form-errors p, .form-success p { margin-bottom: 0; }
.honeypot { position: absolute !important; left: -10000px !important; }

.legal-content { padding-top: 180px; }
.legal-content h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
.legal-content h2 { margin-top: 50px; font-size: 2rem; }
.legal-content a { text-decoration: underline; }

.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; overflow-y: auto; padding: clamp(16px, 3vw, 48px); background: rgba(8, 9, 8, .94); }
.lightbox[hidden] { display: none; }
.cookie-banner { position: fixed; z-index: 250; left: 24px; right: 24px; bottom: 24px; display: flex; justify-content: space-between; align-items: center; gap: 30px; max-width: 900px; margin-inline: auto; padding: 22px 24px; background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--line); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 3px 0 0; font-size: .9rem; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .site-navigation { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; background: var(--paper); color: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: var(--transition); }
    .site-navigation.is-open { opacity: 1; visibility: visible; transform: none; }
    .site-navigation > a:not(.button) { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; text-transform: none; letter-spacing: 0; }
    .menu-toggle { position: relative; z-index: 2; display: block; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature-card:nth-child(2) { border-right: 1px solid var(--line); }
    .feature-card:nth-child(n+3) { border-top: 1px solid var(--line); }
    .split-layout, .split-layout.reverse, .article-layout, .booking-layout { grid-template-columns: 1fr; gap: 60px; }
    .image-stack { min-height: 630px; }
    .content-column { max-width: none; }
    .article-heading, .booking-copy { position: static; }
    .room-grid, .experience-grid { grid-template-columns: 1fr 1fr; }
    .editorial-gallery { grid-template-rows: 270px 270px; }
    .info-columns { gap: 55px; }
    .booking-highlights { grid-template-columns: 1fr; }
    .booking-highlights > div { border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .hero-badge { display: none; }
}

@media (max-width: 700px) {
    .container, .container-wide { width: min(100% - 32px, 1180px); }
    .header-inner { min-height: 76px; }
    .brand-copy small { display: none; }
    .hero { min-height: 88svh; }
    .hero-content { padding-bottom: 62px; }
    .hero-copy h1 { font-size: clamp(3.2rem, 17vw, 5.4rem); }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; padding: 34px 22px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
    .feature-card:first-child { border-top: 0; }
    .feature-card h2 { margin-top: 25px; }
    .image-stack { min-height: 500px; }
    .image-frame-main { right: 10%; }
    .image-frame-small { width: 46%; height: 38%; border-width: 7px; }
    .stats-row { gap: 12px; }
    .stats-row strong { font-size: 1.6rem; }
    .mosaic-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 220px 220px; }
    .gallery-large { grid-column: 1 / 3; grid-row: auto; }
    .gallery-item:nth-child(4) { grid-column: 1 / 3; }
    .editorial-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(4, 340px); }
    .editorial-photo-wide, .editorial-photo-tall { grid-column: auto; grid-row: auto; }
    .booking-cta-inner { min-height: 480px; flex-direction: column; align-items: flex-start; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; }
    .room-grid, .info-columns, .experience-grid { grid-template-columns: 1fr; }
    .check-list { grid-template-columns: 1fr; }
    .rule-list li { grid-template-columns: 1fr; gap: 5px; }
    .form-grid.two-columns { grid-template-columns: 1fr; gap: 0; }
    .form-card { padding: 28px 20px; }
    .cookie-banner { flex-direction: column; align-items: stretch; left: 12px; right: 12px; bottom: 12px; }
    .cookie-actions .button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Live beschikbaarheidskalender */
.availability-section { background: var(--sand-light); }
.availability-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
    gap: clamp(40px, 8vw, 110px);
    align-items: end;
    margin-bottom: 52px;
}
.availability-heading h2 { max-width: 760px; margin-bottom: 0; }
.availability-heading > p { max-width: 520px; margin: 0 0 9px; }
.availability-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 28px 70px rgba(32, 30, 25, .09);
}
.availability-toolbar {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    min-height: 78px;
    border-bottom: 1px solid var(--line);
}
.calendar-nav {
    align-self: stretch;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.3rem;
    transition: background var(--transition), opacity var(--transition);
}
.calendar-nav:first-child { border-right: 1px solid var(--line); }
.calendar-nav:last-child { border-left: 1px solid var(--line); }
.calendar-nav:hover:not(:disabled) { background: var(--sand-light); }
.calendar-nav:disabled { cursor: default; opacity: .28; }
.availability-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--ink-soft);
    font-size: .84rem;
    text-align: center;
}
.status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #a4a6a0;
}
.availability-status.is-loading .status-dot { animation: status-pulse 1.2s ease-in-out infinite; }
.availability-status.is-success .status-dot { background: #71836b; }
.availability-status.is-warning .status-dot { background: #b78d45; }
.availability-status.is-error .status-dot { background: #a95d50; }
@keyframes status-pulse { 50% { opacity: .28; transform: scale(.8); } }

.calendar-months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}
.calendar-month { padding: clamp(28px, 4vw, 48px); }
.calendar-month + .calendar-month { border-left: 1px solid var(--line); }
.calendar-month h3 {
    margin-bottom: 26px;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
}
.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}
.calendar-weekdays { margin-bottom: 10px; }
.calendar-weekdays span {
    color: var(--ink-soft);
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
}
.calendar-day {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    min-width: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: .86rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.calendar-day:not(:disabled):hover {
    border-color: var(--olive);
    transform: translateY(-1px);
}
.calendar-day.is-empty { pointer-events: none; }
.calendar-day.is-past { color: rgba(36, 37, 34, .25); cursor: default; }
.calendar-day.is-unavailable {
    background: #efe1dc;
    color: #9d6258;
    cursor: not-allowed;
    text-decoration: line-through;
}
.calendar-day.is-turnover::after {
    content: "";
    position: absolute;
    bottom: 5px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--olive);
}
.calendar-day.is-today:not(.is-unavailable) { border-color: var(--line); font-weight: 700; }
.calendar-day.is-selection-range {
    border-radius: 0;
    background: #e6e8e2;
}
.calendar-day.is-selection-start,
.calendar-day.is-selection-end {
    z-index: 1;
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
}
.calendar-footer {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    align-items: center;
    padding: 22px clamp(28px, 4vw, 48px);
    border-top: 1px solid var(--line);
    background: var(--cream);
}
.calendar-footer p { max-width: 530px; margin: 0; font-size: .82rem; text-align: right; }
.calendar-legend { display: flex; gap: 22px; flex-wrap: wrap; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: .78rem; }
.legend-swatch { width: 13px; height: 13px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); }
.legend-swatch.is-unavailable { border-color: transparent; background: #efe1dc; }
.legend-swatch.is-selected { border-color: var(--ink); background: var(--ink); }
.booking-form-section { background: var(--paper); }
.date-availability-message {
    margin: -3px 0 22px;
    padding: 12px 15px;
    border: 1px solid var(--line);
    background: var(--sand-light);
    color: var(--ink-soft);
    font-size: .86rem;
}
.date-availability-message.is-success { border-color: #a8b7a3; background: #f0f6ee; color: #52624e; }
.date-availability-message.is-error { border-color: #d2a197; background: #fff3f0; color: #8e4c41; }
.date-availability-message.is-info { border-color: var(--line); }
.date-availability-message[hidden] { display: none; }

@media (max-width: 980px) {
    .availability-heading { grid-template-columns: 1fr; gap: 24px; }
    .availability-heading > p { max-width: 720px; }
    .calendar-footer { align-items: flex-start; flex-direction: column; }
    .calendar-footer p { max-width: none; text-align: left; }
}

@media (max-width: 700px) {
    .availability-toolbar { grid-template-columns: 50px 1fr 50px; }
    .availability-status { padding-inline: 10px; font-size: .75rem; }
    .calendar-months { grid-template-columns: 1fr; }
    .calendar-month { padding: 28px 18px 34px; }
    .calendar-month:nth-child(2) { display: none; }
    .calendar-month + .calendar-month { border-left: 0; }
    .calendar-grid, .calendar-weekdays { gap: 3px; }
    .calendar-day { font-size: .82rem; }
    .calendar-footer { padding: 20px; }
    .calendar-legend { gap: 14px; }
}

/* Happ Knokke-logo — originele stijl, enkel transparant gemaakt */
.brand { min-width: 128px; }
.brand-logo {
    display: block;
    width: 122px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    transition: filter var(--transition), opacity var(--transition);
}
body:not(.legal-page) .site-header:not(.is-scrolled) .brand-logo { filter: invert(1); }
.footer-brand-logo {
    display: block;
    width: 152px;
    height: auto;
    margin: 0 0 22px;
    filter: invert(1);
    opacity: .94;
}

/* Prijsintro op de boekingspagina */
.booking-pricing-section { background: var(--paper); border-bottom: 1px solid var(--line); }
.booking-pricing-layout {
    display: grid;
    grid-template-columns: minmax(300px, .76fr) minmax(0, 1.34fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: stretch;
}
.season-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
    padding: clamp(38px, 5vw, 66px);
    overflow: hidden;
    background:
        linear-gradient(rgba(32, 31, 27, .76), rgba(32, 31, 27, .76)),
        url('/assets/images/apartment/curated/living-overview.webp') center / cover;
    color: var(--white);
}
.season-quote::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, .28);
    pointer-events: none;
}
.season-quote > * { position: relative; z-index: 1; }
.season-quote .eyebrow { color: rgba(255,255,255,.72); }
.season-quote-kicker {
    margin: 0 0 22px;
    color: rgba(255,255,255,.78);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.season-quote blockquote {
    margin: 0 0 28px;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 4.2vw, 4.5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.035em;
}
.season-quote blockquote strong { display: inline-block; margin-top: 10px; font-weight: 500; }
.season-quote > p:not(.season-quote-kicker) { max-width: 460px; margin-bottom: 28px; color: rgba(255,255,255,.78); }
.price-fineprint { display: flex; flex-direction: column; gap: 5px; color: rgba(255,255,255,.68); font-size: .78rem; }

.compact-price-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 5vw, 64px);
    background: var(--white);
    border: 1px solid var(--line);
}
.compact-price-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .62fr);
    gap: 30px;
    align-items: end;
    margin-bottom: 38px;
}
.compact-price-heading h2 { max-width: 630px; margin: 0; font-size: clamp(2.15rem, 3.7vw, 3.7rem); }
.compact-price-heading > p { margin: 0 0 7px; font-size: .92rem; }
.compact-price-table { border-top: 1px solid var(--ink); }
.price-table-row {
    display: grid;
    grid-template-columns: 1.15fr .7fr .7fr .95fr;
    gap: 18px;
    align-items: center;
    min-height: 76px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.price-table-row > span:not(:first-child) { text-align: right; }
.price-table-row small { display: block; color: var(--ink-soft); font-size: .68rem; }
.price-table-head {
    min-height: 52px;
    color: var(--ink-soft);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.price-table-head > span:not(:first-child) { text-align: right; }
.compact-price-note { margin: 22px 0 0; font-size: .78rem; }
.long-stay-banner {
    display: grid;
    gap: 4px;
    margin-top: 30px;
    padding: 22px 24px;
    background: var(--sand-light);
    border-left: 3px solid var(--olive);
}
.long-stay-banner strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.long-stay-banner span { color: var(--ink); font-size: .9rem; }
.long-stay-banner small { color: var(--ink-soft); }

/* Dynamische prijsberekening */
.live-price-card {
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 45px rgba(32, 30, 25, .08);
}
.live-price-empty {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: center;
    padding: 26px;
}
.live-price-empty[hidden], .live-price-content[hidden] { display: none; }
.live-price-empty strong { display: block; margin-bottom: 4px; }
.live-price-empty p { margin: 0; font-size: .85rem; }
.live-price-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--olive);
    font-family: var(--serif);
    font-size: 1.6rem;
}
.live-price-content { padding: 26px; }
.live-price-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.live-price-header > div span { display: block; color: var(--olive); font-size: .67rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.live-price-header > div strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.live-price-header > span { color: var(--ink-soft); font-size: .82rem; white-space: nowrap; }
.live-price-lines { padding: 14px 0; border-bottom: 1px solid var(--line); }
.live-price-line, .live-price-total, .deposit-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 0;
    font-size: .88rem;
}
.live-price-line strong { font-weight: 500; }
.live-price-line.is-discount { color: #61715b; }
.live-price-total { align-items: end; padding-top: 18px; }
.live-price-total span { font-family: var(--serif); font-size: 1.25rem; }
.live-price-total strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.deposit-line { margin-top: 8px; padding-top: 12px; border-top: 1px dashed var(--line); color: var(--ink-soft); }
.deposit-line strong { color: var(--ink); }
.live-price-message { margin: 14px 0 0; font-size: .78rem; }
.live-price-message.is-warning { color: #9d493c; }
.form-price-disclaimer { margin: 14px 0 0; color: var(--ink-soft); font-size: .74rem; text-align: center; }

@media (max-width: 980px) {
    .booking-pricing-layout { grid-template-columns: 1fr; }
    .season-quote { min-height: 450px; }
    .compact-price-heading { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 700px) {
    .brand { min-width: 0; }
    .brand-logo { width: 92px; max-height: 58px; }
    .footer-brand-logo { width: 132px; }
    .season-quote { min-height: 420px; padding: 34px 28px; }
    .season-quote::after { inset: 14px; }
    .compact-price-card { padding: 30px 22px; }
    .price-table-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        min-height: auto;
        padding: 18px 0;
    }
    .price-table-row > :first-child { grid-column: 1 / 4; margin-bottom: 3px; }
    .price-table-row > span:not(:first-child), .price-table-head > span:not(:first-child) { text-align: left; }
    .price-table-head { display: none; }
    .price-table-row span:nth-child(2)::before { content: "Zo.–do. "; display: block; color: var(--ink-soft); font-size: .62rem; text-transform: uppercase; }
    .price-table-row span:nth-child(3)::before { content: "Vr.–za. "; display: block; color: var(--ink-soft); font-size: .62rem; text-transform: uppercase; }
    .price-table-row span:nth-child(4)::before { content: "7 nachten "; display: block; color: var(--ink-soft); font-size: .62rem; text-transform: uppercase; }
    .live-price-header { flex-direction: column; }
    .live-price-total strong { font-size: 1.7rem; }
}

/* Subtiele taalkiezer — dezelfde huisstijl, transparant met kader */
.language-selector {
    position: relative;
    flex: 0 0 auto;
    color: inherit;
}
.language-selector summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 58px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    list-style: none;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .82;
    transition: opacity var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.language-selector summary::-webkit-details-marker { display: none; }
.language-selector summary::marker { content: ""; }
.language-selector summary:hover,
.language-selector[open] summary { opacity: 1; background: rgba(255,255,255,.12); }
.language-selector summary svg { width: 10px; height: 7px; transition: transform var(--transition); }
.language-selector[open] summary svg { transform: rotate(180deg); }
.language-dropdown {
    position: absolute;
    z-index: 180;
    top: calc(100% + 9px);
    right: 0;
    min-width: 168px;
    padding: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 18px 45px rgba(25,24,21,.16);
}
.language-dropdown a {
    display: block;
    margin: 0;
    padding: 9px 11px;
    border-radius: 2px;
    color: var(--ink-soft);
    font-size: .82rem;
    letter-spacing: 0;
    text-transform: none;
}
.language-dropdown a:hover,
.language-dropdown a[aria-current="true"] { background: var(--sand-light); color: var(--ink); transform: none; }
.site-header.is-scrolled .language-selector summary,
.legal-page .language-selector summary { border-color: rgba(36,37,34,.35); }
.footer-bottom-actions { display: flex; align-items: center; gap: 28px; }
.language-selector-footer summary {
    min-width: 54px;
    min-height: 34px;
    padding-inline: 10px;
    border-color: rgba(255,255,255,.34);
    color: rgba(255,255,255,.72);
    font-size: .62rem;
}
.language-selector-footer .language-dropdown { top: auto; bottom: calc(100% + 9px); }

.date-display-input { font-variant-numeric: tabular-nums; }

@media (max-width: 980px) {
    .language-selector-header summary { border-color: rgba(36,37,34,.35); }
    .language-selector-header .language-dropdown { position: fixed; top: auto; right: 50%; bottom: 80px; transform: translateX(50%); }
}
@media (max-width: 620px) {
    .footer-bottom-actions { width: 100%; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
}

@media (max-width: 700px) {
    .price-table-row span[data-label]::before {
        content: attr(data-label);
        display: block;
        color: var(--ink-soft);
        font-size: .62rem;
        text-transform: uppercase;
    }
    .price-table-row span:nth-child(2)::before,
    .price-table-row span:nth-child(3)::before,
    .price-table-row span:nth-child(4)::before { content: attr(data-label); }
}
.language-dropdown { display: block; }

/* Interactieve locatiekaart */
.location-map-section {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.location-map-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
    gap: clamp(40px, 8vw, 110px);
    align-items: end;
    margin-bottom: 46px;
}
.location-map-heading h2 { margin-bottom: 0; }
.location-map-heading > p { max-width: 560px; margin: 0 0 10px; }
.location-map-shell {
    position: relative;
    z-index: 0;
    isolation: isolate;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid var(--line);
    background: #ebe5db url('/assets/images/map-placeholder.svg') center / cover no-repeat;
    box-shadow: 0 28px 70px rgba(32, 30, 25, .08);
}
.location-map {
    width: 100%;
    height: 560px;
    background: transparent;
}
.location-map-fallback {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 30px;
    pointer-events: none;
}
.location-map-shell.is-ready .location-map-fallback { display: none; }
.location-map-fallback-card {
    max-width: 370px;
    padding: 32px 38px;
    border: 1px solid rgba(43, 42, 38, .14);
    background: rgba(250, 247, 241, .94);
    box-shadow: var(--shadow);
    text-align: center;
    pointer-events: auto;
}
.location-map-fallback-card strong { display: block; margin: 15px 0 7px; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.location-map-fallback-card p { margin: 0 0 16px; font-size: .92rem; }
.location-map-fallback-card a { text-decoration: underline; text-underline-offset: 4px; }
.map-fallback-pin {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 7px solid var(--ink);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}
.location-map-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 0 48px;
    border-bottom: 1px solid var(--line);
}
.location-map-meta p { display: flex; gap: 18px; margin: 0; }
.location-map-meta p span { color: var(--ink-soft); }
.text-link { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.nearby-heading { max-width: 780px; margin: 70px 0 36px; }
.nearby-heading h2 { margin-bottom: 0; }
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}
.nearby-card { min-height: 245px; padding: 34px; background: var(--white); }
.nearby-distance { color: var(--olive); font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.nearby-card h3 { margin: 38px 0 10px; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.nearby-card p { margin: 0; font-size: .92rem; }
.distance-note { margin: 18px 0 0; color: var(--ink-soft); font-size: .78rem; }
.leaflet-container { font-family: var(--sans); background: #ebe5db; }
.leaflet-control-zoom a { color: var(--ink); }
.leaflet-control-attribution { font-size: 10px; }
.location-pin { border: 0; background: transparent; }
.location-pin span {
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--olive);
    box-shadow: 0 5px 18px rgba(21, 22, 20, .28);
}
.location-pin-primary span { border-width: 7px; background: var(--ink); }
.location-popup { display: grid; gap: 4px; min-width: 165px; }
.location-popup strong { font-family: var(--serif); font-size: 1rem; font-weight: 600; }
.location-popup span { color: var(--ink-soft); font-size: .78rem; }
.leaflet-popup-content-wrapper { border-radius: 0; box-shadow: 0 14px 34px rgba(20, 20, 18, .18); }
.leaflet-popup-tip { box-shadow: none; }

.market-schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.market-schedule-card {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--line);
    background: var(--white);
}
.market-schedule-card > span {
    color: var(--olive);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.market-schedule-card h3 {
    margin: 12px 0 24px;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    font-weight: 500;
}
.market-schedule-card ul { margin: 0; padding: 0; list-style: none; }
.market-schedule-card li { padding: 13px 0; border-top: 1px solid var(--line); }
.market-more { margin: 28px 0 0; }

.seasonal-hero-media { object-position: center 54%; }
.seasonal-summer .seasonal-hero-media { object-position: center 62%; }
.seasonal-weekend .seasonal-hero-media { object-position: center 55%; }
.seasonal-autumn .seasonal-hero-media { object-position: center 58%; }

.footer-bottom .footer-credits { display: block; }
.footer-credit-line,
.footer-built-by,
.site-footer .footer-puregraphics-link {
    display: inline-flex;
    align-items: center;
}
.footer-credit-line { gap: 8px; }
.footer-built-by { gap: 5px; font-size: .78rem; }
.site-footer .footer-puregraphics-link { margin: 0; }
.site-footer .footer-puregraphics-link:hover { transform: translateY(-1px); }
.footer-puregraphics-link img { display: block; width: 140px; height: auto; }

/* Alle juridische footeracties delen exact dezelfde middenlijn en klikhoogte. */
.footer-bottom-actions {
    min-height: 34px;
    align-items: center;
}
.footer-bottom-actions > .language-selector-footer,
.footer-bottom-actions > a,
.footer-bottom-actions > .footer-cookie-settings {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin: 0;
    line-height: 1;
}
.footer-bottom-actions > .language-selector-footer { height: 34px; }
.footer-bottom-actions > .language-selector-footer > summary { height: 34px; }

@media (max-width: 980px) {
    .location-map-heading { grid-template-columns: 1fr; gap: 20px; }
    .nearby-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .location-map-shell, .location-map { min-height: 440px; height: 440px; }
    .location-map-meta { align-items: flex-start; flex-direction: column; gap: 16px; }
    .location-map-meta p { flex-direction: column; gap: 3px; }
    .nearby-grid { grid-template-columns: 1fr; }
    .nearby-card { min-height: auto; }
    .market-schedule-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .footer-bottom-actions {
        justify-content: flex-start;
        row-gap: 12px;
    }
    .footer-credit-line { flex-wrap: wrap; row-gap: 5px; }
}


/* Correcties augustus 2026: mobiel menu, footerknop, bedformaten en kalenderinformatie */
.mobile-navigation-secondary { display: none; }
.site-footer a.button-light,
.site-footer a.footer-booking-button { color: var(--ink); }
.site-footer a.button-light:hover,
.site-footer a.footer-booking-button:hover { color: var(--ink); background: var(--sand); }

.bed-size-box {
    display: grid;
    grid-template-columns: minmax(125px, .36fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 34px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.bed-size-box > strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.bed-size-list { display: grid; min-width: 0; }
.bed-size-list span { display: block; padding: 0 0 11px; color: var(--ink-soft); line-height: 1.55; }
.bed-size-list span + span { padding-top: 11px; border-top: 1px solid var(--line); }

.booking-cancellation {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px !important;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
}
.booking-cancellation span { color: var(--olive); }

.availability-calendar { position: relative; }
.calendar-minimum-popover {
    position: absolute;
    z-index: 35;
    width: min(300px, calc(100% - 24px));
    padding: 13px 16px;
    border: 1px solid rgba(36,37,34,.18);
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 16px 42px rgba(20,20,18,.22);
    font-size: .78rem;
    line-height: 1.45;
    text-align: center;
    transform: translateX(-50%);
}
.calendar-minimum-popover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    width: 11px;
    height: 11px;
    background: var(--ink);
    transform: translateX(-50%) rotate(45deg);
}
.calendar-minimum-popover[hidden] { display: none; }
.calendar-minimum-popover.is-loading { color: rgba(255,255,255,.7); }

@media (max-width: 980px) {
    body.menu-open { overflow: hidden; }
    body.menu-open .site-header {
        color: var(--ink);
        background: rgba(248,245,239,.995);
        box-shadow: 0 8px 30px rgba(20,20,18,.08);
    }
    body.menu-open .brand-logo { filter: none !important; }
    .brand, .menu-toggle { position: relative; z-index: 202; }
    .menu-toggle span:not(.sr-only) {
        height: 2px;
        margin: 6px 0;
        border-radius: 2px;
        transition: transform var(--transition), opacity var(--transition);
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .site-navigation {
        z-index: 200;
        inset: 0;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        padding: 112px max(24px, calc((100vw - 640px) / 2)) 40px;
        background: rgba(248,245,239,.995);
        color: var(--ink);
        text-align: left;
    }
    .site-navigation > a:not(.button) {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-size: clamp(1.55rem, 7vw, 2rem);
    }
    .site-navigation > a:not(.button)::after { display: none; }
    .navigation-booking {
        order: 4;
        width: 100%;
        margin: 24px 0 18px;
        background: var(--ink) !important;
        color: var(--white) !important;
    }
    .language-selector-header { order: 5; width: 100%; margin-bottom: 18px; }
    .language-selector-header summary {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 0 16px;
        border-color: var(--line);
        border-radius: 0;
        background: transparent;
        color: var(--ink);
    }
    .language-selector-header .language-dropdown {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 6px;
        padding: 6px 0;
        border: 1px solid var(--line);
        background: var(--white);
        box-shadow: none;
        transform: none;
    }
    .language-selector-header .language-dropdown a { padding: 12px 16px; border-bottom: 1px solid var(--line); }
    .language-selector-header .language-dropdown a:last-child { border-bottom: 0; }
    .mobile-navigation-secondary {
        order: 6;
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 8px;
        width: 100%;
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }
    .mobile-navigation-secondary a {
        display: block;
        padding: 9px 4px;
        color: var(--ink-soft);
        font-size: .75rem;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .bed-size-box { grid-template-columns: 1fr; gap: 16px; }
    .calendar-minimum-popover { font-size: .75rem; }
}

@media (max-width: 420px) {
    .mobile-navigation-secondary { grid-template-columns: 1fr; gap: 0; }
    .mobile-navigation-secondary a { text-align: left; border-bottom: 1px solid var(--line); }
}


/* Uitgebreide locatiegids met eigen beelden */
.location-intro-image img { object-position: center 58%; }
.location-guide-section { overflow: hidden; }
.location-guide-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
    gap: clamp(40px, 8vw, 110px);
    align-items: end;
    margin-bottom: 48px;
}
.location-guide-heading h2 { margin-bottom: 0; }
.location-guide-heading > p { max-width: 560px; margin: 0 0 9px; }
.location-feature-grid { display: grid; gap: 18px; }
.location-feature-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.location-feature-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.location-feature-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
}
.location-feature-card figure {
    position: relative;
    overflow: hidden;
    height: 310px;
    margin: 0;
    background: var(--sand);
}
.location-feature-grid-four .location-feature-card:nth-child(2) figure,
.location-feature-grid-four .location-feature-card:nth-child(3) figure { height: 360px; }
.location-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.location-feature-card:hover img { transform: scale(1.035); }
.location-feature-card:nth-child(2) img { object-position: center 44%; }
.location-feature-card:nth-child(3) img { object-position: center 45%; }
.location-feature-card:nth-child(4) img { object-position: center 58%; }
.location-feature-card > div { padding: 28px 28px 32px; }
.location-feature-card h3 {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 500;
}
.location-feature-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.location-feature-card-wide figure { height: 390px; }
.location-feature-card-wide > div { padding: 30px 34px 36px; }
.places-details {
    margin-top: 34px;
    border: 1px solid var(--line);
    background: var(--paper);
}
.places-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 22px 28px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.35rem;
    list-style: none;
}
.places-details summary::-webkit-details-marker { display: none; }
.details-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--sans);
    font-size: 1.25rem;
    transition: transform var(--transition), background var(--transition);
}
.places-details[open] .details-icon { transform: rotate(45deg); background: var(--sand-light); }
.places-details-content { padding: 0 28px 32px; border-top: 1px solid var(--line); }
.places-details-content > p { max-width: 760px; margin: 28px 0 34px; }
.places-columns { display: grid; grid-template-columns: 1.45fr .75fr; gap: clamp(45px, 7vw, 95px); }
.places-columns h3 { margin: 0 0 22px; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.places-list { list-style: none; margin: 0; padding: 0; }
.places-list li {
    display: grid;
    gap: 4px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.places-list strong { font-size: .96rem; }
.places-list span { color: var(--ink-soft); font-size: .83rem; }
.places-list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 54px; }
.places-details-compact { margin-top: 30px; }
.location-preview .wide-image img { object-position: center 55%; }

@media (max-width: 1100px) {
    .location-feature-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .location-feature-grid-four .location-feature-card figure { height: 360px; }
}
@media (max-width: 900px) {
    .location-guide-heading { grid-template-columns: 1fr; gap: 18px; }
    .places-columns { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 700px) {
    .page-hero-location .page-hero-media { object-position: 62% center; }
    .location-feature-grid-four,
    .location-feature-grid-two { grid-template-columns: 1fr; }
    .location-feature-grid-four .location-feature-card figure,
    .location-feature-card-wide figure { height: 330px; }
    .location-feature-card > div,
    .location-feature-card-wide > div { padding: 24px; }
    .places-details summary { min-height: 72px; padding: 18px 20px; font-size: 1.15rem; }
    .places-details-content { padding: 0 20px 24px; }
    .places-list-grid { grid-template-columns: 1fr; }
}


/* Geselecteerde fotogalerij en slaapindeling */
.sleeping-heading {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
    column-gap: clamp(45px, 8vw, 110px);
    align-items: end;
    margin-bottom: 44px;
}
.sleeping-heading .eyebrow { grid-column: 1 / -1; }
.sleeping-heading h2 { margin-bottom: 0; }
.sleeping-heading p { max-width: 620px; margin: 0 0 8px; }
.sleeping-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: var(--line);
    gap: 1px;
}
.sleeping-card {
    min-height: 220px;
    padding: 34px;
    background: var(--paper);
}
.sleeping-card > span {
    display: block;
    color: var(--olive);
    font-family: var(--serif);
    font-style: italic;
}
.sleeping-card h3 {
    margin: 42px 0 10px;
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 500;
}
.sleeping-card p { margin: 0; }

.curated-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}
.gallery-card {
    appearance: none;
    display: block;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--paper);
    color: inherit;
    text-align: left;
    cursor: zoom-in;
    box-shadow: 0 12px 34px rgba(31, 29, 24, .055);
}
.gallery-card figure {
    display: block;
    margin: 0;
}
.gallery-card img {
    display: block;
    width: 100%;
    height: clamp(220px, 21vw, 285px);
    object-fit: cover;
    object-position: center;
    background: var(--sand-light);
    transition: transform 450ms ease, filter 450ms ease;
}
.gallery-card:hover img,
.gallery-card:focus-visible img {
    transform: scale(1.018);
    filter: brightness(.96);
}
.gallery-card:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 4px;
}
.gallery-card figcaption {
    display: block;
    min-height: 118px;
    padding: 19px 20px 22px;
    background: var(--paper);
}
.gallery-card figcaption strong {
    display: block;
    margin-bottom: 7px;
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.45vw, 1.48rem);
    font-weight: 500;
    line-height: 1.12;
}
.gallery-card figcaption span {
    display: block;
    color: var(--ink-soft);
    font-size: .91rem;
    line-height: 1.55;
}

/* Grote fotoviewer zonder buitenkader. Horizontale en verticale foto's blijven volledig zichtbaar. */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: clamp(24px, 3vw, 48px);
    background: rgba(8, 9, 8, .95);
    backdrop-filter: blur(3px);
}
.lightbox[hidden] { display: none; }
.lightbox-shell {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1500px;
    max-height: calc(100dvh - clamp(48px, 6vw, 96px));
    flex-direction: column;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}
.lightbox-stage {
    position: relative;
    display: grid;
    width: 100%;
    height: min(72dvh, 760px);
    min-height: 0;
    padding: 0 clamp(78px, 7vw, 116px);
    place-items: center;
    overflow: visible;
    background: transparent;
}
.lightbox-media {
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    align-items: center;
    justify-content: center;
}
.lightbox-media > img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    opacity: 1;
    transition: opacity 180ms ease;
}
.lightbox-media > img.is-loading { opacity: 0; }
.lightbox-shell.is-landscape .lightbox-media > img {
    max-width: min(1120px, calc(100vw - 240px));
    max-height: min(72dvh, 760px);
}
.lightbox-shell.is-portrait .lightbox-media > img {
    max-width: min(620px, calc(100vw - 190px));
    max-height: min(72dvh, 760px);
}
.lightbox-caption {
    display: grid;
    grid-template-columns: minmax(70px, .35fr) minmax(0, 1fr) minmax(70px, .35fr);
    gap: 8px 24px;
    align-items: start;
    width: min(1120px, calc(100vw - 240px));
    margin: 20px auto 0;
    padding: 0;
    color: var(--white);
    border: 0;
    background: transparent;
}
.lightbox-shell.is-portrait .lightbox-caption {
    width: min(620px, calc(100vw - 190px));
}
.lightbox-counter {
    display: block;
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: 7px;
    color: rgba(255,255,255,.58);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.lightbox-caption strong {
    display: block;
    grid-column: 2;
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.4vw, 2.55rem);
    font-weight: 500;
    line-height: 1.08;
}
.lightbox-caption p {
    grid-column: 2;
    max-width: 70ch;
    margin: 0 auto;
    color: rgba(255,255,255,.72);
    text-align: center;
    font-size: .98rem;
    line-height: 1.65;
}
.lightbox-close {
    position: fixed;
    z-index: 4;
    top: clamp(14px, 2vw, 30px);
    right: clamp(14px, 2vw, 30px);
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: rgba(12,13,11,.72);
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
}
.lightbox-nav {
    position: fixed;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 56px;
    height: 56px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    background: rgba(25,26,23,.72);
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 200ms ease, transform 200ms ease;
    backdrop-filter: blur(8px);
}
.lightbox-nav:hover { background: rgba(56,57,52,.94); transform: translateY(-50%) scale(1.04); }
.lightbox-nav:focus-visible,
.lightbox-close:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.lightbox-prev { left: clamp(14px, 4vw, 68px); }
.lightbox-next { right: clamp(14px, 4vw, 68px); }

@media (max-width: 1180px) {
    .curated-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .gallery-card img { height: clamp(230px, 29vw, 310px); }
    .lightbox-stage { padding-inline: 76px; }
    .lightbox-shell.is-landscape .lightbox-media > img,
    .lightbox-caption { max-width: calc(100vw - 180px); }
}

@media (max-width: 900px) {
    .curated-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-card img { height: clamp(235px, 42vw, 330px); }
    .lightbox { padding: 20px 14px; }
    .lightbox-shell { max-height: calc(100dvh - 40px); }
    .lightbox-stage { height: min(70dvh, 680px); padding-inline: 58px; }
    .lightbox-shell.is-landscape .lightbox-media > img,
    .lightbox-shell.is-portrait .lightbox-media > img {
        max-width: calc(100vw - 140px);
        max-height: min(70dvh, 680px);
    }
    .lightbox-caption,
    .lightbox-shell.is-portrait .lightbox-caption {
        grid-template-columns: 1fr;
        gap: 8px;
        width: min(760px, calc(100vw - 96px));
        margin-top: 16px;
    }
    .lightbox-counter,
    .lightbox-caption strong,
    .lightbox-caption p {
        grid-column: 1;
        grid-row: auto;
        text-align: center;
    }
    .lightbox-counter { padding-top: 0; }
}

@media (max-width: 620px) {
    .curated-gallery { grid-template-columns: 1fr; gap: 24px; }
    .gallery-card img { height: auto; aspect-ratio: 4 / 3; }
    .gallery-card figcaption { min-height: 0; padding: 17px 18px 20px; }
    .lightbox { padding: 0; }
    .lightbox-shell { min-height: 100dvh; max-height: none; justify-content: center; }
    .lightbox-stage {
        height: calc(100dvh - 190px);
        min-height: 330px;
        padding: 58px 12px 0;
    }
    .lightbox-shell.is-landscape .lightbox-media > img,
    .lightbox-shell.is-portrait .lightbox-media > img {
        max-width: 100%;
        max-height: 100%;
    }
    .lightbox-nav { width: 44px; height: 44px; font-size: 1.25rem; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; }
    .lightbox-caption,
    .lightbox-shell.is-portrait .lightbox-caption {
        width: calc(100% - 36px);
        margin-top: 14px;
        padding-bottom: 20px;
    }
    .lightbox-caption strong { font-size: clamp(1.45rem, 7vw, 2.05rem); }
    .lightbox-caption p { font-size: .92rem; line-height: 1.5; }
}
@media (max-width: 980px) {
    .sleeping-heading { grid-template-columns: 1fr; gap: 18px; }
    .sleeping-heading .eyebrow { grid-column: auto; }
}

@media (max-width: 700px) {
    .sleeping-grid { grid-template-columns: 1fr; }
    .sleeping-card { min-height: auto; padding: 28px 24px; }
    .sleeping-card h3 { margin-top: 24px; }
}


/* Commercieel herwerkte boekingspagina */
.booking-conversion-hero {
    min-height: min(780px, 88svh);
    background-size: cover;
}
.booking-conversion-hero .page-hero-overlay {
    background: linear-gradient(90deg, rgba(13,14,12,.77) 0%, rgba(13,14,12,.46) 43%, rgba(13,14,12,.12) 76%, rgba(13,14,12,.08) 100%), linear-gradient(0deg, rgba(13,14,12,.30), transparent 60%);
}
.booking-hero-content { max-width: 790px; padding-top: 150px; }
.booking-hero-content h1 { max-width: 820px; font-size: clamp(3.4rem, 6.5vw, 6.4rem); }
.booking-hero-content p { max-width: 720px; margin-bottom: 32px; color: rgba(255,255,255,.88); }
.booking-hero-button { min-width: 230px; }

.booking-trust-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.booking-trust-grid { display: grid; grid-template-columns: 1.55fr .72fr 1fr .75fr; align-items: stretch; }
.booking-platform-proof,
.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 108px;
    padding: 24px 26px;
    border-left: 1px solid var(--line);
}
.booking-trust-grid > :last-child { border-right: 1px solid var(--line); }
.booking-trust-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--olive);
    font-family: var(--serif);
}
.booking-platform-proof strong,
.booking-trust-item strong { display: block; font-size: .9rem; line-height: 1.4; }
.booking-platform-links { display: flex; flex-wrap: wrap; gap: 7px 16px; margin-top: 5px; }
.booking-platform-links a { color: var(--ink-soft); font-size: .76rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.booking-platform-links a:hover { color: var(--ink); }

.booking-selector-section { border-bottom: 1px solid var(--line); }
.booking-selector-layout { display: grid; grid-template-columns: minmax(0, 1.48fr) minmax(310px, .62fr); gap: clamp(30px, 4.5vw, 62px); align-items: start; }
.booking-selector-layout .availability-card { min-width: 0; }
.booking-quote-panel { position: sticky; top: 122px; padding: clamp(28px, 3vw, 38px); background: var(--cream); border: 1px solid var(--line); box-shadow: 0 22px 55px rgba(32,30,25,.08); }
.booking-quote-panel .eyebrow { margin-bottom: 12px; }
.booking-quote-panel h3 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(1.8rem, 2.7vw, 2.65rem); font-weight: 500; }
.booking-quote-panel > p { font-size: .88rem; }
.booking-quote-panel .live-price-card { margin-top: 24px; box-shadow: none; }
.booking-quote-cancellation { display: flex; gap: 9px; margin: 20px 0; color: var(--ink); font-size: .82rem; font-weight: 600; }
.booking-quote-cancellation span { color: var(--olive); }
.booking-quote-button { margin-top: 2px; }
.booking-quote-assurance { margin: 12px 0 0 !important; font-size: .68rem !important; line-height: 1.5; text-align: center; }

.booking-process-section { background: var(--paper); border-bottom: 1px solid var(--line); }
.booking-process-section .section-heading { margin-bottom: 46px; }
.booking-process-section .section-heading p { max-width: 680px; margin-inline: auto; }
.booking-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.booking-process-card { min-height: 270px; padding: clamp(30px, 4vw, 48px); background: var(--cream); }
.booking-process-card > span { color: var(--olive); font-family: var(--serif); font-style: italic; }
.booking-process-card h3 { margin: 48px 0 12px; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.booking-process-card p { margin: 0; font-size: .92rem; }

.booking-form-section { scroll-margin-top: 95px; }
.booking-form-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(46px, 7vw, 92px); align-items: start; }
.booking-form-copy { position: sticky; top: 122px; }
.booking-form-copy h2 { max-width: 520px; }
.booking-form-copy > p { max-width: 520px; }
.booking-request-assurance { margin: 4px 0 16px; padding: 13px 16px; background: var(--sand-light); color: var(--ink); font-size: .74rem; font-weight: 600; line-height: 1.5; text-align: center; }

.booking-pricing-heading { max-width: 840px; }
.booking-pricing-heading p { max-width: 700px; margin-inline: auto; }
.compact-price-heading h3 { max-width: 630px; margin: 0; font-family: var(--serif); font-size: clamp(2.15rem, 3.7vw, 3.7rem); font-weight: 500; }

@media (max-width: 1100px) {
    .booking-trust-grid { grid-template-columns: 1.35fr 1fr 1fr; }
    .booking-trust-grid > :last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
    .booking-selector-layout { grid-template-columns: 1fr; }
    .booking-quote-panel { position: static; display: grid; grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 980px) {
    .booking-conversion-hero { min-height: 760px; }
    .booking-trust-grid { grid-template-columns: 1fr 1fr; }
    .booking-platform-proof { grid-column: 1 / -1; border-right: 1px solid var(--line); }
    .booking-trust-grid > :last-child { grid-column: auto; border-top: 0; }
    .booking-process-grid { grid-template-columns: 1fr; }
    .booking-process-card { min-height: auto; }
    .booking-process-card h3 { margin-top: 26px; }
    .booking-form-layout { grid-template-columns: 1fr; }
    .booking-form-copy { position: static; }
}

@media (max-width: 700px) {
    .booking-conversion-hero { min-height: 720px; background-position: 58% center; }
    .booking-hero-content { padding-top: 118px; padding-bottom: 64px; }
    .booking-hero-content h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
    .booking-hero-content p { font-size: 1rem; }
    .booking-hero-button { width: 100%; }
    .booking-trust-grid { grid-template-columns: 1fr; }
    .booking-platform-proof,
    .booking-trust-item { min-height: auto; padding: 20px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .booking-trust-grid > :last-child { border-top: 0; }
    .booking-selector-layout { gap: 28px; }
    .booking-quote-panel { padding: 26px 20px; }
    .booking-process-card { padding: 30px 24px; }
    .booking-request-assurance { font-size: .7rem; }
}

/* Boekingspagina conversielay-out v2 — compacter, zonder lege vlakken */
.page-hero-booking .page-hero-media {
    object-position: center 50%;
}
.booking-conversion-hero {
    min-height: clamp(590px, 72svh, 720px);
    align-items: center;
    padding-top: 92px;
}
.booking-conversion-hero .page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(18,17,14,.77) 0%, rgba(18,17,14,.56) 35%, rgba(18,17,14,.16) 66%, rgba(18,17,14,.04) 100%),
        linear-gradient(0deg, rgba(18,17,14,.22), transparent 56%);
}
.booking-hero-content {
    padding-top: 0;
    padding-bottom: 0;
}
.booking-hero-content .eyebrow { margin-bottom: 16px; }
.booking-hero-content h1 {
    max-width: 640px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 5.4vw, 5.55rem);
}
.booking-hero-content p {
    max-width: 610px;
    margin-bottom: 30px;
    font-size: clamp(1rem, 1.25vw, 1.14rem);
    line-height: 1.65;
}
.booking-hero-button { min-width: 250px; }

.booking-trust-strip { background: var(--cream); }
.booking-trust-grid {
    width: min(1420px, calc(100% - 48px));
    grid-template-columns: 1.18fr repeat(4, 1fr);
    margin-inline: auto;
}
.booking-platform-proof,
.booking-trust-item {
    min-width: 0;
    min-height: 98px;
    gap: 14px;
    padding: 20px 22px;
    border-left: 1px solid var(--line);
}
.booking-trust-grid > :last-child { border-right: 1px solid var(--line); }
.booking-trust-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border: 0;
    color: var(--ink);
}
.booking-trust-icon svg {
    width: 27px;
    height: 27px;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.booking-platform-proof strong,
.booking-trust-item strong {
    font-size: .79rem;
    line-height: 1.35;
}
.booking-platform-proof small,
.booking-trust-item small {
    display: block;
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: .68rem;
    line-height: 1.35;
}
.booking-platform-links { gap: 5px 12px; margin-top: 5px; }
.booking-platform-links a { font-size: .64rem; }

.booking-section-tight { padding: clamp(38px, 4vw, 58px) 0; }
.booking-selector-section { background: #f7f4ee; }
.booking-selector-layout {
    grid-template-columns: minmax(0, 1.56fr) minmax(330px, .72fr);
    gap: clamp(18px, 2.2vw, 30px);
    align-items: start;
}
.booking-calendar-panel,
.booking-quote-panel {
    border: 1px solid rgba(36,37,34,.11);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(32,30,25,.07);
}
.booking-calendar-panel { padding: clamp(24px, 2.8vw, 36px); }
.booking-panel-heading .eyebrow { margin-bottom: 10px; }
.booking-panel-heading h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 3.1vw, 3.05rem);
}
.booking-panel-heading p {
    max-width: 690px;
    margin: 0;
    font-size: .86rem;
    line-height: 1.6;
}
.booking-minimum-hint {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    color: var(--ink-soft);
    font-size: .72rem;
}
.booking-minimum-hint svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    stroke: var(--olive);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.booking-calendar-panel .availability-card {
    margin-top: 24px;
    border-color: rgba(36,37,34,.11);
    box-shadow: none;
}
.booking-calendar-panel .availability-toolbar { min-height: 62px; }
.booking-calendar-panel .calendar-month { padding: clamp(22px, 2.4vw, 34px); }
.booking-calendar-panel .calendar-month h3 {
    margin-bottom: 20px;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}
.booking-calendar-panel .calendar-day { font-size: .8rem; }
.booking-calendar-panel .calendar-footer { padding: 16px 20px; }
.booking-calendar-panel .calendar-footer p { font-size: .68rem; }

.booking-quote-panel {
    position: sticky;
    top: 112px;
    padding: clamp(25px, 2.7vw, 36px);
}
.booking-quote-heading h2 { font-size: clamp(2rem, 3vw, 2.8rem); }
.booking-quote-panel .live-price-card { margin-top: 22px; }
.booking-quote-panel .live-price-empty { padding: 24px 20px; }
.booking-quote-panel .live-price-content { padding: 22px; }
.booking-quote-panel .live-price-total strong { font-size: 1.82rem; }
.booking-quote-benefits {
    display: grid;
    gap: 10px;
    margin: 20px 0 16px;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}
.booking-quote-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink);
    font-size: .74rem;
    line-height: 1.45;
}
.booking-quote-benefits span { color: var(--olive); }
.booking-quote-benefits strong { font-weight: 600; }
.booking-quote-assurance {
    margin: 0 0 12px !important;
    color: var(--ink-soft);
    font-size: .64rem !important;
}

.booking-process-compact-section {
    padding: 0 0 clamp(30px, 3.5vw, 46px);
    background: #f7f4ee;
}
.booking-process-compact {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    padding: clamp(22px, 2.5vw, 32px);
    border: 1px solid rgba(36,37,34,.11);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(32,30,25,.055);
}
.booking-process-compact-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: center;
}
.booking-process-number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid #c9b99e;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 1.1rem;
}
.booking-process-compact-card h3 {
    margin: 0 0 4px;
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 500;
}
.booking-process-compact-card p { margin: 0; font-size: .72rem; line-height: 1.45; }
.booking-process-arrow { color: #b3a17f; font-size: 1.8rem; }

.booking-form-section { background: var(--paper); }
.booking-form-layout {
    grid-template-columns: minmax(230px, .43fr) minmax(0, 1.37fr);
    gap: clamp(26px, 4vw, 54px);
}
.booking-form-copy { position: static; padding: 18px 0; }
.booking-form-copy .eyebrow { margin-bottom: 12px; }
.booking-form-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 3.4vw, 3.35rem);
}
.booking-form-copy > p { font-size: .88rem; line-height: 1.62; }
.booking-note { margin-top: 20px; }
.booking-note-highlight {
    padding: 22px;
    border: 0;
    background: #f1eadf;
}
.booking-note-highlight strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; }
.booking-note-subtle { margin-top: 14px; padding: 19px 20px; background: transparent; }
.booking-note-subtle p { font-size: .78rem; }
.booking-request-form {
    padding: clamp(28px, 3.2vw, 42px);
    box-shadow: 0 16px 42px rgba(32,30,25,.075);
}
.booking-selected-period {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: var(--sand-light);
}
.booking-selected-period > div { min-width: 0; }
.booking-selected-period span {
    display: block;
    color: var(--olive);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.booking-selected-period strong {
    display: block;
    margin-top: 3px;
    font-family: var(--serif);
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.35;
}
.booking-selected-period small { display: block; margin-top: 2px; color: var(--ink-soft); font-size: .72rem; }
.booking-selected-period a {
    flex: 0 0 auto;
    color: var(--ink-soft);
    font-size: .68rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.booking-selected-period.has-selection { border-color: rgba(120,128,113,.42); background: #f3f5f0; }
.booking-request-form textarea { min-height: 112px; }
.booking-request-form .booking-request-assurance {
    margin: 2px 0 12px;
    padding: 0;
    background: transparent;
    color: var(--ink-soft);
    font-size: .68rem;
}

.booking-pricing-compact-section {
    padding: clamp(36px, 4.2vw, 62px) 0;
    border-top: 1px solid var(--line);
    background: #f7f4ee;
}
.booking-pricing-compact-layout {
    display: grid;
    grid-template-columns: minmax(235px, .48fr) minmax(0, 1.52fr);
    gap: clamp(26px, 4vw, 52px);
    align-items: start;
}
.booking-pricing-intro { padding: 16px 0; }
.booking-pricing-intro .eyebrow { margin-bottom: 12px; }
.booking-pricing-intro h2 {
    margin-bottom: 17px;
    font-size: clamp(2.15rem, 3.2vw, 3.3rem);
}
.booking-pricing-intro p { font-size: .86rem; line-height: 1.62; }
.booking-pricing-compact-section .compact-price-card {
    padding: clamp(26px, 3vw, 40px);
    border: 1px solid rgba(36,37,34,.11);
    box-shadow: 0 15px 40px rgba(32,30,25,.06);
}
.booking-pricing-compact-section .compact-price-heading {
    grid-template-columns: 1fr auto;
    gap: 24px;
    margin-bottom: 24px;
}
.booking-pricing-compact-section .compact-price-heading .eyebrow { margin-bottom: 8px; }
.booking-pricing-compact-section .compact-price-heading h3 { font-size: clamp(1.6rem, 2.3vw, 2.45rem); }
.booking-pricing-compact-section .compact-price-heading > p { max-width: 270px; font-size: .76rem; }
.booking-pricing-compact-section .price-table-row { min-height: 64px; padding: 10px 0; }
.booking-pricing-compact-section .long-stay-banner {
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
    margin-top: 22px;
    padding: 18px 20px;
}
.booking-pricing-compact-section .long-stay-banner strong { grid-row: 1 / 3; font-size: 1.12rem; }
.booking-pricing-compact-section .long-stay-banner span { font-size: .78rem; }
.booking-pricing-compact-section .long-stay-banner small { font-size: .68rem; }

@media (max-width: 1180px) {
    .booking-trust-grid { grid-template-columns: 1.25fr repeat(2, 1fr); }
    .booking-trust-grid > :nth-child(4),
    .booking-trust-grid > :nth-child(5) { border-top: 1px solid var(--line); }
    .booking-trust-grid > :nth-child(4) { grid-column: 1 / 2; }
    .booking-trust-grid > :nth-child(5) { grid-column: 2 / 4; border-right: 1px solid var(--line); }
}

@media (max-width: 1040px) {
    .booking-selector-layout { grid-template-columns: 1fr; }
    .booking-quote-panel { position: static; }
    .booking-process-compact {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .booking-process-arrow { display: none; }
    .booking-process-compact-card { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
    .booking-process-compact-card:last-of-type { padding-bottom: 0; border-bottom: 0; }
    .booking-form-layout,
    .booking-pricing-compact-layout { grid-template-columns: 1fr; }
    .booking-form-copy,
    .booking-pricing-intro { padding: 0; }
    .booking-form-copy > p,
    .booking-pricing-intro p { max-width: 760px; }
}

@media (max-width: 760px) {
    .booking-conversion-hero {
        min-height: 650px;
        align-items: flex-end;
        padding-top: 84px;
        background-position: 61% center;
    }
    .booking-conversion-hero .page-hero-overlay {
        background: linear-gradient(0deg, rgba(16,15,13,.82) 0%, rgba(16,15,13,.55) 53%, rgba(16,15,13,.16) 100%);
    }
    .booking-hero-content { padding-bottom: 54px; }
    .booking-hero-content h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
    .booking-hero-content p { font-size: .95rem; }
    .booking-hero-button { width: 100%; }
    .booking-trust-grid { width: min(100% - 28px, 620px); grid-template-columns: 1fr; }
    .booking-platform-proof,
    .booking-trust-item {
        min-height: auto;
        padding: 17px 14px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
    .booking-trust-grid > :nth-child(4),
    .booking-trust-grid > :nth-child(5) { grid-column: auto; border-top: 0; }
    .booking-section-tight { padding: 30px 0; }
    .booking-calendar-panel { padding: 22px 16px; }
    .booking-calendar-panel .availability-card { margin-top: 20px; }
    .booking-calendar-panel .availability-toolbar { grid-template-columns: 48px 1fr 48px; }
    .booking-calendar-panel .calendar-months { grid-template-columns: 1fr; }
    .booking-calendar-panel .calendar-month + .calendar-month { border-left: 0; border-top: 1px solid var(--line); }
    .booking-calendar-panel .calendar-footer { align-items: flex-start; flex-direction: column; gap: 12px; }
    .booking-quote-panel { padding: 24px 18px; }
    .booking-process-compact { padding: 22px 18px; }
    .booking-process-compact-card { grid-template-columns: 42px 1fr; }
    .booking-process-number { width: 42px; height: 42px; }
    .booking-form-layout { gap: 24px; }
    .booking-request-form { padding: 24px 18px; }
    .booking-selected-period { align-items: flex-start; flex-direction: column; padding: 16px; }
    .booking-pricing-compact-section .compact-price-card { padding: 24px 18px; }
    .booking-pricing-compact-section .compact-price-heading { grid-template-columns: 1fr; gap: 10px; }
    .booking-pricing-compact-section .compact-price-heading > p { max-width: none; }
    .booking-pricing-compact-section .long-stay-banner { grid-template-columns: 1fr; }
    .booking-pricing-compact-section .long-stay-banner strong { grid-row: auto; }
}

/* Conversie- en privacy-updates 06-08-2026 */
.audience-section { border-block: 1px solid var(--line); }
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 44px;
    border: 1px solid var(--line);
    background: var(--line);
    gap: 1px;
}
.audience-card {
    min-height: 260px;
    padding: clamp(28px, 3.3vw, 42px);
    background: var(--cream);
}
.audience-number {
    display: inline-block;
    margin-bottom: 48px;
    color: var(--olive);
    font-family: var(--serif);
    font-style: italic;
}
.audience-card h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 500;
}
.audience-card p { margin: 0; font-size: .9rem; }
.audience-note {
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--ink-soft);
    font-size: .82rem;
    text-align: center;
}

.home-distance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 30px 0 28px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.home-distance-item {
    min-height: 94px;
    padding: 18px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.home-distance-item strong,
.home-distance-item span { display: block; }
.home-distance-item strong { margin-bottom: 5px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.home-distance-item span { color: var(--ink-soft); font-size: .78rem; }

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
    gap: clamp(44px, 7vw, 100px);
    align-items: start;
}
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin-bottom: 18px; }
.faq-intro p { max-width: 470px; margin-bottom: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 78px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--serif);
    font-size: clamp(1.08rem, 1.5vw, 1.35rem);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}
.faq-item summary i::before,
.faq-item summary i::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 3px;
    width: 14px;
    height: 1px;
    background: currentColor;
    transition: transform .22s ease;
}
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-answer { padding: 0 46px 24px 0; }
.faq-answer p { margin: 0; color: var(--ink-soft); }

.footer-cookie-settings {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(255,255,255,.68);
    font: inherit;
    cursor: pointer;
}
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible { color: var(--white); }

.cookie-modal-backdrop {
    position: fixed;
    z-index: 1200;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(20, 20, 18, .35);
    backdrop-filter: blur(4px);
}
.cookie-modal-backdrop[hidden] { display: none; }
.cookie-modal {
    width: min(660px, 100%);
    padding: clamp(28px, 4vw, 46px);
    background: var(--cream);
    border: 1px solid rgba(36,37,34,.15);
    box-shadow: 0 30px 90px rgba(20,20,18,.24);
}
.cookie-modal .eyebrow { margin-bottom: 10px; }
.cookie-modal h2 {
    margin: 0 0 14px;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 500;
}
.cookie-modal p { margin: 0; max-width: 570px; }
.cookie-policy-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 18px;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}
.cookie-modal-actions .button { min-width: 190px; }
body.cookie-modal-open { overflow: hidden; }

.owner-test-badge {
    position: fixed;
    z-index: 1300;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(520px, calc(100% - 36px));
    padding: 11px 14px;
    background: #1f211e;
    color: #fff;
    box-shadow: 0 12px 36px rgba(0,0,0,.22);
    font-size: .74rem;
}
.owner-test-badge a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1000px) {
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-intro { position: static; }
}
@media (max-width: 650px) {
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card { min-height: auto; }
    .audience-number { margin-bottom: 25px; }
    .home-distance-grid { grid-template-columns: 1fr; }
    .faq-item summary { min-height: 70px; font-size: 1.05rem; }
    .cookie-modal-backdrop { align-items: end; padding: 0; }
    .cookie-modal { width: 100%; padding: 28px 20px 22px; border-inline: 0; border-bottom: 0; }
    .cookie-modal-actions { flex-direction: column-reverse; }
    .cookie-modal-actions .button { width: 100%; min-width: 0; }
    .owner-test-badge { right: 12px; bottom: 12px; left: 12px; justify-content: space-between; }
}


/* Correcties v4.3.0: cookiepop-up, gelijke hero-marges, footer-taalkiezer en volledig mobiel menu */

/* De boekingshero gebruikt exact dezelfde containerbreedte en zijmarges als de andere paginahelden. */
.booking-conversion-hero .booking-hero-content {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

/* Oorspronkelijke compacte cookiepop-up onderaan, zonder paginabrede overlay. */
.cookie-popup {
    position: fixed;
    z-index: 4200;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: auto;
    max-width: 900px;
    margin-inline: auto;
    padding: 22px 24px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}
.cookie-popup[hidden] { display: none; }
.cookie-popup-copy { min-width: 0; }
.cookie-popup-copy strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
}
.cookie-popup-copy p {
    max-width: 610px;
    margin: 0;
    color: var(--ink-soft);
    font-size: .9rem;
    line-height: 1.55;
}
.cookie-popup .cookie-policy-link {
    display: inline-block;
    margin-top: 7px;
    color: var(--ink-soft);
    font-size: .76rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-popup .cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}
.cookie-popup .cookie-actions .button {
    min-width: 0;
    min-height: 44px;
}
body.cookie-modal-open { overflow: auto; }

/* De footer-dropdown opent boven de footer en alle talen houden donkere, leesbare tekst. */
.site-footer { overflow: visible; }
.footer-bottom,
.footer-bottom-actions,
.language-selector-footer { overflow: visible; }
.footer-bottom .language-dropdown {
    display: block;
    gap: 0;
}
.site-footer .language-selector-footer .language-dropdown a {
    display: block;
    margin: 0;
    padding: 9px 11px;
    color: var(--ink-soft);
}
.site-footer .language-selector-footer .language-dropdown a:hover,
.site-footer .language-selector-footer .language-dropdown a[aria-current="true"] {
    color: var(--ink);
    background: var(--sand-light);
}
.language-selector-footer[open] { z-index: 4300; }
.language-selector-footer .language-dropdown { z-index: 4301; }

@media (max-width: 980px) {
    /* Het geopende menu vormt één volledige viewportlaag boven alle pagina-inhoud. */
    body.menu-open .site-header {
        position: fixed;
        z-index: 5000;
        inset: 0;
        width: 100%;
        height: 100dvh;
        min-height: 100vh;
        overflow: hidden;
        background: rgba(248,245,239,.998);
        box-shadow: none;
        backdrop-filter: none;
    }
    body.menu-open .header-inner {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        margin: 0;
    }
    body.menu-open .site-navigation,
    .site-navigation.is-open {
        position: fixed;
        z-index: 5001;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        min-height: 100vh;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    body.menu-open .brand,
    body.menu-open .menu-toggle {
        position: fixed;
        z-index: 5002;
        top: 15px;
    }
    body.menu-open .brand { left: max(24px, calc((100vw - 1420px) / 2)); }
    body.menu-open .menu-toggle { right: max(24px, calc((100vw - 1420px) / 2)); }
}

@media (max-width: 700px) {
    .booking-conversion-hero .booking-hero-content {
        width: min(1180px, calc(100% - 32px));
    }
}

@media (max-width: 620px) {
    .cookie-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    .cookie-popup .cookie-actions { width: 100%; }
    .cookie-popup .cookie-actions .button { flex: 1; }
}


/* Correcties v4.4.0: bredere boekingshero, natuurlijke locatiebeeldhoogte en FAQ-parkeerlink */
@media (min-width: 761px) {
    .booking-conversion-hero .booking-hero-content {
        max-width: none;
    }
    .booking-conversion-hero .booking-hero-content h1 {
        max-width: 980px;
        font-size: clamp(3.35rem, 5vw, 5.35rem);
        text-wrap: balance;
    }
    .booking-conversion-hero .booking-hero-content p {
        max-width: 720px;
    }
}
.faq-answer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.faq-answer-link:hover { color: var(--olive); }

/* Conversie- en Google Vacation Rentals voorbereiding v4.5.1 */
.direct-booking-section .section-heading,
.reviews-section .section-heading,
.availability-spotlight .section-heading { max-width: 760px; margin-inline: auto; }
.direct-booking-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(36px, 5vw, 64px);
    background: var(--line);
    border: 1px solid var(--line);
}
.direct-booking-card {
    min-height: 245px;
    padding: clamp(26px, 3vw, 40px);
    background: var(--cream);
}
.direct-booking-number {
    display: block;
    margin-bottom: 44px;
    color: var(--olive);
    font-family: var(--serif);
    font-style: italic;
    font-size: .85rem;
}
.direct-booking-card h3 { margin: 0 0 11px; font-family: var(--serif); font-size: clamp(1.28rem, 1.7vw, 1.7rem); font-weight: 500; }
.direct-booking-card p { margin: 0; color: var(--ink-soft); font-size: .86rem; }
.centered-action { display: flex; justify-content: center; margin-top: 34px; }

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: clamp(44px, 8vw, 120px);
    align-items: center;
}
.reviews-score-card {
    padding: clamp(30px, 4.5vw, 58px);
    border: 1px solid var(--line);
    background: var(--sand-light);
}
.reviews-score-row { display: flex; align-items: baseline; gap: 7px; margin: 22px 0 2px; }
.reviews-score-row strong { font-family: var(--serif); font-size: clamp(4.2rem, 8vw, 7.2rem); line-height: .85; font-weight: 500; }
.reviews-score-row span { color: var(--ink-soft); font-size: 1rem; }
.reviews-score-source { margin: 11px 0 0; font-weight: 700; }
.reviews-score-count { margin: 8px 0 0; color: var(--ink-soft); font-size: .84rem; }
.reviews-score-checked { margin: 22px 0 0; color: var(--ink-soft); font-size: .7rem; }
.reviews-content h2 { max-width: 690px; margin-bottom: 18px; }
.reviews-content .lead { max-width: 690px; }
.reviews-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 34px; background: var(--line); border: 1px solid var(--line); }
.reviews-summary-grid article { padding: 26px 28px; background: var(--cream); }
.reviews-summary-grid h3 { margin: 0 0 9px; font-family: var(--serif); font-weight: 500; font-size: 1.25rem; }
.reviews-summary-grid p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.reviews-links { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 28px; }

.availability-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(34px, 5vw, 60px);
}
.availability-spotlight-card { padding: clamp(26px, 3.5vw, 42px); border: 1px solid var(--line); background: var(--cream); }
.availability-spotlight-card .availability-period { display: block; min-height: 54px; margin-bottom: 26px; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.1; }
.availability-spotlight-card > strong { display: block; margin-bottom: 7px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.availability-spotlight-card p { margin: 0 0 26px; color: var(--ink-soft); font-size: .82rem; }
.availability-spotlight-card p b { color: var(--ink); }
.availability-spotlight-fallback { max-width: 680px; margin: 40px auto 0; text-align: center; }
.seasonal-link-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 24px; margin-top: 30px; }
.seasonal-link-row a { color: var(--ink-soft); font-size: .76rem; text-decoration: underline; text-underline-offset: 4px; }
.seasonal-link-row a:hover { color: var(--ink); }

.share-period { margin: 18px 0 22px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.share-period[hidden] { display: none; }
.share-period > span { display: block; margin-bottom: 10px; color: var(--ink-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.share-period-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.share-period-button { appearance: none; display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 8px 13px; border: 1px solid var(--line); background: transparent; color: var(--ink); font: 600 .72rem/1 var(--sans); cursor: pointer; text-decoration: none; }
.share-period-button:hover { background: var(--sand-light); }

.seasonal-page .page-hero-content { max-width: 940px; }
.seasonal-intro-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(44px, 8vw, 110px); align-items: start; }
.seasonal-copy p { max-width: 760px; }
.seasonal-highlights { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.seasonal-highlights li { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
.seasonal-gallery { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 12px; }
.seasonal-gallery figure { margin: 0; min-height: 280px; overflow: hidden; }
.seasonal-gallery img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.seasonal-availability { margin-top: 38px; }
.seasonal-availability h2 { margin-bottom: 24px; }

.mobile-booking-bar { display: none; }

@media (max-width: 1050px) {
    .direct-booking-grid { grid-template-columns: 1fr 1fr; }
    .reviews-layout { grid-template-columns: 1fr; gap: 34px; }
    .reviews-score-card { max-width: 520px; }
    .availability-spotlight-grid { grid-template-columns: 1fr 1fr; }
    .seasonal-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .direct-booking-grid,
    .reviews-summary-grid,
    .availability-spotlight-grid { grid-template-columns: 1fr; }
    .direct-booking-card { min-height: auto; }
    .direct-booking-number { margin-bottom: 26px; }
    .availability-spotlight-card .availability-period { min-height: 0; }
    .seasonal-gallery { grid-template-columns: 1fr; }
    .seasonal-gallery figure,
    .seasonal-gallery img { min-height: 0; height: auto; }
    .mobile-booking-bar {
        position: fixed;
        z-index: 3100;
        left: 10px;
        right: 10px;
        bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 10px 10px 10px 15px;
        border: 1px solid rgba(36,37,34,.12);
        background: rgba(250,248,244,.98);
        box-shadow: 0 16px 40px rgba(20,20,18,.18);
        backdrop-filter: blur(12px);
    }
    .mobile-booking-copy { min-width: 0; }
    .mobile-booking-copy span,
    .mobile-booking-copy strong { display: block; }
    .mobile-booking-copy span { margin-bottom: 2px; color: var(--ink-soft); font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; }
    .mobile-booking-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .78rem; }
    .mobile-booking-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
    .mobile-whatsapp-button {
        display: grid;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        place-items: center;
        border-radius: 50%;
        background: #25d366;
        box-shadow: 0 5px 14px rgba(37,211,102,.24);
    }
    .mobile-whatsapp-button img { display: block; width: 22px; height: 22px; }
    .mobile-whatsapp-button:focus-visible { outline: 3px solid #ffbf47; outline-offset: 2px; }
    .mobile-booking-bar .button { flex: 0 0 auto; min-height: 42px; padding-inline: 16px; }
    body:has(.mobile-booking-bar) { padding-bottom: 76px; }
    body:has(.mobile-booking-bar) .whatsapp-float { display: none; }
    body.cookie-modal-open .mobile-booking-bar,
    body.menu-open .mobile-booking-bar { display: none; }
}
@media (max-width: 360px) {
    .mobile-booking-bar { gap: 8px; padding-left: 10px; }
    .mobile-booking-copy span { display: none; }
    .mobile-booking-bar .button { padding-inline: 12px; font-size: .64rem; }
}

/* Seasonal template alignment v4.5.1 */
.seasonal-content-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(44px, 8vw, 110px); align-items: start; }
.seasonal-copy .lead + .lead { margin-top: 24px; }
.seasonal-highlights { margin: 0; border-top: 1px solid var(--line); }
.seasonal-highlights div { display: grid; grid-template-columns: 22px 1fr; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.seasonal-highlights span { color: var(--olive); }
.seasonal-highlights strong { font-size: .86rem; font-weight: 600; }
section.seasonal-gallery { display: block; }
@media (max-width: 850px) { .seasonal-content-grid { grid-template-columns: 1fr; } }

.calendar-day.is-unpriced { opacity: .28; cursor: default; text-decoration: none; }

/* v4.5.5 — leesbare privacy- en cookiepagina's */
.legal-content .lead { max-width: 760px; }
.legal-meta {
    margin: 18px 0 44px;
    color: var(--ink-soft);
    font-size: .78rem;
    letter-spacing: .02em;
}
.legal-section { margin-top: 46px; }
.legal-section h2 { margin: 0 0 16px; }
.legal-section p { margin: 0 0 14px; line-height: 1.75; }
.legal-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 22px;
}
.legal-list li { padding-left: 4px; line-height: 1.65; }
.legal-preferences-box {
    margin-top: 54px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line);
    background: var(--sand-light);
}
.legal-preferences-box h2 { margin: 0 0 12px; }
.legal-preferences-box p { margin: 0 0 22px; line-height: 1.7; }
@media (max-width: 700px) {
    .legal-content { padding-top: 138px; }
    .legal-section { margin-top: 36px; }
    .legal-content h2 { font-size: 1.65rem; }
}

/* v4.5.9 — definitieve footeruitlijning; bewust als laatste regelset geplaatst. */
.footer-bottom-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}
.footer-bottom-actions > .language-selector-footer,
.footer-bottom-actions > a,
.footer-bottom-actions > .footer-cookie-settings {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-height: 40px;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
    vertical-align: middle;
}
.footer-bottom-actions > .language-selector-footer {
    position: relative;
    flex: 0 0 auto;
}
.footer-bottom-actions > .language-selector-footer > summary {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-height: 40px;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
}
@media (max-width: 620px) {
    .footer-bottom-actions {
        justify-content: flex-start;
        gap: 10px 18px;
        flex-wrap: wrap;
    }
}

/* v4.6.1 — één exacte middenlijn voor de volledige onderste footerregel. */
.footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 32px;
}
.footer-bottom .footer-credits {
    display: flex;
    align-items: center;
    min-width: 0;
}
.footer-credit-line {
    display: flex;
    align-items: center;
    min-height: 40px;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}
.footer-built-by,
.site-footer .footer-puregraphics-link {
    display: inline-flex;
    align-items: center;
    height: 40px;
    line-height: 1;
}
.footer-puregraphics-link img {
    flex: 0 0 auto;
    width: 140px;
    max-width: none;
}
.footer-bottom-actions {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    column-gap: 28px;
    min-height: 40px;
}
.footer-bottom-actions > .language-selector-footer,
.footer-bottom-actions > a,
.footer-bottom-actions > .footer-cookie-settings,
.footer-bottom-actions > .language-selector-footer > summary {
    align-self: center;
    height: 40px;
    min-height: 40px;
    line-height: 1;
}
@media (max-width: 900px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        align-items: start;
        row-gap: 18px;
    }
    .footer-bottom-actions {
        display: flex;
        justify-content: flex-start;
        gap: 10px 18px;
        width: 100%;
        flex-wrap: wrap;
    }
    .footer-credit-line { white-space: normal; flex-wrap: wrap; }
}

/* v4.6.2 — optische correctie ten opzichte van taalkiezer en cookieknop. */
.footer-puregraphics-link img,
.footer-bottom-actions > a {
    transform: translateY(3px);
}

/* v4.6.3 — mobiele footer op één lijn en optische SVG-correctie. */
.footer-puregraphics-link img {
    opacity: .48;
    transform: translateY(14px);
}
@media (max-width: 900px) {
    .footer-bottom-actions {
        display: grid;
        grid-template-columns: repeat(4, max-content);
        align-items: center;
        justify-content: space-between;
        gap: 0 clamp(6px, 2.5vw, 18px);
        width: 100%;
        flex-wrap: nowrap;
    }
}
@media (max-width: 340px) {
    .footer-bottom-actions {
        grid-template-columns: repeat(2, max-content);
        row-gap: 10px;
    }
}

/* v4.6.4 — alle footerelementen delen opnieuw exact dezelfde middenlijn. */
.footer-puregraphics-link img {
    opacity: .62;
    transform: none;
}
.footer-bottom-actions > a {
    transform: none;
}
.footer-bottom-actions > .language-selector-footer,
.footer-bottom-actions > .language-selector-footer > summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-height: 40px;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
}
.footer-bottom-actions > a,
.footer-bottom-actions > .footer-cookie-settings {
    display: inline-block;
    height: 40px;
    min-height: 40px;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 40px;
    text-align: center;
    vertical-align: baseline;
}

/* v4.6.5 — expliciete reset van de algemene linkmarge in de footer. */
.site-footer a.footer-puregraphics-link {
    height: unset;
    margin-bottom: 0px;
}
.site-footer .footer-bottom-actions > a {
    margin-bottom: 0px;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 18px));
  z-index: 95;

  display: grid;
  place-items: center;

  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 50%;

  background: #25d366;
  box-shadow:
    0 12px 30px rgba(15, 36, 73, 0.20),
    0 5px 14px rgba(37, 211, 102, 0.25);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.whatsapp-float img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 16px 34px rgba(15, 36, 73, 0.22),
    0 7px 18px rgba(37, 211, 102, 0.30);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

@media (max-width: 580px) {
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 14px));
    width: 56px;
    height: 56px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

/* 404-pagina. */
.notfound-layout { max-width: 760px; padding-top: clamp(40px, 8vw, 90px); }
.notfound-layout h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); margin-bottom: 22px; }
.notfound-layout .lead { margin-bottom: 34px; }
.notfound-links { display: flex; flex-wrap: wrap; gap: 12px; }

/* Google-recensies (homepage) */
.google-stars { display: inline-flex; gap: 3px; vertical-align: middle; }
.google-star { display: block; width: 18px; height: 18px; }
.reviews-score-stars { margin: 26px 0 0; line-height: 1; }
.reviews-score-stars .google-star { width: 22px; height: 22px; }
.google-review-list { display: grid; gap: 34px; margin-top: 34px; }
.google-review { position: relative; margin: 0; padding: 0; }
.google-review-stars { margin: 0 0 14px; line-height: 1; }
.google-review blockquote { margin: 0 0 14px; padding: 0; border: 0; }
.google-review blockquote p { margin: 0; color: var(--ink); font-family: "Homemade Apple", "Segoe Script", "Bradley Hand", cursive; font-weight: 400; font-size: clamp(1.1rem, 1.7vw, 1.45rem); line-height: 1.95; overflow-wrap: anywhere; }
.google-review-meta { margin: 0; color: var(--ink-soft); font-size: .8rem; letter-spacing: .02em; }
.google-review-meta::before { content: "— "; }
.google-review-meta a { color: inherit; text-decoration: none; }
.google-attribution { margin: 22px 0 0; color: var(--ink-soft); font-family: Roboto, Arial, sans-serif; font-size: .7rem; }

/* v4.8.0 — cookievoorkeuren als venster met schakelaar en cookie-icoon */
.cookie-consent-backdrop {
    position: fixed;
    z-index: 4200;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(20, 20, 18, .42);
    backdrop-filter: blur(3px);
}
.cookie-consent-backdrop[hidden] { display: none; }
.cookie-consent {
    position: relative;
    width: min(620px, 100%);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    padding: 30px 32px 26px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(20, 20, 18, .25);
}
.cookie-consent-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}
.cookie-consent-close[hidden] { display: none; }
.cookie-consent-close:hover,
.cookie-consent-close:focus-visible { background: var(--sand-light); }
.cookie-consent-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 48px;
}
.cookie-consent-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sand);
    color: #8a5a2b;
}
.cookie-consent-head strong {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
}
.cookie-consent-intro {
    margin: 14px 0 6px;
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.55;
}
.cookie-consent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}
.cookie-consent-row strong { display: block; font-size: .98rem; font-weight: 600; }
.cookie-consent-row p { margin: 3px 0 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.5; }
.cookie-consent-always { flex: 0 0 auto; color: var(--olive); font-size: .8rem; font-weight: 600; }
.cookie-switch { position: relative; flex: 0 0 auto; display: inline-block; width: 54px; height: 30px; cursor: pointer; }
.cookie-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.cookie-switch-track {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #cfd2cc;
    transition: background var(--transition);
}
.cookie-switch-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    transition: transform var(--transition);
}
.cookie-switch input:checked + .cookie-switch-track { background: var(--ink); }
.cookie-switch input:checked + .cookie-switch-track::after { transform: translateX(24px); }
.cookie-switch input:focus-visible + .cookie-switch-track { outline: 3px solid #ffbf47; outline-offset: 2px; }
.cookie-consent-link {
    display: inline-block;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    width: 100%;
    color: var(--ink-soft);
    font-size: .8rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}
.cookie-consent-actions .button { min-height: 44px; border-radius: 999px; }
body.cookie-modal-open { overflow: hidden; }
@media (max-width: 620px) {
    .cookie-consent-backdrop { align-items: end; padding: 0; }
    .cookie-consent { max-height: 92vh; padding: 24px 16px 18px; border-radius: 18px 18px 0 0; }
    .cookie-consent-head strong { font-size: 1.35rem; }
    .cookie-consent-actions { flex-direction: column-reverse; }
    .cookie-consent-actions .button { width: 100%; }
}

/* v4.8.1 — zichtbaar kader rond de taalkiezer in de footer */
.site-footer .footer-bottom-actions > .language-selector-footer > summary {
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    padding-inline: 12px;
    min-width: 58px;
}
.site-footer .footer-bottom-actions > .language-selector-footer > summary:hover,
.site-footer .footer-bottom-actions > .language-selector-footer[open] > summary {
    border-color: rgba(255, 255, 255, .7);
}
