﻿/* ===== RESET & VARIABLES ===== */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

@font-face {
    font-family: 'Playfair Display';
    src: url('../assets/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('ttf'),
         url('../assets/PlayfairDisplay-VariableFont_wght.ttf') format('ttf');
    font-weight: 400; font-style: normal; font-display: swap;
}

:root {
    --black: #1a1410;
    --cream: #e8dcc8;
    --muted: #a89c8c;
    --gold: #b8956f;
    --border: rgba(184,149,111,.15);
    --card-bg: rgba(255,255,255,.025);
    --card-border: rgba(184,149,111,.12);
}

html,body { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--cream);
    line-height: 1.85;
    letter-spacing: .4px;
    font-weight: 300;
    transition: opacity .3s ease-in-out;
}

h1,h2,h3,h4,h5,h6 { font-family:'Playfair Display',serif; font-weight:400; letter-spacing:1.5px; }
.nodeco { text-decoration:none; color:var(--gold); }

/* ===== LAYOUT ===== */
.container { min-height:100vh; display:flex; flex-direction:column; }
.main { flex:1; padding-bottom:40px; }

/* ===== NAVBAR ===== */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(20,17,16,.98);
    backdrop-filter: blur(20px);
    border-bottom: none;
}
.nav-container {
    display:flex; justify-content:space-between; align-items:center;
    max-width:1200px; margin:0 auto; padding:0 60px; height:60px; position:relative;
}
.nav-center { display:flex; flex-direction:column; align-items:center; gap:8px; }
.logo {
    font-family:'Playfair Display',serif; font-size:24px; font-weight:400;
    color:var(--gold); letter-spacing:3px; text-transform:uppercase;
    position:relative; padding:0 50px;
}
.logo::before,.logo::after {
    content:''; position:absolute; top:50%; width:40px; height:2px; opacity:.6; transform:translateY(-50%);
}
.logo::before { left:0; background:linear-gradient(to right,var(--gold),transparent); }
.logo::after { right:0; background:linear-gradient(to left,var(--gold),transparent); }

.hamburger-menu { display:none; flex-direction:column; background:none; border:none; cursor:pointer; padding:8px; gap:5px; z-index:1001; }
.hamburger-menu span { width:24px; height:2px; background:var(--gold); transition:all .3s ease; display:block; }

.nav-menu {
    display:flex; justify-content:center; flex-wrap:wrap; list-style:none; gap:65px;
    background:rgba(20,17,16,.98); backdrop-filter:blur(20px); padding:12px 20px;
    position:sticky; top:60px; z-index:999;
    border-bottom:1px solid rgba(184,149,111,.2);
}
.nav-link {
    background:none; border:none; color:var(--muted); font-size:11px; font-weight:400;
    letter-spacing:2px; cursor:pointer; transition:all .5s ease; text-transform:uppercase; padding:0; position:relative;
}
.nav-link::after {
    content:''; position:absolute; bottom:-12px; left:0; width:0; height:1.5px;
    background:var(--gold); transition:width .5s cubic-bezier(.25,.46,.45,.94);
}
.nav-link.active::after { width:100%; }
.nav-link.active { color:var(--gold); }

.seasonal-button {
    margin-top:25px; padding:10px 18px; border:1px solid var(--gold); background:transparent;
    color:var(--gold); font-size:12px; text-transform:uppercase; letter-spacing:1px; cursor:pointer;
    transition:color .4s cubic-bezier(.25,.46,.45,.94);
    position:relative; overflow:hidden;
}
.seasonal-button::before {
    content:'';
    position:absolute;
    inset:0;
    background:var(--gold);
    transform:translateX(-101%);
    transition:transform .4s cubic-bezier(.25,.46,.45,.94);
    z-index:-1;
}
.seasonal-button:hover { color:var(--black); }
.seasonal-button:hover::before { transform:translateX(0); }
a.seasonal-button-link { display:inline-block; text-decoration:none; margin-top:25px; }

.nav-info { font-size:11px; font-weight:400; letter-spacing:1.5px; color:var(--muted); white-space:nowrap; }
.nav-info-left { text-align:left; }
.nav-info-right { text-align:right; }

/* ===== LANGUAGE SWITCHER ===== */
.language-container {
    position:fixed; top:90%; left:95%; transform:translate(-95%,-90%);
    z-index:2100; display:flex; align-items:center; justify-content:center; perspective:1000px; padding:10px 15px;
}
.lang-switcher {
    color:var(--muted); text-decoration:none; cursor:pointer; font-weight:400;
    transition:all .3s ease; outline:none; -webkit-tap-highlight-color:transparent; user-select:none;
}
.nav-info .lang-switcher { font-size:8px; }
.language-container .lang-switcher {
    font-size:14px; padding:10px 15px; border-radius:10px; background:rgba(184,149,111,.1);
    color:var(--gold); text-transform:uppercase; letter-spacing:1px; display:inline-block;
    transform-style:preserve-3d; transition:transform .5s ease-out,background .3s ease;
}
.language-container .lang-switcher:hover { background:rgba(184,149,111,.2); }
.lang-switcher:hover { color:var(--gold); }
.lang-separator { color:var(--muted); opacity:.8; }
.lang-current { color:var(--gold); font-weight:400; }
.lang-switcher.flipping { animation:rotateOut .3s forwards; }
@keyframes rotateOut {
    from { transform:rotateY(0) scale(1); opacity:1; }
    to { transform:rotateY(180deg) scale(.8); opacity:0; }
}

