/* ============================================
   AKROPOLIS — Optimized v3
   KEY FIX: overflow:hidden moved from .hero to .hero-bg
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1a;
    --gold: #B2895D;
    --gold-light: #c9a474;
    --gold-dark: #96724a;
    --white: #f5f2ed;
    --white-pure: #ffffff;
    --cream: #e8e0d4;
    --gray: #8a8a8a;
    --gray-light: #b5b5b5;
    --gray-dark: #3a3a3a;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior-y: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--black); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section { padding: 140px 0; position: relative; }

/* --- Preloader --- */
.preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-display); font-size: 2.5rem;
    letter-spacing: 0.4em; color: var(--gold); margin-bottom: 30px;
}
.preloader-line {
    width: 60px; height: 1px; background: var(--gold); margin: 0 auto;
    animation: preloaderLine 1.5s ease-in-out infinite;
}
@keyframes preloaderLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed; top: 0; left: 0; width: 0%; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10001; pointer-events: none;
}

/* --- Navigation --- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: all var(--transition);
}
.nav.scrolled {
    background: rgba(10,10,10,.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(178,137,93,.1);
}
.nav-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
    height: 42px; width: 42px; border-radius: 50%; object-fit: cover;
    transition: height var(--transition), width var(--transition);
}
.nav.scrolled .nav-logo-icon { height: 34px; width: 34px; }
.nav-logo-text {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
    letter-spacing: 0.25em; color: var(--white);
    transition: font-size var(--transition);
}
.nav.scrolled .nav-logo-text { font-size: 1rem; }

.nav-links { list-style: none; display: flex; gap: 40px; }
.nav-links a {
    font-family: var(--font-body); font-size: 1.05rem; font-weight: 400;
    letter-spacing: 0.05em; color: var(--white); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold); padding: 10px 28px;
    transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

.nav-toggle {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 8px;
    z-index: 1001; min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 28px; height: 1px; background: var(--white); transition: all var(--transition-fast); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999; background: var(--black);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all var(--transition);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; width: 100%; padding: 0 40px; }
.mobile-menu-brand { display: none; }
.mobile-menu-links { list-style: none; text-align: center; }
.mobile-menu-links li { margin-bottom: 30px; opacity: 0; transform: translateY(20px); transition: all var(--transition); }
.mobile-menu.active .mobile-menu-links li { opacity: 1; transform: translateY(0); }
.mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: .1s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: .15s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: .2s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: .25s; }
.mobile-menu.active .mobile-menu-links li:nth-child(5) { transition-delay: .3s; }
.mobile-menu-links a { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); letter-spacing: 0.05em; }
.mobile-menu-links a:hover { color: var(--gold); }
.mobile-menu-cta { display: none; }
.mobile-menu-hours { display: none; }

/* --- Buttons --- */
.btn {
    display: inline-block; font-family: var(--font-body); font-size: 1rem;
    font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 16px 40px; cursor: pointer; transition: all var(--transition);
    border: none; min-height: 48px;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(178,137,93,.3);
}
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; text-align: center; }


/* ============================================
   HERO — v3 KEY FIX
   overflow:hidden ONLY on .hero-bg (not .hero)
   Content can never be clipped anymore
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* FIX: NO overflow:hidden here — content must never be clipped */
    overflow: visible;
}

/* FIX: overflow:hidden HIER — nur das Hintergrundbild wird geclippt */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom { 0% { transform: scale(1.1); } 100% { transform: scale(1.2); } }

/* Overlay: sanfter als Original */
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse 80% 70% at 50% 45%, transparent 0%, rgba(10,10,10,.25) 100%),
        linear-gradient(180deg,
            rgba(10,10,10,.25) 0%,
            rgba(10,10,10,.45) 35%,
            rgba(10,10,10,.55) 55%,
            rgba(10,10,10,.75) 85%,
            rgba(10,10,10,.92) 100%
        );
}

.hero-content {
    position: relative; z-index: 2; text-align: center;
    max-width: 800px;
    /* FIX: genug Padding oben (Nav) und unten (Scroll-Linie) */
    padding: 100px 40px 120px;
}

.hero-subtitle {
    font-family: var(--font-body); font-size: 1rem; font-weight: 500;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(10,10,10,.8);
}

