/* ─── Design Tokens ────────────────────────────────────────────────────────
   TuttiPizza — Frontend Design System
   Kleuren afgeleid van het logo (#d4211c rood, #fece2c geel, #00a653 groen)
   met een warme neutrale ondertoon.
   ─────────────────────────────────────────────────────────────────────────── */
:root {
    /* Merkkleuren */
    --c-red:        #d4211c;
    --c-red-dark:   #a8180f;
    --c-red-tint:   #fbeae9;
    --c-yellow:     #fece2c;
    --c-yellow-dark:#e0a800;
    --c-green:      #00a653;
    --c-green-dark: #00803f;
    --c-green-tint: #e4f6ec;

    /* Neutralen */
    --c-bg:         #fffaf3;
    --c-surface:    #fff3e0;
    --c-surface-2:  #f7e6d0;
    --c-border:     #ecd9c2;
    --c-white:      #ffffff;

    /* Tekst */
    --c-text:       #2b1810;
    --c-text-2:     #7a6a5c;
    --c-text-3:     #b5a696;
    --c-overlay:    rgba(43, 24, 16, 0.55);

    /* Typografie — clamp() voor vloeiende schaling */
    --fs-xs:   clamp(0.6875rem, 0.65rem + 0.19vw, 0.75rem);
    --fs-sm:   clamp(0.8125rem, 0.78rem + 0.16vw, 0.875rem);
    --fs-base: clamp(0.9375rem, 0.90rem + 0.19vw, 1rem);
    --fs-md:   clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --fs-lg:   clamp(1.25rem, 1.10rem + 0.75vw, 1.5rem);
    --fs-xl:   clamp(1.5rem, 1.30rem + 1.00vw, 2rem);
    --fs-2xl:  clamp(2rem, 1.60rem + 2.00vw, 3rem);
    --fs-3xl:  clamp(2.5rem, 1.85rem + 3.25vw, 4rem);
    --fs-hero: clamp(2.75rem, 1.75rem + 5.00vw, 5.5rem);

    /* Border-radius — 2–3rem conform vast ontwerpsysteem, nergens scherpe hoeken */
    --r-xs:   0.75rem;
    --r-sm:   1.25rem;
    --r-md:   1.75rem;
    --r-lg:   2rem;
    --r-xl:   3rem;
    --r-pill: 100px;

    /* Spacing */
    --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem;  --sp-4: 1rem;
    --sp-5: 1.25rem;  --sp-6: 1.5rem;  --sp-8: 2rem;     --sp-10: 2.5rem;
    --sp-12: 3rem;    --sp-16: 4rem;   --sp-20: 5rem;    --sp-24: 6rem; --sp-32: 8rem;

    /* Layout */
    --max-w: 1320px;
    --cp:    clamp(1rem, 4vw, 2.5rem);

    --usp-h:    40px;
    --header-h: 96px;

    /* Easing conform PRD-animatiecyclus */
    --ease-mag:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:   cubic-bezier(0.16, 1.00, 0.30, 1.00);
    --ease-inout: cubic-bezier(0.45, 0.05, 0.55, 0.95);

    /* Schaduwen */
    --shadow-sm: 0 1px 4px rgba(43,24,16,.06), 0 0 1px rgba(43,24,16,.04);
    --shadow-md: 0 4px 20px rgba(43,24,16,.10), 0 0 1px rgba(43,24,16,.05);
    --shadow-lg: 0 8px 48px rgba(43,24,16,.14), 0 0 2px rgba(43,24,16,.06);
    --shadow-xl: 0 24px 80px rgba(43,24,16,.20);
}


/* ─── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--c-text);
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100dvh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }


/* ─── Ruisoverlay (feTurbulence — opaciteit 0.05, conform ontwerpsysteem) ──── */
.noise-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
}


/* ─── Container ────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--cp);
}


/* ─── Page wrap ────────────────────────────────────────────────────────────── */
#page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-top: calc(var(--usp-h) + var(--header-h));
}

#page-wrap > main { flex: 1; }

/* Pagina's zonder USP-balk (bv. productdetail) hebben alleen de header om ruimte voor te maken. */
#page-wrap.page-wrap--no-usp { padding-top: var(--header-h); }


/* ─── Typografie ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.35;
}

p { line-height: 1.7; }
em { font-style: italic; color: var(--c-red); }

.label {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-red);
}


/* ─── Knoppen ("magnetisch" conform ontwerpsysteem) ──────────────────────── */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.1rem;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.02em;
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
    border: none;
    transition: transform 220ms var(--ease-mag), box-shadow 300ms var(--ease-mag), border-color 220ms var(--ease-mag), color 220ms var(--ease-mag);
}

.btn__bg {
    position: absolute;
    inset: -4px;
    z-index: 0;
    transform: translateY(105%);
    transition: transform 420ms var(--ease-mag);
}

.btn__label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.btn:hover { transform: scale(1.03) translateY(-1px); }
.btn:hover .btn__bg { transform: translateY(0); }
.btn:active { transform: scale(0.98); }

.btn--primary {
    background: var(--c-red);
    color: var(--c-white);
    box-shadow: 0 6px 24px rgba(212, 33, 28, 0.30);
}
.btn--primary .btn__bg { background: var(--c-red-dark); }
.btn--primary:hover { box-shadow: 0 10px 36px rgba(212, 33, 28, 0.42); }

.btn--secondary {
    background: var(--c-green);
    color: var(--c-white);
    box-shadow: 0 6px 24px rgba(0, 166, 83, 0.28);
}
.btn--secondary .btn__bg { background: var(--c-green-dark); }
.btn--secondary:hover { box-shadow: 0 10px 36px rgba(0, 166, 83, 0.40); }

.btn--outline {
    background: transparent;
    color: var(--c-text);
    border: 1.5px solid var(--c-border);
}
.btn--outline .btn__bg { background: var(--c-red); }
.btn--outline:hover { color: var(--c-white); border-color: var(--c-red); }