/* ===== FLOATING MENU ===== */
.floating-menu-container {
    position:fixed; bottom:5%; right:5%; z-index:2100; perspective:1000px;
}
.menu-toggle-btn {
    width:50px; height:50px; border-radius:50%;
    background:var(--black); border:2px solid var(--gold);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; transition:all .3s ease; color:var(--gold);
    box-shadow:0 4px 20px rgba(184,149,111,.25); padding:0; flex-shrink:0;
}
.menu-toggle-icon {
    width:24px;
    height:24px;
    stroke:currentColor;
    fill:none;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.menu-toggle-icon circle {
    fill:currentColor;
    stroke:none;
    opacity:.95;
}
.menu-toggle-btn:hover {
    transform:scale(1.1);
    box-shadow:0 6px 25px rgba(184,149,111,.35);
}
.floating-menu-content {
    position:absolute; bottom:90px; right:0; background:rgba(20,17,16,.98);
    border:2px solid rgba(184,149,111,.3); border-radius:15px; padding:20px;
    display:none; flex-direction:column; gap:15px; width:330px; max-width:calc(100vw - 32px); backdrop-filter:blur(10px);
    box-shadow:0 8px 32px rgba(0,0,0,.4);
    overflow:visible; max-height:70vh; overflow-y:auto;
}
.floating-menu-content.active {
    display:flex;
}
.menu-item-separator {
    height:1px; background:rgba(184,149,111,.2);
}

/* ===== RESMIO COOKIE BANNER ===== */
.resmio-cookie-banner {
    position:fixed;
    bottom:0; left:0; right:0;
    z-index:9999;
    background:rgba(20,17,16,.97);
    border-top:1px solid rgba(184,149,111,.3);
    backdrop-filter:blur(16px);
    padding:18px 24px;
    transform:translateY(0);
    transition:transform .4s ease, opacity .4s ease;
    opacity:1;
}
.resmio-cookie-banner--hidden {
    transform:translateY(100%);
    opacity:0;
}
.resmio-cookie-banner-inner {
    max-width:900px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}
.resmio-cookie-banner-text {
    flex:1;
    min-width:240px;
    font-size:13px;
    line-height:1.65;
    color:var(--cream);
}
.resmio-cookie-banner-text strong {
    display:block;
    font-family:'Playfair Display', serif;
    font-size:15px;
    color:var(--gold);
    margin-bottom:6px;
    letter-spacing:.5px;
}
.resmio-cookie-banner-text p {
    margin:0;
    color:rgba(232,220,200,.8);
}
.resmio-cookie-banner-text a {
    color:var(--gold);
    text-decoration:underline;
    text-underline-offset:3px;
    white-space:nowrap;
}
.resmio-cookie-banner-actions {
    display:flex;
    gap:10px;
    flex-shrink:0;
    flex-wrap:wrap;
}
.resmio-banner-btn {
    padding:10px 22px;
    border-radius:8px;
    font-size:13px;
    letter-spacing:.5px;
    cursor:pointer;
    transition:all .25s ease;
    white-space:nowrap;
    border:1px solid var(--gold);
}
.resmio-banner-btn--primary {
    background:var(--gold);
    color:var(--black);
    font-weight:600;
}
.resmio-banner-btn--primary:hover {
    background:#c9a77e;
    border-color:#c9a77e;
}
.resmio-banner-btn--secondary {
    background:transparent;
    color:var(--gold);
}
.resmio-banner-btn--secondary:hover {
    background:rgba(184,149,111,.12);
}
@media (max-width:480px) {
    .resmio-cookie-banner {
        padding:14px 16px;
    }
    .resmio-cookie-banner-inner {
        flex-direction:column;
        align-items:stretch;
        gap:14px;
    }
    .resmio-cookie-banner-actions {
        justify-content:stretch;
    }
    .resmio-banner-btn {
        flex:1;
        text-align:center;
    }
}

.resmio-widget-shell {
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:stretch;
    width:100%;
    max-width:330px;
}
/* Consent-Gate auf der Kontaktseite (Hauptinhalt) */
.resmio-button-shell {
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:flex-start;
    margin-top:12px;
}
.resmio-consent-detail {
    color:var(--cream);
    font-size:13px;
    line-height:1.7;
    margin:0;
    padding:14px 16px;
    border:1px solid rgba(184,149,111,.25);
    border-radius:8px;
    background:rgba(184,149,111,.06);
}
.resmio-consent-detail a {
    color:var(--gold);
    text-decoration:underline;
    text-underline-offset:3px;
}
.resmio-button-host {
    width:100%;
}
.resmio-consent-notice {
    color:var(--cream);
    font-size:12px;
    line-height:1.6;
    text-align:left;
    margin:0;
}
.resmio-consent-btn {
    border:1px solid var(--gold);
    background:rgba(184,149,111,.12);
    color:var(--gold);
    font-size:12px;
    letter-spacing:.5px;
    padding:10px 12px;
    border-radius:8px;
    cursor:pointer;
    transition:all .3s ease;
}
.resmio-consent-btn:hover {
    background:rgba(184,149,111,.2);
}
.resmio-widget-host {
    min-height:0;
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}
.resmio-widget-host.ready {
    min-height:460px;
}
.resmio-widget-host iframe,
.resmio-widget-host > div,
.resmio-widget-host embed,
.resmio-widget-host object {
    width:100% !important;
    max-width:100% !important;
    margin:0 auto;
    display:block;
}

@media (min-width:481px) and (max-width:768px) {
    .floating-menu-container {
        bottom:16px;
        right:16px;
    }
    .menu-toggle-btn {
        width:45px; height:45px;
    }
    .menu-toggle-icon {
        width:22px;
        height:22px;
    }
    .floating-menu-content {
        bottom:62px;
        right:0;
        width:min(330px, calc(100vw - 24px));
        max-width:calc(100vw - 24px);
        padding:12px;
        overflow-x:hidden;
    }
    .resmio-widget-shell {
        width:100%;
        max-width:none;
    }
    .resmio-consent-notice {
        font-size:11px;
        line-height:1.5;
    }
}

/* ===== PAGES & TRANSITIONS ===== */
.page { display:none; animation:fadeIn 1.5s cubic-bezier(.25,.46,.45,.94); opacity:0; }
.page.active { display:block; opacity:1; }
@keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
body.page-transition-out { opacity:0; }
body.page-transition-in { opacity:0; animation:fadeInPage .3s ease-in-out forwards; }
@keyframes fadeInPage { from{opacity:0} to{opacity:1} }

/* ===== HERO ===== */
.hero {
    display:flex; align-items:center; justify-content:center;
    padding:40px 20px; text-align:center;
}
.hero-content { max-width:900px; margin:0 auto; }
.hero-content h1 { font-size:72px; color:var(--gold); margin-bottom:20px; font-weight:400; line-height:1.1; letter-spacing:3px; }
.subtitle { font-size:15px; color:var(--muted); letter-spacing:3px; text-transform:uppercase; margin-bottom:50px; font-weight:300; }
.description { font-size:17px; color:var(--cream); line-height:1.95; margin-bottom:70px; font-weight:300; max-width:700px; margin-left:auto; margin-right:auto; }
.specials { color:var(--gold); font-size:36px; font-weight:bold; }
.start { display:flex; flex-direction:column; justify-content:space-between; height:60vh; margin-top:10vh; }

/* ===== PAGE CONTENT ===== */
.page-content { max-width:1100px; margin:0 auto; padding:60px 20px; width:100%; }
.page-title {
    font-family:'Playfair Display',serif; font-size:56px; color:var(--gold);
    margin-bottom:50px; text-align:center; font-weight:400; letter-spacing:2px; position:relative; padding-bottom:40px;
}
.page-title::after {
    content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:60px; height:1.5px; background:var(--gold);
}
.intro-text { font-size:16px; color:var(--cream); text-align:center; margin-bottom:90px; max-width:700px; margin-left:auto; margin-right:auto; line-height:1.95; font-weight:300; }
.page-content h2 { color:var(--gold); font-size:24px; margin-top:60px; margin-bottom:40px; font-weight:400; letter-spacing:1.5px; text-transform:uppercase; }

/* ===== MENU ===== */
.menu-section { display:flex; flex-direction:column; gap:50px; margin-bottom:80px; align-items:center; }
.menu-item { display:flex; flex-direction:column; gap:12px; padding-bottom:30px; }
.menu-item h3 { color:var(--gold); font-size:16px; font-weight:400; letter-spacing:.8px; margin:0; }
.menu-item p { color:var(--cream); font-size:14px; margin:0; line-height:1.8; font-weight:300; }
.menu-item em { color:var(--muted); font-size:13px; display:block; margin-top:5px; }
.price { color:var(--gold); font-weight:400; font-size:15px; letter-spacing:.5px; }
.menu-item .price { align-self:center; margin-top:10px; }
.menu-category-heading { font-weight:bold; margin:20px 0 15px; color:var(--gold); text-transform:uppercase; font-size:14px; letter-spacing:1px; text-align:center; width:100%; }
.menu-item-group { padding:15px 0; display:flex; flex-direction:column; align-items:center; text-align:center; }
.menu-item-name { font-size:15px; color:var(--cream); margin-bottom:8px; }
.menu-item-variants { display:flex; justify-content:center; gap:40px; width:100%; }
.menu-item-variant { display:flex; flex-direction:column; align-items:center; }
.menu-item-variant .volume { font-size:12px; color:var(--muted); }
.menu-item-variant .price { font-size:14px; margin-top:2px; }
.menu-item-inline { display:flex; justify-content:space-between; align-items:center; padding:12px 0; font-size:14px; color:var(--cream); gap:20px; }
.menu-item-inline .price { flex-shrink:0; min-width:60px; text-align:right; }
.menu-note { font-size:13px; color:var(--muted); font-style:italic; margin-bottom:30px; padding-bottom:15px; text-align:center; }

/* Page-specific centering */
.page[data-page="2"] .menu-item, .page[data-page="6"] .menu-item { align-items:center; }
.page[data-page="2"] .menu-item h3, .page[data-page="2"] .menu-item p, .page[data-page="2"] .menu-item em, .page[data-page="2"] .menu-item .price,
.page[data-page="6"] .menu-item h3, .page[data-page="6"] .menu-item p, .page[data-page="6"] .menu-item em, .page[data-page="6"] .menu-item .price { text-align:center; }
.page[data-page="2"] .page-title, .page[data-page="2"] .page-content h2,
.page[data-page="3"] .page-title, .page[data-page="3"] .page-content h2,
.page[data-page="6"] .page-title, .page[data-page="6"] .page-content h2 { text-align:center; }
.page[data-page="3"] .menu-section { max-width:760px; margin:0 auto; }
.page[data-page="3"] .menu-item-inline { justify-content:center; flex-wrap:wrap; gap:12px; text-align:center; margin-left:0!important; }
.page[data-page="3"] .menu-item-inline .price { flex:none; width:100%; text-align:center; }
.page[data-page="3"] .drink-category h3 { margin-bottom:20px; font-size:20px; }

/* ===== EVENTS ===== */
.events-grid { display:grid; grid-template-columns:1fr 1fr; gap:100px; margin-bottom:100px; }
.event-item h3 { color:var(--gold); font-size:18px; margin-bottom:20px; font-weight:400; letter-spacing:1px; }
.event-item p { font-size:15px; color:var(--cream); line-height:1.9; font-weight:300; }

/* ===== CONTACT ===== */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; border-bottom:1px solid var(--border); margin-bottom:40px; }
.contact-item { text-align:center; }
.contact-item h3 { color:var(--gold); font-size:15px; margin-bottom:25px; text-transform:uppercase; letter-spacing:2px; font-weight:400; }
.contact-item p { font-size:15px; color:var(--cream); margin-bottom:12px; font-weight:300; line-height:1.9; }
.contact-item strong { color:var(--gold); font-weight:400; }
.page[data-page="8"] .contact-grid, .page[data-page="9"] .contact-grid { grid-template-columns:1fr; max-width:600px; margin:0 auto 40px; border-bottom:none; }

