        /* =====================================================================
           DESIGN TOKENS  –  Premium, ruhig, hell
        ===================================================================== */
        :root {
            /* Farben */
            --green:       #1d4a0f;
            --green-deep:  #143409;
            --red:         #C41E3A;
            --gold:        #D4A574;   /* Marken-Gold (feine Linien) */
            --gold-deep:   #a67c45;   /* Gold für Text/Labels (Kontrast auf Weiß) */

            --ink:         #2c2b25;   /* Fließtext (kräftiger für Lesbarkeit) */
            --ink-soft:    #5b594e;   /* Beschreibungen, Sekundäres (dunkler, nicht mehr blass) */
            --ink-faint:   #8a887d;   /* nur für sehr feine Meta-Angaben */
            --line:        rgba(20,25,10,0.12);
            --line-soft:   rgba(20,25,10,0.07);

            --bg:          #faf7f1;   /* warme Creme-Basis (kein kaltes Reinweiß) */
            --bg-alt:      #f2ead9;   /* tiefere warme Creme für Wechselflächen */
            --bg-warm:     #efe4cf;   /* zarte Gold-/Sandtönung für Akzentflächen */
            --surface:     #ffffff;   /* Karten: klares Weiß auf Creme = premium */
            --green-anchor:#173d0c;   /* Ankersektionen (leicht wärmer/tiefer) */

            /* Abstands-Skala */
            --sp-1: 0.25rem;
            --sp-2: 0.5rem;
            --sp-3: 0.75rem;
            --sp-4: 1rem;
            --sp-5: 1.5rem;
            --sp-6: 2rem;
            --sp-7: 3rem;
            --sp-8: 4.5rem;
            --section-y: clamp(4.5rem, 11vw, 9rem);

            --shadow-sm:  0 1px 3px rgba(0,0,0,0.05);
            --shadow:     0 18px 50px rgba(20,30,10,0.10);
            --shadow-card:  0 10px 30px rgba(20,30,10,0.08);
            --shadow-lift:  0 22px 55px rgba(20,30,10,0.16);

            --ease-soft: cubic-bezier(.2,.6,.2,1);

            --maxw:      1200px;
            --maxw-text: 720px;

            --font-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
            --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
        }

        /* =====================================================================
           RESET & BASE
        ===================================================================== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-body);
            color: var(--ink);
            background-color: var(--bg);
            line-height: 1.75;
            font-size: 1.0625rem;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img { max-width: 100%; display: block; height: auto; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        p { overflow-wrap: break-word; }

        :focus-visible {
            outline: 2px solid var(--gold-deep);
            outline-offset: 3px;
        }

        h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 600; }

        /* =====================================================================
           UTILITIES
        ===================================================================== */
        .container {
            width: 100%;
            max-width: var(--maxw);
            margin: 0 auto;
            padding-inline: clamp(1.1rem, 5vw, 2.5rem);
        }

        /* Sektions-Kopf: kleines Versal-Label + ruhige Serif-Überschrift */
        .section-head {
            text-align: center;
            max-width: var(--maxw-text);
            margin: 0 auto clamp(2.5rem, 6vw, 4rem);
        }
        .eyebrow {
            display: block;
            font-family: var(--font-body);
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.24em;
            color: var(--gold-deep);
            margin-bottom: var(--sp-4);
        }
        .section-title {
            font-size: clamp(2.1rem, 5.5vw, 3.3rem);
            font-weight: 600;
            color: var(--green);
            letter-spacing: 0.005em;
        }
        .section-divider {
            width: 46px;
            height: 1px;
            background: var(--gold-deep);
            margin: var(--sp-5) auto 0;
        }
        .section-subtitle {
            font-family: var(--font-body);
            font-size: 1.08rem;
            font-style: normal;
            color: var(--ink-soft);
            max-width: 56ch;
            margin: var(--sp-5) auto 0;
            line-height: 1.72;
        }

        /* Buttons: schlicht, rechteckig, Versal-Typo ------------------------ */
        .btn, .cta-btn, .btn-reservierung {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: 50px;
            padding: 0.85rem 2rem;
            border-radius: 2px;
            font-family: var(--font-body);
            font-size: 0.76rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            cursor: pointer;
            border: 1px solid transparent;
            transition: background .3s var(--ease-soft), color .3s var(--ease-soft),
                        border-color .3s var(--ease-soft), transform .3s var(--ease-soft),
                        box-shadow .3s var(--ease-soft);
        }
        .btn:hover, .cta-btn:hover, .btn-reservierung:hover,
        .btn:focus-visible, .cta-btn:focus-visible, .btn-reservierung:focus-visible {
            transform: translateY(-2px);
        }
        .btn:active, .cta-btn:active, .btn-reservierung:active { transform: translateY(0); }
        .btn-primary, .cta-btn {
            background: var(--green);
            color: #fff;
            border-color: var(--green);
        }
        .btn-primary:hover, .cta-btn:hover,
        .btn-primary:focus-visible, .cta-btn:focus-visible {
            background: var(--green-deep);
            border-color: var(--green-deep);
            box-shadow: 0 12px 26px rgba(20,52,9,0.30);
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border-color: rgba(255,255,255,0.55);
        }
        .btn-outline:hover, .btn-outline:focus-visible {
            background: #fff;
            color: var(--green);
            border-color: #fff;
        }

        /* =====================================================================
           HEADER / NAV  (hell, luftig)
        ===================================================================== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(252,249,243,0.95);
            backdrop-filter: saturate(150%) blur(8px);
            border-bottom: 1px solid rgba(166,124,69,0.22);
            box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--sp-3);
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 0.6rem clamp(1.1rem, 5vw, 2.5rem);
        }
        .header-logo { display: flex; align-items: center; gap: 0.65rem; min-width: 0; }
        .header-logo img {
            height: clamp(52px, 9vw, 66px);
            width: auto;
            object-fit: contain;
            flex-shrink: 0;
        }
        .header-logo-text { display: flex; flex-direction: column; min-width: 0; }
        .header-logo-text .name {
            font-family: var(--font-head);
            font-size: clamp(1.05rem, 3.2vw, 1.3rem);
            font-weight: 600;
            color: var(--green);
            letter-spacing: 0.01em;
            line-height: 1.1;
            white-space: nowrap;
        }
        .header-logo-text .tagline {
            font-family: var(--font-body);
            font-size: 0.6rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--gold-deep);
            display: none;
        }

        .site-nav { display: flex; align-items: center; }
        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            flex-direction: column;
            background: #fff;
            padding: var(--sp-2) 0 var(--sp-4);
            box-shadow: 0 16px 30px rgba(0,0,0,0.08);
            border-top: 1px solid var(--line-soft);
        }
        .nav-links.open { display: flex; }
        .nav-links a {
            display: flex;
            align-items: center;
            min-height: 48px;
            padding: 0.55rem clamp(1.1rem, 5vw, 2.5rem);
            color: var(--ink);
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            transition: color .2s;
        }
        .nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-deep); }

        .hamburger {
            display: inline-flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 46px;
            height: 46px;
            background: none;
            border: none;
            cursor: pointer;
            flex-shrink: 0;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--ink);
            transition: transform .3s ease, opacity .3s ease;
        }
        .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
        .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        /* =====================================================================
           KONTAKT-BAR  (schmaler, ruhiger Infostreifen)
        ===================================================================== */
        .kontakt-bar { background: var(--bg-alt); border-bottom: 1px solid var(--line-soft); }
        .kontakt-bar-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.15rem;
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 0.55rem clamp(1.1rem, 5vw, 2.5rem);
            text-align: center;
        }
        .kontakt-bar-item {
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: var(--ink);
        }
        .kontakt-bar-item a { color: var(--green); font-weight: 500; }
        .kontakt-bar-item a:hover { color: var(--gold-deep); }

        /* =====================================================================
           HERO
        ===================================================================== */
        .hero {
            position: relative;
            min-height: 84vh;
            display: flex;
            overflow: hidden;
            background: var(--green-deep);
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            background-size: cover;
            background-position: center;
            transition: opacity 1.4s ease-in-out;
            transform: scale(1.05);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }
        .hero-slide.active { opacity: 1; }
        @keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                radial-gradient(120% 90% at 50% 30%, rgba(10,20,5,0.30) 0%, rgba(8,14,4,0.68) 100%),
                linear-gradient(to bottom, rgba(10,20,5,0.62) 0%, rgba(10,15,5,0.55) 45%, rgba(6,12,3,0.85) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 820px;
            margin: auto;
            text-align: center;
            padding: clamp(4rem, 12vw, 8rem) clamp(1.2rem, 5vw, 2rem);
        }
        .hero-eyebrow {
            display: inline-block;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.74rem;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: var(--sp-5);
            padding-bottom: 0.7rem;
            position: relative;
        }
        .hero-eyebrow::after {
            content: "";
            position: absolute;
            left: 50%; bottom: 0;
            width: 34px; height: 1px;
            background: var(--gold);
            transform: translateX(-50%);
            opacity: 0.7;
        }
        .hero-content h1 {
            font-size: clamp(2.8rem, 9vw, 5.4rem);
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.01em;
            margin-bottom: var(--sp-5);
            text-shadow: 0 2px 30px rgba(0,0,0,0.35);
        }
        .hero-content h1 span { color: var(--gold); font-style: italic; }
        .hero-content p {
            font-family: var(--font-body);
            font-weight: 400;
            font-size: clamp(1.02rem, 2.6vw, 1.22rem);
            color: rgba(255,255,255,0.94);
            line-height: 1.7;
            max-width: 48ch;
            margin: 0 auto var(--sp-7);
            text-shadow: 0 1px 18px rgba(0,0,0,0.4);
        }
        .hero-btns { display: flex; gap: var(--sp-4); flex-wrap: wrap; justify-content: center; }

        /* Sanfte Einblendung der Hero-Inhalte beim Laden */
        .hero-content > * {
            opacity: 0;
            transform: translateY(18px);
            animation: heroIn 0.9s var(--ease-soft) forwards;
        }
        .hero-content > *:nth-child(1) { animation-delay: 0.15s; }
        .hero-content > *:nth-child(2) { animation-delay: 0.30s; }
        .hero-content > *:nth-child(3) { animation-delay: 0.45s; }
        .hero-content > *:nth-child(4) { animation-delay: 0.60s; }
        .hero-content > *:nth-child(7) { animation-delay: 0.96s; }
        @keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

        /* ---- Hero-Variante: dunkelgrün + Logo-Emblem (wie Reservierung) ---- */
        .hero--logo {
            background:
                radial-gradient(130% 90% at 50% 0%, rgba(35,61,18,0.55), transparent 62%),
                var(--green-deep);
        }
        .hero-logo {
            display: block;
            width: clamp(140px, 21vw, 200px);
            height: auto;
            margin: 0 auto var(--sp-5);
            filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
        }

        /* Scroll-Indikator */
        .hero-scroll {
            position: absolute;
            left: 50%; bottom: 1.6rem;
            transform: translateX(-50%);
            z-index: 2;
            width: 26px; height: 42px;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 14px;
            display: none;
        }
        .hero-scroll::before {
            content: "";
            position: absolute;
            left: 50%; top: 8px;
            width: 3px; height: 8px;
            border-radius: 3px;
            background: var(--gold);
            transform: translateX(-50%);
            animation: scrollDot 1.8s ease-in-out infinite;
        }
        @keyframes scrollDot {
            0%   { opacity: 0; transform: translate(-50%, 0); }
            40%  { opacity: 1; }
            80%  { opacity: 0; transform: translate(-50%, 12px); }
            100% { opacity: 0; }
        }
        @media (min-width: 760px) { .hero-scroll { display: block; } }

        /* =====================================================================
           SECTIONS – Rhythmus & Wechselflächen
        ===================================================================== */
        .galerie-section,
        .ueber-uns-section,
        .wochenmenu-section,
        .speisekarte-section,
        .getraenke-section,
        .reservierung-section,
        .bewertungen-section,
        .kontakt-section { padding-block: var(--section-y); }

        .galerie-section    { background: var(--bg-alt); }
        .ueber-uns-section  { background: var(--bg); }
        .wochenmenu-section { background: var(--bg-alt); }
        .speisekarte-section{ background: var(--bg-alt); }
        .getraenke-section  { background: var(--bg-alt); }
        .kontakt-section    { background: var(--bg); }

        /* =====================================================================
           GALERIE
        ===================================================================== */
        .galerie-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(0.75rem, 2vw, 1.25rem);
            max-width: var(--maxw);
            margin: 0 auto;
        }
        .galerie-item {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 3px;
            cursor: zoom-in;
            box-shadow: var(--shadow-sm);
        }
        .galerie-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 1.1s var(--ease-soft), filter .5s ease;
            filter: saturate(0.96);
        }
        .galerie-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15,30,8,0.42) 0%, rgba(15,30,8,0) 55%);
            opacity: 0;
            transition: opacity .45s ease;
        }
        .galerie-item .galerie-zoom {
            position: absolute;
            left: 50%; top: 50%;
            z-index: 2;
            width: 46px; height: 46px;
            border-radius: 50%;
            background: rgba(255,255,255,0.92);
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transform: translate(-50%, -50%) scale(0.7);
            opacity: 0;
            transition: opacity .4s ease, transform .4s var(--ease-soft);
            pointer-events: none;
        }
        .galerie-item:hover img,
        .galerie-item:focus-visible img { filter: saturate(1.04) brightness(0.97); }
        .galerie-item:hover::after,
        .galerie-item:focus-visible::after { opacity: 1; }
        .galerie-item:hover .galerie-zoom,
        .galerie-item:focus-visible .galerie-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

        /* =====================================================================
           ÜBER UNS + ÖFFNUNGSZEITEN
        ===================================================================== */
        .ueber-uns-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2.5rem, 6vw, 5rem);
            max-width: var(--maxw);
            margin: 0 auto;
            align-items: center;
        }
        .ueber-uns-text .eyebrow { text-align: left; }
        .ueber-uns-text h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 600;
            color: var(--green);
        }
        .divider-line {
            width: 46px;
            height: 1px;
            background: var(--gold-deep);
            margin: var(--sp-4) 0 var(--sp-5);
        }
        .ueber-uns-claim {
            font-family: var(--font-head);
            font-style: italic;
            font-size: clamp(1.3rem, 3.4vw, 1.7rem);
            font-weight: 500;
            color: var(--gold-deep);
            line-height: 1.35;
            margin-bottom: var(--sp-5) !important;
        }
        .ueber-uns-text p { color: var(--ink); margin-bottom: var(--sp-4); max-width: 60ch; }
        .motto {
            margin-top: var(--sp-6);
            padding-top: var(--sp-5);
            border-top: 1px solid var(--line);
            font-family: var(--font-head);
            font-style: italic;
            font-size: clamp(1.15rem, 3vw, 1.5rem);
            font-weight: 500;
            color: var(--green);
            line-height: 1.4;
        }

        .ueber-uns-image-col { order: -1; }
        .ueber-uns-img {
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            border-radius: 2px;
        }

        .oeffnungszeiten { margin-top: var(--sp-6); }
        .oeffnungszeiten h3 {
            font-family: var(--font-body);
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            color: var(--gold-deep);
            margin-bottom: var(--sp-4);
        }
        .oeffnungszeiten table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
        .oeffnungszeiten tr { border-bottom: 1px solid var(--line-soft); }
        .oeffnungszeiten tr:last-child { border-bottom: none; }
        .oeffnungszeiten td { padding: 0.6rem 0; }
        .oeffnungszeiten td:first-child { color: var(--ink); }
        .oeffnungszeiten td:last-child { text-align: right; color: var(--ink-soft); }
        .oeffnungszeiten td.closed { color: var(--red); }

        /* =====================================================================
           WOCHENMENÜ
        ===================================================================== */
        /* Kombiniertes Raster: Wochenmenü- & Aktions-Flyer nebeneinander */
        .menu-flyer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1.5rem, 4vw, 2.5rem);
            max-width: 820px;
            margin: 0 auto;
            align-items: start;
        }
        @media (min-width: 720px) {
            .menu-flyer-grid { grid-template-columns: 1fr 1fr; }
        }
        .menu-flyer { margin: 0; }
        .menu-flyer img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(212,165,116,0.5);
            transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
        }
        .menu-flyer img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

        .wochenmenu-foto {
            position: relative;
            max-width: 400px;
            margin: 0 auto var(--sp-8);
            border-radius: 4px;
            box-shadow: var(--shadow);
            overflow: hidden;
            background: #fff;
            transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
        }
        .wochenmenu-foto::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            border: 1px solid rgba(212,165,116,0.5);
            border-radius: 4px;
            pointer-events: none;
        }
        .wochenmenu-foto:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
        .wochenmenu-foto img {
            width: 100%; display: block;
        }
        .wochenmenu-preis-badge {
            position: relative;
            z-index: 2;
            background: var(--green);
            color: #fff;
            text-align: center;
            padding: 0.9rem 1rem;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .wochenmenu-preis-badge .preis {
            font-family: var(--font-head);
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
            color: var(--gold);
        }

        .tages-karten-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1.1rem, 3vw, 1.75rem);
            max-width: var(--maxw);
            margin: 0 auto;
        }
        .tages-karte {
            background: #fff;
            border: 1px solid var(--line-soft);
            border-top: 3px solid var(--gold);
            border-radius: 4px;
            padding: clamp(1.4rem, 3.5vw, 1.9rem) clamp(1.3rem, 3vw, 1.7rem);
            box-shadow: var(--shadow-card);
            transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), border-color .4s ease;
        }
        .tages-karte:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lift);
        }
        .tages-karte.aktion {
            border-top-color: var(--red);
            background: linear-gradient(180deg, #fff8f8 0%, #fff 42%);
        }
        /* Gestaffeltes Einblenden der Karten, sobald das Grid sichtbar wird */
        .tages-karten-grid.visible .tages-karte {
            animation: cardIn .7s var(--ease-soft) both;
        }
        .tages-karten-grid.visible .tages-karte:nth-child(1) { animation-delay: .05s; }
        .tages-karten-grid.visible .tages-karte:nth-child(2) { animation-delay: .13s; }
        .tages-karten-grid.visible .tages-karte:nth-child(3) { animation-delay: .21s; }
        .tages-karten-grid.visible .tages-karte:nth-child(4) { animation-delay: .29s; }
        .tages-karten-grid.visible .tages-karte:nth-child(5) { animation-delay: .37s; }
        .tages-karten-grid.visible .tages-karte:nth-child(6) { animation-delay: .45s; }
        @keyframes cardIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
        .tages-karte-header {
            font-family: var(--font-head);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--green);
            padding-bottom: 0.6rem;
            margin-bottom: var(--sp-4);
            border-bottom: 1px solid var(--gold);
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .tages-karte.aktion .tages-karte-header { color: var(--red); border-bottom-color: var(--red); }
        .tages-karte-header .aktion-label {
            font-family: var(--font-body);
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--red);
        }
        .tages-karte-body .gericht {
            font-size: 0.97rem;
            color: var(--ink);
            margin-bottom: 0.5rem;
            padding-left: 0.9rem;
            position: relative;
            overflow-wrap: break-word;
        }
        .tages-karte-body .gericht::before {
            content: "";
            position: absolute;
            left: 0; top: 0.7em;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: var(--gold-deep);
        }
        .tages-karte.aktion .gericht::before { background: var(--red); }
        .tages-karte-body .preis-hinweis {
            margin-top: 0.75rem;
            font-family: var(--font-head);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--red);
        }

        /* =====================================================================
           SPEISEKARTE & GETRÄNKEKARTE  (edle Listendarstellung)
        ===================================================================== */
        .speisekarte-grid {
            max-width: 1080px;
            margin: 0 auto;
        }
        .speise-kategorie {
            background: #fff;
            border: 1px solid var(--line-soft);
            border-radius: 5px;
            padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.4rem, 3.5vw, 2rem);
            box-shadow: var(--shadow-card);
            margin-bottom: clamp(1.4rem, 3.5vw, 2rem);
            break-inside: avoid;
            -webkit-column-break-inside: avoid;
            transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
        }
        .speise-kategorie:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lift);
        }
        /* Gestaffeltes Einblenden der Kategorien, sobald das Grid sichtbar wird */
        .speisekarte-grid.visible .speise-kategorie {
            animation: cardIn .7s var(--ease-soft) both;
        }
        .speisekarte-grid.visible .speise-kategorie:nth-child(1) { animation-delay: .04s; }
        .speisekarte-grid.visible .speise-kategorie:nth-child(2) { animation-delay: .10s; }
        .speisekarte-grid.visible .speise-kategorie:nth-child(3) { animation-delay: .16s; }
        .speisekarte-grid.visible .speise-kategorie:nth-child(4) { animation-delay: .22s; }
        .speisekarte-grid.visible .speise-kategorie:nth-child(5) { animation-delay: .28s; }
        .speisekarte-grid.visible .speise-kategorie:nth-child(6) { animation-delay: .34s; }
        .speisekarte-grid.visible .speise-kategorie:nth-child(n+7) { animation-delay: .40s; }
        .speise-kategorie-title {
            font-family: var(--font-head);
            font-size: 1.7rem;
            font-weight: 600;
            color: var(--green);
            padding-bottom: 0.75rem;
            margin-bottom: var(--sp-4);
            border-bottom: 2px solid;
            border-image: linear-gradient(90deg, var(--gold) 0%, rgba(212,165,116,0.15) 100%) 1;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .speise-kategorie-title::before {
            content: "";
            flex-shrink: 0;
            width: 9px; height: 9px;
            background: var(--gold-deep);
            transform: rotate(45deg);
        }
        .speise-liste { display: flex; flex-direction: column; }
        .speise-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--line-soft);
        }
        .speise-item:last-child { border-bottom: none; }
        .speise-item-info { flex: 1 1 auto; min-width: 0; }
        .speise-item-name {
            display: block;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            color: var(--ink);
            overflow-wrap: break-word;
        }
        .speise-item-beschr {
            display: block;
            font-size: 0.85rem;
            color: var(--ink-soft);
            margin-top: 0.15rem;
            line-height: 1.55;
            overflow-wrap: break-word;
        }
        .speise-item-preis {
            flex-shrink: 0;
            font-family: var(--font-head);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--green);
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
        }

        /* Allergene – sehr dezent */
        .allergene {
            font-size: 0.6rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            color: var(--ink-soft);
            vertical-align: super;
            white-space: nowrap;
        }
        .kat-hinweis {
            vertical-align: baseline;
            font-size: 0.62rem;
            color: var(--gold-deep);
        }

        .allergen-legende {
            max-width: 1080px;
            margin: clamp(2.5rem, 6vw, 4rem) auto 0;
            padding: clamp(1.6rem, 4vw, 2.2rem);
            background: #fff;
            border: 1px solid var(--line-soft);
            border-top: 3px solid var(--gold);
            border-radius: 5px;
            box-shadow: var(--shadow-card);
        }
        .allergen-legende h3 {
            font-family: var(--font-body);
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gold-deep);
            margin-bottom: var(--sp-4);
        }
        .allergen-legende ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.4rem 1.5rem;
            font-size: 0.86rem;
            color: var(--ink-soft);
        }
        .allergen-legende li b { color: var(--green); margin-right: 0.4rem; font-weight: 600; }
        .allergen-hinweis { margin-top: var(--sp-4); font-size: 0.84rem; color: var(--ink-soft); font-style: italic; }

        /* =====================================================================
           RESERVIERUNG
        ===================================================================== */
        .reservierung-section {
            position: relative;
            text-align: center;
            background: var(--bg-alt);
        }
        .reservierung-section .eyebrow { color: var(--gold-deep); }
        .reservierung-section h2 {
            font-size: clamp(2.1rem, 5.5vw, 3.3rem);
            font-weight: 600;
            color: var(--green);
        }
        .reservierung-section .divider-line { margin: var(--sp-5) auto; background: var(--gold-deep); }
        .reservierung-section p {
            color: var(--ink);
            font-weight: 400;
            font-size: 1.05rem;
            line-height: 1.75;
            max-width: 52ch;
            margin: 0 auto var(--sp-7);
        }
        .btn-reservierung {
            background: var(--green);
            color: #fff;
            border-color: var(--green);
        }
        .btn-reservierung:hover, .btn-reservierung:focus-visible {
            background: var(--green-deep);
            border-color: var(--green-deep);
            box-shadow: 0 12px 26px rgba(20,52,9,0.30);
        }

        /* ---- Rechtstexte (Impressum / Datenschutz) ------------------------ */
        .rechts-section { background: var(--bg); padding-block: var(--section-y); }
        .rechts-content { max-width: 820px; margin: 0 auto; }
        .rechts-card {
            background: var(--surface);
            border: 1px solid var(--line-soft);
            border-left: 3px solid var(--gold);
            border-radius: 6px;
            padding: clamp(1.4rem, 3.5vw, 2.1rem) clamp(1.4rem, 4vw, 2.4rem);
            margin-bottom: var(--sp-4);
            box-shadow: var(--shadow-card);
        }
        .rechts-card h2 {
            font-family: var(--font-head);
            color: var(--green);
            font-size: clamp(1.25rem, 3vw, 1.6rem);
            font-weight: 600;
            margin-bottom: 0.7rem;
        }
        .rechts-card p { color: var(--ink); margin-bottom: 0.8rem; }
        .rechts-card p:last-child { margin-bottom: 0; }
        .rechts-card ul { margin: 0.6rem 0 0 1.3rem; color: var(--ink); }
        .rechts-card li { margin-bottom: 0.35rem; }
        .rechts-card a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
        .rechts-card a:hover, .rechts-card a:focus-visible { color: var(--green); }
        .rechts-card em { color: var(--ink-soft); }

        /* =====================================================================
           BEWERTUNGEN  (dunkler, eleganter Ruhepol)
        ===================================================================== */
        .bewertungen-section { background: var(--green-deep); }
        .bewertungen-section .section-title { color: #fff; }
        .bewertungen-section .eyebrow { color: var(--gold); }
        .bewertungen-section .section-divider { background: var(--gold); }
        .bewertungen-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2rem, 5vw, 3.5rem);
            max-width: var(--maxw);
            margin: 0 auto;
        }
        .bewertung-karte {
            position: relative;
            text-align: center;
            padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.4rem, 3vw, 2rem);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(212,165,116,0.22);
            border-radius: 5px;
            transition: transform .4s var(--ease-soft), background .4s ease, border-color .4s ease;
        }
        .bewertung-karte:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,0.07);
            border-color: rgba(212,165,116,0.45);
        }
        .bewertung-karte::before {
            content: "\201C";
            position: absolute;
            top: -0.35em; left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-head);
            font-size: 3.4rem;
            line-height: 1;
            color: rgba(212,165,116,0.35);
        }
        .bewertung-sterne { color: var(--gold); font-size: 0.9rem; margin-bottom: var(--sp-4); letter-spacing: 0.35em; }
        .bewertung-text {
            font-family: var(--font-head);
            font-style: italic;
            font-size: clamp(1.15rem, 2.6vw, 1.4rem);
            font-weight: 500;
            color: rgba(255,255,255,0.92);
            line-height: 1.5;
            margin-bottom: var(--sp-5);
        }
        .bewertung-autor {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--gold);
        }
        .bewertung-quelle { font-size: 0.78rem; color: rgba(255,255,255,0.62); margin-top: 0.3rem; }

        /* =====================================================================
           KONTAKT & ANFAHRT
        ===================================================================== */
        .kontakt-kacheln {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1.5rem, 4vw, 2rem);
            max-width: 900px;
            margin: 0 auto clamp(2.5rem, 6vw, 4rem);
        }
        .kontakt-kachel { text-align: center; padding: var(--sp-4) 0; }
        .kontakt-kachel h3 {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gold-deep);
            margin-bottom: var(--sp-3);
        }
        .kontakt-kachel p, .kontakt-kachel a {
            font-family: var(--font-head);
            font-size: 1.2rem;
            color: var(--ink);
            line-height: 1.5;
        }
        .kontakt-kachel a { color: var(--green); font-weight: 600; }
        .kontakt-kachel a:hover { color: var(--gold-deep); }

        .maps-wrapper {
            max-width: var(--maxw);
            margin: 0 auto;
            border-radius: 2px;
            overflow: hidden;
            border: 1px solid var(--line);
        }
        .maps-wrapper iframe { width: 100%; height: 340px; display: block; border: none; filter: grayscale(0.2); }
        .maps-consent {
            min-height: 340px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.5rem;
            padding: clamp(1.8rem, 5vw, 3rem);
            background:
                radial-gradient(130% 90% at 50% 0%, rgba(35,61,18,0.5), transparent 62%),
                var(--green-deep);
            color: rgba(255,255,255,0.92);
        }
        .maps-consent-icon { color: var(--gold); margin-bottom: 0.4rem; }
        .maps-consent-icon svg { width: 40px; height: 40px; }
        .maps-consent h3 {
            font-family: var(--font-head);
            font-size: clamp(1.4rem, 3.5vw, 1.9rem);
            font-weight: 600;
            color: #fff;
        }
        .maps-consent p { max-width: 46ch; font-size: 0.95rem; line-height: 1.6; margin-bottom: var(--sp-4); }
        .maps-consent p a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
        .maps-consent-alt { margin-top: var(--sp-4); font-size: 0.85rem; color: rgba(255,255,255,0.75); text-decoration: none; }
        .maps-consent-alt:hover, .maps-consent-alt:focus-visible { color: var(--gold); }

        /* =====================================================================
           FOOTER
        ===================================================================== */
        .site-footer {
            background: var(--green-deep);
            color: rgba(255,255,255,0.85);
            padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.1rem, 5vw, 2.5rem) var(--sp-6);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--sp-7);
            max-width: var(--maxw);
            margin: 0 auto var(--sp-7);
        }
        .footer-col h4 {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gold);
            margin-bottom: var(--sp-4);
        }
        .footer-col p, .footer-col li { font-size: 0.92rem; line-height: 1.85; color: rgba(255,255,255,0.85); }
        .footer-col ul li { margin-bottom: 0.15rem; }
        .footer-col a { color: rgba(255,255,255,0.85); transition: color .2s; }
        .footer-col a:hover { color: var(--gold); }
        .footer-logo-wrap { display: flex; align-items: center; gap: 0.7rem; margin-bottom: var(--sp-4); }
        .footer-logo-wrap img {
            height: 54px;
            width: 56px;
            border-radius: 0;
            border: 0;
            object-fit: contain;
            background: transparent;
        }
        .footer-logo-wrap span { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: #fff; }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.12);
            padding-top: var(--sp-5);
            max-width: var(--maxw);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }
        .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.62); }
        .footer-bottom a { color: rgba(255,255,255,0.8); }
        .footer-bottom a:hover { color: var(--gold); }

        /* =====================================================================
           OFFEN-BADGE  (dezent)
        ===================================================================== */
        .offen-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            width: fit-content;
            font-family: var(--font-body);
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.25rem;
        }
        .offen-badge.offen { color: var(--green); }
        .offen-badge.geschlossen { color: var(--red); }
        .offen-badge::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: currentColor;
        }

        /* =====================================================================
           LIGHTBOX
        ===================================================================== */
        .lightbox-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(12,16,8,0.95);
            z-index: 9000;
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
            animation: lbFadeIn .25s ease;
        }
        .lightbox-overlay.aktiv { display: flex; }
        @keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
        .lightbox-overlay img {
            max-width: 92vw;
            max-height: 88vh;
            border-radius: 2px;
            object-fit: contain;
            cursor: default;
        }
        .lightbox-close {
            position: absolute;
            top: 1rem; right: 1.1rem;
            width: 48px; height: 48px;
            font-size: 1.9rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            line-height: 1;
            opacity: 0.8;
            transition: opacity .2s;
        }
        .lightbox-close:hover { opacity: 1; }

        /* =====================================================================
           FLOATING BUTTONS  (zurückhaltend)
        ===================================================================== */
        .float-reservierung {
            position: fixed;
            bottom: 1.1rem;
            left: 1.1rem;
            z-index: 800;
            background: var(--green);
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            min-height: 46px;
            padding: 0 1.1rem;
            border-radius: 2px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: opacity .3s, transform .3s, background .2s;
        }
        .float-reservierung.sichtbar { opacity: 1; transform: translateY(0); pointer-events: auto; }
        .float-reservierung:hover { background: var(--green-deep); }

        /* Schnellkontakt: gestapelte runde Buttons (Telefon / WhatsApp / Facebook) */
        .float-kontakt {
            position: fixed;
            bottom: 1.1rem;
            right: 1.1rem;
            z-index: 800;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            transition: opacity .3s, transform .3s;
        }
        .float-kontakt.versteckt { opacity: 0; pointer-events: none; transform: translateY(10px); }
        .float-kontakt-btn {
            width: 50px; height: 50px;
            border-radius: 50%;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.28);
            transition: transform .2s, box-shadow .2s;
        }
        .float-kontakt-btn:hover, .float-kontakt-btn:focus-visible { transform: scale(1.08); }
        .float-kontakt-btn.tel      { background: var(--green);  box-shadow: 0 6px 18px rgba(29,74,15,0.45); }
        .float-kontakt-btn.whatsapp { background: #25D366;       box-shadow: 0 6px 18px rgba(37,211,102,0.45); }
        .float-kontakt-btn.facebook { background: #1877F2;       box-shadow: 0 6px 18px rgba(24,119,242,0.45); }

        .back-to-top {
            position: fixed;
            bottom: 4.6rem;
            left: 1.1rem;
            z-index: 800;
            width: 42px; height: 42px;
            border-radius: 50%;
            background: rgba(29,74,15,0.9);
            color: #fff;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: opacity .3s, transform .3s, background .2s;
        }
        .back-to-top.sichtbar { opacity: 1; transform: translateY(0); pointer-events: auto; }
        .back-to-top:hover { background: var(--green); }

        /* =====================================================================
           SCROLL-ANIMATIONEN
        ===================================================================== */
        .fade-in {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
            will-change: opacity, transform;
        }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Richtungs-Varianten (dezent, geschmackvoll) */
        .fade-in.from-left  { transform: translateX(-32px); }
        .fade-in.from-right { transform: translateX(32px); }
        .fade-in.zoom-in    { transform: scale(0.96); }
        .fade-in.from-left.visible,
        .fade-in.from-right.visible,
        .fade-in.zoom-in.visible { transform: none; }

        /* Stagger: verzögert Kinder mit .fade-in in Reihenfolge */
        .stagger .fade-in.visible { transition-delay: 0s; }
        .stagger .fade-in:nth-child(1).visible { transition-delay: .0s; }
        .stagger .fade-in:nth-child(2).visible { transition-delay: .09s; }
        .stagger .fade-in:nth-child(3).visible { transition-delay: .18s; }
        .stagger .fade-in:nth-child(4).visible { transition-delay: .27s; }
        .stagger .fade-in:nth-child(5).visible { transition-delay: .36s; }
        .stagger .fade-in:nth-child(6).visible { transition-delay: .45s; }

        /* =====================================================================
           BREAKPOINTS (Mobile-First → min-width)
        ===================================================================== */
        @media (min-width: 560px) {
            .kontakt-bar-inner { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 0.3rem 1.4rem; }
            .galerie-grid { grid-template-columns: repeat(2, 1fr); }
            .tages-karten-grid { grid-template-columns: repeat(2, 1fr); }
            .kontakt-kacheln { grid-template-columns: repeat(2, 1fr); }
            .allergen-legende ul { grid-template-columns: repeat(4, 1fr); }
        }

        @media (min-width: 760px) {
            .header-logo-text .tagline { display: block; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; flex-wrap: wrap; }
            .speisekarte-grid { columns: 2; column-gap: clamp(1.4rem, 3.5vw, 2rem); }
            .bewertungen-grid { grid-template-columns: repeat(3, 1fr); }
            .maps-wrapper iframe, .maps-consent { height: 440px; min-height: 440px; }
        }

        @media (min-width: 940px) {
            .galerie-grid { grid-template-columns: repeat(3, 1fr); }
            .ueber-uns-grid { grid-template-columns: 1fr 1fr; }
            .ueber-uns-image-col { order: 0; }
            .tages-karten-grid { grid-template-columns: repeat(3, 1fr); }
            .kontakt-kacheln { grid-template-columns: repeat(4, 1fr); }
            .footer-grid { grid-template-columns: repeat(4, 1fr); }
        }

        /* Horizontale Nav (5 Menüpunkte + Logo passen ab hier sicher nebeneinander) */
        @media (min-width: 860px) {
            .site-header .hamburger { display: none; }
            .nav-links {
                display: flex;
                position: static;
                flex-direction: row;
                gap: 0.25rem;
                background: none;
                padding: 0;
                box-shadow: none;
                border: none;
            }
            .nav-links a {
                min-height: auto;
                padding: 0.4rem 0.8rem;
                font-size: 0.74rem;
                letter-spacing: 0.09em;
                white-space: nowrap;
                position: relative;
            }
            .nav-links a::after {
                content: "";
                position: absolute;
                left: 0.8rem; right: 0.8rem;
                bottom: 0.1rem;
                height: 1px;
                background: var(--gold-deep);
                transform: scaleX(0);
                transform-origin: center;
                transition: transform .25s ease;
            }
            .nav-links a:hover::after, .nav-links a:focus-visible::after,
            .nav-links a.active::after { transform: scaleX(1); }
            .nav-links a.active { color: var(--gold-deep); }
        }

        @media (min-width: 1024px) {
            .float-reservierung { bottom: 1.8rem; left: 1.8rem; }
            .float-kontakt { bottom: 1.8rem; right: 1.8rem; }
            .back-to-top { bottom: 5.4rem; left: 1.8rem; }
        }

        /* Bewegungsreduktion respektieren */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
            .hero-slide { animation: none; transform: none; }
            .fade-in { opacity: 1; transform: none; }
        }

        @media print {
            .site-header, .kontakt-bar, .hero, .float-reservierung, .float-kontakt, .back-to-top, .reservierung-section, .maps-wrapper { display: none !important; }
            body { background: #fff; }
        }

        /* =====================================================================
           MEHRSEITEN-ERGÄNZUNGEN  (Nav-Aktiv, Intro, Seitenkopf, Karten-Tabs)
        ===================================================================== */
        /* Aktiver Navigationslink (auch im mobilen Ausklapp-Menü) */
        .nav-links a.active { color: var(--gold-deep); font-weight: 600; }

        /* Seitenkopf der Unterseiten: etwas Luft unter der Kopfzeile */
        .page-lead { padding-top: clamp(3rem, 8vw, 5rem); }

        /* Startseiten-Intro (kurze Vorstellung, verlinkt auf „Über uns“) */
        .intro-section {
            padding-top: var(--section-y);
            padding-bottom: clamp(2.5rem, 6vw, 4rem);
            background: var(--bg);
            text-align: center;
        }
        .intro-inner { max-width: var(--maxw-text); margin: 0 auto; }
        .intro-claim {
            font-family: var(--font-head);
            font-style: italic;
            font-size: clamp(1.7rem, 4.4vw, 2.5rem);
            font-weight: 500;
            color: var(--gold-deep);
            line-height: 1.32;
            margin-bottom: var(--sp-5);
        }
        .intro-section p { color: var(--ink); margin: 0 auto var(--sp-6); max-width: 58ch; line-height: 1.8; }
        .intro-inner .eyebrow { margin-bottom: var(--sp-4); }

        /* USP / Werte-Streifen (unter dem Intro) */
        .usp-strip {
            background: var(--bg);
            padding: clamp(3.5rem, 8vw, 6rem) clamp(1.1rem, 5vw, 2.5rem);
        }
        .usp-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1.5rem, 4vw, 2rem);
            max-width: 960px;
            margin: 0 auto;
        }
        .usp-item {
            text-align: center;
            padding: clamp(1.6rem, 3.5vw, 2.2rem) clamp(1.2rem, 3vw, 1.6rem);
            background: #fff;
            border: 1px solid var(--line-soft);
            border-radius: 5px;
            box-shadow: var(--shadow-card);
            transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
        }
        .usp-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
        .usp-icon {
            width: 52px; height: 52px;
            margin: 0 auto var(--sp-4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            background: rgba(29,74,15,0.07);
            border: 1px solid rgba(212,165,116,0.4);
        }
        .usp-icon svg { width: 24px; height: 24px; }
        .usp-item h3 {
            font-family: var(--font-head);
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--green);
            margin-bottom: 0.4rem;
        }
        .usp-item p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; margin: 0; max-width: none; }
        @media (min-width: 720px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }

        /* Reservierungs-Zusatz (Telefon-Hinweis auf eigener Seite) */
        .reservierung-alt { margin-top: var(--sp-6); font-size: 0.95rem; color: rgba(255,255,255,0.82); }
        .reservierung-alt a { color: var(--gold); font-weight: 600; }

        /* Speise-/Getränkekarte: Umschalter (Tabs) */
        .karte-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-bottom: clamp(2.5rem, 6vw, 4rem);
        }
        .karte-tab {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            min-height: 50px;
            padding: 0.7rem 1.8rem;
            border: 1px solid var(--gold);
            border-radius: 3px;
            background: #fff;
            color: var(--green);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: background .25s ease, color .25s ease, border-color .25s ease,
                        transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
        }
        .karte-tab svg { width: 18px; height: 18px; flex-shrink: 0; }
        .karte-tab:hover:not(.active) {
            border-color: var(--green);
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
        }
        .karte-tab.active {
            background: var(--green);
            color: #fff;
            border-color: var(--green);
            box-shadow: 0 10px 24px rgba(20,52,9,0.28);
        }
        .karte-panel { display: none; }
        .karte-panel.active { display: block; animation: panelIn .5s var(--ease-soft) both; }
        @keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

        /* =====================================================================
           MENÜ-BANNER  (flacher Seitenkopf im Hero-Stil, mit Bild + Overlay)
        ===================================================================== */
        .menu-banner {
            position: relative;
            overflow: hidden;
            text-align: center;
            background: var(--green-deep);
            padding: clamp(3.5rem, 9vw, 6rem) clamp(1.2rem, 5vw, 2.5rem);
        }
        .menu-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: var(--banner-img, url('Bilder/Gemini_Generated_Image_thpj6sthpj6sthpj.png'));
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            transform: scale(1.06);
            filter: saturate(0.92);
            animation: heroZoom 24s ease-in-out infinite alternate;
        }
        .menu-banner::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(120% 100% at 50% 25%, rgba(38,26,10,0.42) 0%, rgba(14,26,7,0.72) 60%, rgba(10,20,5,0.86) 100%),
                linear-gradient(to bottom, rgba(30,22,8,0.50), rgba(10,18,4,0.84));
        }
        .menu-banner > * { position: relative; z-index: 2; }
        /* feiner Gold-Innenrahmen für Banner-Eleganz (höhere Spezifität) */
        .menu-banner .menu-banner-frame {
            position: absolute;
            inset: clamp(0.7rem, 2vw, 1.4rem);
            z-index: 2;
            border: 1px solid rgba(212,165,116,0.45);
            pointer-events: none;
        }
        .menu-banner .eyebrow { color: var(--gold); margin-bottom: var(--sp-4); }
        .menu-banner h1 {
            font-family: var(--font-head);
            font-size: clamp(2.3rem, 6.5vw, 3.7rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.08;
            letter-spacing: 0.01em;
            text-shadow: 0 2px 26px rgba(0,0,0,0.42);
        }
        .menu-banner .menu-banner-sub {
            font-family: var(--font-body);
            font-size: 1.05rem;
            color: rgba(255,255,255,0.92);
            line-height: 1.7;
            max-width: 52ch;
            margin: var(--sp-4) auto 0;
            text-shadow: 0 1px 14px rgba(0,0,0,0.4);
        }

        /* Ornamentaler Divider (Linie – Raute – Linie) */
        .ornament {
            position: relative;
            width: 132px;
            height: 12px;
            margin: var(--sp-5) auto 0;
            color: var(--gold);
        }
        .menu-banner .ornament { margin-bottom: 0; }

        /* ---- Banner-Variante: Logo als Emblem, kein Vollbild-Foto --------- */
        .menu-banner--logo {
            background:
                radial-gradient(130% 90% at 50% 0%, rgba(35,61,18,0.55), transparent 62%),
                var(--green-deep);
        }
        .menu-banner--logo::before { display: none; }
        .menu-banner--logo::after { display: none; }
        .menu-banner__logo {
            display: block;
            width: clamp(112px, 16vw, 158px);
            height: auto;
            margin: 0 auto var(--sp-4);
            filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35));
        }
        .ornament::before, .ornament::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 52px; height: 1px;
            background: currentColor;
            opacity: 0.6;
        }
        .ornament::before { left: 0; }
        .ornament::after  { right: 0; }
        .ornament span {
            position: absolute;
            left: 50%; top: 50%;
            width: 8px; height: 8px;
            background: currentColor;
            transform: translate(-50%, -50%) rotate(45deg);
        }

        /* =====================================================================
           HIGHLIGHT / AKTION  (z. B. Backhendl auf der Startseite)
        ===================================================================== */
        .highlight-section {
            position: relative;
            padding-block: var(--section-y);
            background:
                radial-gradient(120% 80% at 50% 0%, rgba(23,61,12,0.6), transparent 60%),
                var(--green-anchor);
        }
        .highlight-section .section-head .eyebrow { color: var(--gold); }
        .highlight-section .section-head .section-title { color: #fff; }
        .highlight-section .section-head .section-divider { background: var(--gold); }
        .highlight-card {
            position: relative;
            display: grid;
            grid-template-columns: 1fr;
            max-width: 1000px;
            margin: 0 auto;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--line-soft);
            transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
        }
        .highlight-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: linear-gradient(90deg, var(--gold-deep), var(--gold) 30%, var(--red) 70%, var(--gold-deep));
            z-index: 2;
        }
        .highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
        .highlight-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
        .highlight-media img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
        .highlight-body {
            position: relative;
            padding: clamp(2rem, 5vw, 3.5rem);
            text-align: center;
            background: linear-gradient(160deg, #fdfbf6 0%, var(--bg) 45%, #f4ecdb 100%);
        }
        .highlight-badge {
            display: inline-block;
            font-family: var(--font-body);
            font-size: 0.66rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: #fff;
            background: var(--red);
            padding: 0.35rem 0.9rem;
            border-radius: 2px;
            margin-bottom: var(--sp-4);
        }
        .highlight-body h2 {
            font-size: clamp(2.2rem, 6vw, 3.2rem);
            color: var(--green);
            font-weight: 600;
            line-height: 1.05;
        }
        .highlight-sub {
            font-family: var(--font-head);
            font-style: italic;
            font-size: clamp(1.2rem, 3.2vw, 1.6rem);
            color: var(--gold-deep);
            margin-top: 0.3rem;
        }
        .highlight-text { color: var(--ink); margin: var(--sp-4) auto var(--sp-5); max-width: 42ch; }
        .highlight-preis {
            font-family: var(--font-head);
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 700;
            color: var(--red);
            margin-bottom: var(--sp-5);
        }

        @media (min-width: 760px) {
            .highlight-card { grid-template-columns: 1fr 1fr; }
            .highlight-media { aspect-ratio: auto; }
            .highlight-body {
                text-align: left;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .highlight-text { margin-left: 0; margin-right: 0; }
        }

        /* =====================================================================
           SOCIAL / FACEBOOK-BUTTON
        ===================================================================== */
        .social-links { display: flex; gap: 0.6rem; margin-top: var(--sp-4); flex-wrap: wrap; }
        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            min-height: 44px;
            padding: 0.55rem 1.1rem;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 2px;
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: rgba(255,255,255,0.85);
            transition: background .2s, border-color .2s, color .2s;
        }
        .social-btn svg { flex-shrink: 0; }
        .social-btn:hover, .social-btn:focus-visible {
            background: #1877F2;
            border-color: #1877F2;
            color: #fff;
        }

        /* =====================================================================
           FORMULARE  (Reservierung & Kontakt – mailto-basiert)
        ===================================================================== */
        .formular-card {
            max-width: 680px;
            margin: 0 auto;
            background: #fff;
            border: 1px solid var(--line-soft);
            border-radius: 2px;
            box-shadow: var(--shadow);
            padding: clamp(1.6rem, 4vw, 2.8rem);
        }
        .formular { display: flex; flex-direction: column; gap: var(--sp-5); text-align: left; }
        .form-feld { display: flex; flex-direction: column; }
        .form-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
        .form-label {
            font-family: var(--font-body);
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--gold-deep);
            margin-bottom: 0.45rem;
        }
        .form-input {
            width: 100%;
            box-sizing: border-box;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 2px;
            padding: 0.85rem 1rem;
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--ink);
            transition: border-color .2s, box-shadow .2s;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(29,74,15,0.10);
        }
        select.form-input { cursor: pointer; }
        textarea.form-input { resize: vertical; min-height: 130px; line-height: 1.6; }
        .formular .btn-primary { width: 100%; margin-top: var(--sp-2); }
        .form-hinweis {
            font-size: 0.82rem;
            color: var(--ink-soft);
            text-align: center;
            line-height: 1.7;
            margin-top: var(--sp-2);
        }
        .form-hinweis a { color: var(--gold-deep); font-weight: 600; }

        @media (min-width: 560px) {
            .form-row.zwei { grid-template-columns: 1fr 1fr; }
            .form-row.drei { grid-template-columns: 1fr 1fr 1fr; }
        }

        /* Facebook-Kachel auf der Kontaktseite */
        .kontakt-kachel .social-btn-hell {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            min-height: 46px;
            padding: 0.6rem 1.3rem;
            border-radius: 2px;
            background: #1877F2;
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            margin-top: 0.4rem;
            transition: background .2s;
        }
        .kontakt-kachel .social-btn-hell:hover { background: #145dbf; color: #fff; }

        /* =====================================================================
           WARM & EDEL  –  durchgängige Premium-Aufwertung (überschreibt gezielt)
        ===================================================================== */

        /* ---- HERO: wärmerer Verlauf, Gold-Rahmen, größere Typo -------------- */
        .hero-overlay {
            background:
                radial-gradient(120% 95% at 50% 30%, rgba(46,30,12,0.20) 0%, rgba(14,22,7,0.52) 62%, rgba(9,15,5,0.80) 100%),
                linear-gradient(to bottom, rgba(30,21,8,0.44) 0%, rgba(13,19,6,0.42) 45%, rgba(8,14,4,0.80) 100%);
        }
        .hero-overlay::after {
            content: "";
            position: absolute;
            inset: clamp(0.9rem, 2.6vw, 1.9rem);
            border: 1px solid rgba(212,165,116,0.42);
            pointer-events: none;
        }
        .hero-content h1 { font-size: clamp(3rem, 9.6vw, 5.9rem); letter-spacing: 0.005em; }

        .hero-status {
            display: flex;
            width: fit-content;
            align-items: center;
            gap: 0.5rem;
            margin: 0 auto var(--sp-5);
            padding: 0.4rem 1rem;
            border: 1px solid rgba(212,165,116,0.5);
            border-radius: 100px;
            background: rgba(15,34,8,0.55);
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }
        .hero-status:empty { display: none; }
        .hero-status::before {
            content: "";
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #cfc7ba;
        }
        .hero-status.is-open::before   { background: #7BE08A; box-shadow: 0 0 8px #7BE08A; }
        .hero-status.is-closed::before { background: #ff6b6b; }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1.6rem;
            margin-top: var(--sp-6);
            color: rgba(255,255,255,0.9);
            font-family: var(--font-body);
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        .hero-meta-item { display: inline-flex; align-items: center; gap: 0.5rem; }
        .hero-meta-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
        .hero-content > *:nth-child(5) { animation-delay: 0.72s; }
        .hero-content > *:nth-child(6) { animation-delay: 0.84s; }

        /* ---- Gold-Button (Premium-CTA) ------------------------------------- */
        .btn-gold {
            background: linear-gradient(180deg, #e6c48c 0%, var(--gold) 100%);
            color: var(--green-deep);
            border-color: var(--gold);
        }
        .btn-gold:hover, .btn-gold:focus-visible {
            background: #ecce97;
            border-color: #ecce97;
            color: var(--green-deep);
            box-shadow: 0 14px 30px rgba(166,124,69,0.42);
        }

        /* ---- Banner-Frame (Kind-Element) ----------------------------------- */
        .menu-banner .eyebrow { position: relative; }

        /* ---- ÜBER UNS: Text als edle Karte, Bild gerahmt ------------------- */
        .ueber-uns-grid { align-items: start; }
        .ueber-uns-text {
            background: var(--surface);
            border: 1px solid var(--line-soft);
            border-top: 3px solid var(--gold);
            border-radius: 6px;
            box-shadow: var(--shadow-card);
            padding: clamp(1.8rem, 4.5vw, 3rem);
        }
        .ueber-uns-image-col { position: relative; }
        .ueber-uns-img {
            box-shadow: var(--shadow);
            border-radius: 6px;
        }
        .ueber-uns-image-col::after {
            content: "";
            position: absolute;
            inset: 10px;
            border: 1px solid rgba(212,165,116,0.55);
            border-radius: 4px;
            pointer-events: none;
        }
        @media (min-width: 940px) {
            .ueber-uns-image-col { position: sticky; top: 92px; }
        }

        /* Motto als dunkelgrüne Akzentkarte */
        .motto {
            margin-top: var(--sp-6);
            padding: clamp(1.4rem, 3.5vw, 2rem) clamp(1.5rem, 4vw, 2.2rem);
            border: none;
            border-radius: 6px;
            background:
                radial-gradient(120% 120% at 100% 0%, rgba(212,165,116,0.16), transparent 60%),
                var(--green-deep);
            color: #fff;
            text-align: center;
            position: relative;
        }
        .motto::before {
            content: "\201C";
            display: block;
            font-family: var(--font-head);
            font-size: 2.6rem;
            line-height: 0.6;
            color: var(--gold);
            margin-bottom: 0.4rem;
        }

        /* Öffnungszeiten als eleganter Panel */
        .oeffnungszeiten {
            margin-top: var(--sp-6);
            padding: clamp(1.4rem, 3.5vw, 1.9rem);
            background: var(--bg-warm);
            border: 1px solid rgba(166,124,69,0.28);
            border-radius: 6px;
        }
        .oeffnungszeiten table { font-size: 0.98rem; }
        .oeffnungszeiten td { padding: 0.65rem 0; }
        .oeffnungszeiten tr { border-bottom: 1px solid rgba(166,124,69,0.18); }
        .oeffnungszeiten td:first-child { color: var(--ink); font-weight: 500; }
        .oeffnungszeiten td:last-child { color: var(--gold-deep); font-weight: 600; }
        .oeffnungszeiten td.closed { color: var(--red); }

        /* ---- KONTAKT-KACHELN als edle Karten mit Gold-Icon ---------------- */
        .kontakt-kachel {
            background: var(--surface);
            border: 1px solid var(--line-soft);
            border-radius: 6px;
            box-shadow: var(--shadow-card);
            padding: clamp(1.6rem, 4vw, 2rem) 1.2rem;
            transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
        }
        .kontakt-kachel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
        .kontakt-icon {
            width: 46px; height: 46px;
            margin: 0 auto var(--sp-3);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--green);
            background: rgba(29,74,15,0.07);
            border: 1px solid rgba(212,165,116,0.45);
        }
        .kontakt-icon svg { width: 22px; height: 22px; }

        /* ---- FORMULAR-KARTE: Gold-Akzentkante ------------------------------ */
        .formular-card {
            border-top: 3px solid var(--gold);
            border-radius: 6px;
        }

        /* ---- MAPS: gerahmt --------------------------------------------------*/
        .maps-wrapper {
            border-radius: 6px;
            border: 1px solid rgba(166,124,69,0.3);
            box-shadow: var(--shadow-card);
        }

        /* ---- STARTSEITEN-TEASER (Über-uns mit Bild) ------------------------ */
        .teaser-section { background: var(--bg); }
        .teaser-section .ueber-uns-text { text-align: left; }
        .teaser-section .btn-primary { margin-top: var(--sp-5); }

        /* Bild und Textkarte gleich hoch + Text vertikal zentriert */
        @media (min-width: 940px) {
            .teaser-section .ueber-uns-grid { align-items: stretch; }
            .teaser-section .ueber-uns-image-col { position: relative; top: 0; }
            .teaser-section .ueber-uns-img { height: 100%; aspect-ratio: auto; }
            .teaser-section .ueber-uns-text {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        /* ---- Section-Titel: dezente Gold-Serifen-Note ---------------------- */
        .section-title span { color: var(--gold-deep); font-style: italic; }

        /* ---- reduced-motion: neue Deko-Animationen abschalten -------------- */
        @media (prefers-reduced-motion: reduce) {
            .menu-banner::before { animation: none; transform: none; }
        }

        /* =====================================================================
           OPTIMIERUNG  –  keine Bild-Zoom-Hover, gleichmäßige Karten & Felder
        ===================================================================== */
        /* Info-Karten in Rastern gleich hoch (saubere Reihen am Desktop) */
        .usp-grid, .tages-karten-grid, .bewertungen-grid, .kontakt-kacheln { align-items: stretch; }
        .usp-item, .tages-karte, .bewertung-karte, .kontakt-kachel { height: 100%; }
        .usp-item, .kontakt-kachel {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        /* Speise-/Getränkekategorien: natürliche Höhe statt leerer Streck-Kästen */
        .speisekarte-grid { align-items: start; }

        /* Formularfelder einheitlich hoch (Datum/Uhrzeit/Zahl/Auswahl gleich groß) */
        .form-input { min-height: 52px; }
        textarea.form-input { min-height: 130px; }

        /* Kein Zoom von Bildern beim Überfahren mit der Maus (nur dezente Anhebung) */
        .galerie-item img, .highlight-media img, .wochenmenu-foto img { transform: none !important; }