.btn--outline-light {
    background: transparent;
    color: var(--c-white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-light .btn__bg { background: var(--c-white); }
.btn--outline-light:hover { color: var(--c-red); border-color: var(--c-white); }

.btn--sm  { padding: 0.6rem 1.4rem; font-size: var(--fs-xs); }
.btn--lg  { padding: 1.15rem 2.6rem; font-size: var(--fs-md); }
.btn--full { width: 100%; }


/* ─── Links met lift-hover conform ontwerpsysteem ─────────────────────────── */
.link-lift {
    display: inline-flex;
    color: var(--c-red);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: transform 150ms var(--ease-mag), color 150ms var(--ease-mag);
}
.link-lift:hover { transform: translateY(-1px); color: var(--c-red-dark); }


/* ─── USP-balk ─────────────────────────────────────────────────────────────── */
.usp-bar {
    height: var(--usp-h);
    background: var(--c-text);
    color: var(--c-white);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
}

.usp-bar__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 5vw, 3.5rem);
    width: 100%;
}

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

.usp-bar__item svg {
    width: 13px;
    height: 13px;
    color: var(--c-yellow);
    flex-shrink: 0;
}


/* ─── Site Bar (USP + Header samen voor vloeiende scroll-animatie) ──────────── */
#site-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    transition: transform 350ms var(--ease-mag);
}

#site-bar.is-hidden { transform: translateY(-100%); }


/* ─── Header ───────────────────────────────────────────────────────────────── */
.site-header {
    height: var(--header-h);
    background: #2e1b14;
    color: var(--c-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    transition: box-shadow 300ms var(--ease-mag), background-color 300ms;
}

.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-8);
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 200ms var(--ease-mag);
}
.site-logo:hover { transform: scale(1.03); }
.site-logo img { height: 72px; width: auto; }

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.site-nav__item { position: relative; }

.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    padding: 0.7rem 1.1rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: var(--fs-md);
    color: var(--c-white);
    transition: color 180ms var(--ease-mag), background-color 180ms var(--ease-mag), transform 180ms var(--ease-mag);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--c-yellow);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.site-nav__link.site-nav__cta {
    background: var(--c-red);
    color: var(--c-white);
}

.site-nav__link.site-nav__cta:hover,
.site-nav__link.site-nav__cta.is-active {
    background: var(--c-red-dark);
    color: var(--c-white);
    transform: translateY(-1px);
}

.site-nav__submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 200ms var(--ease-mag), transform 200ms var(--ease-mag), visibility 200ms;
    z-index: 50;
}

.site-nav__item:hover .site-nav__submenu,
.site-nav__item:focus-within .site-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav__submenu-link {
    display: block;
    padding: 0.6rem 0.85rem;
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--c-text);
    transition: background-color 150ms var(--ease-mag), color 150ms var(--ease-mag);
}
.site-nav__submenu-link:hover,
.site-nav__submenu-link.is-active {
    background: var(--c-red-tint);
    color: var(--c-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--r-pill);
    padding: 3px;
}

.lang-switcher__opt {
    padding: 0.4rem 0.7rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7);
    transition: background-color 180ms var(--ease-mag), color 180ms var(--ease-mag);
}
.lang-switcher__opt:hover { color: var(--c-white); }
.lang-switcher__opt.is-active { background: var(--c-white); color: var(--c-red); box-shadow: var(--shadow-sm); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
}
.nav-hamburger:hover { background: rgba(255, 255, 255, 0.08); }

.nav-hamburger__bar {
    width: 22px;
    height: 2.5px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform 280ms var(--ease-mag), opacity 200ms var(--ease-mag);
    margin-inline: auto;
}

.nav-hamburger.is-open .nav-hamburger__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ─── Mobiel menu ──────────────────────────────────────────────────────────── */
.mobile-nav {
    position: fixed;
    top: calc(var(--usp-h) + var(--header-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-bg);
    z-index: 400;
    padding: var(--sp-6) var(--cp);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    transform: translateX(100%);
    transition: transform 380ms var(--ease-mag);
    overflow-y: auto;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__link {
    padding: 0.9rem 0.25rem;
    font-size: var(--fs-lg);
    font-weight: 700;
    border-bottom: 1px solid var(--c-border);
}
.mobile-nav__link.is-active { color: var(--c-red); }
.mobile-nav__link.mobile-nav__cta { color: var(--c-red); }

.mobile-nav__sublink {
    padding: 0.65rem 0.25rem 0.65rem 1.25rem;
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--c-text-2);
    border-bottom: 1px solid var(--c-border);
}
.mobile-nav__sublink.is-active { color: var(--c-red); }

.mobile-nav__footer {
    margin-top: var(--sp-6);
    display: flex;
    justify-content: center;
}


/* ─── Taal-suggestiemodal ──────────────────────────────────────────────────── */
.lang-modal {
    position: fixed;
    inset: 0;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-4);
    background: var(--c-overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms var(--ease-mag), visibility 280ms;
}

.lang-modal.is-visible { opacity: 1; visibility: visible; }

.lang-modal__card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.94) translateY(10px);
    transition: transform 320ms var(--ease-mag);
}
.lang-modal.is-visible .lang-modal__card { transform: scale(1) translateY(0); }

.lang-modal__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-5);
}

.lang-modal__options {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
}

.lang-modal__opt {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--r-md);
    border: 1.5px solid var(--c-border);
    font-weight: 700;
    transition: border-color 180ms var(--ease-mag), background-color 180ms var(--ease-mag), transform 180ms var(--ease-mag);
}
.lang-modal__opt:hover { transform: translateY(-1px); border-color: var(--c-red); }
.lang-modal__opt.is-suggested { border-color: var(--c-red); background: var(--c-red-tint); color: var(--c-red); }

.lang-modal__dismiss {
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    text-decoration: underline;
}