/* ===== SPECIAL SECTIONS ===== */
.special-section { margin:35px 0; text-align:center; }
.special-section-first { margin-top:50px; }
.special-section h2 { color:var(--gold); font-size:20px; margin-bottom:25px; font-weight:400; letter-spacing:1px; }
.special-section p { font-size:15px; color:var(--cream); line-height:1.9; max-width:700px; margin:0 auto; font-weight:300; }

/* ===== PRIVACY ===== */
.privacy-content { text-align:left; margin-top:40px; }
.privacy-content h4 { color:var(--gold); margin:25px 0 10px; font-size:16px; letter-spacing:1px; }
.privacy-content p { margin-bottom:15px; }
.privacy-content ul { list-style:none; margin-bottom:20px; padding-left:0; }
.privacy-content li::before { content:'·'; margin-right:10px; color:var(--gold); }
.privacy-content hr { border:none; border-top:1px solid var(--border); margin:30px 0; }

/* ===== GALLERY PAGE ===== */
.gallery-page { max-width:1100px; margin:0 auto; padding:60px 40px 100px; }
.gallery-header { text-align:center; margin-bottom:70px; }
.gallery-subtitle { font-size:16px; color:var(--muted); max-width:550px; margin:0 auto; line-height:1.9; font-weight:300; }
.gallery-feature {
    display:grid; grid-template-columns:1.2fr 1fr; gap:50px; align-items:center; margin-bottom:70px;
    background:var(--card-bg); border:1px solid var(--card-border); border-radius:24px; padding:28px; transition:border-color .4s ease;
}
.gallery-feature:hover { border-color:rgba(184,149,111,.3); }
.gallery-feature-img { border-radius:18px; overflow:hidden; }
.gallery-feature-img img { width:100%; height:100%; object-fit:cover; display:block; border-radius:18px; transition:transform .6s ease; }
.gallery-feature:hover .gallery-feature-img img { transform:scale(1.03); }
.gallery-feature-text { padding:20px 10px; }
.gallery-tag { display:inline-block; font-size:10px; text-transform:uppercase; letter-spacing:2.5px; color:var(--gold); border:1px solid rgba(184,149,111,.35); border-radius:50px; padding:5px 16px; margin-bottom:22px; }
.gallery-feature-text h2 { font-family:'Playfair Display',serif; font-size:28px; color:var(--gold); font-weight:400; letter-spacing:1px; margin-bottom:18px; line-height:1.3; }
.gallery-feature-text p { font-size:15px; color:var(--cream); line-height:1.95; font-weight:300; opacity:.85; }
.gallery-grid-modern { display:grid; grid-template-columns:1fr 1fr; gap:35px; }
.gallery-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:22px; overflow:hidden; margin:0; transition:transform .45s cubic-bezier(.22,1,.36,1),border-color .4s ease,box-shadow .4s ease; }
.gallery-card:hover { transform:translateY(-6px); border-color:rgba(184,149,111,.3); box-shadow:0 20px 50px rgba(0,0,0,.25); }
.gallery-card-img { overflow:hidden; border-radius:22px 22px 0 0; aspect-ratio:4/3; }
.gallery-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease; }
.gallery-card:hover .gallery-card-img img { transform:scale(1.06); }
.gallery-card figcaption { padding:28px 30px 32px; }
.gallery-card figcaption h3 { font-family:'Playfair Display',serif; font-size:18px; color:var(--gold); font-weight:400; letter-spacing:.8px; margin-bottom:8px; }
.gallery-card figcaption p { font-size:14px; color:var(--muted); font-weight:300; line-height:1.7; }