.hero-title {
    font-family: var(--font-display); font-weight: 400;
    line-height: 1.1; margin-bottom: 28px;
}

.hero-title-line {
    display: block; font-size: 1.8rem; font-weight: 400;
    color: var(--cream); margin-bottom: 8px; font-style: italic;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 20px rgba(10,10,10,.6);
}

.hero-title-accent {
    display: block; font-size: 5rem; letter-spacing: 0.15em;
    color: var(--white-pure);
    text-shadow:
        0 0 60px rgba(178,137,93,.2),
        0 2px 30px rgba(10,10,10,.5);
}

.hero-desc {
    font-family: var(--font-body); font-size: 1.2rem;
    color: var(--cream); opacity: 0.85; margin-bottom: 45px;
    font-weight: 400; letter-spacing: 0.02em; line-height: 1.7;
    text-shadow: 0 2px 15px rgba(10,10,10,.7);
}

.hero-actions { display: flex; gap: 20px; justify-content: center; }
.hero .btn-primary { box-shadow: 0 4px 20px rgba(178,137,93,.3); }
.hero .btn-outline {
    border-color: rgba(255,255,255,.35);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    background: rgba(255,255,255,.04);
}
.hero .btn-outline:hover {
    background: rgba(178,137,93,.1);
    border-color: var(--gold); color: var(--gold-light);
}

.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}


/* --- Section Labels & Titles --- */
.section-label {
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 15px;
}
.section-title {
    font-family: var(--font-display); font-size: 3.2rem; font-weight: 400;
    line-height: 1.2; color: var(--white); margin-bottom: 30px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-light { color: var(--white-pure); }

/* --- About --- */
.about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { width: 85%; aspect-ratio: 3/4; overflow: hidden; }
.about-img-main img { transition: transform .8s ease; }
.about-img-main:hover img { transform: scale(1.05); }
.about-img-accent {
    position: absolute; bottom: -40px; right: 0; width: 55%;
    aspect-ratio: 1/1; overflow: hidden;
    border: 4px solid var(--black); box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.about-img-accent img { transition: transform .8s ease; }
.about-img-accent:hover img { transform: scale(1.05); }
.about-text { padding-left: 20px; }
.about-desc { font-size: 1.15rem; color: var(--gray-light); margin-bottom: 20px; line-height: 1.8; font-weight: 300; }
.about-signature { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.signature-line { width: 50px; height: 1px; background: var(--gold); }
.signature-text { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--gold); }

/* --- Cuisine --- */
.cuisine { overflow: hidden; }
.cuisine-bg { position: absolute; inset: 0; z-index: 0; }
.cuisine-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.75) 50%, rgba(10,10,10,.9) 100%);
}
.cuisine .container { position: relative; z-index: 2; }
.cuisine-header { text-align: center; margin-bottom: 70px; }
.cuisine-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.cuisine-card {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
    overflow: hidden; transition: all var(--transition);
    backdrop-filter: blur(10px); position: relative;
}
.cuisine-card::before {
    content: ''; position: absolute; inset: -1px;
    background: linear-gradient(135deg, transparent 40%, rgba(178,137,93,.4) 50%, transparent 60%);
    background-size: 300% 300%; z-index: -1; opacity: 0; transition: opacity .6s ease;
}
.cuisine-card:hover::before { opacity: 1; animation: shimmerBorder 2s ease infinite; }
@keyframes shimmerBorder { 0% { background-position: 100% 100%; } 100% { background-position: 0% 0%; } }
.cuisine-card:hover {
    border-color: rgba(178,137,93,.3); transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.cuisine-card-img { aspect-ratio: 4/3; overflow: hidden; }
.cuisine-card-img img { transition: transform .8s ease; }
.cuisine-card:hover .cuisine-card-img img { transform: scale(1.08); }
.cuisine-card-content { padding: 30px; }
.cuisine-card-content h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 12px; color: var(--white); }
.cuisine-card-content p { font-size: 1.05rem; color: var(--gray); font-weight: 300; line-height: 1.7; }

