/* ---------------------------------------------------------------
   Filter Specialty Coffee — example site styles
   Palette (from brandbook):
     --green       #00382a   donker groen
     --green-2     #224f4b   primair groen (alt)
     --cream       #f5f1ee   gebroken wit
     --taupe       #b8a9a4
     --brown       #b79e81
     --purple      #5b4e72   gedempt paars (accent — tile-icons)
--------------------------------------------------------------- */

:root {
    --green: #00382a;
    --green-2: #224f4b;
    --cream: #f5f1ee;
    --taupe: #b8a9a4;
    --brown: #b79e81;
    --purple: #5b4e72;
    --ink: #1a1a1a;
    --shadow: 0 2px 10px rgba(0, 56, 42, 0.08);
    --shadow-lg: 0 14px 40px rgba(0, 56, 42, 0.22);

    /* Brandbook: Zeitung Pro (titles), Noteworthy (subtitles), Lato (body).
       Lato + Caveat (webfont-vervanger voor Noteworthy — Mac-only en niet legaal
       hostbaar) laden we via Google Fonts in master.cshtml. Zeitung Pro is
       licensed en niet meegeleverd.
       Voor nu gebruiken ALLE headings en heading-styled elementen --font-script
       (Caveat) i.p.v. --font-title. Zodra Zeitung Pro als webfont beschikbaar
       komt, replace_all --font-script terug naar --font-title in heading-rules. */
    --font-title: 'Zeitung Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-script: 'Caveat', 'Noteworthy', 'Brush Script MT', 'Bradley Hand', cursive;
    --font-body: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --header-height: 96px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--green-2);
    background-color: var(--cream);
    background-image: url('/images/pattern.svg');
    background-repeat: repeat;
    background-size: 600px 600px;
    background-attachment: fixed;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
@media (max-width: 640px) {
    body {
        background-size: 300px 300px;
        background-attachment: scroll;
    }
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-script); color: var(--green); margin: 0 0 .5em; font-weight: 700; }

/* Skip link */
.skip-link {
    position: absolute;
    left: -10000px;
    top: 8px;
    background: var(--green);
    color: var(--cream);
    padding: .5rem 1rem;
    border-radius: 4px;
    z-index: 1000;
}
.skip-link:focus-visible { left: 8px; }

/* ----------------------------- Header ----------------------------- */
.site-header {
    position: relative;
    background: var(--cream);
    color: var(--ink);
}
.site-header__bar {
    height: var(--header-height);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    grid-column: 1;
    justify-self: start;
    line-height: 0;
    display: inline-block;
    color: var(--green);            /* logo inherits via fill="currentColor" */
}
.site-logo__svg {
    display: block;
    height: 100px;
    width: auto;
    max-width: 240px;
}
@media (max-width: 640px) {
    .site-logo__svg { height: 48px; }
}

.site-header__actions {
    grid-column: 2;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

/* Generic round icon link (used for Instagram in header) */
.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--ink);
    border-radius: 50%;
    transition: background-color .2s ease, color .2s ease;
    text-decoration: none;
}
.icon-link:hover,
.icon-link:focus-visible {
    background: rgba(0, 56, 42, .08);
    text-decoration: none;
}
.icon-link svg { display: block; }

/* Language switch (next to Instagram in header) */
.lang-switch {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: .15rem;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green);
}
.lang-switch__item { display: inline-flex; align-items: center; }
.lang-switch__item + .lang-switch__item::before {
    content: "/";
    color: rgba(0, 56, 42, .35);
    margin: 0 .15rem 0 .05rem;
    pointer-events: none;
}
.lang-switch__link,
.lang-switch__current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 .25rem;
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.lang-switch__link:hover,
.lang-switch__link:focus-visible {
    background: rgba(0, 56, 42, .08);
    text-decoration: none;
}
.lang-switch__current {
    color: var(--cream);
    background: var(--green);
    cursor: default;
}