/* ===== FOOTER ===== */
.footer {
    position:fixed; bottom:0; left:0; width:100%; z-index:2000;
    background:rgba(20,17,16,.2); backdrop-filter:blur(5px); border-top:2px solid var(--gold);
    padding:15px 20px; text-align:center; color:var(--muted); font-size:10px; letter-spacing:.8px; font-weight:300;
    transition:all .4s cubic-bezier(.165,.84,.44,1); cursor:pointer;
}
.footer.footer-hidden { transform:translateY(100%); opacity:0; pointer-events:none; }
.footer:hover { transform:translateY(0); background:rgba(20,17,16,1); backdrop-filter:blur(20px); }
.footer-links { margin-top:5px; display:flex; justify-content:center; gap:15px; }
.footer-btn { background:none; border:none; color:var(--muted); font-size:10px; cursor:pointer; text-decoration:underline; padding:0; }
.footer-btn:hover { color:var(--gold); }

/* ===== BIERGARTEN SPLIT HERO ===== */
.biergarten-split {
    height:calc(100vh - 120px);
    min-height:560px;
    overflow:hidden;
    display:flex;
    align-items:stretch;
}

.biergarten-split__image {
    position:relative;
    flex:0 0 55%;
    overflow:hidden;
    align-self:stretch;
}
.biergarten-split__image img {
    position:absolute;
    inset:0;
    width:100%; height:100%;
    object-fit:cover; object-position:center center;
    display:block;
    transform:scale(1.04);
    transition:transform 8s ease;
}
.biergarten-split:hover .biergarten-split__image img {
    transform:scale(1);
}
.biergarten-split__image::after {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to right, transparent 60%, rgba(26,20,16,.5) 100%);
    z-index:1;
}

.biergarten-split__content {
    position:relative;
    z-index:2;
    flex:0 0 50%;
    margin-left:-5%;
    background:var(--black);
    clip-path:polygon(90px 0, 100% 0, 100% 100%, 0 100%);
    display:flex;
    align-items:center;
    padding:80px 70px 80px 120px;
}
.biergarten-split__content::before {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(184,149,111,.06) 0%, transparent 60%);
    pointer-events:none;
}