/* ─── Cookiebanner ─────────────────────────────────────────────────────────── */
.cookie-consent {
    position: fixed;
    left: var(--sp-4);
    right: var(--sp-4);
    bottom: var(--sp-4);
    z-index: 7500;
    display: flex;
    justify-content: flex-start;
    max-height: calc(100vh - var(--sp-8));
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 320ms var(--ease-mag), visibility 320ms, transform 320ms var(--ease-mag);
    /* De container zelf spant de volle breedte (voor de flex-uitlijning), maar mag geen klikken
       onderscheppen buiten de kaart — anders is de rest van de pagina niet meer klikbaar zolang
       de banner open staat. */
    pointer-events: none;
}

.cookie-consent.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.cookie-consent__card {
    position: relative;
    background: var(--c-white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    max-width: 480px;
    width: 100%;
    max-height: calc(100vh - var(--sp-8));
    overflow-y: auto;
    padding: var(--sp-6);
    padding-right: var(--sp-10);
    pointer-events: auto;
}

.cookie-consent__close {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-2);
    transition: background-color 180ms var(--ease-mag), color 180ms var(--ease-mag), transform 180ms var(--ease-mag);
}
.cookie-consent__close:hover { background: var(--c-red-tint); color: var(--c-red); transform: scale(1.06); }
.cookie-consent__close-icon { width: 18px; height: 18px; }

.cookie-consent-reopen {
    position: fixed;
    left: var(--sp-4);
    bottom: var(--sp-4);
    z-index: 7400;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-red);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: opacity 260ms var(--ease-mag), visibility 260ms, transform 260ms var(--ease-mag);
}
.cookie-consent-reopen.is-visible { opacity: 1; visibility: visible; transform: scale(1); }
.cookie-consent-reopen:hover { transform: scale(1.06); }
.cookie-consent-reopen__icon { width: 24px; height: 24px; }
/* Rood = statistieken niet geaccepteerd (default), groen = wel geaccepteerd. */
.cookie-consent-reopen.is-granted { color: var(--c-green); }

.cookie-consent__title {
    font-size: var(--fs-lg);
    font-weight: 800;
    margin-bottom: var(--sp-2);
}

.cookie-consent__text {
    color: var(--c-text-2);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: var(--sp-5);
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}

.cookie-consent__links {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    margin-top: var(--sp-5);
}

.cookie-consent__link {
    font-size: var(--fs-xs);
    color: var(--c-text-2);
    text-decoration: underline;
    transition: transform 180ms var(--ease-mag), color 180ms var(--ease-mag);
}
.cookie-consent__link:hover { transform: translateY(-1px); color: var(--c-red); }

.cookie-consent__panel-text {
    color: var(--c-text-2);
    font-size: var(--fs-sm);
    line-height: 1.65;
    margin-bottom: var(--sp-5);
}

.cookie-consent__category {
    border-top: 1px solid var(--c-border);
    padding: var(--sp-4) 0;
}

.cookie-consent__category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    margin-bottom: var(--sp-2);
}

.cookie-consent__category-title {
    font-weight: 700;
}

.cookie-consent__always-on {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--c-green-dark);
    background: var(--c-green-tint);
    padding: 0.3em 0.75em;
    border-radius: var(--r-sm);
    white-space: nowrap;
}

.cookie-consent__category-text {
    color: var(--c-text-2);
    font-size: var(--fs-xs);
    line-height: 1.65;
}

.cookie-consent__panel-actions {
    margin-top: var(--sp-2);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: var(--sp-2);
}

.cookie-toggle {
    position: relative;
    flex: none;
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: #f0a03c;
    transition: background-color 220ms var(--ease-mag);
}

.cookie-toggle__handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-white);
    box-shadow: var(--shadow-sm);
    transition: transform 220ms var(--ease-mag);
}

.cookie-toggle.is-on { background: var(--c-green); }
.cookie-toggle.is-on .cookie-toggle__handle { transform: translateX(18px); }

@media (max-width: 560px) {
    .cookie-consent { left: var(--sp-2); right: var(--sp-2); bottom: var(--sp-2); }
    .cookie-consent__card { padding: var(--sp-5); }
    .cookie-consent__actions { flex-direction: column; }
    .cookie-consent__actions .btn { width: 100%; }
    .cookie-consent__panel-actions { flex-direction: column-reverse; }
    .cookie-consent__panel-actions .btn { width: 100%; }
}


/* ─── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--c-text);
    color: rgba(255,255,255,0.72);
    padding-block: var(--sp-16) var(--sp-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--sp-10);
    padding-bottom: var(--sp-10);
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-logo-link img {
    height: 58px;
    width: auto;
    margin-bottom: var(--sp-4);
}

.footer-tagline { line-height: 1.7; max-width: 34ch; }

.footer-cta { margin-top: var(--sp-6); }

.footer-col-title {
    color: var(--c-white);
    font-weight: 800;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-4);
}

.footer-col-title--spaced { margin-top: var(--sp-8); }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-nav__link {
    transition: color 150ms var(--ease-mag), transform 150ms var(--ease-mag);
    display: inline-block;
}
.footer-nav__link:hover { color: var(--c-yellow); transform: translateY(-1px); }
.footer-nav__link--spaced { margin-top: var(--sp-4); }

.footer-contact { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
}

.footer-social {
    display: flex;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
}

.footer-social__link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: var(--c-white);
    transition: background 200ms var(--ease-mag), transform 200ms var(--ease-mag);
}
.footer-social__link svg { width: 18px; height: 18px; }
.footer-social__link:hover { background: var(--c-red); transform: translateY(-2px); }
.footer-contact__item svg { width: 16px; height: 16px; margin-top: 3px; color: var(--c-yellow); flex-shrink: 0; }

.footer-rating { margin-top: var(--sp-6); }
.footer-rating__top { display: flex; align-items: center; gap: var(--sp-2); }
.footer-rating__score { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 800; color: var(--c-white); }
.footer-rating__stars { display: flex; gap: 0.15rem; }
.footer-rating__stars svg { width: 16px; height: 16px; }
.footer-rating__star { color: rgba(255,255,255,0.28); }
.footer-rating__star.is-filled { color: var(--c-yellow); fill: currentColor; }
.footer-rating__text { color: rgba(255,255,255,0.72); font-size: var(--fs-sm); margin-top: var(--sp-1); }
.footer-contact__item a:hover { color: var(--c-yellow); }

.footer-bottom {
    padding-top: var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    font-size: var(--fs-xs);
    flex-wrap: wrap;
}

.footer-bottom__links { display: flex; gap: var(--sp-5); }


/* ─── Secties ──────────────────────────────────────────────────────────────── */
.section { padding-block: var(--sp-20); }
.section--lg { padding-block: var(--sp-24); }
.section--surface { background: var(--c-surface); }