/* Hamburger */
.menu-toggle {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}
.menu-toggle__bar {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- Menu overlay ----------------------------- */
.menu-overlay {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(420px, 90vw);
    background: var(--green);
    color: var(--cream);
    padding: 5rem 2.5rem 2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 50;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.menu-overlay.is-open { transform: translateX(0); }
.menu-overlay[aria-hidden="true"] { visibility: hidden; }
.menu-overlay.is-open[aria-hidden="false"] { visibility: visible; }

.menu-overlay__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 0;
    color: var(--cream);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    padding: .25rem .75rem;
}
.menu-overlay__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu-overlay__list a {
    color: var(--cream);
    font-family: var(--font-script);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .03em;
    display: inline-block;
    padding: .25rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.menu-overlay__list a:hover,
.menu-overlay__list a:focus-visible {
    text-decoration: none;
    border-bottom-color: var(--cream);
}

/* Body lock when menu open */
body.menu-open { overflow: hidden; }
body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 56, 42, .45);
    z-index: 40;
}

/* ----------------------------- Main / hero ----------------------------- */
.site-main {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

/* Banner as a big welcoming card — up to 1920px wide, centered on huge screens */
.banner {
    position: relative;
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
    overflow: hidden;
    background: var(--green-2);
    aspect-ratio: 21 / 9;
    max-height: 720px;
}
.banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Container voor de banner-copy. De foto blijft onbedekt — leesbaarheid van logo +
   title + subtitle komt uit de tweelaags shadows op die elementen zelf. */
.banner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.banner__copy {
    max-width: 800px;
    text-align: center;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}

/* Brand logo over de banner — gecentreerd, tweelaags shadow:
   tight + donker voor crispness, wijd + zacht voor ambient halo. */
.banner__logo {
    width: clamp(140px, 18vw, 400px);
    height: auto;
    color: var(--cream);
    filter:
        drop-shadow(0 1px 2px rgba(0, 28, 21, .8))
        drop-shadow(0 4px 18px rgba(0, 28, 21, .55));
    z-index: 3;
}

/* H1 in hand-script style — tweelaags text-shadow voor legibility op foto's */
.banner__title {
    margin: 0;
    color: var(--cream);
    font-family: var(--font-script);
    font-weight: 400;
    font-size: clamp(2.6rem, 6.5vw, 4.75rem);
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow:
        0 1px 3px rgba(0, 28, 21, .85),
        0 4px 22px rgba(0, 28, 21, .55);
}

/* Subtitle in plain body type, all-caps look like the brandbook reference */
.banner__subtitle {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(.95rem, 1.4vw, 1.15rem);
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow:
        0 1px 2px rgba(0, 28, 21, .85),
        0 3px 16px rgba(0, 28, 21, .5);
}

@media (max-width: 640px) {
    .banner__logo { top: 1rem; left: 1rem; }
}

@media (max-width: 640px) {
    .banner { aspect-ratio: 4 / 3; }
    .banner__overlay { padding: 1.25rem 1rem; }
}

/* ----------------------------- Wave dividers ----------------------------- */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 70px;
    display: block;
    z-index: 2;
    pointer-events: none;
}
.wave-divider--down {
    /* Cream wave at the bottom of the banner, transitioning into the page */
    bottom: -1px;
}
.wave-divider--up {
    /* Green wave at the top of the footer, rising into the cream content above */
    transform:rotate(180deg);
    top: -69px;
}
.site-footer { position: relative; }

/* Banner overlay must sit above the wave so the copy stays on top */
.banner__overlay { z-index: 3; }
.banner__image { position: relative; z-index: 1; }

@media (max-width: 640px) {
    .wave-divider { height: 44px; }
    .wave-divider--up { top: -43px; }
}