.biergarten-split__inner {
    animation:splitFadeIn 1.4s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes splitFadeIn {
    from { opacity:0; transform:translateX(30px); }
    to { opacity:1; transform:translateX(0); }
}

.biergarten-split__eyebrow {
    display:block;
    font-size:11px; letter-spacing:4px; text-transform:uppercase;
    color:var(--gold); opacity:.8;
    margin-bottom:22px;
}

.biergarten-split__title {
    font-family:'Playfair Display',serif;
    font-size:clamp(40px, 5vw, 68px);
    color:var(--cream); font-weight:400;
    letter-spacing:1px; line-height:1.12;
    margin-bottom:36px;
}

.biergarten-split__sep {
    width:48px; height:1px;
    background:var(--gold); opacity:.5;
    margin-bottom:36px;
}

.biergarten-split__text {
    font-size:clamp(15px, 1.6vw, 17px);
    color:var(--muted); line-height:2;
    font-weight:300;
    margin-bottom:52px;
    max-width:380px;
}

.announcement-cta {
    display:inline-block; padding:15px 38px;
    border:1px solid var(--gold);
    color:var(--gold); font-size:11px; text-transform:uppercase;
    letter-spacing:3px; cursor:pointer; transition:all .4s ease;
    text-decoration:none; background:transparent;
    position:relative; overflow:hidden;
}
.announcement-cta::before {
    content:'';
    position:absolute;
    inset:0;
    background:var(--gold);
    transform:translateX(-101%);
    transition:transform .4s cubic-bezier(.25,.46,.45,.94);
    z-index:-1;
}
.announcement-cta:hover { color:var(--black); }
.announcement-cta:hover::before { transform:translateX(0); }

/* ===== BIERGARTEN SPLIT — RESPONSIVE ===== */
@media (max-width:900px) {
    .biergarten-split {
        flex-direction:column;
        min-height:auto;
    }
    .biergarten-split__image {
        flex:none;
        height:60vw;
        min-height:280px;
        max-height:420px;
    }
    .biergarten-split__image::after { display:none; }
    .biergarten-split__content {
        flex:none;
        width:100%;
        margin-left:0;
        clip-path:none;
        padding:52px 28px 60px;
        min-height:auto;
    }
    .biergarten-split__inner { text-align:center; }
    .biergarten-split__sep { margin:0 auto 36px; }
    .biergarten-split__text { max-width:100%; }
    .biergarten-split__title { font-size:clamp(32px, 8vw, 50px); }
}

@media (max-width:480px) {
    .biergarten-split__image {
        height:72vw;
        min-height:220px;
    }
    .biergarten-split__content {
        padding:40px 20px 52px;
    }
    .biergarten-split__title { font-size:clamp(28px, 9vw, 40px); }
    .biergarten-split__eyebrow { font-size:10px; letter-spacing:3px; }
    .announcement-cta { padding:13px 28px; font-size:10px; }
}

/* ===== RESPONSIVE: TABLET (max-width: 810px) ===== */
@media (max-width:810px) {
    .nav-container { padding:12px 20px; height:auto; gap:12px; }
    .nav-info-left, .nav-info-right { display:none; }
    .nav-center { flex:1; gap:0; }
    .logo { font-size:20px; padding:0 12px; }
    .logo::before, .logo::after { width:18px; }
    .nav-menu { gap:30px; }
    .nav-link { font-size:10px; }
    .hero-content h1 { font-size:48px; }
    .subtitle { font-size:13px; margin-bottom:30px; }
    .description { font-size:16px; margin-bottom:40px; }
    .page-content { padding:40px 20px; }
    .page-title { font-size:42px; margin-bottom:35px; padding-bottom:25px; }
    .page-title::after { width:50px; }
    .intro-text { font-size:15px; margin-bottom:60px; }
    .page-content h2 { font-size:20px; margin-top:40px; margin-bottom:30px; }
    .menu-section { gap:40px; margin-bottom:60px; }
    .menu-item h3 { font-size:16px; }
    .menu-item p { font-size:13px; }
    .menu-item-inline { font-size:13px; padding:10px 0; }
    .events-grid { grid-template-columns:1fr; gap:50px; margin-bottom:60px; }
    .contact-grid { grid-template-columns:1fr; gap:40px; padding:50px 0; }
    .contact-item h3 { font-size:14px; }
    .contact-item p { font-size:14px; }
    .special-section h2 { font-size:18px; }
    .special-section p { font-size:14px; }
    .language-container { top:auto; bottom:70px; left:95%; transform:translateX(-95%); padding:0; }
    .language-container .lang-switcher { font-size:12px; padding:8px 12px; }
    .announcement-hero { min-height:calc(100vh - 100px); padding:50px 20px; }
    .gallery-page { padding:40px 24px 80px; }
    .gallery-header { margin-bottom:50px; }
    .gallery-subtitle { font-size:14px; }
    .gallery-feature { grid-template-columns:1fr; gap:30px; padding:20px; margin-bottom:50px; }
    .gallery-feature-text { padding:0 5px 10px; text-align:center; }
    .gallery-feature-text h2 { font-size:24px; }
    .gallery-grid-modern { grid-template-columns:1fr; gap:28px; }
}

/* ===== RESPONSIVE: MOBILE (max-width: 480px) ===== */
@media (max-width:480px) {
    .floating-menu-container {
        right:10px;
        bottom:10px;
    }
    .menu-toggle-btn {
        width:46px;
        height:46px;
    }
    .menu-toggle-icon {
        width:21px;
        height:21px;
    }
    .floating-menu-content {
        position:fixed;
        bottom:68px;
        width:calc(100vw - 16px);
        max-width:none;
        border-radius:12px;
        padding:12px;
    }
    .resmio-widget-shell {
        width:100%;
        max-width:none;
    }
    .resmio-consent-btn {
        font-size:11px;
        padding:9px 10px;
    }
    .resmio-consent-notice {
        font-size:11px;
        line-height:1.5;
    }
    .nav-container { padding:10px 16px; gap:6px; flex-wrap:wrap; }
    .nav-center { order:2; min-width:0; }
    .nav-info-right { order:3; font-size:10px; display:flex; gap:4px; align-items:center; white-space:nowrap; }
    .nav-info .lang-switcher { font-size:10px; }
    .logo { font-size:18px; padding:0 10px; }
    .logo::before, .logo::after { width:12px; height:1px; }
    .hamburger-menu { display:flex; order:4; flex-shrink:0; margin-left:auto; padding:12px; position:relative; z-index:1002; }
    .nav-menu {
        position:fixed; top:0; left:0; width:100%; height:100%; flex-direction:column;
        justify-content:center; align-items:center;
        background:rgba(20,17,16,.99);
        padding:80px 20px 40px; z-index:1001;
        overflow-y:auto; overflow-x:hidden; -webkit-overflow-scrolling:touch;
        gap:0;
        opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
        display:flex;
    }
    .nav-menu.active { opacity:1; visibility:visible; }
    .nav-menu.active::after {
        content:'✕';
        position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
        font-size:24px; color:var(--muted); opacity:.5;
    }
    body.nav-open { overflow:hidden; }
    body.nav-open .footer { transform:translateY(100%); opacity:0; pointer-events:none; }
    .nav-menu li { width:100%; text-align:center; }
    .nav-link { font-size:16px; padding:18px 0; width:100%; display:block; min-height:48px; letter-spacing:3px; }
    .nav-link:hover, .nav-link.active { background:rgba(184,149,111,.1); color:var(--gold); }
    .nav-link::after { display:none; }
    .seasonal-button { font-size:14px; padding:14px 24px; min-height:44px; }
    .hero { padding:25px 16px; }
    .hero-content h1 { font-size:34px; line-height:1.2; }
    .subtitle { font-size:12px; margin-bottom:15px; }
    .description { font-size:15px; margin-bottom:25px; line-height:1.75; }
    .page-content { padding:30px 16px; }
    .page-title { font-size:30px; margin-bottom:20px; padding-bottom:15px; }
    .page-title::after { width:35px; }
    .intro-text { font-size:14px; margin-bottom:30px; line-height:1.75; }
    .page-content h2 { font-size:18px; margin-top:30px; margin-bottom:20px; }
    .menu-section { gap:25px; margin-bottom:50px; }
    .menu-item { padding-bottom:20px; gap:8px; }
    .page[data-page="2"] .menu-item { align-items:center; text-align:center; }
    .menu-item h3 { font-size:15px; }
    .menu-item p { font-size:14px; line-height:1.7; }
    .menu-item em { font-size:12px; }
    .price { font-size:14px; }
    .menu-item-inline { font-size:14px; padding:10px 0; gap:15px; }
    .menu-item-inline .price { font-size:14px; min-width:50px; }
    .menu-category-heading { font-size:13px; }
    .events-grid { gap:35px; margin-bottom:40px; }
    .event-item h3 { font-size:15px; margin-bottom:10px; }
    .event-item p { font-size:14px; line-height:1.7; }
    .contact-grid { gap:25px; margin-bottom:40px; padding:30px 0; }
    .contact-item h3 { font-size:13px; margin-bottom:12px; }
    .contact-item p { font-size:14px; line-height:1.7; }
    .special-section h2 { font-size:16px; }
    .special-section p { font-size:14px; line-height:1.7; }
    .special-section-first { margin-top:30px; }
    .privacy-content h4 { font-size:15px; }
    .privacy-content p, .privacy-content li { font-size:14px; }
    .language-container { bottom:15px; }
    .language-container .lang-switcher { font-size:12px; padding:10px 14px; min-height:44px; display:flex; align-items:center; }
    .announcement-hero { min-height:calc(100vh - 80px); padding:40px 16px; }
    .announcement-cta { padding:14px 28px; font-size:12px; min-height:44px; }
    .gallery-page { padding:30px 14px 60px; }
    .gallery-header { margin-bottom:35px; }
    .gallery-header .page-title { font-size:28px; }
    .gallery-subtitle { font-size:13px; }
    .gallery-feature { padding:14px; border-radius:18px; }
    .gallery-feature-img, .gallery-feature-img img { border-radius:14px; }
    .gallery-feature-text h2 { font-size:20px; }
    .gallery-feature-text p { font-size:14px; }
    .gallery-card { border-radius:18px; }
    .gallery-card-img { border-radius:18px 18px 0 0; }
    .gallery-card figcaption { padding:20px; }
    .gallery-card figcaption h3 { font-size:16px; }
    .gallery-card figcaption p { font-size:14px; }
    .footer { padding:10px 12px; }
    .footer-btn { font-size:11px; padding:8px; min-height:44px; }
}

/* ===== RESPONSIVE: SMALL MOBILE (max-width: 320px) ===== */
@media (max-width:320px) {
    .nav-container { padding:8px 10px; }
    .logo { font-size:15px; padding:0 5px; }
    .hamburger-menu span { width:20px; height:1.5px; }
    .nav-link { font-size:14px; padding:14px 0; }
    .hero-content h1 { font-size:26px; }
    .subtitle { font-size:11px; }
    .description { font-size:14px; }
    .page-title { font-size:24px; }
    .page-content { padding:25px 10px; }
    .menu-item-inline { flex-direction:column; align-items:flex-start; }
    .menu-item-inline .price { text-align:center; margin-top:4px; }
}
/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../assets/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('ttf'),
         url('../assets/PlayfairDisplay-VariableFont_wght.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #1a1410;
    --cream: #e8dcc8;
    --text-muted: #a89c8c;
    --gold: #b8956f;
    --border: rgba(184, 149, 111, 0.15);
    --border-hover: rgba(184, 149, 111, 0.3);
    --card-bg: rgba(255, 255, 255, 0.025);
    --card-border: rgba(184, 149, 111, 0.12);
}

/* ===== BASE ===== */
html, body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--cream);
    line-height: 1.85;
    letter-spacing: 0.4px;
    font-weight: 300;
    transition: opacity 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.nodeco {
    text-decoration: none;
    color: var(--gold);
}