.section__header { max-width: 640px; margin-bottom: var(--sp-10); }
.section__header.is-centered { margin-inline: auto; text-align: center; }
.section__title { font-size: var(--fs-2xl); margin-top: var(--sp-2); }
.section__subtitle { color: var(--c-text); margin-top: var(--sp-4); font-size: var(--fs-md); }
.section__cta { margin-top: var(--sp-10); display: flex; justify-content: center; }


/* ─── Video-sectie (homepage) ─────────────────────────────────────────────── */
.video-section { background: var(--c-text); }

.video-section__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 85vh;
    overflow: hidden;
}

.video-section__iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    /* "Cover"-hack: de iframe altijd groot genoeg maken om de 16:9-video zonder
       letterbox-balken te laten vullen, ook als .video-section__frame door
       max-height smaller uitvalt dan een pure 16:9-verhouding. */
    min-width: 177.78vh;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Dekt de speler af totdat YouTube écht is gaan afspelen, zodat de korte flits van
   YouTube's eigen bedieningsiconen (vorige/pauze/volgende) bij het laden nooit zichtbaar is. */
.video-section__cover {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--c-text);
    opacity: 1;
    transition: opacity 400ms var(--ease-mag);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: var(--sp-6);
    text-align: center;
    color: var(--c-white);
}
.video-section__cover.is-hidden { opacity: 0; }
.video-section__cover-icon {
    width: 40px;
    height: 40px;
    animation: tp-video-loading 1.6s ease-in-out infinite;
}
.video-section__cover-text { font-size: var(--fs-sm); opacity: 0.85; }
@keyframes tp-video-loading {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .video-section__cover-icon { animation: none; }
}

.video-section__sound-btn {
    position: absolute;
    right: var(--sp-5);
    bottom: var(--sp-5);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    color: var(--c-white);
    border: 1.5px solid rgba(255,255,255,0.5);
    transition: background 200ms var(--ease-mag), transform 200ms var(--ease-mag);
}
.video-section__sound-btn:hover { background: rgba(0,0,0,0.65); transform: scale(1.06); }
.video-section__sound-icon { width: 20px; height: 20px; }
.video-section__sound-icon--unmuted { display: none; }
.video-section__sound-btn[aria-pressed="true"] .video-section__sound-icon--muted { display: none; }
.video-section__sound-btn[aria-pressed="true"] .video-section__sound-icon--unmuted { display: block; }

/* Toestemmings-vlak vóór de video wordt geladen (YouTube plaatst cookies). */
.video-section__consent {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: var(--sp-6);
    text-align: center;
    background: var(--c-text);
    color: var(--c-white);
    border: 0;
    cursor: pointer;
}
/* De classregel hierboven (display:flex) wint van de UA-regel [hidden]{display:none};
   deze specifiekere regel zet dat weer recht zodra JS/PHP het vlak verbergt. */
.video-section__consent[hidden] { display: none; }
.video-section__consent-icon { width: 40px; height: 40px; }
.video-section__consent-text { max-width: 42ch; font-size: var(--fs-sm); line-height: 1.5; opacity: 0.9; }
.video-section__consent:hover .video-section__consent-text { opacity: 1; }


/* ─── Parallax-quote sectie ────────────────────────────────────────────────── */
.parallax-quote {
    position: relative;
    width: 100%;
    height: clamp(320px, 45vw, 600px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-quote__media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-quote::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 14, 0.35), rgba(20, 16, 14, 0.55));
}

.parallax-quote__text {
    position: relative;
    z-index: 1;
    max-width: 20ch;
    margin-inline: auto;
    padding-inline: var(--cp);
    text-align: center;
    color: var(--c-white);
    font-family: var(--font-display);
    font-size: clamp(var(--fs-xl), 4vw, var(--fs-3xl));
    line-height: 1.3;
}


/* ─── Video-embed (standaard YouTube-iframe, gebruikt binnen paginacontent) ── */
.video-embed {
    max-width: 800px;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.video-embed__consent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: var(--sp-6);
    text-align: center;
    background: var(--c-text);
    color: var(--c-white);
    border: 0;
    cursor: pointer;
    font-size: var(--fs-sm);
    line-height: 1.5;
}
.video-embed__consent[hidden] { display: none; }
.video-embed__consent-icon { width: 40px; height: 40px; }
.video-embed__consent span { max-width: 42ch; opacity: 0.9; }
.video-embed__consent:hover span { opacity: 1; }


/* ─── Reviews-pagina: anchor-scroll houdt rekening met de fixed usp-balk + header ── */
#reviews-list { scroll-margin-top: calc(var(--usp-h) + var(--header-h) + var(--sp-4)); }


