/* ====================================================================
   SMUK ESPRESSOBAR — Stylesheet
   Warm, editorial, modern. Mobile-first.
   ==================================================================== */

/* -------------------------------------------------- 1. RESET & BASE  */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* -------------------------------------------------- 2. DESIGN TOKENS  */
:root {
    /* Palette — SMÚK bordeaux & cream */
    --paper:        #FAF6EE;   /* lightest cream — primary background  */
    --cream:        #F4EBDA;   /* warm cream                            */
    --cream-dark:   #E8DAC2;   /* deeper warm                           */
    --espresso:     #4F1B2C;   /* deep bordeaux — primary brand color  */
    --espresso-mid: #6B2A40;   /* mid bordeaux                          */
    --espresso-soft:#8B4A5E;   /* soft mauve-bordeaux                   */
    --terracotta:   #C99AAA;   /* accent — soft rose                    */
    --caramel:      #E8C9D0;   /* secondary accent — light rose         */
    --ink:          #2A0E18;   /* near-black with burgundy hint         */
    --line:         rgba(79, 27, 44, 0.14);
    --line-soft:    rgba(79, 27, 44, 0.06);
    --shadow-sm:    0 1px 2px rgba(79, 27, 44, 0.06);
    --shadow:       0 8px 32px -8px rgba(79, 27, 44, 0.18);
    --shadow-lg:    0 24px 60px -16px rgba(79, 27, 44, 0.26);

    /* Typography */
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Radii */
    --r-sm: 6px;
    --r:    14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-pill: 999px;

    /* Spacing rhythm */
    --section-pad: 5rem;

    /* Container */
    --container: 1240px;
}

@media (min-width: 768px) {
    :root { --section-pad: 7rem; }
    html  { scroll-padding-top: 96px; }
}

/* -------------------------------------------------- 3. BODY & TEXT    */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--espresso);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Subtle paper texture overlay across whole page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.31, 0 0 0 0 0.10, 0 0 0 0 0.17, 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

/* Headings */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 500;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}

h1 {
    font-size: clamp(2.5rem, 7vw + 1rem, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3.75rem);
    line-height: 1.02;
}

h3 {
    font-size: clamp(1.25rem, 1vw + 1rem, 1.625rem);
}

h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 em, h2 em {
    font-style: italic;
    color: var(--terracotta);
    font-variation-settings: "opsz" 144, "SOFT" 100;
}

p { color: var(--espresso-mid); }

a {
    color: inherit;
    transition: color 0.2s ease;
}

.link-underline {
    color: var(--espresso);
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.link-underline:hover {
    color: var(--terracotta);
    border-color: var(--terracotta);
}

/* -------------------------------------------------- 4. LAYOUT HELPERS */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .container { padding: 0 2.5rem; }
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 2;
}

.section-head {
    max-width: 720px;
    margin-bottom: 3.5rem;
}

.section-head-center {
    margin-left: auto; margin-right: auto;
    text-align: center;
}

.section-intro {
    font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
    line-height: 1.55;
    margin-top: 1rem;
    color: var(--espresso-mid);
    max-width: 56ch;
}
.section-head-center .section-intro { margin-left: auto; margin-right: auto; }

.lead {
    font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
    line-height: 1.55;
    color: var(--espresso-mid);
    margin-bottom: 1rem;
}

/* Eyebrow ‘kicker’ label */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--espresso-soft);
    margin-bottom: 1rem;
}

.eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.3); }
}

/* -------------------------------------------------- 5. BUTTONS        */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--r-pill);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    line-height: 1;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    border: 1.5px solid transparent;
    position: relative;
}

.btn-sm  { padding: 0.6rem 1.1rem; font-size: 0.875rem; }
.btn-lg  { padding: 1.05rem 1.85rem; font-size: 1rem; }

.btn-primary {
    background: var(--espresso);
    color: var(--paper);
    border-color: var(--espresso);
}
.btn-primary:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -6px rgba(201, 154, 170, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--espresso);
    border-color: var(--espresso);
}
.btn-outline:hover {
    background: var(--espresso);
    color: var(--paper);
}