/* ----------------------------- Chalkboards ----------------------------- */
.chalkboard {
    position: relative;
    max-width: 640px;
    width: 100%;
    padding: 2.25rem 2.5rem 2rem;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.05), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255,255,255,.04), transparent 60%),
        var(--green);
    color: var(--cream);
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0, 56, 42, .25), inset 0 0 0 6px rgba(245,241,238,.06);
    transform: rotate(-1.5deg);
}
.chalkboard::before {
    /* subtle chalk-dust noise */
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 30%, rgba(245,241,238,.07) 0 1px, transparent 2px),
        radial-gradient(circle at 78% 60%, rgba(245,241,238,.05) 0 1px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(245,241,238,.06) 0 1px, transparent 2px);
    background-size: 80px 80px, 110px 110px, 50px 50px;
    opacity: .9;
}
.chalkboard__rope {
    position: absolute; top: -32px; left: 0; right: 0; height: 32px;
    display: flex; justify-content: center; pointer-events: none;
}
.chalkboard__rope svg { display: block; }
.chalkboard__title {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin: 0 0 .25rem;
    color: var(--cream);
    text-align: center;
    line-height: 1.05;
    font-weight: 400;
}
.chalkboard__rule {
    width: 60%; height: 1px; margin: 0 auto 1.25rem;
    background: rgba(245,241,238,.45);
}
.chalkboard__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: .55rem;
}
.chalkboard__list li {
    display: flex; align-items: baseline; gap: .8rem;
    font-family: var(--font-body);
    font-size: 1.05rem; line-height: 1.4;
    color: var(--cream);
}
.chalkboard__list li::before {
    content: "✦";
    color: rgba(245,241,238,.6);
    font-size: .9em;
    flex-shrink: 0;
}
.chalkboard__foot {
    margin: 1.25rem 0 0; text-align: center;
    font-family: var(--font-script);
    font-size: 1.05rem; color: rgba(245,241,238,.78);
    font-style: italic;
}
@media (max-width: 640px) {
    .chalkboard { padding: 1.75rem 1.5rem; }
}

/* ----------------------------- Tile grid (tiles section) ----------------------------- */
/* Maak het wrappende block-grid-item een container, zodat de tile-grid reageert
   op zijn EIGEN column-span breedte i.p.v. de viewport. 12-col span = 4-in-een-rij,
   6-col span = 2×2, mobile fullwidth = 2×2. */