/* ===== LAYOUT ===== */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    padding-bottom: 40px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 17, 16, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 149, 111, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    height: 60px;
    position: relative;
}

.nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding: 0 50px;
}

.logo::before,
.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    opacity: 0.6;
    transform: translateY(-50%);
}

.logo::before {
    left: 0;
    background: linear-gradient(to right, var(--gold), transparent);
}

.logo::after {
    right: 0;
    background: linear-gradient(to left, var(--gold), transparent);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    display: block;
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 65px;
    background: rgba(20,17,16,.98);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    position: sticky;
    top: 60px;
    z-index: 999;
    border-bottom: 1px solid rgba(184,149,111,.2);
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.5s ease;
    text-transform: uppercase;
    padding: 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.seasonal-button {
    margin-top: 25px;
    padding: 10px 18px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seasonal-button:hover {
    background: rgba(184, 149, 111, 0.12);
}

.nav-info {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

.nav-info-left { text-align: left; }
.nav-info-right { text-align: right; }

/* ===== LANGUAGE SWITCHER ===== */
.language-container {
    position: fixed;
    top: 90%;
    left: 95%;
    transform: translate(-95%, -90%);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    padding: 10px 15px;
}

.lang-switcher {
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.nav-info .lang-switcher {
    font-size: 8px;
}

.language-container .lang-switcher {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(184, 149, 111, 0.1);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out, background 0.3s ease, color 0.3s ease;
}

.language-container .lang-switcher:hover {
    background: rgba(184, 149, 111, 0.2);
}

.lang-switcher:hover {
    color: var(--gold);
}

.lang-separator {
    color: var(--text-muted);
    opacity: 0.8;
}

.lang-current {
    color: var(--gold);
    font-weight: 400;
}

.lang-switcher.flipping {
    animation: rotateOut 0.3s forwards;
}

@keyframes rotateOut {
    from { transform: rotateY(0deg) scale(1); opacity: 1; }
    to { transform: rotateY(180deg) scale(0.8); opacity: 0; }
}

/* ===== PAGES & TRANSITIONS ===== */
.page {
    display: none;
    animation: elegantFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.page.active {
    display: block;
    opacity: 1;
}

@keyframes elegantFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

body.page-transition-out {
    opacity: 0;
}

body.page-transition-in {
    opacity: 0;
    animation: fadeInPage 0.3s ease-in-out forwards;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== HERO ===== */
.hero {
    min-height: calc(20vh - 95px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 17, 16, 0.3) 0%, rgba(26, 20, 16, 0.5) 100%);
    padding-top: 100px;
    text-align: center;
    animation: slideInContent 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInContent {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 72px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-weight: 300;
}

.description {
    font-size: 17px;
    color: var(--cream);
    line-height: 1.95;
    margin-bottom: 70px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.specials {
    color: var(--gold);
    font-size: 36px;
    font-weight: bold;
}

.start {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60vh;
    margin-top: 10vh;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    animation: slideInContent 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 40px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1.5px;
    background: var(--gold);
}

.intro-text {
    font-size: 16px;
    color: var(--cream);
    text-align: center;
    margin-bottom: 90px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.95;
    font-weight: 300;
}

.page-content h2 {
    color: var(--gold);
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===== MENU ===== */
.menu-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 30px;
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.menu-item h3 {
    color: var(--gold);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin: 0;
}

.menu-item p {
    color: var(--cream);
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
    font-weight: 300;
}

.menu-item em {
    color: var(--text-muted);
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.price {
    color: var(--gold);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.menu-item .price {
    align-self: center;
    margin-top: 10px;
}

.menu-category-heading {
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 20px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.menu-item-group {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.menu-item-name {
    font-size: 15px;
    color: var(--cream);
    margin-bottom: 8px;
}

.menu-item-variants {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.menu-item-variant {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item-variant .volume {
    font-size: 12px;
    color: var(--text-muted);
}

.menu-item-variant .price {
    font-size: 14px;
    margin-top: 2px;
}

.menu-item-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    color: var(--cream);
    gap: 20px;
}

.menu-item-inline .price {
    flex-shrink: 0;
    min-width: 60px;
    text-align: right;
}

.menu-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-align: center;
}

/* Page-specific centering */
.page[data-page="2"] .menu-item,
.page[data-page="6"] .menu-item {
    align-items: center;
}

.page[data-page="2"] .menu-item h3,
.page[data-page="2"] .menu-item p,
.page[data-page="2"] .menu-item em,
.page[data-page="2"] .menu-item .price,
.page[data-page="6"] .menu-item h3,
.page[data-page="6"] .menu-item p,
.page[data-page="6"] .menu-item em,
.page[data-page="6"] .menu-item .price {
    text-align: center;
}

.page[data-page="2"] .menu-item .price,
.page[data-page="6"] .menu-item .price {
    align-self: center;
}

.page[data-page="2"] .page-title,
.page[data-page="2"] .page-content h2,
.page[data-page="3"] .page-title,
.page[data-page="3"] .page-content h2,
.page[data-page="6"] .page-title,
.page[data-page="6"] .page-content h2 {
    text-align: center;
}

.page[data-page="3"] .menu-section {
    max-width: 760px;
    margin: 0 auto;
}

.page[data-page="3"] .menu-item-inline {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    text-align: center;
}

.page[data-page="3"] .menu-item-inline[style],
.page[data-page="3"] .menu-item-inline {
    margin-left: 0 !important;
}

.page[data-page="3"] .menu-item-inline .price {
    flex: none;
    width: 100%;
    text-align: center;
}

/* ===== EVENTS ===== */
.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
}

.event-item {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.event-item:nth-child(1) { animation-delay: 0.1s; }
.event-item:nth-child(2) { animation-delay: 0.2s; }
.event-item:nth-child(3) { animation-delay: 0.3s; }
.event-item:nth-child(4) { animation-delay: 0.4s; }

.event-item h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.event-item p {
    font-size: 15px;
    color: var(--cream);
    line-height: 1.9;
    font-weight: 300;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }

.contact-item h3 {
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.contact-item p {
    font-size: 15px;
    color: var(--cream);
    margin-bottom: 12px;
    font-weight: 300;
    line-height: 1.9;
}

.contact-item strong {
    color: var(--gold);
    font-weight: 400;
}

.page[data-page="8"] .contact-grid,
.page[data-page="9"] .contact-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto 40px;
    border-bottom: none;
}

/* ===== SPECIAL SECTIONS ===== */
.special-section {
    margin: 35px 0;
    text-align: center;
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.special-section-first {
    margin-top: 50px;
}

.special-section h2 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.special-section p {
    font-size: 15px;
    color: var(--cream);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== PRIVACY ===== */
.privacy-content {
    text-align: left;
    margin-top: 40px;
}

.privacy-content h4 {
    color: var(--gold);
    margin: 25px 0 10px;
    font-size: 16px;
    letter-spacing: 1px;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-content ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.privacy-content li::before {
    content: '·';
    margin-right: 10px;
    color: var(--gold);
}

.privacy-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 30px 0;
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.gallery-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.gallery-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 28px;
    transition: border-color 0.4s ease;
}

.gallery-feature:hover {
    border-color: var(--border-hover);
}

.gallery-feature-img {
    border-radius: 18px;
    overflow: hidden;
}

.gallery-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s ease;
}

.gallery-feature:hover .gallery-feature-img img {
    transform: scale(1.03);
}

.gallery-feature-text {
    padding: 20px 10px;
}

.gallery-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    border: 1px solid rgba(184, 149, 111, 0.35);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 22px;
    font-weight: 400;
}

.gallery-feature-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.gallery-feature-text p {
    font-size: 15px;
    color: var(--cream);
    line-height: 1.95;
    font-weight: 300;
    opacity: 0.85;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.gallery-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    overflow: hidden;
    margin: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-card-img {
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    aspect-ratio: 4 / 3;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.06);
}

.gallery-card figcaption {
    padding: 28px 30px 32px;
}

.gallery-card figcaption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.gallery-card figcaption p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(20, 17, 16, 0.2);
    backdrop-filter: blur(5px);
    border-top: 2px solid var(--gold);
    padding: 15px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 0.8px;
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.footer.footer-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.footer:hover {
    transform: translateY(0);
    background: rgba(20, 17, 16, 1);
    backdrop-filter: blur(20px);
}

.footer-links {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 10px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.footer-btn:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE: TABLET (max-width: 810px) ===== */
@media (max-width: 810px) {
    .nav-container {
        flex-direction: row;
        padding: 12px 20px;
        height: auto;
        gap: 12px;
    }

    .nav-info-left,
    .nav-info-right {
        display: none;
    }

    .nav-center {
        flex: 1;
        gap: 0;
    }

    .logo {
        font-size: 20px;
        padding: 0 12px;
    }

    .logo::before,
    .logo::after {
        width: 18px;
    }

    .nav-menu {
        gap: 30px;
    }

    .nav-link {
        font-size: 10px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .page-content {
        padding: 60px 20px;
    }

    .page-title {
        font-size: 42px;
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .page-title::after {
        width: 50px;
    }

    .intro-text {
        font-size: 15px;
        margin-bottom: 60px;
    }

    .page-content h2 {
        font-size: 20px;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .menu-section {
        gap: 40px;
        margin-bottom: 60px;
    }

    .menu-item {
        padding-bottom: 30px;
    }

    .menu-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .menu-item p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .menu-item-inline {
        font-size: 13px;
        padding: 10px 0;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .event-item h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .event-item p {
        font-size: 14px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding: 50px 0;
    }

    .contact-item h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-item p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .special-section {
        margin: 50px 0;
    }

    .special-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .special-section p {
        font-size: 14px;
    }

    .language-container {
        top: auto;
        bottom: 70px;
        left: 95%;
        transform: translateX(-95%);
        padding: 0;
    }

    .language-container .lang-switcher {
        font-size: 12px;
        padding: 8px 12px;
    }

    .gallery-page {
        padding: 60px 24px 80px;
    }

    .gallery-header {
        margin-bottom: 50px;
    }

    .gallery-subtitle {
        font-size: 14px;
    }

    .gallery-feature {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
        margin-bottom: 50px;
    }

    .gallery-feature-text {
        padding: 0 5px 10px;
        text-align: center;
    }

    .gallery-feature-text h2 {
        font-size: 24px;
    }

    .gallery-grid-modern {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ===== RESPONSIVE: MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    .nav-container {
        padding: 10px 16px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .nav-center {
        order: 2;
        min-width: 0;
    }

    .nav-info-right {
        order: 3;
        font-size: 10px;
        display: flex;
        gap: 4px;
        align-items: center;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-info .lang-switcher {
        font-size: 10px;
    }

    .logo {
        font-size: 18px;
        padding: 0 10px;
    }

    .logo::before,
    .logo::after {
        width: 12px;
        height: 1px;
    }

    .hamburger-menu {
        display: flex;
        order: 4;
        flex-shrink: 0;
        margin-left: auto;
        padding: 12px;
        position: relative;
        z-index: 1002;
    }

    .hamburger-menu span {
        width: 22px;
        height: 2px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(20, 17, 16, 0.99);
        padding: 80px 20px 40px;
        z-index: 1001;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
        display: flex;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 14px;
        padding: 14px 0;
        width: 100%;
        display: block;
        min-height: 44px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(184, 149, 111, 0.1);
        color: var(--gold);
    }

    .nav-link::after {
        display: none;
    }

    .seasonal-button {
        font-size: 14px;
        padding: 14px 24px;
        min-height: 44px;
    }

    .hero {
        padding: 25px 16px;
    }

    .hero-content h1 {
        font-size: 34px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 12px;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.75;
    }

    .page-content {
        padding: 35px 16px;
    }

    .page-title {
        font-size: 30px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .page-title::after {
        width: 35px;
    }

    .intro-text {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.75;
    }

    .page-content h2 {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .menu-section {
        gap: 25px;
        margin-bottom: 50px;
    }

    .menu-item {
        padding-bottom: 20px;
        gap: 8px;
    }

    .page[data-page="2"] .menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page[data-page="2"] .menu-item h3,
    .page[data-page="2"] .menu-item p,
    .page[data-page="2"] .menu-item em,
    .page[data-page="2"] .menu-item .price {
        width: 100%;
        text-align: center;
    }

    .menu-item h3 {
        font-size: 15px;
        margin: 0;
    }

    .menu-item p {
        font-size: 14px;
        margin: 0;
        line-height: 1.7;
    }

    .menu-item em {
        font-size: 12px;
        margin-top: 4px;
    }

    .menu-item .price,
    .price {
        font-size: 14px;
    }

    .menu-item .price {
        margin-top: 6px;
    }

    .menu-item-inline {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 10px 0;
        font-size: 14px;
        gap: 15px;
    }

    .menu-item-inline .price {
        font-size: 14px;
        min-width: 50px;
    }

    .menu-category-heading {
        font-size: 13px;
    }

    .menu-note {
        font-size: 12px;
    }

    .events-grid {
        gap: 35px;
        margin-bottom: 40px;
    }

    .event-item h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .event-item p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-grid {
        gap: 25px;
        margin-bottom: 40px;
        padding: 30px 0;
    }

    .contact-item h3 {
        font-size: 13px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .contact-item p {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.7;
    }

    .special-section h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .special-section p {
        font-size: 14px;
        line-height: 1.7;
    }

    .special-section-first {
        margin-top: 30px;
    }

    .privacy-content h4 {
        font-size: 15px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 14px;
    }

    .language-container {
        bottom: 15px;
    }

    .language-container .lang-switcher {
        font-size: 12px;
        padding: 10px 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .gallery-page {
        padding: 40px 14px 60px;
    }

    .gallery-header {
        margin-bottom: 35px;
    }

    .gallery-header .page-title {
        font-size: 28px;
    }

    .gallery-subtitle {
        font-size: 13px;
    }

    .gallery-feature {
        padding: 14px;
        border-radius: 18px;
    }

    .gallery-feature-img,
    .gallery-feature-img img {
        border-radius: 14px;
    }

    .gallery-feature-text h2 {
        font-size: 20px;
    }

    .gallery-feature-text p {
        font-size: 14px;
    }

    .gallery-card {
        border-radius: 18px;
    }

    .gallery-card-img {
        border-radius: 18px 18px 0 0;
    }

    .gallery-card figcaption {
        padding: 20px 20px 24px;
    }

    .gallery-card figcaption h3 {
        font-size: 16px;
    }

    .gallery-card figcaption p {
        font-size: 14px;
    }

    .footer {
        padding: 10px 12px;
    }

    .footer-btn {
        font-size: 11px;
        padding: 8px;
        min-height: 44px;
    }
}

/* ===== RESPONSIVE: SMALL MOBILE (max-width: 320px) ===== */
@media (max-width: 320px) {
    .nav-container {
        padding: 8px 10px;
    }

    .logo {
        font-size: 15px;
        padding: 0 5px;
    }

    .nav-info-right {
        font-size: 8px;
        gap: 2px;
    }

    .hamburger-menu span {
        width: 20px;
        height: 1.5px;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 11px;
    }

    .description {
        font-size: 14px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-content {
        padding: 25px 10px;
    }

    .menu-item-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-inline .price {
        text-align: center;
        margin-top: 4px;
    }
}

/* Compatibility classes used by current HTML markup */
.floating-menu-lang-switcher {
    text-align: center;
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(184,149,111,.1);
    text-decoration: none;
}

.menu-subcategory-heading {
    border: none;
    margin: 0;
    font-size: 12px;
}

.menu-category-heading-spaced {
    margin-top: 15px;
}

/* Keep Specials page content flow flexible when lunch cards are shown. */
.page[data-page="7"] .start {
    height: auto;
    margin-top: 0;
}

.page[data-page="7"] .hero {
    padding-top: 56px;
    padding-bottom: 12px;
}

.page[data-page="7"] .page-content {
    padding-top: 28px;
}

/* ===== STAMMESSEN WEEK GRID ===== */
.stammessen-week {
    margin: 56px auto 0;
    max-width: 980px;
}

.stammessen-week-title {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 400;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 28px;
}

.stammessen-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.stammessen-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.stammessen-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.13) 24%, rgba(255, 255, 255, 0) 50%),
        radial-gradient(ellipse at 50% 86%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 22%, rgba(255, 255, 255, 0) 44%),
        radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0) 64%, rgba(0, 0, 0, 0.24) 84%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.stammessen-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.02) 24%, rgba(8, 8, 8, 0.32) 78%, rgba(8, 8, 8, 0.5) 100%);
    pointer-events: none;
}

.stammessen-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.65s ease;
}

.stammessen-card-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    text-align: left;
}

.stammessen-day {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(184, 149, 111, 0.45);
    background: rgba(26, 20, 16, 0.55);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stammessen-card-overlay p {
    margin: 0;
    color: var(--cream);
    font-size: clamp(16px, 2.2vw, 22px);
    letter-spacing: 0.6px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.62);
}

.stammessen-card:hover {
    border-color: rgba(184, 149, 111, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.stammessen-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 810px) {
    .stammessen-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stammessen-card-overlay {
        left: 14px;
        right: 14px;
        bottom: 12px;
    }
}