.btn-ghost {
    background: transparent;
    color: var(--espresso);
    border-color: var(--line);
}
.btn-ghost:hover {
    border-color: var(--espresso);
    background: var(--cream);
}

/* -------------------------------------------------- 6. HEADER         */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 238, 0.85);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 1px 0 var(--line), 0 4px 20px -8px rgba(79, 27, 44, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Logo */
.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-img {
    height: 42px;
    width: auto;
    display: block;
    animation: logoSpin 20s linear infinite;
    transform-origin: center center;
    will-change: transform;
}
.logo-link:hover .logo-img {
    animation-duration: 4s;
}

@keyframes logoSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .logo-img { animation: none; }
}

/* Nav */
.main-nav { display: none; }

@media (min-width: 1024px) {
    .main-nav { display: block; }
    .main-nav ul {
        display: flex;
        gap: 0.4rem;
    }
    .main-nav a {
        display: inline-block;
        padding: 0.55rem 1rem;
        border-radius: var(--r-pill);
        font-size: 0.93rem;
        color: var(--espresso-mid);
        font-weight: 500;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .main-nav a:hover {
        background: var(--cream);
        color: var(--espresso);
    }
}

.header-cta {
    display: none;
    gap: 0.6rem;
    align-items: center;
}
@media (min-width: 768px) {
    .header-cta { display: flex; }
}

/* Mobile burger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    align-items: center;
    transition: background 0.2s ease;
}
.nav-toggle:hover { background: var(--cream); }
.nav-toggle span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--espresso);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
    border-top: 1px solid var(--line-soft);
    background: var(--paper);
    padding: 1.5rem 1.25rem 2rem;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.mobile-menu a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--espresso);
    border-radius: var(--r);
    transition: background 0.2s ease;
}
.mobile-menu a:hover { background: var(--cream); }
.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line-soft);
}
.mobile-menu-cta .btn { width: 100%; }

/* -------------------------------------------------- 7. HERO           */
.hero {
    position: relative;
    padding: 3rem 0 5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero { padding: 4rem 0 7rem; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(201, 154, 170, 0.08), transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 30%, rgba(232, 201, 208, 0.06), transparent 70%),
        linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
    }
}

.hero-copy h1 em {
    display: inline-block;
    position: relative;
}
.hero-copy h1 em::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 0.1em;
    background: var(--terracotta);
    opacity: 0.25;
    border-radius: 2px;
}

.hero-sub {
    font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
    line-height: 1.55;
    margin-top: 1.5rem;
    color: var(--espresso-mid);
    max-width: 50ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-soft);
}
.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--espresso-mid);
}
.hero-meta-item svg { color: var(--espresso-soft); }
.meta-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--caramel);
    font-weight: 600;
}
.meta-stars svg { width: 16px; height: 16px; }
.meta-stars strong { color: var(--ink); font-size: 0.95rem; }
.hero-meta-divider {
    width: 1px;
    height: 16px;
    background: var(--line);
    display: none;
}
@media (min-width: 480px) { .hero-meta-divider { display: block; } }

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 540px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-visual { margin: 0; }
}

.hero-image-frame {
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-1.5deg);
}
.hero-image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.hero-image-frame:hover img { transform: scale(1.05); }

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(79, 27, 44, 0.25));
    pointer-events: none;
}

.hero-image-tag {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--paper);
    border-radius: var(--r);
    padding: 0.85rem 1.1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transform: rotate(-3deg);
    z-index: 2;
    max-width: 240px;
    border: 1px solid var(--line-soft);
}
.hero-image-tag .tag-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.hero-image-tag div { display: flex; flex-direction: column; line-height: 1.3; }
.hero-image-tag strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 600;
}
.hero-image-tag span {
    font-size: 0.72rem;
    color: var(--espresso-soft);
    letter-spacing: 0.02em;
}

.hero-image-mini {
    position: absolute;
    top: -1.2rem;
    right: -1.2rem;
    width: 110px; height: 110px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--paper);
    transform: rotate(8deg);
    z-index: 2;
    display: none;
}
.hero-image-mini img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 480px) { .hero-image-mini { display: block; } }

