        /* ========== RESET & BASE ========== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body { font-family: 'Open Sans', sans-serif; color: #2E2A27; background: #F8F4ED; overflow-x: hidden; }
        img { display: block; max-width: 100%; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* ========== VARIABLES ========== */
        :root {
            --red:      #8B1A2B;
            --red-dark: #5A0F1A;
            --red-light:#B5263A;
            --gold:     #C5A028;
            --gold-light:#E2C455;
            --cream:    #F8F4ED;
            --cream-dark:#EDE5D8;
            --dark:     #1C1A18;
            --text:     #2E2A27;
            --stone:    #9C8F84;
            --white:    #FFFFFF;
            --nav-h:    72px;
            --section-pad: 90px;
        }

        /* ========== TYPOGRAPHY ========== */
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
        h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
        h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
        p  { line-height: 1.8; color: #4A4540; }

        .section-label {
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 0.75rem;
        }
        .section-divider {
            width: 48px; height: 2px;
            background: var(--gold);
            margin: 1.25rem 0 2rem;
        }
        .section-divider.center { margin: 1.25rem auto 2rem; }

        /* ========== BUTTONS ========== */
        .btn {
            display: inline-block;
            font-family: 'Raleway', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 14px 36px;
            border: none; cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-primary {
            background: var(--red);
            color: var(--white);
        }
        .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,43,0.35); }
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.7);
        }
        .btn-outline:hover { background: var(--white); color: var(--dark); }
        .btn-gold {
            background: var(--gold);
            color: var(--dark);
        }
        .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

        /* ========== NAVIGATION ========== */
        #navbar {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            height: var(--nav-h);
            display: flex; align-items: center;
            padding: 0 5%;
            transition: background 0.4s ease, box-shadow 0.4s ease;
        }
        #navbar.scrolled {
            background: rgba(28, 26, 24, 0.97);
            box-shadow: 0 2px 20px rgba(0,0,0,0.4);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
        #navbar:not(.scrolled) { background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%); }

        .nav-logo {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
        }
        .nav-logo img {
            height: 46px;
            width: auto;
            display: block;
        }

        .nav-links {
            position: fixed;
            top: 0; right: 5%;
            height: var(--nav-h);
            display: flex; align-items: center; gap: 2rem;
            z-index: 1001;
        }
        .nav-links a {
            font-family: 'Raleway', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            transition: color 0.25s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute; bottom: -4px; left: 0;
            width: 0; height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after { width: 100%; }
        .nav-links .btn { margin-left: 0.5rem; padding: 10px 22px; font-size: 0.75rem; }

        /* hamburger */
        .nav-toggle {
            display: none;
            position: fixed;
            top: calc((var(--nav-h) - 44px) / 2);
            right: 5%;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            z-index: 10000;
            width: 44px; height: 44px;
            background: none;
            border: none;
            padding: 0;
        }
        .nav-toggle span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                        opacity 0.2s ease,
                        width 0.35s ease;
        }
        /* X animatie: translateY = gap + height = 6 + 2 = 8px */
        .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
        .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        /* nav backdrop */
        .nav-backdrop {
            display: none;
            position: fixed; top: 0; right: 0; bottom: 0; left: 0;
            background: rgba(0,0,0,0.55);
            z-index: 998;
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }
        .nav-backdrop.open { display: block; }

        /* ========== HERO ========== */
        #home {
            position: relative;
            height: 100vh; min-height: 600px;
            display: flex; align-items: center; justify-content: center;
            text-align: center;
            overflow: hidden;
            background: var(--dark);
        }
        .hero-bg {
            position: absolute; top: 0; right: 0; bottom: 0; left: 0;
            background: url('../1.jpeg') center center / cover no-repeat;
            transform: scale(1.06);
            transition: transform 8s ease;
        }
        #home:hover .hero-bg { transform: scale(1.0); }
        .hero-overlay {
            position: absolute; top: 0; right: 0; bottom: 0; left: 0;
            background: linear-gradient(
                to bottom,
                rgba(10,6,4,0.45) 0%,
                rgba(10,6,4,0.60) 50%,
                rgba(10,6,4,0.75) 100%
            );
        }
        .hero-content {
            position: relative; z-index: 2;
            max-width: 760px; padding: 0 1.5rem;
        }
        .hero-eyebrow {
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.45em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.2rem;
            display: block;
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.05;
            margin-bottom: 1.2rem;
        }
        .hero-subtitle {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 300;
            color: rgba(255,255,255,0.85);
            letter-spacing: 0.08em;
            margin-bottom: 2.5rem;
        }
        .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .hero-instagram {
            display: inline-flex; align-items: center; gap: 10px;
            margin-top: 1.5rem;
            font-family: 'Raleway', sans-serif;
            font-size: 0.8rem; font-weight: 600;
            letter-spacing: 0.2em; text-transform: uppercase;
            padding: 14px 36px;
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .hero-instagram svg { width: 16px; stroke: #fff; flex-shrink: 0; }
        .hero-instagram:hover { background: #fff; color: #831059; }
        .hero-instagram:hover svg { stroke: #831059; }

        .hero-scroll {
            position: absolute; bottom: 2rem; left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex; flex-direction: column; align-items: center; gap: 6px;
        }
        .hero-scroll span {
            font-family: 'Raleway', sans-serif;
            font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }
        .scroll-line {
            width: 1px; height: 40px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
        @keyframes scrollPulse {
            0%, 100% { opacity: 0.5; transform: scaleY(1); }
            50% { opacity: 1; transform: scaleY(1.1); }
        }

        /* ========== INFO STRIP ========== */
        .info-strip {
            background: var(--dark);
            display: flex; justify-content: center; flex-wrap: wrap;
            gap: 0;
        }
        .info-item {
            flex: 1 1 160px; max-width: 280px;
            display: flex; align-items: center; gap: 10px;
            padding: 14px 20px;
            border-right: 1px solid rgba(255,255,255,0.07);
            color: rgba(255,255,255,0.75);
        }
        .info-item:last-child { border-right: none; }
        a.info-item { text-decoration: none; transition: background 0.2s; }
        a.info-item:hover { background: rgba(197,160,40,0.08); }
        .info-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; }
        .info-text { font-family: 'Raleway', sans-serif; font-size: 0.72rem; line-height: 1.4; }
        .info-text strong { display: block; color: var(--white); font-size: 0.76rem; }

        /* ========== SECTIONS COMMON ========== */
        .section { padding: var(--section-pad) 5%; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-header { margin-bottom: 3rem; }
        .section-header.center { text-align: center; }

        /* ========== ABOUT / RESTAURANT ========== */
        #restaurant { background: var(--white); }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .about-img-wrap {
            position: relative;
        }
        .about-img-wrap img {
            width: 100%; height: 520px;
            object-fit: cover;
            object-position: center top;
        }
        .about-img-accent {
            position: absolute;
            bottom: -20px; right: -20px;
            width: 200px; height: 200px;
            border: 3px solid var(--gold);
            z-index: -1;
        }
        .about-text { padding-right: 1rem; }
        .about-text h2 { margin-bottom: 0; }
        .about-text p { margin-bottom: 1.2rem; }
        .about-highlights {
            display: flex; gap: 2rem; margin: 2rem 0;
            flex-wrap: wrap;
        }
        .highlight-item { flex: 1 1 120px; }
        .highlight-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem; font-weight: 700;
            color: var(--red); line-height: 1;
        }
        .highlight-label {
            font-family: 'Raleway', sans-serif;
            font-size: 0.72rem; letter-spacing: 0.15em;
            text-transform: uppercase; color: var(--stone);
            margin-top: 4px;
        }

        /* ========== SPEISEKARTE ========== */
        #speisekarte { background: var(--dark); }
        #speisekarte .section-label { color: var(--gold); }
        #speisekarte h2 { color: var(--white); }
        #speisekarte .section-divider { background: var(--gold); }

        .menu-tabs {
            display: flex; flex-wrap: wrap; gap: 0.5rem;
            margin-bottom: 2.5rem;
        }
        .menu-tab {
            font-family: 'Raleway', sans-serif;
            font-size: 0.72rem; font-weight: 600;
            letter-spacing: 0.15em; text-transform: uppercase;
            padding: 9px 20px;
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.55);
            background: transparent;
            cursor: pointer;
            transition: all 0.25s;
        }
        .menu-tab:hover { border-color: var(--gold); color: var(--gold); }
        .menu-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

        .menu-panel { display: none; }
        .menu-panel.active { display: block; }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
            column-gap: 3rem;
            row-gap: 0;
        }

        .menu-item {
            display: grid;
            grid-template-areas:
                "name price"
                "desc desc";
            grid-template-columns: 1fr auto;
            grid-template-rows: auto auto;
            column-gap: 1.5rem;
            row-gap: 4px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.09);
        }
        .menu-item:last-child { border-bottom: none; }
        .menu-item-left { display: contents; }

        .menu-item-name {
            grid-area: name;
            font-family: 'Playfair Display', serif;
            font-size: 1rem; font-weight: 600;
            color: var(--white);
            line-height: 1.3;
            align-self: center;
        }
        .menu-item-desc {
            grid-area: desc;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.4);
            line-height: 1.65;
            font-style: italic;
        }
        .menu-item-price {
            grid-area: price;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem; font-weight: 700;
            color: var(--gold);
            white-space: nowrap;
            align-self: center;
            text-align: right;
            padding-left: 0.5rem;
            border-left: 1px solid rgba(197,160,40,0.25);
        }

        .menu-note {
            margin-top: 2.5rem;
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.35);
            text-align: center;
        }

        /* ===== HOROVAC / SPEZIALITÄTEN FEATURED ===== */
        .menu-special-intro {
            background: rgba(197,160,40,0.06);
            border: 1px solid rgba(197,160,40,0.2);
            border-radius: 10px;
            padding: 28px 32px;
            margin-bottom: 2.5rem;
        }
        .menu-special-intro h3 {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 14px;
        }
        .menu-special-intro p {
            color: rgba(255,255,255,0.65);
            font-size: 0.88rem;
            line-height: 1.85;
            margin-bottom: 8px;
        }
        .menu-special-intro p:last-child { margin-bottom: 0; }
        .menu-special-intro .vorbestellung-note {
            display: inline-block;
            margin-top: 10px;
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0.85;
        }

        .menu-featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .menu-featured-item {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(197,160,40,0.25);
            border-radius: 10px;
            padding: 28px 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s, background 0.3s;
        }
        .menu-featured-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }
        .menu-featured-item:hover {
            border-color: rgba(197,160,40,0.55);
            background: rgba(255,255,255,0.07);
        }
        .menu-featured-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--white);
        }
        .menu-featured-desc {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            flex: 1;
        }
        .menu-featured-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .menu-featured-badge {
            font-family: 'Raleway', sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(197,160,40,0.75);
            background: rgba(197,160,40,0.1);
            padding: 4px 10px;
            border-radius: 3px;
        }
        .menu-featured-price {
            font-family: 'Raleway', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gold);
        }

        /* ========== ARMENIEN ========== */
        #armenien {
            position: relative;
            overflow: hidden;
        }
        .armenien-bg {
            position: absolute; top: 0; right: 0; bottom: 0; left: 0;
            background: url('../food_images/1.jpeg') center center / cover no-repeat;
        }
        .armenien-overlay {
            position: absolute; top: 0; right: 0; bottom: 0; left: 0;
            background: linear-gradient(135deg, rgba(90,15,26,0.92) 0%, rgba(28,26,24,0.88) 100%);
        }
        .armenien-content { position: relative; z-index: 2; }
        #armenien .section-label { color: var(--gold); }
        #armenien h2 { color: var(--white); }
        #armenien .section-divider { background: var(--gold); }

        .armenien-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .armenien-text p { color: rgba(255,255,255,0.8); margin-bottom: 1.2rem; }

        .armenien-cards {
            display: flex; flex-direction: column; gap: 1.2rem;
        }
        .armenien-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(197,160,40,0.25);
            padding: 1.5rem;
            transition: border-color 0.3s;
        }
        .armenien-card:hover { border-color: var(--gold); }
        .armenien-card h4 {
            font-family: 'Playfair Display', serif;
            color: var(--gold); font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .armenien-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }

        /* ========== GALERIE ========== */
        #galerie { background: var(--cream); }

        .gallery-tabs {
            display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
        }
        .gallery-tab {
            font-family: 'Raleway', sans-serif;
            font-size: 0.72rem; font-weight: 600;
            letter-spacing: 0.1em; text-transform: uppercase;
            padding: 8px 18px;
            border: 1px solid var(--stone);
            background: transparent; color: var(--stone);
            cursor: pointer; border-radius: 2px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .gallery-tab.active, .gallery-tab:hover {
            background: var(--red); border-color: var(--red); color: var(--white);
        }
        .gallery-item.hidden { display: none; }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: 300px 300px 240px;
            grid-auto-rows: 240px;
            gap: 8px;
        }
        .gallery-item {
            overflow: hidden; position: relative; cursor: pointer;
        }
        .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }

        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img { transform: scale(1.07); }
        .gallery-overlay {
            position: absolute; top: 0; right: 0; bottom: 0; left: 0;
            background: rgba(0,0,0,0.0);
            transition: background 0.3s;
            display: flex; align-items: center; justify-content: center;
        }
        .gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.25); }
        .gallery-overlay svg { opacity: 0; transition: opacity 0.3s; fill: white; width: 36px; }
        .gallery-item:hover .gallery-overlay svg { opacity: 1; }

        /* lightbox */
        .lightbox {
            display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9000;
            background: rgba(0,0,0,0.92);
            align-items: center; justify-content: center;
        }
        .lightbox.open { display: flex; }
        .lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
        .lightbox-close {
            position: absolute; top: 1.5rem; right: 2rem;
            font-size: 2rem; color: white; cursor: pointer;
            line-height: 1; font-family: sans-serif;
            background: none; border: none;
        }
        .lightbox-close:hover { color: var(--gold); }
        .lightbox-arrow {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.2);
            color: white; font-size: 1.5rem;
            width: 48px; height: 48px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: background 0.2s;
        }
        .lightbox-arrow:hover { background: var(--red); border-color: var(--red); }
        .lightbox-arrow.prev { left: 1.5rem; }
        .lightbox-arrow.next { right: 1.5rem; }

        /* betriebsferien notice */
        .betriebsferien-notice {
            display: none;
            background: #fdf6e3;
            border-left: 4px solid var(--gold);
            border-radius: 6px;
            padding: 1.1rem 1.4rem;
            margin-bottom: 1.8rem;
            font-size: 0.92rem;
            line-height: 1.7;
            color: #4a3800;
            white-space: pre-line;
        }
        .betriebsferien-notice.visible { display: block; }

        /* success modal */
        #successModal {
            display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9100;
            background: rgba(0,0,0,0.65);
            align-items: center; justify-content: center;
        }
        #successModal.open { display: flex; }
        .success-modal-card {
            background: #fff; border-radius: 12px; padding: 2.5rem 2rem 2rem;
            max-width: 420px; width: 90%; text-align: center;
            position: relative; box-shadow: 0 8px 40px rgba(0,0,0,0.25);
        }
        .success-modal-close {
            position: absolute; top: 0.9rem; right: 1.1rem;
            background: none; border: none; font-size: 1.3rem;
            color: #aaa; cursor: pointer; line-height: 1;
        }
        .success-modal-close:hover { color: #555; }
        .success-check {
            width: 72px; height: 72px; margin: 0 auto 1.25rem;
        }
        .success-check svg { width: 100%; height: 100%; }
        .success-modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem; font-weight: 700;
            color: var(--dark); margin: 0 0 0.75rem;
        }
        .success-modal-text {
            font-size: 0.95rem; color: #555;
            line-height: 1.6; margin: 0 0 1.5rem;
        }
        .success-modal-btn {
            background: var(--dark); color: #fff;
            border: none; border-radius: 6px;
            padding: 0.7rem 2rem; font-size: 0.95rem;
            cursor: pointer; font-family: 'Raleway', sans-serif;
            font-weight: 600; letter-spacing: 0.05em;
            transition: background 0.2s;
        }
        .success-modal-btn:hover { background: #6e1422; }

        /* ========== REZENSIONEN ========== */
        #rezensionen { background: var(--cream); }

        .reviews-meta {
            display: flex; align-items: center; gap: 2.5rem;
            margin-bottom: 3rem; flex-wrap: wrap;
        }
        .reviews-score {
            display: flex; align-items: center; gap: 1rem;
        }
        .reviews-score-num {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem; font-weight: 700;
            color: var(--red); line-height: 1;
        }
        .reviews-score-detail { display: flex; flex-direction: column; gap: 4px; }
        .stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 2px; }
        .reviews-count {
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem; color: var(--stone);
            letter-spacing: 0.1em; text-transform: uppercase;
        }
        .reviews-source {
            font-family: 'Raleway', sans-serif;
            font-size: 0.72rem; font-weight: 600;
            letter-spacing: 0.15em; text-transform: uppercase;
            color: var(--stone);
            padding: 6px 14px;
            border: 1px solid var(--cream-dark);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .review-card {
            background: var(--white);
            padding: 2rem;
            position: relative;
            transition: box-shadow 0.3s;
        }
        .review-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
        .review-card::before { content: none; }
        .review-stars { color: #F5A623; font-size: 0.9rem; margin-bottom: 1rem; }
        .review-text {
            font-size: 0.92rem; line-height: 1.8;
            color: var(--text); margin-bottom: 1.5rem;
            font-style: italic;
            position: relative; z-index: 1;
        }
        .review-author {
            display: flex; align-items: center; gap: 10px;
            border-top: 1px solid var(--cream-dark);
            padding-top: 1rem;
        }
        .review-avatar {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: var(--red);
            display: flex; align-items: center; justify-content: center;
            font-family: 'Raleway', sans-serif;
            font-size: 0.8rem; font-weight: 700;
            color: var(--white);
            flex-shrink: 0;
        }
        .review-name {
            font-family: 'Raleway', sans-serif;
            font-size: 0.82rem; font-weight: 700;
            color: var(--dark);
        }
        .review-date {
            font-size: 0.72rem; color: var(--stone);
            font-family: 'Raleway', sans-serif;
        }
        .review-platform {
            margin-left: auto;
            font-size: 0.68rem; font-weight: 600;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--stone);
        }

        /* ========== KONTAKT ========== */
        #kontakt { background: var(--white); }
        .kontakt-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: start;
        }
        .kontakt-info-block { margin-bottom: 2.2rem; }
        .kontakt-info-block h4 {
            font-family: 'Raleway', sans-serif;
            font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.2em; text-transform: uppercase;
            color: var(--red); margin-bottom: 0.8rem;
        }
        .kontakt-info-block p, .kontakt-info-block a {
            font-size: 0.95rem; line-height: 1.9; color: var(--text);
        }
        .kontakt-info-block a:hover { color: var(--red); }

        .hours-table { width: 100%; }
        .hours-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--cream-dark); }
        .hours-row:last-child { border-bottom: none; }
        .hours-day { font-size: 0.88rem; color: var(--stone); }
        .hours-time { font-size: 0.88rem; font-weight: 600; }
        .hours-closed { color: var(--stone); font-style: italic; }

        /* form */
        .contact-form { display: flex; flex-direction: column; gap: 1rem; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-group { display: flex; flex-direction: column; gap: 6px; }
        .form-group label {
            font-family: 'Raleway', sans-serif;
            font-size: 0.72rem; font-weight: 600;
            letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone);
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px 14px;
            border: 1px solid var(--cream-dark);
            background: var(--cream);
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem; color: var(--text);
            transition: border-color 0.25s;
            outline: none;
            border-radius: 0;
            appearance: none;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--red);
            background: var(--white);
        }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .input-error { border-color: #e53935 !important; border-width: 2px !important; background: rgba(229,57,53,0.06) !important; }
        .datenschutz-group { display: flex; flex-direction: column; gap: 6px; }
        .datenschutz-checkbox-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: none;
            padding: 4px 0;
            cursor: pointer;
        }
        .datenschutz-checkbox-wrap.error { outline: 1px solid #e53935; border-radius: 4px; padding: 4px 6px; }
        .datenschutz-checkbox-wrap input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 14px;
            height: 14px;
            min-width: 14px;
            border: 1px solid #aaa;
            border-radius: 3px;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }
        .datenschutz-checkbox-wrap input[type="checkbox"]:checked {
            background: var(--gold);
            border-color: var(--gold);
        }
        .datenschutz-checkbox-wrap input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            left: 3px;
            top: 0px;
            width: 5px;
            height: 8px;
            border: 2px solid #fff;
            border-top: none;
            border-left: none;
            transform: rotate(45deg);
        }
        .datenschutz-checkbox-wrap span {
            font-family: 'Raleway', sans-serif;
            font-size: 0.72rem;
            color: #888;
            line-height: 1.4;
        }
        .datenschutz-checkbox-wrap span a { color: var(--gold); text-decoration: underline; cursor: pointer; }
        .form-error {
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            color: #e53935;
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .form-error::before { content: '⚠'; font-size: 0.75rem; }
        .form-success {
            display: none; padding: 14px;
            background: rgba(139,26,43,0.08);
            border-left: 3px solid var(--red);
            font-size: 0.9rem; color: var(--red);
        }

        /* ========== ANFAHRT ========== */
        #anfahrt {
            background: var(--cream-dark);
            padding: 0;
            height: 360px;
        }
        .map-placeholder {
            width: 100%; height: 100%;
            background: var(--dark);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            gap: 1rem;
            color: rgba(255,255,255,0.5);
            font-family: 'Raleway', sans-serif;
            font-size: 0.85rem; letter-spacing: 0.1em;
        }
        .map-placeholder svg { width: 40px; fill: var(--gold); opacity: 0.7; }
        .map-placeholder a { color: var(--gold); text-decoration: underline; }

        /* ========== FOOTER ========== */
        footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 50px 5% 30px; }
        .footer-inner { max-width: 1200px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
        .footer-brand .nav-logo { font-size: 1.6rem; margin-bottom: 0.8rem; }
        .footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; }
        .footer-col h5 {
            font-family: 'Raleway', sans-serif;
            font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.2em; text-transform: uppercase;
            color: rgba(255,255,255,0.85); margin-bottom: 1rem;
        }
        .footer-col ul li { margin-bottom: 0.55rem; }
        .footer-col ul li a {
            font-size: 0.85rem; color: rgba(255,255,255,0.5);
            transition: color 0.25s;
        }
        .footer-col ul li a:hover { color: var(--gold); }
        .footer-bottom {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.07);
            font-size: 0.78rem;
            flex-wrap: wrap; gap: 0.5rem;
        }
        .footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.25s; }
        .footer-bottom a:hover { color: var(--gold); }

        /* social */
        .social-links { display: flex; gap: 0.8rem; margin-top: 0.6rem; }
        .social-link {
            width: 44px; height: 44px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: #fff;
            transition: transform 0.25s, box-shadow 0.25s;
            box-shadow: 0 4px 14px rgba(188,24,136,0.4);
        }
        .social-link:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(188,24,136,0.55); }

        /* ========== INSTAGRAM CTA ========== */
        .instagram-cta {
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1057 40%, #831059 75%, #c13584 100%);
            padding: 60px 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .instagram-cta::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(253,29,29,0.15), transparent 60%),
                        radial-gradient(ellipse at 30% 50%, rgba(131,58,180,0.2), transparent 60%);
        }
        .instagram-cta-inner {
            position: relative; z-index: 1;
            max-width: 600px; margin: 0 auto;
            display: flex; flex-direction: column; align-items: center; gap: 18px;
        }
        .instagram-cta-icon {
            width: 64px; height: 64px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 18px;
            display: flex; align-items: center; justify-content: center;
            backdrop-filter: blur(4px);
        }
        .instagram-cta-icon svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 1.8; }
        .instagram-cta h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem; font-weight: 600;
            color: #fff;
            line-height: 1.25;
        }
        .instagram-cta-handle {
            font-family: 'Raleway', sans-serif;
            font-size: 0.88rem; letter-spacing: 0.12em;
            color: rgba(255,255,255,0.65);
        }
        .instagram-cta-btn {
            display: inline-flex; align-items: center; gap: 10px;
            background: #fff; color: #831059;
            font-family: 'Raleway', sans-serif;
            font-size: 0.82rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            padding: 14px 32px; border-radius: 6px;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 6px 24px rgba(0,0,0,0.25);
            text-decoration: none;
        }
        .instagram-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.35); }
        .instagram-cta-btn svg { width: 18px; height: 18px; stroke: #831059; fill: none; stroke-width: 2; }

        /* Vorbestellung banner */
        .vorbestellung-banner {
            display: flex; align-items: center; gap: 12px;
            background: rgba(197,160,40,0.1);
            border: 1px solid rgba(197,160,40,0.35);
            border-radius: 8px;
            padding: 14px 20px;
            margin-bottom: 1.5rem;
        }
        .vorbestellung-banner-icon {
            font-size: 1.2rem; flex-shrink: 0;
        }
        .vorbestellung-banner p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.82rem; font-weight: 600;
            color: var(--gold);
            line-height: 1.5;
            margin: 0;
        }

        /* ========== ANIMATIONS ========== */
        .fade-up { opacity: 1; transform: none; }
        .fade-up.will-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.will-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-up.will-animate.delay-1 { transition-delay: 0.15s; }
        .fade-up.will-animate.delay-2 { transition-delay: 0.3s; }
        .fade-up.will-animate.delay-3 { transition-delay: 0.45s; }

        /* ========== RESERVATION FLOATING ========== */
        .fab {
            position: fixed;
            bottom: 2rem; right: 2rem;
            z-index: 500;
            display: flex; align-items: center; gap: 10px;
            background: var(--red);
            color: white;
            padding: 13px 22px;
            box-shadow: 0 4px 20px rgba(139,26,43,0.5);
            font-family: 'Raleway', sans-serif;
            font-size: 0.72rem; font-weight: 700;
            letter-spacing: 0.15em; text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        .fab:hover { background: var(--red-dark); box-shadow: 0 6px 28px rgba(139,26,43,0.65); transform: translateY(-2px); }
        .fab svg { width: 16px; fill: white; }

        .fab-instagram {
            position: fixed;
            bottom: 5.5rem; right: 2rem;
            z-index: 500;
            display: flex; align-items: center; gap: 10px;
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
            color: #fff;
            padding: 14px 22px;
            border-radius: 50px;
            font-family: 'Raleway', sans-serif;
            font-size: 0.72rem; font-weight: 700;
            letter-spacing: 0.15em; text-transform: uppercase;
            box-shadow: 0 4px 20px rgba(131,58,180,0.5);
            transition: all 0.3s;
            text-decoration: none;
        }
        .fab-instagram:hover { box-shadow: 0 6px 28px rgba(131,58,180,0.7); transform: translateY(-2px); }
        .fab-instagram svg { width: 16px; stroke: white; flex-shrink: 0; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 220px); grid-auto-rows: 220px; }
            .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
            .about-img-accent { display: none; }
            .anlaesse-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 900px) {
            :root { --section-pad: 64px; }
            .about-grid, .armenien-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .about-img-wrap img { height: 360px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-brand { grid-column: 1 / -1; }
            .menu-grid { grid-template-columns: 1fr; }
        }

        /* ========== SPECIAL OCCASIONS ========== */
        #anlaesse {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        #anlaesse::before {
            content: '';
            position: absolute; top: 0; right: 0; bottom: 0; left: 0;
            background: url('../food_images/2.jpeg') center center / cover no-repeat;
            opacity: 0.12;
        }
        #anlaesse .section-label { color: var(--gold); }
        #anlaesse h2 { color: var(--white); }
        #anlaesse .section-divider { background: var(--gold); }

        .anlaesse-intro {
            color: rgba(255,255,255,0.7);
            max-width: 640px;
            margin-bottom: 3rem;
        }
        .anlaesse-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            position: relative;
        }
        .anlass-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(197,160,40,0.2);
            padding: 2rem 1.8rem;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }
        .anlass-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 100%; height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }
        .anlass-card:hover { border-color: var(--gold); background: rgba(255,255,255,0.08); transform: translateY(-4px); }
        .anlass-card:hover::after { transform: scaleX(1); }
        .anlass-icon { font-size: 2.2rem; margin-bottom: 1rem; }
        .anlass-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem; color: var(--gold);
            margin-bottom: 0.75rem;
        }
        .anlass-card p { color: rgba(255,255,255,0.62); font-size: 0.88rem; line-height: 1.75; margin: 0; }

        .anlass-note {
            margin-top: 1.5rem;
            background: rgba(197,160,40,0.07);
            border-left: 3px solid var(--gold);
            padding: 28px 36px;
            border-radius: 0 8px 8px 0;
        }
        .anlass-note h4 {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            font-size: 1.2rem;
            margin: 0 0 10px;
        }
        .anlass-note p {
            color: rgba(255,255,255,0.62);
            font-size: 0.88rem;
            line-height: 1.8;
            margin: 0 0 8px;
        }
        .anlass-note p:last-child { margin-bottom: 0; }

        .anlaesse-photos {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .anlaesse-photo { overflow: hidden; height: 300px; position: relative; width: 100%; max-width: 560px; }
        .anlaesse-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .anlaesse-photo:hover img { transform: scale(1.04); }
        .anlaesse-photo-caption {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.2rem 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem; font-weight: 600;
            letter-spacing: 0.15em; text-transform: uppercase;
            color: rgba(255,255,255,0.85);
        }

        .anlaesse-cta {
            margin-top: 3rem;
            text-align: center;
        }
        .anlaesse-cta p {
            color: rgba(255,255,255,0.55);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        /* ========== DEPOSIT WARNING ========== */
        .deposit-warning {
            display: none;
            padding: 12px 16px;
            background: rgba(197,160,40,0.12);
            border-left: 3px solid var(--gold);
            font-size: 0.85rem;
            color: rgba(197,160,40,0.9);
            line-height: 1.6;
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

        /* ========== MOBILE ========== */
        @media (max-width: 768px) {
            :root { --nav-h: 60px; --section-pad: 56px; }

            .nav-links {
                display: none;
                position: fixed;
                top: 0; left: 0;
                width: 100%; height: 100%;
                background: rgba(18, 16, 14, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0.2rem;
                margin-left: 0;
                z-index: 9999;
                overflow: hidden;
            }
            .nav-links.open { display: flex; }
            .nav-links li { width: auto; text-align: center; }
            .nav-links a {
                font-family: 'Playfair Display', serif;
                font-size: clamp(1.5rem, 6vw, 2rem);
                font-weight: 400;
                color: rgba(255,255,255,0.65);
                padding: 0.5rem 2rem;
                letter-spacing: 0.02em;
                text-transform: none;
                border: none;
                width: auto;
                opacity: 0;
                transform: translateY(14px);
                transition: color 0.2s, opacity 0.35s ease, transform 0.35s ease;
            }
            .nav-links a::after { display: none; }
            .nav-links a:hover, .nav-links a:active { color: var(--gold); }
            .nav-links.open li:nth-child(1) a { opacity:1; transform:none; transition-delay:0.05s; }
            .nav-links.open li:nth-child(2) a { opacity:1; transform:none; transition-delay:0.10s; }
            .nav-links.open li:nth-child(3) a { opacity:1; transform:none; transition-delay:0.15s; }
            .nav-links.open li:nth-child(4) a { opacity:1; transform:none; transition-delay:0.20s; }
            .nav-links.open li:nth-child(5) a { opacity:1; transform:none; transition-delay:0.25s; }
            .nav-links.open li:nth-child(6) a { opacity:1; transform:none; transition-delay:0.30s; }
            .nav-links.open li:nth-child(7) a { opacity:1; transform:none; transition-delay:0.35s; }
            .nav-links .btn {
                margin-top: 1.5rem;
                padding: 14px 44px;
                font-size: 0.78rem;
                width: auto;
                opacity: 0;
                transform: translateY(14px);
                transition: opacity 0.35s ease 0.40s, transform 0.35s ease 0.40s, background 0.25s;
            }
            .nav-links.open .btn { opacity: 1; transform: none; }
            .nav-toggle { display: flex; }
            .nav-toggle.open span { background: var(--white); }

            #home { min-height: 100vh; min-height: 100svh; }
            .hero-content { padding: 0 1.2rem; }
            .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.3em; }
            .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); line-height: 1.0; }
            .hero-subtitle { font-size: 0.9rem; margin-bottom: 2rem; }
            .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
            .hero-buttons .btn { width: 240px; text-align: center; padding: 16px 24px; }
            .hero-instagram { width: 240px; justify-content: center; padding: 16px 24px; }

            .info-strip {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }
            .info-item {
                border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07);
                max-width: 100%; width: 100%;
                padding: 10px 4%;
                gap: 7px;
            }
            .info-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
            .info-icon { font-size: 0.9rem; }
            .info-text { font-size: 0.7rem; line-height: 1.35; }
            .info-text strong { font-size: 0.72rem; white-space: nowrap; }

            .about-grid { grid-template-columns: 1fr; gap: 2rem; }
            .about-img-wrap img { height: 260px; object-position: center; }
            .about-text { padding-right: 0; }
            .about-text p { font-size: 0.92rem; }
            .about-highlights { gap: 1.2rem; margin: 1.5rem 0; }
            .highlight-num { font-size: 2rem; }
            .highlight-label { font-size: 0.68rem; }

            .menu-tabs {
                overflow-x: auto; flex-wrap: nowrap;
                padding-bottom: 6px; gap: 0.4rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .menu-tabs::-webkit-scrollbar { display: none; }
            .menu-tab { flex-shrink: 0; font-size: 0.68rem; padding: 8px 14px; }
            .menu-grid { grid-template-columns: 1fr; }
            .menu-featured-grid { grid-template-columns: 1fr; }
            .menu-special-intro { padding: 20px 18px; }
            .menu-featured-item { padding: 20px 18px 18px; }
            .menu-item { padding: 15px 0; }
            .menu-item-name { font-size: 0.92rem; }
            .menu-item-price { font-size: 0.92rem; }
            .menu-item-desc { font-size: 0.74rem; }

            .armenien-grid { grid-template-columns: 1fr; gap: 2rem; }
            .armenien-text p { font-size: 0.9rem; }
            .armenien-cards { gap: 0.9rem; }
            .armenien-card { padding: 1.2rem; }

            .gallery-tab { padding: 7px 12px; font-size: 0.67rem; letter-spacing: 0.07em; }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: 200px 180px 180px 180px;
                grid-auto-rows: 180px;
            }
            .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }

            .anlaesse-grid { grid-template-columns: 1fr; gap: 1rem; }
            .anlass-card { padding: 1.5rem; }
            .anlaesse-photos { grid-template-columns: 1fr; margin-top: 2rem; }
            .anlaesse-photo { height: 220px; }
            .anlaesse-cta { margin-top: 2rem; }

            .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
            .reviews-meta { gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2rem; }
            .reviews-score-num { font-size: 2.8rem; }
            .review-card { padding: 1.5rem; }
            .review-text { font-size: 0.88rem; }

            .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .form-row { grid-template-columns: 1fr; }
            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 15px 14px;
                font-size: 16px;
                min-height: 50px;
            }
            .form-group textarea { min-height: 110px; }
            .form-group label { font-size: 0.7rem; }
            .contact-form { gap: 0.85rem; }

            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .footer-brand { grid-column: auto; }
            .footer-brand p { font-size: 0.82rem; }
            footer { padding: 40px 5% 24px; }
            .footer-bottom { font-size: 0.72rem; flex-direction: column; align-items: flex-start; gap: 0.75rem; }

            .fab { bottom: 1rem; right: 1rem; padding: 13px 20px; font-size: 0.68rem; gap: 8px; }
            .fab svg { width: 15px; }
            .fab-instagram { bottom: 4.5rem; right: 1rem; padding: 11px 18px; font-size: 0.66rem; gap: 7px; }
            .fab-instagram svg { width: 14px; }

            .lightbox-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
            .lightbox-arrow.prev { left: 0.3rem; }
            .lightbox-arrow.next { right: 0.3rem; }

            h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
            h3 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
            .section-header { margin-bottom: 2rem; }
            .section { padding: var(--section-pad) 5%; }
        }

        @media (max-width: 480px) {
            :root { --section-pad: 44px; }
            .gallery-tab { padding: 6px 10px; font-size: 0.63rem; letter-spacing: 0.05em; }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 180px 160px 160px 160px;
                grid-auto-rows: 160px;
            }
            .gallery-item:nth-child(1) { grid-column: 1 / 3; }
            .hero-title { font-size: clamp(2.2rem, 13vw, 3rem); }
            .hero-buttons .btn { width: 200px; font-size: 0.72rem; }
            .hero-instagram { width: 200px; font-size: 0.72rem; }
            .about-img-wrap img { height: 220px; }
            .highlight-num { font-size: 1.7rem; }
            .about-highlights { gap: 0.8rem; }
            .info-item { padding: 14px 5%; }
            .anlaesse-photo { height: 200px; }
        }

        /* ========== CLICKABLE REVIEW CARDS ========== */
        a.review-card {
            display: block;
            color: inherit;
            text-decoration: none;
        }
        a.review-card:hover {
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            transform: translateY(-3px);
        }
        a.review-card { transition: box-shadow 0.3s, transform 0.3s; }
        .review-platform-link {
            margin-left: auto;
            font-size: 0.68rem; font-weight: 600;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--stone);
            display: flex; align-items: center; gap: 4px;
        }
        .review-platform-link::after {
            content: '↗';
            font-size: 0.75rem;
            color: var(--gold);
        }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: 18px;
}
.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 4px 3px;
    border-radius: 3px;
    transition: color 0.2s;
    line-height: 1;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active { color: var(--gold); }
.navbar.scrolled .lang-btn { color: rgba(255,255,255,0.45); }
.navbar.scrolled .lang-btn.active,
.navbar.scrolled .lang-btn:hover { color: var(--gold); }
.lang-sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.65rem;
    pointer-events: none;
    user-select: none;
}
.lang-switcher-mobile { display: none; }
@media (max-width: 900px) {
    .lang-switcher {
        display: flex;
        margin-left: auto;
        margin-right: 56px;
    }
}