.umb-block-grid__layout-item:has(.tile-grid) {
    container-type: inline-size;
}
.tile-grid {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 1.25rem;
    /* default: 2 kolommen — dekt zowel 2×2 van 4 tegels als smalle mobile */
    grid-template-columns: repeat(2, 1fr);
}
/* Bredere container (block-grid item ≥ 700px) → 4-koloms rij */
@container (min-width: 700px) {
    .tile-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tile {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    color: var(--green);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    height: 100%;
}
/* Hand-placed tile rhythm — each tile per nth-child gets its own tilt + vertical offset
   so the grid feels organic instead of catalogue-rigid. */
.tile-grid__item:nth-child(8n+1) .tile { transform: rotate(-1.5deg) translateY(8px); }
.tile-grid__item:nth-child(8n+2) .tile { transform: rotate(.5deg)  translateY(-6px); }
.tile-grid__item:nth-child(8n+3) .tile { transform: rotate(1.2deg) translateY(4px); }
.tile-grid__item:nth-child(8n+4) .tile { transform: rotate(-.8deg) translateY(-2px); }
.tile-grid__item:nth-child(8n+5) .tile { transform: rotate(1.5deg) translateY(0); }
.tile-grid__item:nth-child(8n+6) .tile { transform: rotate(-1.2deg) translateY(6px); }
.tile-grid__item:nth-child(8n+7) .tile { transform: rotate(.8deg)  translateY(-4px); }
.tile-grid__item:nth-child(8n+8) .tile { transform: rotate(-1.8deg) translateY(2px); }
/* On hover/focus: tile straightens (rotate 0), lifts a bit, shadow grows. */
.tile:hover,
.tile:focus-visible {
    transform: rotate(0) translateY(-4px) !important;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.tile__image {
    aspect-ratio: 1 / 1;
    background: var(--cream);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* SVG-icons in tiles worden via mask-image gekleurd — zo trekken we de
   icon-fill uit het SVG-bestand zelf en kunnen we hem met --purple
   inkleuren. Werkt voor zowel monochrome als multicolor SVGs (de mask
   gebruikt alleen de vorm, niet de fill). De icon-url komt via een
   inline custom-property uit de tile-partial. */
.tile__icon {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--purple);
    -webkit-mask-image: var(--icon-url, none);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 55% auto;
    mask-image: var(--icon-url, none);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 80% auto;
}

.tile__label {
    display: block;
    padding: .9rem 1rem 1.1rem;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    color: var(--green);
    letter-spacing: 0;
    line-height: 1.1;
}

/* ----------------------------- "Uit de vitrine" strip ----------------------------- */
.vitrine-section { margin: 4rem 0 1.5rem; }
.vitrine-header {
    display: flex; align-items: baseline; gap: 1rem;
    margin: 0 .5rem 1.75rem;
    flex-wrap: wrap;
}
.vitrine-header h2 {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--green);
    margin: 0;
}
.vitrine-header__tagline {
    margin-left: auto;
    font-family: var(--font-script);
    color: var(--green-2);
    font-size: 1rem;
    opacity: .85;
}

/* ---- vcard baseline — works in any context (standalone, .vitrine strip, block-grid item) */
.vcard {
    position: relative;
    background: #fff;
    border-radius: 4px;
    padding: .65rem .65rem 1.1rem;
    box-shadow: 0 8px 22px rgba(0, 56, 42, .15), 0 1px 0 rgba(0,0,0,.04);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    margin: 0;
    max-width: 280px;
}
.vcard__img {
    aspect-ratio: 4 / 5;
    background: var(--cream);
    border-radius: 2px;
    margin-bottom: .6rem;
    overflow: hidden;
}
.vcard__img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.vcard__label {
    text-align: center;
    font-family: var(--font-script);
    color: var(--green);
    font-size: 1.05rem;
    line-height: 1.2;
}
.vcard__tape {
    position: absolute;
    background: rgba(0, 56, 42, .12);
    width: 70px; height: 18px;
    top: -8px;
    left: 20%;
    transform: rotate(-12deg);
    box-shadow: 0 1px 2px rgba(0, 56, 42, .15);
}
.vcard:hover {
    transform: rotate(0) translateY(-6px) !important;
    box-shadow: 0 14px 32px rgba(0, 56, 42, .25);
}

/* ---- .vitrine layout container — only adds per-position variations + flex layout */
.vitrine {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    justify-content: center;
    align-items: end;
}
.vitrine .vcard { flex: 1 1 200px; }
.vitrine .vcard:nth-child(4n+1) { transform: rotate(-3deg) translateY(0);    flex-grow: 1.2; }
.vitrine .vcard:nth-child(4n+2) { transform: rotate(2deg)  translateY(20px); flex-grow: 1;   }
.vitrine .vcard:nth-child(4n+3) { transform: rotate(-2deg) translateY(-12px); flex-grow: 1.3; }
.vitrine .vcard:nth-child(4n+4) { transform: rotate(3deg)  translateY(12px); flex-grow: .9;  }
.vitrine .vcard:nth-child(4n+2) .vcard__img { aspect-ratio: 1 / 1; }
.vitrine .vcard:nth-child(4n+3) .vcard__img { aspect-ratio: 5 / 4; }
.vitrine .vcard:nth-child(4n+4) .vcard__img { aspect-ratio: 3 / 4; }
.vitrine .vcard:nth-child(4n+1) .vcard__tape { left: 15%; transform: rotate(-18deg); }
.vitrine .vcard:nth-child(4n+2) .vcard__tape { right: 10%; left: auto; transform: rotate(22deg); }
.vitrine .vcard:nth-child(4n+3) .vcard__tape { left: 30%; transform: rotate(-8deg); }
.vitrine .vcard:nth-child(4n+4) .vcard__tape { left: 20%; transform: rotate(14deg); }
@media (max-width: 640px) {
    .vitrine .vcard { flex-basis: 140px; }
    .vcard__tape { width: 50px; height: 14px; }
}

/* ---- When chalkboard or vitrineItem is used inside a Block Grid (not as a List)
        the standalone styles still apply, but we add per-position rotation so
        consecutive vitrine items in a grid still feel hand-placed. */
.umb-block-grid__layout-item > .vcard {
    /* baseline reset inside grid; nth-child below adds the tilt */
    margin: 0 auto;
    max-width: 280px;
}
.umb-block-grid__layout-container > .umb-block-grid__layout-item:nth-child(4n+1) > .vcard { transform: rotate(-3deg)  translateY(0);   }
.umb-block-grid__layout-container > .umb-block-grid__layout-item:nth-child(4n+2) > .vcard { transform: rotate(2deg)   translateY(18px); }
.umb-block-grid__layout-container > .umb-block-grid__layout-item:nth-child(4n+3) > .vcard { transform: rotate(-2deg)  translateY(-10px); }
.umb-block-grid__layout-container > .umb-block-grid__layout-item:nth-child(4n+4) > .vcard { transform: rotate(3deg)   translateY(12px); }
.umb-block-grid__layout-container > .umb-block-grid__layout-item > .vcard:hover {
    transform: rotate(0) translateY(-6px) !important;
}

/* Chalkboard inside a Block Grid: center it within its column-span */
.umb-block-grid__layout-item > .chalkboard {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------- Instagram latest block (polaroid) ----------------------------- */
/* Polaroid-styling matcht de vitrine onderaan de pagina: witte rand, tape bovenin,
   lichte tilt, caption op de witte band onderaan in script-font.
   Rotatie zit op de figure (i.p.v. de link) zodat <figcaption> mee-roteert. */
.insta-block {
    position: relative;
    margin: 0 auto;
    max-width: 80%;
    transform: rotate(1.8deg);
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.insta-block:hover,
.insta-block:focus-within {
    transform: rotate(0);
}
.insta-block__link {
    position: relative;
    display: block;
    background: #fff;
    padding: 14px 14px 56px;        /* witte band onderaan voor caption */
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .4s ease;
}
.insta-block:hover .insta-block__link,
.insta-block:focus-within .insta-block__link {
    box-shadow: 0 18px 46px rgba(0, 56, 42, .22);
}
.insta-block__link:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
}
/* Tape-strip bovenop de polaroid */
.insta-block__tape {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 130px;
    height: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .25), transparent 35%),
        rgba(201, 169, 110, .55);
    border-left: 1px dashed rgba(0, 0, 0, .06);
    border-right: 1px dashed rgba(0, 0, 0, .06);
    pointer-events: none;
}
.insta-block__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.insta-block__badge {
    position: absolute;
    top: 24px;                       /* op de foto, niet op de witte rand */
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(0, 56, 42, .82);
    color: var(--cream);
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.insta-block__badge svg { display: block; }
/* Caption in de witte band onderaan, script-font, max 2 regels */
.insta-block__caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    margin: 0;
    font-family: var(--font-script);
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--green);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----------------------------- Text page ----------------------------- */
.text-page {
    margin: 0 auto;
}
.text-page__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-top: 0;
}
.text-page__intro {
    color: var(--green-2);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ----------------------------- Block Grid layout ----------------------------- */
/* Honors the CSS custom properties Umbraco emits in items.cshtml:
   - `--umb-block-grid--grid-columns` on .umb-block-grid (default 12)
   - `--umb-block-grid--item-column-span` on each .umb-block-grid__layout-item
   - `--umb-block-grid--item-row-span` (only if you wire row-span anywhere; rarely used)         */
.umb-block-grid__layout-container {
    display: grid;
    grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 12), minmax(0, 1fr));
    /* More breathing room between rows than between columns */
    row-gap: 3rem;
    column-gap: 1.75rem;
    /* Items met verschillende hoogten (bv. 2x2 tegels naast een hoge polaroid) worden
       verticaal gecentreerd in hun rij. Geeft een rustigere uitlijning bij
       asymmetrische rij-splits. */
    align-items: center;
}
@media (max-width: 640px) {
    .umb-block-grid__layout-container { row-gap: 4rem; }
}
.umb-block-grid__layout-item {
    grid-column: span var(--umb-block-grid--item-column-span, 12);
    grid-row: span var(--umb-block-grid--item-row-span, 1);
    min-width: 0;   /* lets images/text shrink without breaking out of the track */
}
/* On small screens, ignore column-span and just stack full-width */
@media (max-width: 640px) {
    .umb-block-grid__layout-item { grid-column: 1 / -1; }
}