/* -------------------------------------------------- 8. USP STRIP      */
.usp-strip {
    background: var(--espresso);
    color: var(--paper);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.usp-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2.5rem;
    align-items: center;
}
.usp-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.01em;
    padding: 0.4rem 0;
}
.usp-icon {
    font-size: 1.05rem;
    filter: grayscale(0.2);
}

/* -------------------------------------------------- 9. OVER SMUK      */
.over { background: var(--paper); }

.over-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .over-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 5rem;
    }
}

.over-images {
    position: relative;
    aspect-ratio: 4/4;
    max-width: 560px;
    margin: 0 auto;
}
@media (min-width: 1024px) { .over-images { margin: 0; } }

.over-img {
    position: absolute;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.over-img img { width: 100%; height: 100%; object-fit: cover; }

.over-img-1 {
    top: 0; left: 0;
    width: 75%; height: 75%;
    z-index: 2;
}
.over-img-2 {
    bottom: 0; right: 0;
    width: 55%; height: 55%;
    z-index: 3;
    border: 6px solid var(--paper);
}

.over-stamp {
    position: absolute;
    top: 0; right: 0;
    width: 128px; height: 128px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 4;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
    transform: rotate(-12deg);
    animation: spinSlow 30s linear infinite;
    text-transform: uppercase;
    padding: 0.75rem;
}
.over-stamp strong {
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    margin: 2px 0;
    letter-spacing: 0.02em;
}
@keyframes spinSlow {
    from { transform: rotate(-12deg); }
    to   { transform: rotate(348deg); }
}

.over-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
@media (min-width: 480px) {
    .over-features { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
    .over-features { grid-template-columns: repeat(3, 1fr); }
}

.feature {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--cream);
    border-radius: var(--r);
    border: 1px solid var(--line-soft);
}
.feature svg {
    width: 22px; height: 22px;
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}
.feature strong {
    display: block;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.feature span {
    display: block;
    font-size: 0.85rem;
    color: var(--espresso-soft);
    line-height: 1.4;
}

/* -------------------------------------------------- 10. MENU          */
.menu { background: var(--cream); position: relative; }
.menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--line);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px)  { .menu-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.menu-card {
    background: var(--paper);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.menu-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.menu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }

.menu-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.menu-card-body header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}
.menu-card-body h3 {
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.1;
}
.menu-card-tag {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-pill);
    background: var(--cream);
    color: var(--espresso-mid);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    flex-shrink: 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}
.menu-items li {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--espresso-mid);
}
.menu-items li > span:first-child { flex-shrink: 0; }
.menu-items li > span:last-child {
    font-weight: 600;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.dots {
    flex: 1;
    border-bottom: 1px dotted var(--line);
    transform: translateY(-4px);
    min-width: 1rem;
}

.menu-footer {
    margin-top: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.menu-footer p {
    max-width: 50ch;
    color: var(--espresso-mid);
}

/* -------------------------------------------------- 11. WERKEN        */
.werken { background: var(--paper); }

.werken-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .werken-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.werken-checks {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.75rem 0;
}
.werken-checks li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem;
}
.werken-checks svg {
    width: 22px; height: 22px;
    color: var(--paper);
    background: var(--terracotta);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}
.werken-checks strong { color: var(--ink); font-weight: 600; }

.werken-quote {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: var(--cream);
    border-radius: var(--r);
    border-left: 3px solid var(--terracotta);
    position: relative;
}
.werken-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.45;
    color: var(--espresso);
}
.werken-quote cite {
    display: block;
    margin-top: 0.6rem;
    font-style: normal;
    font-size: 0.83rem;
    color: var(--espresso-soft);
    letter-spacing: 0.02em;
}

.werken-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 520px;
    margin: 0 auto;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
@media (min-width: 1024px) { .werken-visual { margin: 0; } }
.werken-visual > img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.werken-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--paper);
    color: var(--ink);
    padding: 0.7rem 1rem;
    border-radius: var(--r);
    font-family: var(--font-display);
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow);
}
.werken-badge strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 2px;
}