/* ─── Grid utilities ───────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }


/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
    background:
        radial-gradient(ellipse 55% 75% at 100% 0%, rgba(254, 206, 44, 0.28), transparent 60%),
        radial-gradient(ellipse 45% 60% at 0% 100%, rgba(212, 33, 28, 0.12), transparent 60%),
        var(--c-surface);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--sp-10);
    padding-inline: var(--cp);
    padding-block: var(--sp-12) var(--sp-16);
    max-width: var(--max-w);
    margin-inline: auto;
}

.hero__title {
    font-size: var(--fs-hero);
    margin-top: var(--sp-3);
}

.hero__subtitle {
    font-size: var(--fs-md);
    color: var(--c-text);
    margin-top: var(--sp-5);
    max-width: 46ch;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-top: var(--sp-8);
}

.hero__visual {
    position: relative;
}

.hero__img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.hero__img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--c-yellow);
    color: var(--c-text);
    border-radius: var(--r-lg);
    padding: var(--sp-4) var(--sp-5);
    box-shadow: var(--shadow-lg);
    text-align: center;
    line-height: 1.15;
}
.hero__badge-num { display: block; font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 800; }
.hero__badge-label { display: block; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }


/* ─── Occasions / iconlijst ────────────────────────────────────────────────── */
.occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
}

.occasion-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    text-align: center;
    transition: transform 220ms var(--ease-mag), box-shadow 220ms var(--ease-mag), border-color 220ms var(--ease-mag);
}
.occasion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-red);
}
.occasion-card__icon {
    width: 52px;
    height: 52px;
    margin-inline: auto;
    margin-bottom: var(--sp-3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-red-tint);
    color: var(--c-red);
    border-radius: var(--r-md);
}
.occasion-card__icon svg { width: 24px; height: 24px; }
.occasion-card__label { font-weight: 700; font-size: var(--fs-sm); }


/* ─── Locatielijst (provinciepagina's) ─────────────────────────────────────── */
.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-8);
}
.location-list__item {
    display: inline-flex;
    padding: var(--sp-2) var(--sp-4);
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 999px;
    font-size: var(--fs-sm);
    color: var(--c-text);
    text-decoration: none;
    transition: transform 150ms var(--ease-mag), border-color 150ms var(--ease-mag), color 150ms var(--ease-mag);
}
.location-list__item:hover {
    border-color: var(--c-red);
    color: var(--c-red);
    transform: translateY(-2px);
}
/* Plaatsen zonder eigen pagina: geen link, dus bewust niet klikbaar oogt (geen achtergrond/
   rand/hover-beweging) — puur informatief tussen de wél-klikbare plaatsen in de lijst. */
.location-list__item--static {
    background: transparent;
    border-color: transparent;
    color: var(--c-text-2);
    cursor: default;
}
.location-list__item--static:hover {
    border-color: transparent;
    color: var(--c-text-2);
    transform: none;
}


/* ─── About/Story sectie ───────────────────────────────────────────────────── */
.about-section .about {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--sp-12);
    align-items: center;
}

.about__image-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}
.about__img { width: 100%; height: 100%; object-fit: cover; }

.about__title { font-size: var(--fs-2xl); margin-top: var(--sp-2); }
.about__text { color: var(--c-text); margin-top: var(--sp-4); max-width: 56ch; }

.about__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-8);
    margin-top: var(--sp-8);
    margin-bottom: var(--sp-8);
}
.about__stat-num {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--c-red);
    display: block;
}
.about__stat-label { font-size: var(--fs-sm); color: var(--c-text-2); }


/* ─── CTA-band ─────────────────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
    color: var(--c-white);
    padding-block: var(--sp-20);
    text-align: center;
}
.cta-section em { color: var(--c-yellow); }
.cta-title { font-size: var(--fs-2xl); margin-top: var(--sp-2); }
.cta-text { max-width: 52ch; margin: var(--sp-4) auto 0; opacity: 0.92; }
.cta-actions { display: flex; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-8); }
.label--light { color: var(--c-yellow); }


/* ─── Vacature-band (recruitment banner) ──────────────────────────────────── */
.recruit-banner {
    background: var(--c-surface-2);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    flex-wrap: wrap;
}
.recruit-banner__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-green-tint);
    color: var(--c-green);
    border-radius: var(--r-md);
}
.recruit-banner__icon svg { width: 26px; height: 26px; }
.recruit-banner__text { flex: 1; min-width: 220px; }
.recruit-banner__title { font-size: var(--fs-lg); }
.recruit-banner__desc { color: var(--c-text); margin-top: var(--sp-2); }


/* ─── Menukaart intro ──────────────────────────────────────────────────────── */
.menu-hero {
    padding-block: var(--sp-16) var(--sp-10);
    text-align: center;
}
.menu-hero__title { font-size: var(--fs-3xl); margin-top: var(--sp-2); }
.menu-hero__intro { max-width: 62ch; margin: var(--sp-5) auto 0; color: var(--c-text); font-size: var(--fs-md); }

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2);
    margin-top: var(--sp-8);
}
.menu-tabs__link {
    padding: 0.55rem 1.1rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-sm);
    font-weight: 700;
    border: 1.5px solid var(--c-border);
    color: var(--c-text-2);
    transition: all 180ms var(--ease-mag);
}
.menu-tabs__link:hover { border-color: var(--c-red); color: var(--c-red); transform: translateY(-1px); }
.menu-tabs__link.is-active { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }


/* ─── Menukaart-kaarten (pizza-productkaarten) ────────────────────────────── */
.menu-card-link { display: block; height: 100%; color: inherit; text-decoration: none; }

.menu-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 260ms var(--ease-mag), box-shadow 260ms var(--ease-mag);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.menu-card__img-wrap {
    aspect-ratio: 4 / 3;
    background: #2e1b14;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-3);
    position: relative;
}
.menu-card__img { width: 80%; height: 80%; object-fit: contain; border-radius: var(--r-md); }
.menu-card__img-placeholder { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.menu-card__img-placeholder svg { width: 34px; height: 34px; opacity: 0.55; }
.menu-card__img-placeholder span { font-size: var(--fs-xs); font-weight: 600; }

.menu-card__badge {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    background: var(--c-green);
    color: var(--c-white);
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-pill);
}