/* --- Statement --- */
.statement {
    padding: 120px 0; background: var(--black-light);
    border-top: 1px solid rgba(178,137,93,.1); border-bottom: 1px solid rgba(178,137,93,.1);
}
.statement-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.statement-quote {
    font-family: var(--font-display); font-size: 2.8rem; font-weight: 400;
    font-style: italic; line-height: 1.4; color: var(--white); letter-spacing: 0.02em;
}
.statement-attr {
    font-family: var(--font-body); font-size: 1rem; color: var(--gold);
    margin-top: 30px; letter-spacing: 0.2em; text-transform: uppercase;
}

/* --- Gallery --- */
.gallery { background: var(--black); }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 280px; gap: 15px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item img { transition: transform .8s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.8) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 25px;
    opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); letter-spacing: 0.05em; }

/* --- Menu Slideshow --- */
.menu-section { background: var(--black); padding: 120px 0; }
.menu-header { text-align: center; margin-bottom: 50px; }
.menu-slideshow {
    position: relative; max-width: 600px; margin: 0 auto;
    background: #000; border-radius: 4px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(178,137,93,.12);
}
.slideshow-track { display: flex; transition: transform .55s cubic-bezier(.25,.46,.45,.94); will-change: transform; }
.slideshow-slide { flex: 0 0 100%; width: 100%; min-width: 100%; }
.slideshow-slide img { width: 100%; height: auto; display: block; object-fit: contain; -webkit-user-drag: none; user-select: none; }
.slideshow-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; background: rgba(10,10,10,.7);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(178,137,93,.2); border-radius: 50%;
    color: var(--gold); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s ease; z-index: 10;
}
.slideshow-btn:hover { background: rgba(178,137,93,.15); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.slideshow-prev { left: 12px; }
.slideshow-next { right: 12px; }
.slideshow-counter {
    position: absolute; top: 16px; right: 16px;
    background: rgba(10,10,10,.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(178,137,93,.15);
    font-family: var(--font-body); font-size: .85rem; color: var(--gold);
    letter-spacing: .1em; z-index: 10;
}
.slideshow-dots { display: flex; justify-content: center; gap: 8px; padding: 18px 0; background: var(--black); }
.slideshow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: 1px solid rgba(178,137,93,.4); background: transparent;
    cursor: pointer; padding: 0; transition: all .3s ease;
}
.slideshow-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }
.slideshow-dot:hover { border-color: var(--gold); background: rgba(178,137,93,.3); }

/* --- Contact --- */
.contact-section { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-details { margin-top: 20px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 35px; }
.contact-icon {
    flex-shrink: 0; width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(178,137,93,.3); color: var(--gold);
}
.contact-item h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--white); margin-bottom: 5px; }
.contact-item p { font-size: 1rem; color: var(--gray-light); font-weight: 300; line-height: 1.6; }

.reservation-card { background: var(--black-card); border: 1px solid rgba(178,137,93,.15); padding: 60px 50px; }
.reservation-phone-cta { text-align: center; }
.reservation-icon { color: var(--gold); margin-bottom: 25px; }
.reservation-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.reservation-desc { font-family: var(--font-body); font-size: 1.05rem; color: var(--gray-light); font-weight: 300; margin-bottom: 35px; line-height: 1.6; }
.reservation-phone-number {
    display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 400;
    color: var(--gold); letter-spacing: 0.05em; margin-bottom: 30px; transition: color var(--transition-fast);
}
.reservation-phone-number:hover { color: var(--gold-light); }
.reservation-hours { font-family: var(--font-body); font-size: .85rem; color: var(--gray); margin-top: 20px; letter-spacing: .05em; }

/* --- Footer --- */
.footer { padding: 80px 0 40px; background: var(--black-light); border-top: 1px solid rgba(178,137,93,.1); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 60px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-icon { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; opacity: .7; }
.footer-logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 500; letter-spacing: .25em; color: var(--white); opacity: .6; }
.footer-tagline { font-size: .95rem; color: var(--gray); font-weight: 300; }
.footer-links { display: flex; gap: 80px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 5px; letter-spacing: .05em; }
.footer-col a { font-size: .95rem; color: var(--gray); font-weight: 300; transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 30px; text-align: center; }
.footer-bottom p { font-size: .85rem; color: var(--gray-dark); letter-spacing: .05em; }