/* -------------------------------------------------- 12. SFEER GALLERY */
.sfeer { background: var(--cream); }

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 250px;
        gap: 1rem;
    }
}

.gallery-item {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(79, 27, 44, 0.15));
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 0; }

/* Mosaic pattern */
.gallery-item-1 { grid-column: span 2; grid-row: span 2; }

@media (min-width: 768px) {
    .gallery-item-1 { grid-column: span 2; grid-row: span 1; }
    .gallery-item-2 { grid-column: span 1; grid-row: span 2; }
    .gallery-item-3 { grid-column: span 1; grid-row: span 1; }
    .gallery-item-4 { grid-column: span 1; grid-row: span 1; }
    .gallery-item-5 { grid-column: span 1; grid-row: span 1; }
    .gallery-item-6 { grid-column: span 2; grid-row: span 1; }
}

@media (min-width: 1024px) {
    .gallery-item-1 { grid-column: span 2; grid-row: span 1; }
    .gallery-item-2 { grid-column: span 1; grid-row: span 2; }
    .gallery-item-3 { grid-column: span 2; grid-row: span 1; }
    .gallery-item-4 { grid-column: span 1; grid-row: span 1; }
    .gallery-item-5 { grid-column: span 2; grid-row: span 1; }
    .gallery-item-6 { grid-column: span 2; grid-row: span 1; }
}

/* -------------------------------------------------- 13. REVIEWS       */
.reviews { background: var(--paper); }

.reviews-head {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .reviews-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.reviews-head h2 { max-width: 14ch; }

.reviews-score {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border-radius: var(--r);
    border: 1px solid var(--line-soft);
}
.score-stars {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.score-stars > span {
    position: relative;
    display: inline-flex;
    gap: 2px;
    color: var(--cream-dark);
}
.score-stars > span svg {
    width: 18px; height: 18px;
    fill: currentColor;
}
/* Goudgele overlay die het ingevulde gedeelte toont */
.score-stars > span::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: var(--fill, 86%);
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B8843A'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    background-size: 20px 18px;
    background-repeat: repeat-x;
    background-position: left center;
}

.reviews-score > div:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.reviews-score strong {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 600;
}
.reviews-score span {
    font-size: 0.8rem;
    color: var(--espresso-soft);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }

.review-card {
    background: var(--cream);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--line-soft);
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.review-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--caramel);
}
.review-stars svg { width: 16px; height: 16px; fill: currentColor; }

.review-card blockquote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--espresso);
    flex: 1;
    font-style: italic;
}

.review-card footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line-soft);
}
.review-avatar {
    width: 38px; height: 38px;
    background: var(--terracotta);
    color: var(--paper);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-card footer strong {
    display: block;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
}
.review-card footer span {
    display: block;
    font-size: 0.78rem;
    color: var(--espresso-soft);
}

.reviews-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* -------------------------------------------------- 14. FAQ           */
.faq { background: var(--cream); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 5rem;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.faq-item {
    background: var(--paper);
    border-radius: var(--r);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
    padding: 1.15rem 1.4rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--ink);
    transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream); }
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--espresso);
    font-size: 1.2rem;
    line-height: 1;
    font-family: var(--font-body);
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--terracotta);
    color: var(--paper);
}
.faq-answer {
    padding: 0 1.4rem 1.4rem;
    color: var(--espresso-mid);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* -------------------------------------------------- 15. OPENINGSTIJDEN */
.openingstijden {
    background: var(--espresso);
    color: var(--cream);
    position: relative;
}
.openingstijden h2, .openingstijden h2 em {
    color: var(--paper);
}
.openingstijden h2 em { color: var(--terracotta); }
.openingstijden p { color: rgba(245, 237, 224, 0.75); }
.openingstijden .eyebrow { color: rgba(245, 237, 224, 0.6); }

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hours-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.75rem;
    padding: 0.65rem 1rem;
    background: rgba(245, 237, 224, 0.08);
    border: 1px solid rgba(245, 237, 224, 0.15);
    border-radius: var(--r-pill);
    font-size: 0.92rem;
    color: var(--paper);
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #5BC97B;
    box-shadow: 0 0 0 0 #5BC97B;
    animation: blip 2s ease-in-out infinite;
}
.hours-status.closed .status-dot {
    background: var(--terracotta);
    box-shadow: 0 0 0 0 var(--terracotta);
}
@keyframes blip {
    0%   { box-shadow: 0 0 0 0 rgba(91, 201, 123, 0.5); }
    70%  { box-shadow: 0 0 0 8px rgba(91, 201, 123, 0); }
    100% { box-shadow: 0 0 0 0 rgba(91, 201, 123, 0); }
}