.menu-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--sp-5);
    background: #1d110d;
    color: var(--c-white);
}
.menu-card__name { font-size: var(--fs-lg); color: var(--c-white); }
.menu-card__ingredients {
    flex: 1;
    margin-top: var(--sp-2);
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-sm);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.menu-card__ingredients.is-empty { font-style: italic; color: rgba(255, 255, 255, 0.4); }

.menu-card__footer {
    margin-top: var(--sp-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    min-height: 26px;
}

.menu-card__price { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 800; color: var(--c-red); }

.menu-card__allergens { display: flex; align-items: center; gap: 0.15rem; }
.menu-card__allergens img { width: 34px; height: 34px; }

.menu-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--sp-16) var(--sp-6);
    background: var(--c-surface);
    border-radius: var(--r-lg);
    border: 1.5px dashed var(--c-border);
}
.menu-empty-state svg { width: 40px; height: 40px; color: var(--c-text-3); margin: 0 auto var(--sp-4); }
.menu-empty-state p { color: var(--c-text); max-width: 44ch; margin-inline: auto; }


/* ─── Productdetailpagina ──────────────────────────────────────────────────── */
.product-detail__back {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--c-text-2);
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: 700;
    margin-bottom: var(--sp-6);
}
.product-detail__back svg { width: 18px; height: 18px; }

.product-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: var(--sp-16);
    align-items: start;
}

.product-detail__media {
    background: #2e1b14;
    border-radius: var(--r-lg);
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-6);
}
.product-detail__img { max-width: 75%; max-height: 75%; width: auto; height: auto; object-fit: contain; border-radius: var(--r-md); }

.product-detail__info { display: flex; flex-direction: column; justify-content: center; }
.product-detail__name { font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
.product-detail__description { color: var(--c-text); margin-bottom: var(--sp-6); }
.product-detail__description p + p { margin-top: var(--sp-3); }
.product-detail__ingredients { margin-bottom: var(--sp-6); }
.product-detail__ingredients p:not(.label) { margin-top: var(--sp-2); line-height: 1.6; }
.product-detail__allergens .menu-card__allergens { margin-top: var(--sp-2); }

.product-related { background: var(--c-surface); }
.product-related h2 { font-size: var(--fs-xl); margin: var(--sp-2) 0 var(--sp-6); }


/* ─── 404-pagina ───────────────────────────────────────────────────────────── */
.not-found-page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sp-8);
    gap: var(--sp-3);
}
.not-found-logo img { height: 64px; width: auto; margin-bottom: var(--sp-4); }
.not-found-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 6vw + 2rem, 8rem);
    font-weight: 800;
    color: var(--c-red);
    line-height: 1;
}
.not-found-title { font-size: var(--fs-2xl); }
.not-found-text { color: var(--c-text); max-width: 46ch; }
.not-found-actions { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); flex-wrap: wrap; justify-content: center; }


/* ─── Formulier systeem (contactformulier) ─────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
}

.form-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-label {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-text);
}

.form-required { color: var(--c-red); margin-left: 2px; }

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    color: var(--c-text);
    font-size: var(--fs-sm);
    transition: border-color 180ms var(--ease-mag), box-shadow 180ms var(--ease-mag);
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--c-text-3); }

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--c-red);
    box-shadow: 0 0 0 3px var(--c-red-tint);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-select {
    width: 100%;
    padding: 0.85rem 2.6rem 0.85rem 1.1rem;
    background: var(--c-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a6a5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    color: var(--c-text);
    font-size: var(--fs-sm);
    transition: border-color 180ms var(--ease-mag), box-shadow 180ms var(--ease-mag);
    -webkit-appearance: none;
    appearance: none;
}

.form-select:focus {
    outline: none;
    border-color: var(--c-red);
    box-shadow: 0 0 0 3px var(--c-red-tint);
}

.form-help { font-size: var(--fs-xs); color: var(--c-text-3); }

.form-group[hidden] { display: none; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--c-red);
    cursor: pointer;
}
.form-checkbox span { font-size: var(--fs-sm); color: var(--c-text); line-height: 1.5; }
.form-checkbox input[type="radio"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--c-red);
    cursor: pointer;
}

fieldset.form-group { border: none; margin: 0; padding: 0; }
fieldset.form-group legend.form-label { padding: 0; margin-bottom: var(--sp-2); }

.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2) var(--sp-6);
}


/* ─── Vacatures (job-grid) ──────────────────────────────────────────────── */
.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
}

.job-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
    transition: transform 250ms var(--ease-mag), box-shadow 250ms var(--ease-mag);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.job-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: var(--c-red-tint);
    color: var(--c-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.job-card__icon svg { width: 24px; height: 24px; }
.job-card__title { font-size: var(--fs-xl); }
.job-card__text { color: var(--c-text); font-size: var(--fs-sm); line-height: 1.7; }

.job-card__badges {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    width: 100%;
}
.job-card__badges--stacked { gap: var(--sp-3); }

.job-badge {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--c-text);
}
.job-badge i { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--c-green); }


/* ─── Juridische pagina's (Algemene Voorwaarden, Privacybeleid) ────────────── */
.legal-content h2 {
    font-size: var(--fs-xl);
    margin-top: var(--sp-10);
    margin-bottom: var(--sp-4);
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content p { color: var(--c-text); line-height: 1.75; }
.legal-content p + p { margin-top: var(--sp-4); }

.legal-content a { color: var(--c-red); font-weight: 700; }
.legal-content a:hover { color: var(--c-red-dark); }

.legal-content > ol {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    padding-left: 1.35em;
    color: var(--c-text);
    line-height: 1.75;
}
.legal-content ol ol {
    list-style-type: lower-alpha;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    padding-left: 1.35em;
    margin-top: var(--sp-2);
}


/* ─── Page-hero (gedeeld door Over Ons + Contact) ─────────────────────────── */
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--c-surface);
    border-radius: var(--r-xl);
    max-width: var(--max-w);
    margin: var(--sp-16) auto var(--sp-12);
    padding: clamp(var(--sp-16), 8vw, var(--sp-24)) var(--cp);
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero__title { font-size: clamp(var(--fs-2xl), 5vw, var(--fs-3xl)); max-width: 20ch; }
.page-hero__sub {
    font-size: var(--fs-md);
    color: var(--c-text);
    line-height: 1.75;
    max-width: 52ch;
    margin-top: var(--sp-5);
}