/* --- Flying Food --- */
.flying-food { position: fixed; pointer-events: none; z-index: 50; will-change: transform, opacity; opacity: 0; }
.flying-food svg { width: 100%; height: 100%; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.fly-olive-branch { width: 180px; height: 180px; }
.fly-lemon { width: 140px; height: 140px; }
.fly-laurel { width: 160px; height: 160px; }
.fly-herb { width: 120px; height: 120px; }

/* --- Reveal --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* --- Mobile Float CTA --- */
.mobile-float-cta { display: none; }


/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .section { padding: 100px 0; }
    .hero-title-accent { font-size: 3.8rem; }
    .section-title { font-size: 2.6rem; }
    .about-grid { gap: 50px; }
    .cuisine-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-grid { grid-auto-rows: 220px; }
    .contact-grid { gap: 50px; }
    .fly-olive-branch { width: 140px; height: 140px; }
    .fly-lemon { width: 110px; height: 110px; }
    .fly-laurel { width: 130px; height: 130px; }
    .fly-herb { width: 100px; height: 100px; }
}


/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
    .flying-food { display: none !important; }
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }

    /* Nav */
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-inner { padding: 0 20px; }
    .nav { padding: 16px 0; }
    .nav.scrolled { padding: 10px 0; }

    /* Mobile Menu */
    .mobile-menu { padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left); }
    .mobile-menu-brand { display: block; margin-bottom: 40px; }
    .mobile-menu-icon { height: 70px; width: 70px; border-radius: 50%; object-fit: cover; opacity: .5; }
    .mobile-menu-links { margin-bottom: 40px; }
    .mobile-menu-links li { margin-bottom: 24px; }
    .mobile-menu-links a { font-size: 2rem; letter-spacing: .08em; }
    .mobile-menu-cta { display: block; margin-bottom: 30px; }
    .mobile-cta-btn {
        display: inline-flex; align-items: center; gap: 10px;
        font-family: var(--font-body); font-size: 1rem; font-weight: 500;
        letter-spacing: .15em; text-transform: uppercase;
        color: var(--black); background: var(--gold); padding: 16px 40px;
        transition: all var(--transition);
    }
    .mobile-menu-hours { display: block; }
    .mobile-menu-hours p { font-family: var(--font-body); font-size: .85rem; color: var(--gray); letter-spacing: .05em; line-height: 1.8; }

    /* Floating CTA */
    .mobile-float-cta {
        display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(to top, rgba(10,10,10,.98) 70%, transparent);
        transform: translateY(100%);
        transition: transform .4s cubic-bezier(.25,.46,.45,.94);
        pointer-events: none;
    }
    .mobile-float-cta.visible { transform: translateY(0); pointer-events: auto; }
    .mobile-float-btn {
        display: flex; align-items: center; justify-content: center; gap: 10px;
        width: 100%; padding: 14px 20px; background: var(--gold); color: var(--black);
        font-family: var(--font-body); font-size: .95rem; font-weight: 600;
        letter-spacing: .15em; text-transform: uppercase; text-align: center;
        transition: all var(--transition-fast);
    }
    .mobile-float-btn:active { background: var(--gold-dark); transform: scale(.98); }

    /* === HERO MOBILE v3 === */
    .hero {
        min-height: 100svh;
        min-height: -webkit-fill-available;
    }
    .hero-content {
        padding: 80px 24px 100px;
    }
    .hero-overlay {
        background:
            radial-gradient(ellipse 90% 70% at 50% 50%, transparent 0%, rgba(10,10,10,.3) 100%),
            linear-gradient(180deg,
                rgba(10,10,10,.3) 0%, rgba(10,10,10,.5) 30%,
                rgba(10,10,10,.6) 55%, rgba(10,10,10,.8) 85%,
                rgba(10,10,10,.95) 100%
            );
    }
    .hero-subtitle { font-size: .85rem; letter-spacing: .3em; margin-bottom: 16px; }
    .hero-title-line { font-size: 1.2rem; margin-bottom: 6px; }
    .hero-title-accent { font-size: 2.6rem; letter-spacing: .12em; }
    .hero-desc { font-size: 1rem; margin-bottom: 32px; padding: 0 10px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; padding: 0 10px; }
    .hero-actions .btn { text-align: center; padding: 16px 20px; font-size: .9rem; }
    .hero-scroll { bottom: 24px; }
    .hero-scroll-line { height: 40px; }

    /* Sections */
    .section-title { font-size: 2rem; margin-bottom: 24px; }
    .section-label { font-size: .8rem; letter-spacing: .25em; margin-bottom: 12px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-images { max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-img-main { width: 100%; aspect-ratio: 3/4; }
    .about-img-accent { position: relative; bottom: auto; right: auto; width: 100%; aspect-ratio: 3/4; border: none; box-shadow: none; }
    .about-text { padding-left: 0; }
    .about-desc { font-size: 1.05rem; line-height: 1.7; }
    .about-signature { margin-top: 30px; }

    /* Cuisine */
    .cuisine-header { margin-bottom: 40px; }
    .cuisine-grid {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; gap: 16px; padding-bottom: 20px;
        margin: 0 -24px; padding-left: 24px; padding-right: 24px; scrollbar-width: none;
    }
    .cuisine-grid::-webkit-scrollbar { display: none; }
    .cuisine-card { flex: 0 0 82%; scroll-snap-align: center; max-width: 340px; }
    .cuisine-card-content { padding: 24px; }
    .cuisine-card-content h3 { font-size: 1.3rem; }
    .cuisine-card-content p { font-size: .95rem; }

    /* Statement */
    .statement { padding: 80px 0; }
    .statement-quote { font-size: 1.6rem; line-height: 1.5; }
    .statement-attr { font-size: .85rem; margin-top: 20px; }

    /* Gallery */
    .gallery-header { margin-bottom: 40px; }
    .gallery-grid {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; gap: 12px;
        margin: 0 -24px; padding: 0 24px 16px; scrollbar-width: none;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-item { flex: 0 0 78%; height: 280px; scroll-snap-align: center; border-radius: 4px; }
    .gallery-item-tall, .gallery-item-wide { grid-row: unset; grid-column: unset; }
    .gallery-item-tall { height: 280px; }
    .gallery-item-overlay { opacity: 1; background: linear-gradient(to top, rgba(10,10,10,.7) 0%, transparent 40%); }
    .gallery-item-overlay span { font-size: 1rem; }

    /* Menu */
    .menu-section { padding: 60px 0; }
    .menu-slideshow { max-width: 100%; margin: 0 -24px; border-radius: 0; }
    .slideshow-btn { width: 38px; height: 38px; }
    .slideshow-prev { left: 8px; }
    .slideshow-next { right: 8px; }
    .slideshow-counter { top: 10px; right: 10px; padding: 4px 10px; font-size: .75rem; }
    .slideshow-dots { padding: 14px 0; gap: 6px; }
    .slideshow-dot { width: 7px; height: 7px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-item { margin-bottom: 28px; }
    .contact-icon { width: 44px; height: 44px; }
    .contact-icon svg { width: 20px; height: 20px; }
    .contact-item h4 { font-size: 1rem; }
    .contact-item p { font-size: .95rem; }
    .reservation-card { padding: 40px 24px; }
    .reservation-title { font-size: 1.5rem; }
    .reservation-desc { font-size: 1rem; margin-bottom: 28px; }
    .reservation-phone-number { font-size: 1.7rem; margin-bottom: 24px; }

    /* Footer — genug Platz fuer Floating CTA + Legal */
    .footer { padding: 60px 0 40px; padding-bottom: calc(50px + 80px + env(safe-area-inset-bottom, 0px)); }
    .footer-inner { flex-direction: column; gap: 40px; }
    .footer-links { flex-direction: column; gap: 30px; }
    .footer-col { gap: 8px; }
    .footer-bottom { padding-top: 24px; }
    .footer-bottom p { font-size: .8rem; }

    /* Reveal */
    .reveal { transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
    .reveal-left { transform: translateX(-20px); transition: opacity .5s ease, transform .5s ease; }
}

/* Extra small */
@media (max-width: 380px) {
    .container { padding: 0 16px; }
    .hero-title-accent { font-size: 2.1rem; letter-spacing: .08em; }
    .hero-title-line { font-size: 1rem; }
    .section-title { font-size: 1.7rem; }
    .mobile-menu-links a { font-size: 1.6rem; }
    .cuisine-card { flex: 0 0 88%; }
    .gallery-item { flex: 0 0 85%; height: 240px; }
    .reservation-phone-number { font-size: 1.4rem; }
    .statement-quote { font-size: 1.4rem; }
}

@supports (padding: env(safe-area-inset-bottom)) {
    .mobile-float-cta { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
}