/* Nested areas (when a layout block has child areas) */
.umb-block-grid__area-container {
    display: grid;
    grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns, 12), minmax(0, 1fr));
    gap: 1.25rem;
}
.umb-block-grid__area {
    grid-column: span var(--umb-block-grid--area-column-span, 12);
    grid-row: span var(--umb-block-grid--area-row-span, 1);
    min-width: 0;
}

.block { margin: 0; }
.block--text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--green-2);
}
.block--text h2, .block--text h3, .block--text h4 {
    font-family: var(--font-script);
    color: var(--green);
    margin: 1.5rem 0 .5rem;
}
.block--text p { margin: 0 0 1rem; }
.block--text p:last-child { margin-bottom: 0; }
.block--text a { color: var(--green); border-bottom: 1px solid currentColor; }
.block--text a:hover { text-decoration: none; opacity: .8; }

.block--image {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.block--image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

/* Klikbare image (Vergroten toestaan). Trigger is een <button> zodat
   toetsenbord-bediening en screenreaders het ding kunnen activeren. */
.block--image--zoomable .block__zoom-trigger {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    cursor: zoom-in;
    color: inherit;
    overflow: hidden;
}
.block--image--zoomable .block__zoom-trigger img {
    transition: transform 250ms ease;
}
.block--image--zoomable .block__zoom-trigger:hover img,
.block--image--zoomable .block__zoom-trigger:focus-visible img {
    transform: scale(1.03);
}
.block--image--zoomable .block__zoom-trigger:focus-visible {
    outline: 2px solid var(--green-2);
    outline-offset: 3px;
}

/* Globale lightbox-dialog. Native <dialog>::backdrop dimt de pagina;
   sluiten gaat via ESC, klik op backdrop, of de close-knop. */
.image-zoom {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--cream);
    max-width: 95vw;
    max-height: 95vh;
    width: max-content;
    height: max-content;
}
.image-zoom::backdrop {
    background: rgba(0, 0, 0, 0.85);
}
.image-zoom[open] {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.image-zoom__image {
    display: block;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.image-zoom__close-form {
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin: 0;
}
.image-zoom__close {
    appearance: none;
    background: rgba(255, 255, 255, .15);
    color: var(--cream);
    border: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 150ms ease;
}
.image-zoom__close:hover,
.image-zoom__close:focus-visible {
    background: rgba(255, 255, 255, .3);
    outline: none;
}

/* ----------------------------- Footer ----------------------------- */
.site-footer {
    background: var(--green);
    color: var(--cream);
    margin-top: 4rem;
}
.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: grid;
    gap: 2.5rem 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .site-footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.site-footer__col h3,
.site-footer__heading {
    font-family: var(--font-script);
    font-size: 1.05rem;
    letter-spacing: .04em;
    color: var(--cream);
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    color: var(--cream);            /* SVG logo + IG link inherit this */
}
.site-footer__logo { line-height: 0; }
.site-footer__logo-svg {
    display: block;
    height: 60px;
    width: auto;
    max-width: 220px;
}

.site-footer__address {
    font-style: normal;
    line-height: 1.65;
    margin: 0 0 1rem;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    line-height: 1.65;
}
.site-footer__list a {
    color: var(--cream);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.site-footer__list a:hover,
.site-footer__list a:focus-visible {
    text-decoration: none;
    border-bottom-color: var(--cream);
}

.icon-link--footer {
    width: auto;
    height: auto;
    padding: .5rem .85rem;
    border-radius: 999px;
    gap: .5rem;
    border: 1px solid rgba(245, 241, 238, .35);
    color: var(--cream);          /* footer is on green, restore cream */
    font-family: var(--font-script);
    font-size: .95rem;
    letter-spacing: .04em;
}
.icon-link--footer:hover,
.icon-link--footer:focus-visible {
    background: rgba(245, 241, 238, .12);
}

.site-footer__bottom {
    border-top: 1px solid rgba(245, 241, 238, .14);
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: rgba(245, 241, 238, .8);
}