.page-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    object-position: center 40%;
}


/* ─── Over Ons pagina ──────────────────────────────────────────────────────── */
.about-page-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}

.about-page-image {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease-mag);
}
.about-page-image:hover img { transform: scale(1.03); }

.about-page-text {
    color: var(--c-text);
    line-height: 1.8;
    max-width: 54ch;
    margin-top: var(--sp-4);
}
.about-page-text + .about-page-text { margin-top: var(--sp-4); }

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-10);
}

.about-value-card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    border: 1px solid var(--c-border);
    transition: transform 250ms var(--ease-mag), box-shadow 250ms var(--ease-mag);
}
.about-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.about-value-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--c-red-tint);
    color: var(--c-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-value-card__icon svg { width: 22px; height: 22px; }
.about-value-card__title { font-size: var(--fs-lg); }
.about-value-card__text { color: var(--c-text); font-size: var(--fs-sm); line-height: 1.7; }

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
    margin-top: var(--sp-10);
}
.about-team__photo {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
}
.about-team__photo img { width: 100%; height: 100%; object-fit: cover; }


/* ─── Content-quote (blockquote-callout binnen paginateksten) ──────────────── */
.content-quote {
    background: var(--c-surface-2);
    border-left: 4px solid var(--c-red);
    border-radius: var(--r-md);
    padding: var(--sp-5) var(--sp-6);
    color: var(--c-text);
    font-style: italic;
    line-height: 1.7;
    margin-block: var(--sp-6);
}
.content-quote p + p { margin-top: var(--sp-2); }


/* ─── Prijzenblok (hergebruikt op Pizza catering + Pizza foodtruck) ────────── */
.pricing-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: var(--sp-10);
    box-shadow: var(--shadow-md);
}
.pricing-card__rows {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    margin-block: var(--sp-6);
    padding-block: var(--sp-2);
}
.pricing-card__notes { color: var(--c-text); line-height: 1.75; }
.pricing-card__notes p + p { margin-top: var(--sp-3); }


/* ─── FAQ-accordion ────────────────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    max-width: 800px;
    margin-inline: auto;
}

.faq-item {
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 220ms var(--ease-mag), box-shadow 220ms var(--ease-mag);
}
.faq-item[open] { border-color: var(--c-red); box-shadow: var(--shadow-sm); }

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: var(--fs-md);
    color: var(--c-text);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { content: ''; }

.faq-item__q-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-red-tint);
    color: var(--c-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 280ms var(--ease-mag), background-color 280ms var(--ease-mag), color 280ms var(--ease-mag);
}
.faq-item__q-icon svg { width: 16px; height: 16px; }
.faq-item[open] .faq-item__q-icon { transform: rotate(180deg); background: var(--c-red); color: var(--c-white); }

.faq-item__a {
    padding: 0 var(--sp-6) var(--sp-6);
    color: var(--c-text);
    line-height: 1.75;
    max-width: 68ch;
}


/* ─── Checklist-tegels (reasons-grid, hergebruikt op Pizza foodtruck) ──────── */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.reason-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    transition: transform 250ms var(--ease-mag), box-shadow 250ms var(--ease-mag);
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.reason-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--c-green-tint);
    color: var(--c-green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.reason-card__icon svg { width: 22px; height: 22px; }
.reason-card__title { font-size: var(--fs-lg); }
.reason-card__text { color: var(--c-text); font-size: var(--fs-sm); line-height: 1.7; }


/* ─── Afsluitende mini-CTA's (Menu / Aanvragen / Contact) ──────────────────── */
.mini-cta-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    transition: transform 250ms var(--ease-mag), box-shadow 250ms var(--ease-mag);
}
.mini-cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini-cta-card__title { font-size: var(--fs-md); }
.mini-cta-card__text { color: var(--c-text); font-size: var(--fs-base); line-height: 1.65; flex: 1; }


/* ─── Contact pagina ───────────────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--sp-12);
    align-items: start;
}

.contact-info__title { font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
.contact-info__sub {
    color: var(--c-text);
    line-height: 1.75;
    max-width: 38ch;
    margin-bottom: var(--sp-8);
}

.contact-details { display: flex; flex-direction: column; gap: var(--sp-5); }

.contact-detail-item { display: flex; align-items: flex-start; gap: var(--sp-4); }

.contact-detail-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--c-red-tint);
    color: var(--c-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-item__icon svg { width: 20px; height: 20px; }

.contact-detail-item__content { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-item__label {
    font-size: var(--fs-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-3);
}
.contact-detail-item__value { font-size: var(--fs-sm); color: var(--c-text); line-height: 1.55; }
.contact-detail-item__value a { transition: color 150ms var(--ease-mag); }
.contact-detail-item__value a:hover { color: var(--c-red); }

.contact-form-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: var(--sp-10);
    box-shadow: var(--shadow-md);
}

.contact-form-card__title {
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-5);
    border-bottom: 1px solid var(--c-border);
}

.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }

/* De classregel hierboven (display:flex) wint van de UA-regel [hidden]{display:none};
   expliciet terugzetten zodat het formulier na een succesvolle verzending verdwijnt. */
.contact-form[hidden] { display: none; }