.hours-table-wrap {
    background: rgba(245, 237, 224, 0.04);
    border: 1px solid rgba(245, 237, 224, 0.1);
    border-radius: var(--r-lg);
    padding: 0.5rem 1.25rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table tr {
    border-bottom: 1px solid rgba(245, 237, 224, 0.08);
    transition: background 0.2s ease;
}
.hours-table tr:last-child { border-bottom: 0; }
.hours-table tr.today {
    background: rgba(201, 154, 170, 0.12);
}
.hours-table tr.today th, .hours-table tr.today td {
    color: var(--paper);
}
.hours-table tr.today th::after {
    content: ' · vandaag';
    color: var(--terracotta);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}
.hours-table th, .hours-table td {
    padding: 1rem 0.75rem;
    text-align: left;
    font-size: 0.96rem;
    font-weight: 400;
    color: rgba(245, 237, 224, 0.85);
    font-variant-numeric: tabular-nums;
}
.hours-table th { font-weight: 500; }
.hours-table td { text-align: right; }

/* -------------------------------------------------- 16. CONTACT       */
.contact { background: var(--paper); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3.5rem; }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--r-lg);
    border: 1px solid var(--line-soft);
}

.contact-block h3 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--espresso-soft);
    margin-bottom: 0.6rem;
}
.contact-block p {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.55;
}
.contact-block a {
    color: var(--ink);
    transition: color 0.2s ease;
}
.contact-block a:hover { color: var(--terracotta); }

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--espresso);
    transition: all 0.2s ease;
}
.socials a svg { width: 16px; height: 16px; }
.socials a:hover {
    background: var(--espresso);
    color: var(--paper);
    border-color: var(--espresso);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

/* Contact form */
.contact-form {
    background: var(--paper);
    padding: 2rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}
.contact-form label > span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--espresso);
    letter-spacing: 0.01em;
}
.contact-form label > span small {
    color: var(--espresso-soft);
    font-weight: 400;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: var(--r);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--terracotta);
    background: var(--paper);
    box-shadow: 0 0 0 4px rgba(201, 154, 170, 0.1);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form input.invalid,
