/* ===================================================================
   mc.css — Valencia Tapas · Paper / Naturton Theme
   ===================================================================
   Palette:
   --paper:       #f5f1ee
   --paper-2:     #ebe8e4
   --sand:        #d4c8b9
   --sand-dark:   #b1a48e
   --sage:        #586453
   --sage-2:      #8c9e88
   --sage-light:  #bcc9b7
   --ink:         #2d2a22
   --ink-strong:  #111817
   --brand:       #5a231c
   --line:        rgba(177, 164, 142, 0.35)
   =================================================================== */

/* ===== FONTS ===== */
@font-face {
    font-family: 'Valencia';
    src: url('../font/valencia/valencia.woff2') format('woff2'),
         url('../font/valencia/valencia.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #eae6e1; }
::-webkit-scrollbar-thumb { background: #b1a48e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #586453; }
* { scrollbar-width: thin; scrollbar-color: #b1a48e #eae6e1; }


/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; }
.reveal.active { animation: fade-in 0.8s ease-out forwards; }
@keyframes fade-in { to { opacity: 1; } }


/* ===== SCROLL REVEAL (GSAP utility) ===== */
.vl-scroll-reveal { opacity: 0; transform: translateY(30px); }


/* ===== NAVIGATION — Light Theme ===== */
#mainNav {
    background: rgba(245, 241, 238, 0.88);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    border-bottom: 1px solid rgba(177, 164, 142, 0.2);
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-nav {
    background: rgba(245, 241, 238, 0.97) !important;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(177, 164, 142, 0.3) !important;
    box-shadow: 0 2px 20px rgba(45, 42, 34, 0.08);
}

/* Nav Links */
.nav-link {
    position: relative;
    color: #2d2a22;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #586453;
    border-radius: 1px;
    transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                left 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover { color: #586453; }
.nav-link:hover::after { width: 100%; left: 0; }

.nav-active { color: #586453; }
.nav-active::after { width: 100%; left: 0; }


/* ===== PATTERN BACKGROUNDS ===== */
.pattern1  { background: url('img/pattern-paper.png') repeat; }
.pattern2  {
    background-color: #eae6e1;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}
.pattern3  { background: url('img/pattern3.png') repeat; }
.pattern4  { background: url('img/pattern4.png') repeat; }
.pattern5  { background: url('img/pattern5.png') repeat; }
.pattern6  { background: url('img/pattern6.png') repeat; }
.pattern7  { background: url('img/pattern7.png') repeat; }


/* ===== PAPER CARD (light glassmorphism) ===== */
.glass-card {
    background: rgba(245, 241, 238, 0.85);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    border: 1px solid rgba(177, 164, 142, 0.3);
    border-radius: 0.875rem;
    box-shadow: 0 4px 24px rgba(45, 42, 34, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(88, 100, 83, 0.3);
    box-shadow: 0 8px 32px rgba(45, 42, 34, 0.12);
}

@supports not (backdrop-filter: blur(1px)) {
    .glass-card { background: #f5f1ee; }
}

.fixed-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.fixed-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 42, 34, 0.45);
}


/* ===== GALLERY ===== */
.gallery-scroll {
    overflow: hidden;
    position: relative;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0 1.5rem;
}

.gallery-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.is-grabbing { cursor: grabbing; scroll-snap-type: none; }

.gallery-item {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--paper-2);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(45,42,34,0.12); }
@media (min-width: 768px)  { .gallery-item { width: 380px; } }
@media (min-width: 1024px) { .gallery-item { width: 420px; } }

.gallery-img { width: 100%; height: 280px; object-fit: cover; display: block; }
@media (min-width: 768px) { .gallery-img { height: 320px; } }


/* ===== PARALLAX + SPLIT LAYOUT ===== */
.parallax-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.parallax-hero .parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.split-layout { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
    .split-layout { grid-template-columns: 1fr 1fr; min-height: 80vh; }
}

.split-layout-image { position: relative; overflow: hidden; min-height: 400px; }
@media (min-width: 1024px) { .split-layout-image { min-height: unset; } }
.split-layout-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-layout-content { display: flex; align-items: center; padding: 3rem 2rem; }
@media (min-width: 1024px) { .split-layout-content { padding: 4rem 5rem; } }


/* ===== HORIZONTAL SCROLL CARDS ===== */
.hscroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
    scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }

.hscroll-card {
    flex: 0 0 85vw;
    max-width: 500px;
    scroll-snap-align: center;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px)  { .hscroll-card { flex: 0 0 45vw; } }
@media (min-width: 1200px) { .hscroll-card { flex: 0 0 30vw; } }

.hscroll-card img { width: 100%; height: 350px; object-fit: cover; display: block; }
@media (min-width: 768px) { .hscroll-card img { height: 420px; } }

.hscroll-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,42,34,0.8) 0%, rgba(45,42,34,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}


/* ===== MASONRY GALLERY ===== */
.masonry { columns: 2; column-gap: 1rem; }
@media (min-width: 768px) { .masonry { columns: 3; column-gap: 1.25rem; } }

.masonry-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 0.75rem; overflow: hidden; position: relative; }
@media (min-width: 768px) { .masonry-item { margin-bottom: 1.25rem; } }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.05); }


/* ===== CTA GRADIENT — Sage ===== */
.cta-gradient {
    background: linear-gradient(135deg, #586453 0%, #3e4a3a 50%, #2d3629 100%);
}


/* ===== MAP CONTAINER ===== */
.map-container { border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--line); }
.map-container iframe {
    width: 100%; height: 350px; display: block;
    filter: sepia(0.3) contrast(1.05);
    transition: filter 0.4s ease;
}
.map-container:hover iframe { filter: sepia(0) contrast(1); }


/* ===== MMENU — Light Paper Theme ===== */
#menu:not(.mm-menu) { display: none; }

.mm-menu {
    --mm-navbar-size: 60px;
    --mm-line-height: 24px;
    --mm-color-border: rgba(177, 164, 142, 0.25);
    --mm-color-button: #2d2a22;
    --mm-color-text: #2d2a22;
    --mm-color-text-dimmed: rgba(45, 42, 34, 0.55);
    --mm-color-background: #f5f1ee;
    --mm-color-background-highlight: rgba(88, 100, 83, 0.06);
    --mm-color-background-emphasis: rgba(88, 100, 83, 0.1);
    --mm-shadow: 0 0 30px rgba(45, 42, 34, 0.15);
    --mm-listitem-size: 56px;
    --mm-sidebar-expanded-size: 320px;
    background-color: #f5f1ee !important;
}

.mm-menu .mm-navbar { background-color: #ebe8e4 !important; border-bottom: 1px solid rgba(177,164,142,0.3) !important; }
.mm-menu .mm-panel { background-color: #f5f1ee !important; }
.mm-menu .mm-listitem { border-bottom: 1px solid rgba(177,164,142,0.2) !important; }
.mm-menu .mm-listitem > a,
.mm-menu .mm-listitem > span { color: #2d2a22 !important; font-size: 0.95rem; letter-spacing: 0.04em; }
.mm-menu .mm-listitem:hover { background-color: rgba(88, 100, 83, 0.06) !important; }
.mm-menu .mm-listitem.mm-active > a,
.mm-menu .mm-listitem.mm-active > span { color: #586453 !important; font-weight: 600; }
.mm-menu .mm-listitem.mm-active { background-color: rgba(88,100,83,0.08) !important; border-left: 3px solid #586453 !important; }

.mm-navbars_bottom .mm-navbar { background-color: #ebe8e4 !important; border-top: 1px solid rgba(177,164,142,0.3) !important; border-bottom: none !important; }
.mm-navbars_top .mm-navbar { background-color: #ebe8e4 !important; }
.mm-navbar a, .mm-navbar button, .mm-navbar .mm-btn { color: #2d2a22 !important; }
.mm-navbars_bottom .mm-navbar a, .mm-navbars_bottom .mm-navbar i { color: #2d2a22 !important; }
.mm-btn_close { color: #586453 !important; }
.mm-navbar__title { color: #586453 !important; background: transparent !important; font-family: 'Cormorant Garamond', serif !important; text-transform: uppercase !important; letter-spacing: 0.08em; font-weight: 700; font-size: 1.2rem; }

.mm-menu_offcanvas { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

.mm-logo-link { display: inline-block !important; line-height: 1 !important; padding: 13px 0 0 17px !important; }
.mm-navbar-logo { max-width: 150px !important; height: auto !important; max-height: 36px !important; }
.mm-navbar .mm-breadcrumbs { display: none !important; }
.mm-panel:after { display: none; }


/* ===== MBURGER — Light ===== */
.mburger b { background: #2d2a22; }
.mburger--collapse.is-active b { background: #586453; }


/* ===== PAGE WRAPPER ===== */
#page { position: relative; min-height: 100vh; }


/* ===== FOOTER ===== */
footer { position: relative; z-index: 10; }
footer a { transition: color 0.3s; }

.footer-glass {
    background: #111817;
}


/* ===== Z-INDEX ===== */
section { position: relative; z-index: 10; }


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

.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }


/* ===== SPEISEKARTE & WEINKARTE — Light Paper Theme ===== */
.menu-nav-glass {
    background: rgba(245, 241, 238, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(177, 164, 142, 0.3);
    box-shadow: 0 2px 16px rgba(45, 42, 34, 0.07);
}

.menu-tab {
    flex-shrink: 0; padding: 6px 18px; font-size: 11px;
    font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(45, 42, 34, 0.55); border-radius: 999px;
    white-space: nowrap; transition: all 0.3s ease; text-decoration: none;
    border: 1px solid transparent;
}
@media (hover: hover) { .menu-tab:hover { color: #2d2a22; background: rgba(177, 164, 142, 0.15); } }
.menu-tab.active { color: #f5f1ee; background: #586453; border-color: #586453; }

#menuNav.menu-nav-fixed { position: fixed; top: 77px; left: 0; width: 100%; z-index: 40; }

.menu-section-header { text-align: center; margin-bottom: 2.5rem; }
.menu-section-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #586453; margin-bottom: 10px;
}
.menu-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; color: #2d2a22; margin: 0 0 14px;
    font-weight: 600;
}
@media (min-width: 768px) { .menu-section-title { font-size: 2.8rem; } }

.menu-section-line { width: 48px; height: 1.5px; background: #bcc9b7; margin: 0 auto; }

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 768px) { .menu-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

.menu-item-card {
    background: #f5f1ee;
    border: 1px solid rgba(177, 164, 142, 0.3);
    border-radius: 10px; padding: 14px 14px;
    min-width: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    word-break: break-word;
}
@media (min-width: 640px) { .menu-item-card { padding: 18px 20px; } }
.menu-item-card:hover { border-color: rgba(88, 100, 83, 0.3); box-shadow: 0 4px 16px rgba(45,42,34,0.08); }
.menu-item-card.featured { border-color: rgba(88, 100, 83, 0.25); background: rgba(188, 201, 183, 0.12); }

.cocktail-card { text-align: center; }
.cocktail-card.signature { border-color: rgba(88, 100, 83, 0.35); background: rgba(88, 100, 83, 0.06); grid-column: 1 / -1; }

.menu-item-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 4px 8px; margin-bottom: 5px; min-width: 0; }
.menu-item-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.1rem; color: #2d2a22; margin: 0; line-height: 1.3; min-width: 60%; }
.menu-item-price { font-weight: 700; font-size: 1rem; color: #586453; white-space: nowrap; flex-shrink: 0; }
.menu-item-price::after { content: ' \20AC'; font-size: 0.8rem; opacity: 0.7; }
.menu-item-desc { font-size: 0.88rem; color: rgba(45, 42, 34, 0.58); line-height: 1.6; margin: 0; }

.menu-item-badge {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px; margin-top: 8px;
}
.badge-bestseller { background: #586453; color: #f5f1ee; }
.badge-hot { background: rgba(180, 60, 50, 0.1); color: #9a2f27; border: 1px solid rgba(154, 47, 39, 0.25); }
.badge-vegan { background: rgba(88, 100, 83, 0.1); color: #586453; border: 1px solid rgba(88,100,83,0.3); }
.badge-veggie { background: rgba(140, 158, 136, 0.15); color: #586453; border: 1px solid rgba(140,158,136,0.3); }
.badge-info { background: rgba(177, 164, 142, 0.15); color: #6b5d4e; border: 1px solid rgba(177,164,142,0.3); }
.badge-add { background: rgba(177, 164, 142, 0.1); color: rgba(45,42,34,0.5); border: 1px solid rgba(177,164,142,0.2); }
.badge-signature { background: #586453; color: #f5f1ee; position: absolute; top: -8px; right: -6px; margin: 0; z-index: 1; }

.menu-item-extras { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.menu-item-extras span { font-size: 11px; color: rgba(45,42,34,0.45); background: rgba(177,164,142,0.1); padding: 2px 8px; border-radius: 999px; border: 1px solid rgba(177,164,142,0.2); }

.menu-note { margin-top: 14px; padding: 14px 18px; background: #ebe8e4; border: 1px solid rgba(177,164,142,0.3); border-radius: 10px; }
.menu-note p { font-size: 0.88rem; color: #2d2a22; font-weight: 500; margin: 0 0 4px; line-height: 1.5; }
.menu-note p:last-child { margin-bottom: 0; }

.menu-note-wide { padding: 22px; background: #ebe8e4; border: 1px solid rgba(177,164,142,0.3); border-radius: 10px; }

.menu-allergen-box { padding: 22px; background: #f5f1ee; border: 1px solid rgba(177,164,142,0.3); border-radius: 10px; }

.menu-list { background: #f5f1ee; border: 1px solid rgba(177,164,142,0.25); border-radius: 10px; padding: 6px 18px; }
.menu-list-item { display: flex; align-items: baseline; gap: 8px; padding: 10px 0; border-bottom: 1px solid rgba(177,164,142,0.15); }
.menu-list-item:last-child { border-bottom: none; }
.menu-list-dots { flex: 1; border-bottom: 1px dotted rgba(177,164,142,0.35); min-width: 20px; margin-bottom: 4px; }
.menu-list-price { font-weight: 700; font-size: 0.9rem; color: #586453; white-space: nowrap; flex-shrink: 0; }

.menu-grid-shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; background: #f5f1ee; border: 1px solid rgba(177,164,142,0.25); border-radius: 10px; padding: 10px; }
@media (min-width: 640px) { .menu-grid-shots { grid-template-columns: repeat(3, 1fr); } }

.shot-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; background: rgba(177,164,142,0.06); border: 1px solid rgba(177,164,142,0.15); border-radius: 7px; font-size: 13px; }
.shot-item span:first-child { color: #2d2a22; font-weight: 600; }
.shot-item span:last-child { color: #586453; font-weight: 700; }
.shot-item.highlight { border-color: rgba(88,100,83,0.25); background: rgba(88,100,83,0.06); }


/* ===== HERO — Warme Bild-Overlay-Ästhetik ===== */
.vl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vl-hero-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.vl-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        rgba(45, 42, 34, 0.52) 0%,
        rgba(35, 33, 26, 0.62) 55%,
        rgba(17, 24, 23, 0.75) 100%
    );
}

.vl-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Animations */
.vl-hero-reveal {
    opacity: 0;
    transform: translateY(32px);
    animation: vlReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes vlReveal { to { opacity: 1; transform: translateY(0); } }

.vl-hero-fade {
    opacity: 0;
    animation: vlFade 1s ease forwards;
}
@keyframes vlFade { to { opacity: 1; } }


/* ===== PAGE HERO (sub-pages) ===== */
.vl-page-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.vl-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.vl-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 42, 34, 0.55) 0%,
        rgba(17, 24, 23, 0.72) 100%
    );
}

.vl-page-hero-content { position: relative; z-index: 2; }


/* ===== EXPERIENCE CARDS (Startseite) ===== */
.vl-exp-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 2px 16px rgba(45,42,34,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.vl-exp-card:hover { box-shadow: 0 8px 32px rgba(45,42,34,0.12); transform: translateY(-3px); }


/* ===== HIGHLIGHTS KACHELN ===== */
.vl-highlight-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0.875rem;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 12px rgba(45,42,34,0.05);
}
.vl-highlight-card:hover {
    border-color: rgba(88,100,83,0.3);
    box-shadow: 0 6px 24px rgba(45,42,34,0.1);
    transform: translateY(-4px);
}

.vl-highlight-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(188,201,183,0.25);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: #586453;
}


/* ===== SECTION WRAPPER ===== */
.vl-section { padding: 6rem 1.5rem; }
@media (min-width: 768px) { .vl-section { padding: 8rem 2rem; } }

.vl-section-sm { padding: 4rem 1.5rem; }

.vl-container { max-width: 1200px; margin: 0 auto; }
.vl-container-narrow { max-width: 800px; margin: 0 auto; }


/* ===== SECTION EYEBROW ===== */
.vl-eyebrow {
    display: flex !important; align-items: center; justify-content: center; gap: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem;
    font-weight: 600; color: var(--sage);
}
.vl-eyebrow::before,
.vl-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--sage-light); }


/* ===== SIGNATURE SECTION ===== */
.vl-signature-bg {
    background: rgba(235,232,228,0.55);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


/* ===== HOURS CARD ===== */
.vl-hours-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(45,42,34,0.06);
}

.vl-hours-card .vl-hours-header {
    background: rgba(88,100,83,0.06);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--line);
}

.vl-hours-row {
    display: flex; justify-content: space-between;
    padding: 0.55rem 0; font-size: 0.88rem;
    border-bottom: 1px solid rgba(177,164,142,0.15);
    color: rgba(45,42,34,0.65);
}
.vl-hours-row:last-child { border-bottom: none; }
.vl-hours-row .vl-hours-time { color: #2d2a22; font-weight: 500; }


/* ===== MARQUEE ===== */
.vl-marquee-wrap {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}
.vl-marquee-text {
    flex-shrink: 0;
    padding: 0 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(88, 100, 83, 0.35);
    line-height: 1;
    text-transform: uppercase;
    user-select: none;
}

@keyframes vlMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.vl-marquee-fallback { animation: vlMarquee 10s linear infinite; }


/* ===== SCROLL INDICATOR ===== */
.vl-scroll-indicator {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0;
    animation: vlScrollShow 1s ease 2.5s forwards;
}
@keyframes vlScrollShow { to { opacity: 1; } }
.vl-scroll-line {
    width: 1px; height: 0; background: rgba(245,241,238,0.5);
    animation: vlScrollLine 1.5s ease 1.8s forwards;
}
@keyframes vlScrollLine { to { height: 56px; } }


/* ===== RESERVIERUNG PAGE ===== */
.vl-reservation-embed {
    background: var(--paper);
    border-radius: 1rem;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(45,42,34,0.08);
}

.vl-reservation-embed iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    display: block;
}


/* ===== GALERIE PAGE ===== */
.vl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 640px)  { .vl-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .vl-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.vl-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem;
    aspect-ratio: 1;
    cursor: pointer;
}
.vl-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vl-gallery-item:hover img { transform: scale(1.07); }
.vl-gallery-item .vl-gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(45,42,34,0.4);
    opacity: 0; transition: opacity 0.3s ease;
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,241,238,0.9);
}
.vl-gallery-item:hover .vl-gallery-overlay { opacity: 1; }

.vl-gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.vl-gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }


/* ===== EVENTS PAGE ===== */
.vl-event-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 2.25rem 2rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 12px rgba(45,42,34,0.05);
}
.vl-event-card:hover {
    box-shadow: 0 8px 28px rgba(45,42,34,0.1);
    border-color: rgba(88,100,83,0.25);
}


/* ===== IMPRESSUM / DATENSCHUTZ ===== */
.vl-legal-content { max-width: 760px; margin: 0 auto; }
.vl-legal-content h2 { font-size: 1.5rem; margin: 2.5rem 0 0.75rem; }
.vl-legal-content h3 { font-size: 1.15rem; margin: 1.75rem 0 0.5rem; color: var(--ink); }
.vl-legal-content p { font-size: 0.93rem; line-height: 1.8; color: rgba(45,42,34,0.75); margin-bottom: 1rem; }
.vl-legal-content a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.vl-legal-content ul { padding-left: 1.5rem; color: rgba(45,42,34,0.75); font-size: 0.93rem; line-height: 1.8; margin-bottom: 1rem; }


/* ===== FOCUS STATES — Accessibility ===== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #586453;
    outline-offset: 3px;
    border-radius: 3px;
}