.contact-form__success[hidden] { display: none; }
.contact-form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-4);
    padding: var(--sp-8) 0;
}
.contact-form__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--c-green-tint);
    color: var(--c-green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form__success-icon svg { width: 30px; height: 30px; }
.contact-form__success-title { font-size: var(--fs-xl); }
.contact-form__success-text { color: var(--c-text); font-size: var(--fs-sm); line-height: 1.65; max-width: 36ch; }

.contact-alert {
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    line-height: 1.55;
}
.contact-alert--error {
    background: rgba(212, 33, 28, 0.08);
    border: 1px solid rgba(212, 33, 28, 0.25);
    color: var(--c-red-dark);
    display: none;
}
.contact-alert--error.is-visible { display: block; }

.book-form-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: var(--sp-10);
    box-shadow: var(--shadow-md);
    max-width: 760px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-5);
}

.process-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-6) var(--sp-5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    transition: transform 220ms var(--ease-mag), box-shadow 220ms var(--ease-mag), border-color 220ms var(--ease-mag);
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-red);
}

.process-card__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-red-tint);
    color: var(--c-red);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-card__text { font-size: var(--fs-sm); color: var(--c-text); line-height: 1.55; }

.process-note {
    text-align: center;
    color: var(--c-text);
    font-size: var(--fs-sm);
    margin-top: var(--sp-8);
}
.process-note a { color: var(--c-red); font-weight: 700; }
.process-note a:hover { color: var(--c-red-dark); }

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.sitemap-group {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
}

.sitemap-group__title {
    font-size: var(--fs-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-red);
    margin-bottom: var(--sp-4);
}

.sitemap-group__links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.sitemap-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--c-text-2);
    text-decoration: none;
    transition: color 150ms var(--ease-mag), transform 150ms var(--ease-mag);
}
.sitemap-link:hover { color: var(--c-red); transform: translateX(2px); }
.sitemap-link i { width: 14px; height: 14px; flex-shrink: 0; }


/* ─── Reviews: score-samenvatting (Reviews-pagina) ─────────────────────────── */
.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-2);
}
.rating-summary__score {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--c-red);
}
.rating-summary__stars { display: flex; gap: 0.2rem; }
.rating-summary__stars svg { width: 22px; height: 22px; }
.rating-summary__text { color: var(--c-text-2); font-size: var(--fs-sm); margin-bottom: var(--sp-3); }

/* ─── Reviews: sterren (gedeeld door rating-summary + review-card) ─────────── */
.review-card__star { color: var(--c-border); }
.review-card__star.is-filled { color: var(--c-yellow-dark); fill: currentColor; }

/* ─── Reviews: kaarten (Reviews-pagina + homepage "Recente reviews") ───────── */
.review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    transition: transform 250ms var(--ease-mag), box-shadow 250ms var(--ease-mag);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-card__stars { display: flex; gap: 0.15rem; margin-bottom: var(--sp-3); }
.review-card__stars svg { width: 16px; height: 16px; }

.review-card__title { font-size: var(--fs-md); margin-bottom: var(--sp-2); }

.review-card__content {
    flex: 1;
    color: var(--c-text-2);
    font-size: var(--fs-sm);
    line-height: 1.65;
}
.review-card__content p + p { margin-top: var(--sp-2); }

.review-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--c-border);
}
.review-card__name { font-weight: 700; font-size: var(--fs-sm); }
.review-card__date { color: var(--c-text-3); font-size: var(--fs-xs); flex-shrink: 0; }

/* ─── References: klantlogo's (pizza catering voor bedrijven) ──────────────── */
.reference-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    transition: transform 250ms var(--ease-mag), box-shadow 250ms var(--ease-mag);
}
a.reference-card { cursor: pointer; }
.reference-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.reference-card__logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ─── Reviews: formulier + genummerde paginering (publiek) ─────────────────── */
.review-form-card { max-width: 720px; margin-inline: auto; }

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--sp-2);
    margin-top: var(--sp-10);
}
.pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding-inline: var(--sp-3);
    border-radius: var(--r-pill);
    border: 1.5px solid var(--c-border);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-text-2);
    transition: all 180ms var(--ease-mag);
}
.pagination__page:hover { border-color: var(--c-red); color: var(--c-red); transform: translateY(-1px); }
.pagination__page.is-active { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }
.pagination__page--edge svg { width: 16px; height: 16px; }


/* ─── Responsief ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { order: -1; }
    .about-section .about { grid-template-columns: 1fr; }
    .about__image-wrap { max-width: 420px; margin-inline: auto; }
    .occasion-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; row-gap: var(--sp-8); }
    .about-page-intro { grid-template-columns: 1fr; }
    .about-page-image { max-width: 480px; margin-inline: auto; aspect-ratio: 16 / 10; }
    .about-values__grid { grid-template-columns: 1fr; }
    .about-team__grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
    .product-detail__layout { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }
    .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
    .job-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    :root { --header-h: 80px; }
    .site-logo img { height: 56px; }
    .site-nav, .nav-actions .lang-switcher { display: none; }
    .nav-hamburger { display: flex; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .form-row--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .page-hero { margin-top: 0; margin-bottom: var(--sp-6); border-radius: 0; }
    .sitemap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .occasion-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero__badge { position: static; margin-top: var(--sp-4); display: inline-block; }
    .hero__cta-secondary { display: none; }
    .section { padding-block: var(--sp-12); }
    .section--lg { padding-block: var(--sp-16); }
    .cta-section { padding-block: var(--sp-12); }
    .menu-hero { padding-block: var(--sp-10) var(--sp-6); }
    .form-row, .form-row--3 { grid-template-columns: 1fr; }
    .contact-form-card { padding: var(--sp-6); }
    .about-team__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card { padding: var(--sp-6); }
    .faq-item__q { padding: var(--sp-4) var(--sp-5); font-size: var(--fs-base); }
    .faq-item__a { padding: 0 var(--sp-5) var(--sp-5); }
}