.contact-form textarea.invalid {
    border-color: #C94D4D;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

.contact-form .btn {
    margin-top: 0.5rem;
    width: 100%;
}

@media (min-width: 480px) {
    .contact-form .btn { width: auto; }
}

.form-success[hidden] { display: none; }
.form-success {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(91, 201, 123, 0.1);
    color: #2F7D40;
    border-radius: var(--r);
    font-size: 0.9rem;
    border: 1px solid rgba(91, 201, 123, 0.25);
    animation: fadeUp 0.4s ease;
}
.form-success svg { color: #2F7D40; flex-shrink: 0; }

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

/* Map */
.contact-map {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
}
.contact-map iframe {
    display: block;
    filter: grayscale(0.15) sepia(0.15);
    transition: filter 0.4s ease;
}
.contact-map:hover iframe { filter: grayscale(0) sepia(0); }

/* -------------------------------------------------- 17. FOOTER        */
.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p {
    color: rgba(245, 237, 224, 0.65);
    margin-top: 1rem;
    max-width: 36ch;
    font-size: 0.95rem;
}
.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-logo-link:hover { transform: rotate(8deg) scale(1.04); }
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

@media (prefers-reduced-motion: reduce) {
    .footer-logo-link:hover { transform: none; }
}

.footer-col h4 {
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.85rem;
    font-family: var(--font-body);
}
.footer-col p {
    color: rgba(245, 237, 224, 0.7);
    font-size: 0.95rem;
    line-height: 1.65;
}
.footer-col a {
    color: rgba(245, 237, 224, 0.7);
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 237, 224, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.8rem;
    color: rgba(245, 237, 224, 0.5);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-credit { font-style: italic; }

/* -------------------------------------------------- 18. STICKY CTA    */
.sticky-cta {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    background: var(--espresso);
    color: var(--paper);
    border-radius: var(--r-pill);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 12px 36px -8px rgba(79, 27, 44, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
    white-space: nowrap;
}
.sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
}
.sticky-cta:hover {
    background: var(--terracotta);
}
.sticky-cta svg { flex-shrink: 0; }

/* Hide on desktop */
@media (min-width: 1024px) {
    .sticky-cta { display: none !important; }
}

/* -------------------------------------------------- 19a. HERO LOGO BADGE */
.hero-img-logo {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
    z-index: 3;
    pointer-events: none;
}
.hero-img-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

/* -------------------------------------------------- 19b. MENU PDF CTA CARD */
.menu-card-cta {
    background: linear-gradient(145deg, var(--espresso) 0%, var(--espresso-mid) 100%);
    position: relative;
    overflow: hidden;
}
.menu-card-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(245, 237, 224, 0.04);
    pointer-events: none;
}
.menu-card-cta-inner {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    height: 100%;
}
.menu-card-cta-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.menu-card-cta-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.menu-card-cta-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}
.menu-card-cta h3 {
    color: var(--paper);
    font-size: 1.55rem;
    line-height: 1.08;
    margin-bottom: 0.75rem;
}
.menu-card-cta-text {
    color: rgba(245, 237, 224, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 0;
}
.menu-card-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

/* PDF buttons — used inside the CTA card and elsewhere */
.btn-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--r-pill);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.btn-pdf svg { flex-shrink: 0; }

.btn-pdf-primary {
    background: var(--paper);
    color: var(--espresso);
    border-color: var(--paper);
}
.btn-pdf-primary:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--paper);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -4px rgba(201, 154, 170, 0.4);
}
.btn-pdf-secondary {
    background: transparent;
    color: var(--paper);
    border-color: rgba(245, 237, 224, 0.3);
}
.btn-pdf-secondary:hover {
    background: rgba(245, 237, 224, 0.1);
    border-color: rgba(245, 237, 224, 0.65);
}

/* Menu footer PDF actions */
.menu-footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* -------------------------------------------------- 19c. BORREL SECTIE  */
.borrel {
    background: var(--paper);
    position: relative;
}
.borrel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--line);
}

.borrel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .borrel-grid {
        grid-template-columns: 1fr 0.95fr;
        gap: 5rem;
    }
}

.borrel-copy > * + * { margin-top: 1rem; }

/* Borrel items grid */
.borrel-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 1.5rem 0 0.5rem;
}
.borrel-items li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: var(--cream);
    border-radius: var(--r);
    border: 1px solid var(--line-soft);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--espresso);
    line-height: 1.3;
}
.borrel-item-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.borrel-note {
    font-size: 0.9rem;
    color: var(--espresso-soft);
    font-style: italic;
    margin-top: 0.5rem;
}

.borrel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Borrel interieur foto's */
.borrel-images {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .borrel-images { margin: 0; }
}

.borrel-img {
    position: absolute;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.borrel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.borrel-img:hover img { transform: scale(1.04); }

.borrel-img-1 {
    top: 0;
    right: 0;
    width: 73%;
    height: 73%;
    z-index: 2;
    transform: rotate(1deg);
}
.borrel-img-2 {
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    z-index: 3;
    border: 5px solid var(--paper);
    transform: rotate(-1.5deg);
}

/* -------------------------------------------------- 19. REVEAL ANIMS   */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* -------------------------------------------------- 20. SELECTION     */
::selection {
    background: var(--terracotta);
    color: var(--paper);
}

/* Focus state for accessibility */
:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Avoid focus ring on mouse click for buttons */
.btn:focus:not(:focus-visible) { outline: 0; }
