/* =============================================================================
   FREESE IM HAFEN – PREMIUM CINEMATIC DESIGN SYSTEM 2030
   Corporate Design: Rot #CC2229 + Warmes Gold #B8862B
   Cinematisch, norddeutsch, atemberaubend. AAA-Webdesign.
   Systemfonts only, keine externen CDNs.
   ============================================================================= */

/* Ensure the hidden attribute always wins over display rules */
[hidden] { display: none !important; }

/* =============================================================================
   0. CUSTOM PROPERTIES – DESIGN TOKENS
   ============================================================================= */

:root {
    /* ── Farbpalette ── Nordsee-Ruhe: gedaempft, warm, elegant ── */
    --color-primary: #CC2229;
    --color-primary-dark: #a51b21;
    --color-primary-light: #e0444a;
    --color-primary-soft: rgba(204,34,41,0.06);
    --color-primary-10: rgba(204,34,41,0.10);
    --color-primary-20: rgba(204,34,41,0.20);

    --color-accent: #B8862B;
    --color-accent-light: #D4A754;
    --color-accent-warm: #C4943E;
    --color-accent-soft: rgba(184,134,43,0.08);
    --color-accent-10: rgba(184,134,43,0.10);
    --color-accent-20: rgba(184,134,43,0.20);

    --color-white: #ffffff;
    --color-off-white: #FAF8F5;
    --color-cream: #F8F5F0;
    --color-sand: #F0EBE3;

    --color-gray-100: #F5F4F2;
    --color-gray-200: #E8E6E3;
    --color-gray-300: #D4D1CD;
    --color-gray-400: #A09A94;
    --color-gray-600: #5C5852;
    --color-gray-800: #2D2A26;

    --color-dark: #1E1C19;
    --color-dark-warm: #2D2825;
    --color-dark-mid: #3A302D;

    --color-overlay: rgba(30,28,25,0.65);
    --color-overlay-light: rgba(30,28,25,0.30);
    --color-overlay-heavy: rgba(30,28,25,0.82);
    --color-success: #3D8B5E;

    /* ── Typografie ── */
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

    --fs-hero: clamp(3rem, 7vw, 5.5rem);
    --fs-h1: clamp(2.2rem, 4.5vw, 3.6rem);
    --fs-h2: clamp(1.7rem, 3.2vw, 2.6rem);
    --fs-h3: clamp(1.15rem, 2vw, 1.5rem);
    --fs-body: 1rem;
    --fs-lead: clamp(1.05rem, 1.6vw, 1.2rem);
    --fs-small: 0.875rem;
    --fs-tiny: 0.75rem;

    --lh-body: 1.75;
    --lh-heading: 1.15;

    --ls-tight: -0.025em;
    --ls-normal: 0;
    --ls-wide: 0.02em;
    --ls-caps: 0.1em;

    /* ── Spacing ── */
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 7rem;
    --space-3xl: 10rem;
    --section-gap: clamp(5rem, 9vw, 9rem);

    /* ── Layout ── */
    --container-max: 1200px;
    --container-wide: 1400px;
    --container-narrow: 900px;

    /* ── Radien ── */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;
    --radius-pill: 100px;

    /* ── Schatten ── */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
    --shadow-2xl: 0 32px 80px rgba(0,0,0,0.16), 0 12px 30px rgba(0,0,0,0.08);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.03);
    --shadow-glow: 0 0 50px rgba(204,34,41,0.08);
    --shadow-gold: 0 4px 20px rgba(184,134,43,0.15);
    --shadow-gold-lg: 0 8px 40px rgba(184,134,43,0.25);
    --shadow-inner: inset 0 2px 8px rgba(0,0,0,0.06);

    /* ── Easings ── */
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);

    /* ── Durations ── */
    --duration-fast: 0.15s;
    --duration: 0.3s;
    --duration-slow: 0.6s;
    --duration-cinematic: 1s;
    --duration-hero: 1.5s;

    /* ── Header ── */
    --header-height: 80px;

    /* ── Glass ── */
    --glass-bg: rgba(255,255,255,0.72);
    --glass-blur: blur(24px);
    --glass-border: rgba(255,255,255,0.25);
    --glass-bg-dark: rgba(30,28,25,0.65);
    --glass-blur-dark: blur(20px);
}

/* =============================================================================
   1. RESET & BASE
   ============================================================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .hero__slide.active { animation: none !important; }
    .atmosphere-grid__item img,
    .food-showcase__item img,
    .gallery-item img { transition: none !important; }
    .section.visible .fade-up { animation-duration: 0.01ms !important; }
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-gray-800);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    font-style: italic;   /* alt text styling */
    background-color: var(--color-cream);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}
a:hover, a:focus-visible { color: var(--color-accent); }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* ── Focus-Visible für Barrierefreiheit ── */
.hero__dot:focus-visible,
.gallery-item:focus-visible,
.food-showcase__item:focus-visible,
.event-card:focus-visible,
.location-card:focus-visible,
.menu-tab:focus-visible,
.team-card:focus-visible,
.news-card:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(184, 134, 43, 0.2);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: var(--lh-heading);
    color: var(--color-dark);
    letter-spacing: var(--ls-tight);
}

ul, ol { list-style: none; }

::selection {
    background: var(--color-primary-20);
    color: var(--color-dark);
}

/* =============================================================================
   2. UTILITIES
   ============================================================================= */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-md);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

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

.text-center { text-align: center; }

/* ── Sections ── */
.section {
    padding-block: var(--section-gap);
    position: relative;
}
.section--alt { background: var(--color-off-white); }
/* Willkommen-Sektion */
.section--welcome { padding: var(--space-2xl) 0 var(--space-xl); }
.welcome-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: var(--ls-tight);
    color: var(--color-text);
    margin-bottom: var(--space-md);
}
.welcome-title__brand {
    font-weight: 700;
    color: var(--color-primary);
}
.welcome-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    line-height: 1.7;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section--cream { background: var(--color-cream); }

.section--dark {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-warm) 50%, var(--color-dark-mid) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.section--dark::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--color-accent-10) 0%, transparent 70%);
    border-radius: var(--radius-full);
    pointer-events: none;
}
.section--dark::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--color-primary-10) 0%, transparent 70%);
    border-radius: var(--radius-full);
    pointer-events: none;
}
.section--dark h2, .section--dark h3, .section--dark p { color: var(--color-white); }
.section--dark .section__subtitle { color: rgba(255,255,255,0.72); }
.section--dark .section__title::after { background: linear-gradient(90deg, var(--color-accent), rgba(255,255,255,0.3)); }
.section--dark .location-card { background: var(--color-white); color: var(--color-gray-800); }
.section--dark .location-card h3 { color: var(--color-primary); }
.section--dark .location-card p { color: var(--color-gray-600); }
.section--dark .location-card__tagline { color: var(--color-accent); }
.section--dark .location-card__hours { color: var(--color-primary); }
.section--no-padding-bottom { padding-bottom: 0; }

.section__header { text-align: center; margin-bottom: var(--space-xl); }

.section__title {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-xs);
    position: relative;
    display: inline-block;
    letter-spacing: var(--ls-tight);
    font-weight: 800;
}
.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
    transition: width var(--duration-slow) var(--ease-out);
}
.reveal.is-visible .section__title::after,
.section__title:hover::after {
    width: 90px;
}

.section__subtitle {
    font-size: var(--fs-lead);
    color: var(--color-gray-600);
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

/* =============================================================================
   3. BUTTONS
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: .85rem 2rem;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: var(--ls-wide);
    -webkit-user-select: none;
    user-select: none;
}
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

/* Ripple/scale on click */
.btn:active {
    transform: scale(0.97) !important;
    transition-duration: var(--duration-fast);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: 0 4px 14px rgba(184,134,43,0.3);
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    border-color: var(--color-accent-light);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn--secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn--dark {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(204,34,41,0.25);
}
.btn--dark:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(204,34,41,0.35);
}

.btn--warm {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}
.btn--warm:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    font-weight: 700;
}
.btn--white:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

.btn--cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(204,34,41,0.3);
}
.btn--cta:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-color: var(--color-primary-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(204,34,41,0.4);
}

.btn--small { padding: .6rem 1.4rem; font-size: var(--fs-small); }
.btn--large { padding: 1.1rem 3rem; font-size: 1.05rem; letter-spacing: var(--ls-wide); }
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================================================
   3.5 SKIP LINK – Accessibility
   ============================================================================= */

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: #fff;
    padding: 0.8rem 1.6rem;
    z-index: 3000;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* =============================================================================
   4. HEADER – Glasmorphism, transparent-to-solid
   ============================================================================= */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background var(--duration-slow) var(--ease-out),
                border-color var(--duration-slow) var(--ease-out),
                box-shadow var(--duration-slow) var(--ease-out),
                backdrop-filter var(--duration-slow) var(--ease-out);
}

/* On homepage (has hero): start transparent */
.has-hero .site-header:not(.site-header--scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

/* Solid state on scroll */
.site-header--scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom-color: rgba(0,0,0,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-md);
}

.site-header__logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration) var(--ease-out), filter var(--duration) var(--ease-out);
    object-fit: contain;
}
.site-header__logo:hover img { transform: scale(1.04); }

.site-header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}
.site-header__nav a {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-gray-600);
    letter-spacing: var(--ls-wide);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--duration) var(--ease-out);
}
/* Over hero: white nav links (only on homepage) */
.has-hero .site-header:not(.site-header--scrolled) .site-header__nav a {
    color: rgba(255,255,255,0.88);
}
.has-hero .site-header:not(.site-header--scrolled) .site-header__nav a:hover {
    color: var(--color-white);
}
.site-header--scrolled .site-header__nav a:hover { color: var(--color-primary); }

/* Animated underline */
.site-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width var(--duration) var(--ease-out), left var(--duration) var(--ease-out);
    border-radius: 1px;
}
.site-header__nav a:hover::after,
.site-header__nav a[aria-current="true"]::after,
.site-header__nav a[aria-current="page"]::after {
    width: 100%; left: 0;
}

.site-header__cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
/* Transparent header CTA adjustments (homepage only) */
.has-hero .site-header:not(.site-header--scrolled) .site-header__cta .btn--outline {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.4);
}
.has-hero .site-header:not(.site-header--scrolled) .site-header__cta .btn--outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}
.hamburger__lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}
.hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out);
}
.has-hero .site-header:not(.site-header--scrolled) .hamburger__line {
    background: var(--color-white);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav – Full-screen overlay ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 1001;
    padding-top: calc(var(--header-height) + var(--space-xl));
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-slow) var(--ease-out), visibility var(--duration-slow) var(--ease-out);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}
.mobile-nav__list a {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-dark);
    transition: color var(--duration), transform var(--duration);
    letter-spacing: var(--ls-tight);
}
.mobile-nav__list a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.mobile-nav__cta {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

/* =============================================================================
   5. HERO – Cinematic, fullscreen, Ken-Burns, parallax
   ============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero--slider { background: none; }

.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    will-change: opacity;
}
.hero__slide.active { opacity: 1; }

/* Ken-Burns on active slide */
@keyframes kenBurns1 {
    0%   { transform: scale(1.00) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@keyframes kenBurns2 {
    0%   { transform: scale(1.00) translate(0, 0); }
    100% { transform: scale(1.10) translate(1%, -0.5%); }
}
@keyframes kenBurns3 {
    0%   { transform: scale(1.05) translate(-0.5%, 0.5%); }
    100% { transform: scale(1.00) translate(0, 0); }
}

.hero__slide.active {
    animation: kenBurns1 8s var(--ease-in-out) forwards;
}
.hero__slide.active:nth-child(2n) {
    animation-name: kenBurns2;
}
.hero__slide.active:nth-child(3n) {
    animation-name: kenBurns3;
}

@media (prefers-reduced-motion: reduce) {
    .hero__slide.active { animation: none; }
}

/* ── Cinematic overlay with vignette ── */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(20,18,15,0.45) 100%),
        linear-gradient(
            180deg,
            rgba(28,25,23,0.30) 0%,
            rgba(28,25,23,0.05) 25%,
            rgba(28,25,23,0.05) 50%,
            rgba(28,25,23,0.40) 80%,
            rgba(28,25,23,0.65) 100%
        );
}

/* ── Hero content ── */
.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    max-width: 900px;
}

.hero__logo {
    width: 160px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.hero__title {
    font-size: var(--fs-hero);
    color: var(--color-white);
    font-weight: 800;
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.05;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp var(--duration-hero) var(--ease-dramatic) 0.3s forwards;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.90);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp var(--duration-hero) var(--ease-dramatic) 0.6s forwards;
}

.hero__buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp var(--duration-hero) var(--ease-dramatic) 0.9s forwards;
}
.hero__cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__title, .hero__subtitle, .hero__buttons {
        opacity: 1; transform: none; animation: none;
    }
}

/* ── Scroll indicator ── */
.hero__scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-small);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: scrollBounce 2.5s var(--ease-in-out) infinite;
    cursor: pointer;
}
/* Move scroll hint up when slider dots are present (avoid overlap) */
.hero__scroll-hint:has(~ .hero__slider-dots) {
    bottom: calc(var(--space-lg) + 3.5rem);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(-10px); opacity: 1; }
}

/* ── Slider dots ── */
.hero__slider-dots {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
}

.hero__dot {
    width: 10px; height: 10px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    padding: 0;
}
.hero__dot.active,
.hero__dot:hover {
    background: var(--color-white);
    border-color: var(--color-white);
}
.hero__dot.active {
    width: 30px;
    border-radius: 5px;
}

/* ── Wave transition at hero bottom ── */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 60px;
    z-index: 4;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23F8F5F0' d='M0,25 C240,55 480,5 720,30 C960,55 1200,10 1440,25 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
}

/* ── CTA subtle pulse ── */
@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(184,134,43,0.3); }
    50%      { box-shadow: 0 4px 28px rgba(184,134,43,0.5), 0 0 60px rgba(184,134,43,0.15); }
}
.hero__buttons .btn--primary {
    animation: subtlePulse 3.5s var(--ease-in-out) infinite;
}
@media (prefers-reduced-motion: reduce) {
    .hero__buttons .btn--primary { animation: none; }
}

/* =============================================================================
   6. USP HIGHLIGHTS
   ============================================================================= */

.highlights, .highlights-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: calc(-1 * var(--space-xl));
    position: relative;
    z-index: 10;
}
.highlights-row { margin-top: 0; }

.highlight-card {
    background: var(--color-white);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
    border-bottom: 3px solid transparent;
    position: relative;
}
.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-bottom-color: var(--color-accent);
}

.highlight-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto var(--space-md);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-soft));
    border-radius: var(--radius-md);
    color: var(--color-primary);
    transition: transform var(--duration) var(--ease-spring);
}
.highlight-card:hover .highlight-card__icon { transform: scale(1.1) rotate(-3deg); }
.highlight-card__icon img { width: 32px; height: 32px; object-fit: contain; }
.highlight-card__title { font-size: var(--fs-h3); margin-bottom: var(--space-xs); color: var(--color-dark); }
.highlight-card__text { font-size: var(--fs-small); color: var(--color-gray-600); line-height: 1.7; }

/* With images */
.highlight-card--img { padding: 0; overflow: hidden; text-align: left; }
.highlight-card--img .highlight-card__image {
    height: 220px;
    overflow: hidden;
}
.highlight-card--img .highlight-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.highlight-card--img:hover .highlight-card__image img { transform: scale(1.08); }
.highlight-card--img .highlight-card__title,
.highlight-card--img .highlight-card__text {
    padding: 0 var(--space-md); text-align: center;
}
.highlight-card--img .highlight-card__title { padding-top: var(--space-md); }
.highlight-card--img .highlight-card__text { padding-bottom: var(--space-lg); }

/* =============================================================================
   7. ABOUT – Split layout with overlap effect
   ============================================================================= */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about__content h2 { font-size: var(--fs-h2); margin-bottom: var(--space-sm); color: var(--color-primary); }
.about__content p { margin-bottom: var(--space-sm); color: var(--color-gray-600); line-height: 1.8; }
.about__signature { margin-top: var(--space-md); }
.about__signature img { width: 100px; margin-bottom: var(--space-xs); }
.about__signature span { display: block; font-weight: 600; color: var(--color-dark); }

/* ── About Split (enhanced) ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}
.about-split--reverse .about-split__images { order: 2; }
.about-split--reverse .about-split__text { order: 1; }

.about-split__images {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-sm);
    height: 480px;
    position: relative;
}

.about-split__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-split__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--duration-cinematic) var(--ease-out);
}
.about-split__img:hover img { transform: scale(1.04); }

.about-split__img--accent {
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184,134,43,0.15);
}
.about-split__img--accent img {
    object-position: center 20%;
}

.about-split__text .section__title { text-align: left; }
.about-split__text .section__title::after { margin-left: 0; }
.about-split__text .section__subtitle { text-align: left; margin-inline: 0; }
.about-split__text p {
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: var(--space-sm);
    font-size: var(--fs-lead);
}
.about-split__text .btn { margin-top: var(--space-md); }

/* =============================================================================
   8. ATMOSPHERE GRID – Mosaic picture gallery
   ============================================================================= */

.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 380px;
    gap: 6px;
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
/* Masonry-like varied heights */
/* 2x2 gleichmäßiges Grid – keine Spans nötig */
.atmosphere-grid__item {
    overflow: hidden;
    position: relative;
    cursor: default;
    border-radius: 0;
}
.atmosphere-grid__item--wide { grid-column: span 2; }
.atmosphere-grid__item--tall { grid-row: span 2; }
.atmosphere-grid__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.6s var(--ease-out), filter var(--duration-slow) var(--ease-out);
}
.atmosphere-grid__item:hover img {
    transform: scale(1.10);
    filter: brightness(1.06) saturate(1.08);
}
/* Cinematic overlay on hover */
.atmosphere-grid__item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(204,34,41,0.15) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out);
    pointer-events: none;
}
.atmosphere-grid__item:hover::before { opacity: 1; }
/* Inner shadow for depth */
.atmosphere-grid__item::after {
    content: '';
    position: absolute; inset: 0;
    box-shadow: inset 0 -100px 120px -50px rgba(0,0,0,0.25);
    pointer-events: none;
    z-index: 1;
    transition: box-shadow var(--duration-slow) var(--ease-out);
}
.atmosphere-grid__item:hover::after {
    box-shadow: inset 0 -100px 120px -50px rgba(0,0,0,0.08);
}

/* =============================================================================
   9. LOCATIONS
   ============================================================================= */

.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-lg);
}

.location-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
}
.location-card::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(184,134,43,0.2), rgba(204,34,41,0.2));
    opacity: 0; z-index: -1;
    transition: opacity var(--duration) var(--ease-out);
    filter: blur(16px);
}
.location-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}
.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.location-card:hover::before { opacity: 1; }
.location-card:hover::after { opacity: 1; }

.location-card__image {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.location-card__image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.12) 100%);
    pointer-events: none;
    z-index: 1;
}
.location-card__image img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
    transition: transform 1.2s var(--ease-out), filter var(--duration-slow) var(--ease-out);
}
.location-card:hover .location-card__image img {
    transform: scale(1.10);
    filter: brightness(1.03);
}
.location-card__image--icon { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); }
.location-card__image--icon img { width: 80px; height: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .8; }

.location-card__img { aspect-ratio: 16/9; overflow: hidden; }
.location-card__img img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
    transition: transform var(--duration-slow) var(--ease-out);
}
.location-card:hover .location-card__img img { transform: scale(1.07); }

.location-card__body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.location-card__name { font-size: var(--fs-h3); color: var(--color-primary); margin-bottom: .25rem; }
.location-card__tagline { font-size: var(--fs-small); color: var(--color-accent); font-weight: 600; margin-bottom: var(--space-sm); }
.location-card__text { font-size: var(--fs-small); color: var(--color-gray-600); margin-bottom: var(--space-sm); flex: 1; line-height: 1.7; }
.location-card__hours {
    display: flex; align-items: center; gap: var(--space-xs);
    font-size: var(--fs-small); font-weight: 600; color: var(--color-primary);
    margin: var(--space-sm) 0; padding-top: var(--space-sm);
    border-top: 1px solid var(--color-gray-200);
}
.location-card__hours svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-accent); }
.location-card__note { font-size: var(--fs-tiny); color: var(--color-accent); font-style: italic; margin-bottom: var(--space-sm); }
.location-card__reopen { color: var(--color-accent); font-size: var(--fs-small); margin-bottom: var(--space-sm); font-weight: 600; }
.location-card__actions { display: flex; gap: var(--space-xs); flex-wrap: wrap; }
.location-card__body .btn { margin-top: auto; align-self: flex-start; }

/* =============================================================================
   10. FOOD SHOWCASE
   ============================================================================= */

.food-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.food-showcase__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    cursor: default;
    transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out);
}
.food-showcase__item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(204,34,41,0.15), 0 8px 20px rgba(0,0,0,0.08);
}

.food-showcase__item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(30,28,25,0.65) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    transition: background var(--duration-slow) var(--ease-out);
}
.food-showcase__item:hover::before {
    background: linear-gradient(180deg, rgba(184,134,43,0.05) 0%, transparent 30%, rgba(30,28,25,0.55) 100%);
}

.food-showcase__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.4s var(--ease-out), filter var(--duration-slow) var(--ease-out);
    filter: saturate(1.05);
}
.food-showcase__item:hover img {
    transform: scale(1.12);
    filter: brightness(1.05) saturate(1.15) contrast(1.02);
}

.food-showcase__label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--space-xl) var(--space-md) var(--space-md);
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--fs-body);
    letter-spacing: var(--ls-wide);
    z-index: 2;
    transform: translateY(4px);
    transition: transform var(--duration-slow) var(--ease-out);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.food-showcase__item:hover .food-showcase__label {
    transform: translateY(0);
}

.food-showcase__catering {
    border-top: 1px solid var(--color-gray-200);
    padding-top: var(--space-lg);
}

/* =============================================================================
   11. GALLERY
   ============================================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-sm);
}
/* Pinterest-like varied heights */
.gallery-grid .gallery-item:nth-child(3n+1) { aspect-ratio: 3/4; }
.gallery-grid .gallery-item:nth-child(3n+2) { aspect-ratio: 4/3; }
.gallery-grid .gallery-item:nth-child(3n+3) { aspect-ratio: 1/1; }

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out);
}
.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.4s var(--ease-out), filter var(--duration-slow) var(--ease-out);
}
.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.04) saturate(1.06);
}

.gallery-item__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(204,34,41,0.25) 100%);
    opacity: 0;
    display: flex; align-items: center; justify-content: center;
    transition: opacity var(--duration-slow) var(--ease-out);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg {
    width: 40px; height: 40px; color: var(--color-white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transform: scale(0.8);
    transition: transform var(--duration) var(--ease-spring);
}
.gallery-item:hover .gallery-item__overlay svg { transform: scale(1); }

.gallery-grid--large { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-md); }
.gallery-grid--large .gallery-item { aspect-ratio: 4/3; height: auto; }
/* Reset varied heights for large grid */
.gallery-grid--large .gallery-item:nth-child(3n+1),
.gallery-grid--large .gallery-item:nth-child(3n+2),
.gallery-grid--large .gallery-item:nth-child(3n+3) { aspect-ratio: 4/3; }

.gallery-grid--large .gallery-item img,
.gallery-grid .gallery-item img {
    aspect-ratio: unset;
    object-position: center;
}

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    align-items: center; justify-content: center;
    padding: var(--space-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.lightbox.is-open {
    display: flex;
    animation: lbFadeIn 0.35s var(--ease-out);
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
    transition: transform var(--duration-slow) var(--ease-out);
    animation: lbImgReveal 0.5s var(--ease-dramatic);
}
@keyframes lbImgReveal {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lightbox__close {
    position: absolute;
    top: var(--space-md); right: var(--space-md);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: var(--radius-full);
    width: 48px; height: 48px;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--duration), background var(--duration);
}
.lightbox__close:hover {
    transform: rotate(90deg);
    background: rgba(255,255,255,0.2);
}

.lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: background var(--duration), transform var(--duration);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lightbox__nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.05);
}
.lightbox__prev { left: var(--space-md); }
.lightbox__next { right: var(--space-md); }

.lightbox__caption {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.75);
    font-size: var(--fs-small);
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* =============================================================================
   12. EVENTS
   ============================================================================= */

.events-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.events-split__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.events-split__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.events-split__content h2 { font-size: var(--fs-h2); color: var(--color-primary); margin-bottom: var(--space-sm); }
.events-split__content p { color: var(--color-gray-600); margin-bottom: var(--space-sm); line-height: 1.8; }

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-md);
}

.event-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.event-card__img { height: 200px; overflow: hidden; }
.event-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.event-card:hover .event-card__img img { transform: scale(1.07); }
.event-card__body { padding: var(--space-md); }
.event-card__body h3 { font-size: var(--fs-h3); color: var(--color-primary); margin-bottom: var(--space-xs); }
.event-card__body p { font-size: var(--fs-small); color: var(--color-gray-600); line-height: 1.7; }

.event-detail { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; margin-bottom: var(--space-xl); }
.event-detail--reverse { direction: rtl; }
.event-detail--reverse > * { direction: ltr; }
.event-detail__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.event-detail__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.event-detail__video video { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.event-detail__img img[src*="kontrabass"] { object-position: center top; }
.event-detail__body h2 { font-size: var(--fs-h2); color: var(--color-primary); margin-bottom: var(--space-sm); }
.event-detail__body p { color: var(--color-gray-600); line-height: 1.8; }

/* ── Event Showcase – Cinematic ── */
.event-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.event-showcase__feature {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow-lg);
}
.event-showcase__feature img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.8s var(--ease-out), filter var(--duration-cinematic) var(--ease-out);
}
.event-showcase__feature:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}
/* Dramatic gradient overlay */
.event-showcase__feature::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(204,34,41,0.08) 0%, transparent 30%, rgba(30,28,25,0.7) 100%);
    z-index: 1;
    pointer-events: none;
    transition: background var(--duration-cinematic) var(--ease-out);
}
.event-showcase__feature:hover::before {
    background: linear-gradient(180deg, rgba(184,134,43,0.05) 0%, transparent 40%, rgba(30,28,25,0.6) 100%);
}

.event-showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.event-showcase__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 230px;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.event-showcase__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.event-showcase__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}
.event-showcase__item:hover img { transform: scale(1.10); }
/* Item overlay gradient */
.event-showcase__item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(30,28,25,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.event-showcase__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--space-xl) var(--space-md) var(--space-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--color-white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    z-index: 2;
    transform: translateY(6px);
    transition: transform var(--duration-slow) var(--ease-out);
}
.event-showcase__feature:hover .event-showcase__overlay,
.event-showcase__item:hover .event-showcase__overlay {
    transform: translateY(0);
}
.event-showcase__overlay h3 { font-size: var(--fs-h3); margin-bottom: 0.25rem; color: var(--color-white); }
.event-showcase__overlay p { font-size: var(--fs-small); opacity: 0.9; }

/* =============================================================================
   13. SPEISEKARTE – Tabs & Menu
   ============================================================================= */

.menu-tabs {
    display: flex; gap: var(--space-xs); justify-content: center; flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}
.menu-tab {
    padding: .75rem 1.8rem;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-pill);
    background: var(--color-white);
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
}
.menu-tab:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-soft); }
.menu-tab.is-active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(204,34,41,0.25);
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeSlideIn .5s var(--ease-out); }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.menu-panel__welcome {
    max-width: 700px; margin: 0 auto var(--space-xl); text-align: center;
    font-size: var(--fs-body); color: var(--color-gray-600); line-height: 1.8; font-style: italic;
}

/* Category jump navigation */
.menu-jump {
    display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
    margin-bottom: var(--space-xl); padding: var(--space-md);
    background: var(--color-cream); border-radius: var(--radius-md);
    border: 1px solid var(--color-sand);
}
.menu-jump__item {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .45rem .9rem; font-size: var(--fs-tiny); font-weight: 600;
    color: var(--color-gray-600); background: var(--color-white);
    border: 1px solid var(--color-gray-200); border-radius: var(--radius-pill);
    transition: all var(--duration) var(--ease-out); text-decoration: none;
    white-space: nowrap;
}
.menu-jump__item:hover, .menu-jump__item:focus-visible {
    color: var(--color-primary); border-color: var(--color-primary);
    background: var(--color-primary-soft); transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.menu-jump__icon { display: flex; align-items: center; color: var(--color-accent); }
.menu-jump__icon svg { width: 16px; height: 16px; }

/* Category */
.menu-category { margin-bottom: var(--space-xl); scroll-margin-top: calc(var(--header-height) + var(--space-md)); }
.menu-category__title {
    display: flex; align-items: center; gap: var(--space-xs);
    font-size: var(--fs-h3); color: var(--color-primary); font-weight: 700;
    padding-bottom: var(--space-xs); margin-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-gray-200); position: relative;
}
.menu-category__icon {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-soft));
    color: var(--color-accent); flex-shrink: 0;
}
.menu-category__icon svg { width: 18px; height: 18px; }
.menu-category__title::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.menu-category__note {
    font-size: var(--fs-small); color: var(--color-gray-400); font-style: italic;
    margin-bottom: var(--space-sm);
}

/* Menu table */
.menu-table { width: 100%; border-collapse: collapse; }
.menu-table th {
    font-size: var(--fs-tiny); font-weight: 700; color: var(--color-gray-400);
    text-transform: uppercase; letter-spacing: .08em; text-align: right;
    padding: var(--space-xs) 0; border-bottom: 1px solid var(--color-gray-200);
}
.menu-table th:first-child { text-align: left; }
.menu-table td { padding: .6rem 0; border-bottom: 1px solid var(--color-gray-100); vertical-align: top; }
.menu-table tr:last-child td { border-bottom: none; }
.menu-table tr { transition: background var(--duration); }
.menu-table tr:hover td { background: var(--color-cream); }
.menu-table__name { display: block; font-weight: 600; color: var(--color-dark); font-size: var(--fs-small); }
.menu-table__desc { display: block; font-size: var(--fs-tiny); color: var(--color-gray-400); line-height: 1.5; margin-top: 2px; }
.menu-table__size { display: block; font-size: var(--fs-tiny); color: var(--color-gray-400); white-space: nowrap; margin-top: 2px; }
.menu-table__price {
    text-align: right; font-weight: 700; color: var(--color-primary);
    font-size: var(--fs-small); white-space: nowrap; padding-left: var(--space-sm);
}

/* Allergen notice */
.menu-allergens {
    margin-top: var(--space-lg); padding: var(--space-sm) var(--space-md);
    background: var(--color-cream); border-radius: var(--radius-sm);
    font-size: var(--fs-tiny); color: var(--color-gray-400); line-height: 1.6;
    border: 1px solid var(--color-sand);
}

/* Menu cards (Teaser on index) */
.menu-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); }
.menu-card {
    background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-card); padding: var(--space-lg); text-align: center;
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.menu-card__icon {
    width: 64px; height: 64px; margin: 0 auto var(--space-sm);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-soft));
    border-radius: var(--radius-md);
}
.menu-card__icon img { width: 36px; height: 36px; object-fit: contain; }
.menu-card h3 { font-size: var(--fs-h3); color: var(--color-primary); margin-bottom: var(--space-xs); }
.menu-card p { font-size: var(--fs-small); color: var(--color-gray-600); margin-bottom: var(--space-sm); }
.menu-notice {
    text-align: center; margin-top: var(--space-md); font-size: var(--fs-small);
    color: var(--color-gray-400); font-style: italic;
}

/* =============================================================================
   14. NEWS / AKTUELL
   ============================================================================= */

.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-md); }

.news-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.news-card__img { aspect-ratio: 16/9; overflow: hidden; }
.news-card__img img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform var(--duration-cinematic) var(--ease-out);
}
.news-card:hover .news-card__img img { transform: scale(1.08); }
.news-card__body { padding: var(--space-md); }
.news-card__date {
    font-size: var(--fs-tiny);
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--ls-caps);
    display: inline-block;
    padding: var(--space-2xs) var(--space-xs);
    background: var(--color-accent-soft);
    border-radius: var(--radius-xs);
}
.news-card__body h3 { font-size: var(--fs-h3); color: var(--color-dark); margin: var(--space-sm) 0 var(--space-xs); }
.news-card__body p { font-size: var(--fs-small); color: var(--color-gray-600); line-height: 1.7; }

/* News list (full page) */
.news-list { max-width: 800px; margin-inline: auto; }
.news-article { margin-bottom: var(--space-xl); padding-bottom: var(--space-xl); border-bottom: 1px solid var(--color-gray-200); }
.news-article:last-child { border-bottom: none; }
.news-article__img { border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-md); }
.news-article__img img { width: 100%; max-height: 400px; object-fit: cover; }
.news-article__date { font-size: var(--fs-tiny); color: var(--color-accent); font-weight: 700; text-transform: uppercase; letter-spacing: var(--ls-caps); }
.news-article__body h2 { font-size: var(--fs-h2); color: var(--color-primary); margin: var(--space-xs) 0 var(--space-sm); }
.news-article__content { font-size: var(--fs-body); color: var(--color-gray-600); line-height: 1.8; }

/* =============================================================================
   15. TEAM
   ============================================================================= */

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-md); }
.team-grid__member { text-align: center; }
.team-grid__photo {
    width: 180px; height: 180px; margin: 0 auto var(--space-sm);
    border-radius: var(--radius-full); overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-white);
    background: var(--color-cream);
}
.team-grid__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-grid__name { font-weight: 700; font-size: var(--fs-body); color: var(--color-dark); margin-bottom: 0.15rem; }
.team-grid__role { font-size: var(--fs-small); color: var(--color-accent); font-weight: 600; }
.team-card {
    background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.team-card__img { height: 320px; overflow: hidden; background: var(--color-cream); }
.team-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--duration-cinematic) var(--ease-out);
}
.team-card:hover .team-card__img img { transform: scale(1.05); }
.team-card__placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
}
.team-card__body { padding: var(--space-md); }
.team-card__body h3 { font-size: var(--fs-h3); color: var(--color-dark); margin-bottom: .25rem; }
.team-card__role { font-size: var(--fs-small); color: var(--color-accent); font-weight: 700; margin-bottom: var(--space-sm); }
.team-card__body p:last-child { font-size: var(--fs-small); color: var(--color-gray-600); line-height: 1.7; }

/* =============================================================================
   16. OEFFNUNGSZEITEN
   ============================================================================= */

.hours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--space-md); }
.hours-card {
    background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-lg);
    box-shadow: var(--shadow-card); border-top: 4px solid transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)),
                      linear-gradient(90deg, var(--color-primary), var(--color-accent));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.hours-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.hours-card h2 { font-size: var(--fs-h3); color: var(--color-primary); margin-bottom: var(--space-xs); }
.hours-card__tagline { font-size: var(--fs-small); color: var(--color-gray-400); margin-bottom: var(--space-md); }
.hours-card__reopen { color: var(--color-accent); margin-bottom: var(--space-sm); font-weight: 600; }
.hours-card__note { font-size: var(--fs-small); color: var(--color-gray-400); font-style: italic; margin-top: var(--space-md); padding-top: var(--space-sm); border-top: 1px solid var(--color-gray-200); }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-sm); }
.hours-table td { padding: .5rem 0; font-size: var(--fs-small); border-bottom: 1px solid var(--color-gray-100); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { width: 40%; color: var(--color-dark); font-weight: 600; }
.hours-table td:last-child { color: var(--color-gray-600); }

/* =============================================================================
   17. CONTACT
   ============================================================================= */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.contact-info h2 { font-size: var(--fs-h2); color: var(--color-primary); margin-bottom: var(--space-md); }
.contact-info__item { display: flex; align-items: flex-start; gap: var(--space-sm); margin-bottom: var(--space-md); }
.contact-info__icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-soft));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-primary);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label { font-size: var(--fs-tiny); color: var(--color-gray-400); text-transform: uppercase; letter-spacing: var(--ls-caps); font-weight: 600; }
.contact-info__value { font-size: var(--fs-body); color: var(--color-dark); font-weight: 500; }
.contact-info__value a { color: var(--color-primary); }
.contact-hours { background: var(--color-cream); border-radius: var(--radius-md); padding: var(--space-lg); border: 1px solid var(--color-sand); }
.contact-hours h3 { font-size: var(--fs-h3); color: var(--color-primary); margin-bottom: var(--space-md); }
.contact-hours__item { display: flex; justify-content: space-between; align-items: center; padding: var(--space-xs) 0; border-bottom: 1px solid var(--color-gray-200); }
.contact-hours__item:last-child { border-bottom: none; }
.contact-hours__location { font-weight: 600; color: var(--color-dark); font-size: var(--fs-small); }
.contact-hours__time { font-size: var(--fs-small); color: var(--color-primary); font-weight: 600; }
.contact-map-link { display: inline-flex; align-items: center; gap: var(--space-xs); margin-top: var(--space-md); font-weight: 600; color: var(--color-primary); font-size: var(--fs-body); }
.contact-map-link:hover { color: var(--color-accent); }
.contact-map-link svg { width: 20px; height: 20px; }

/* Contact info (centered – index kontakt section) */
.contact-info p { margin-bottom: var(--space-sm); color: var(--color-gray-600); line-height: 1.8; }
.contact-info a { color: var(--color-primary); font-weight: 500; }
.section--dark .contact-info p { color: rgba(255,255,255,0.85); }
.section--dark .contact-info strong { color: var(--color-white); }
.section--dark .contact-info a { color: var(--color-accent); }
.section--dark .contact-info a:hover { color: var(--color-white); }

/* =============================================================================
   18. FOOTER – Dark, elegant, multi-column
   ============================================================================= */

.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding-top: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

/* Gradient top border */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}

/* Ambient glow */
.site-footer::after {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,134,43,0.06) 0%, transparent 70%);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand img {
    height: 50px;
    margin-bottom: var(--space-sm);
    border-radius: 6px;
    object-fit: contain;
    background: transparent;
}
.footer-brand p { font-size: var(--fs-small); line-height: 1.8; color: rgba(255,255,255,0.72); }

.footer-col h4 {
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: var(--ls-caps);
    margin-bottom: var(--space-sm);
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: var(--fs-small);
    margin-bottom: .6rem;
    transition: color var(--duration), padding-left var(--duration), transform var(--duration);
}
.footer-col a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

.footer-contact p { font-size: var(--fs-small); margin-bottom: .3rem; }
.footer-contact a { color: rgba(255,255,255,0.7); display: inline; }
.footer-contact a:hover { color: var(--color-accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-md) 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: var(--space-sm);
}
.footer-bottom p { font-size: var(--fs-tiny); color: rgba(255,255,255,0.35); }
.footer-bottom__links { display: flex; gap: var(--space-md); }
.footer-bottom__links a { font-size: var(--fs-tiny); color: rgba(255,255,255,0.35); }
.footer-bottom__links a:hover { color: rgba(255,255,255,0.8); }

/* ── Payment icons ── */
.footer-payment { margin-bottom: var(--space-xl); padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-payment h4 { font-size: var(--fs-small); font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: var(--ls-caps); margin-bottom: var(--space-sm); }
.payment-icons { display: flex; gap: var(--space-md); flex-wrap: wrap; align-items: center; }
.payment-icon {
    display: flex; align-items: center; gap: var(--space-xs);
    color: rgba(255,255,255,0.5);
    transition: color var(--duration), transform var(--duration);
}
.payment-icon:hover {
    color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}
.payment-icon svg { width: 36px; height: 36px; }
.payment-icon span { font-size: var(--fs-small); }

/* ── Footer Social with glow ── */
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-small);
    transition: color var(--duration), text-shadow var(--duration);
}
.footer-social:hover {
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(184,134,43,0.4);
}
.footer-social svg { width: 20px; height: 20px; }

/* =============================================================================
   19. MOBILE STICKY CTA
   ============================================================================= */

.mobile-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--color-gray-200);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: var(--space-xs) var(--space-md);
    padding-bottom: max(var(--space-xs), env(safe-area-inset-bottom));
}
.mobile-cta__inner { display: flex; gap: var(--space-xs); }
.mobile-cta .btn { flex: 1; justify-content: center; padding-block: .75rem; font-size: var(--fs-small); }

/* =============================================================================
   20. SUBPAGE HEADER
   ============================================================================= */

.page-header {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-off-white) 50%, var(--color-white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
    opacity: 0.3;
}
.page-header h1 { font-size: var(--fs-h1); color: var(--color-primary); margin-bottom: var(--space-xs); }
.page-header p { color: var(--color-gray-600); max-width: 600px; margin-inline: auto; }

/* =============================================================================
   21. LEGAL PAGES
   ============================================================================= */

.legal-content { max-width: 800px; margin-inline: auto; padding-block: var(--space-xl); }
.legal-content h1 { font-size: var(--fs-h1); color: var(--color-primary); margin-bottom: var(--space-md); }
.legal-content h2 { font-size: var(--fs-h3); color: var(--color-primary); margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.legal-content p { margin-bottom: var(--space-sm); color: var(--color-gray-600); line-height: 1.8; }
.legal-content ul { margin: var(--space-sm) 0 var(--space-sm) var(--space-md); }
.legal-content ul li { list-style: disc; color: var(--color-gray-600); margin-bottom: .3rem; }
.legal-content a { color: var(--color-primary); text-decoration: underline; }

/* =============================================================================
   22. ORDER START MODAL
   ============================================================================= */

.order-modal-overlay {
    position: fixed; inset: 0; z-index: 1999;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeSlideIn .25s var(--ease-out);
}

.order-start-modal {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    width: 90%; max-width: 420px;
    box-shadow: var(--shadow-2xl);
    animation: modalPop .35s var(--ease-spring);
    text-align: center;
}
@keyframes modalPop {
    from { opacity: 0; transform: translate(-50%, -46%) scale(0.92); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.order-start-modal__close {
    position: absolute; top: var(--space-sm); right: var(--space-sm);
    background: var(--color-gray-100); border: none; border-radius: var(--radius-full);
    width: 36px; height: 36px;
    font-size: 1.3rem; color: var(--color-gray-400);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: color var(--duration), background var(--duration), transform var(--duration);
}
.order-start-modal__close:hover {
    color: var(--color-dark);
    background: var(--color-gray-200);
    transform: rotate(90deg);
}

.order-start-modal__icon {
    display: flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-soft));
    border-radius: var(--radius-lg); color: var(--color-primary);
}
.order-start-modal h2 { font-size: var(--fs-h2); color: var(--color-primary); margin-bottom: var(--space-xs); }
.order-start-modal p { color: var(--color-gray-600); font-size: var(--fs-small); margin-bottom: var(--space-lg); }
.order-start-modal__field { text-align: left; margin-bottom: var(--space-md); }
.order-start-modal__field label {
    display: block; font-weight: 700; font-size: var(--fs-small); color: var(--color-dark);
    margin-bottom: .3rem;
}
.order-start-modal__field select,
.order-start-modal__field input {
    width: 100%; padding: .85rem 1rem; font-size: var(--fs-body);
    border: 2px solid var(--color-gray-200); border-radius: var(--radius-sm);
    font-family: inherit; color: var(--color-dark);
    transition: border-color var(--duration), box-shadow var(--duration);
    background: var(--color-white);
}
.order-start-modal__field select:focus,
.order-start-modal__field input:focus {
    border-color: var(--color-primary); outline: none;
    box-shadow: 0 0 0 4px rgba(204,34,41,0.1);
}
.order-start-modal__field small { display: block; font-size: var(--fs-tiny); color: var(--color-gray-400); margin-top: .3rem; }

/* =============================================================================
   23. SCROLL ANIMATIONS
   ============================================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-dramatic),
                transform var(--duration-slow) var(--ease-dramatic);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Stagger children ── */
.reveal-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-dramatic), transform 0.5s var(--ease-dramatic);
}
.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 0.48s; }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 0.60s; }
.reveal-children.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-children > * { opacity: 1; transform: none; transition: none; }
}

/* =============================================================================
   24. SECTION DIVIDERS
   ============================================================================= */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding-block: var(--space-md);
    overflow: hidden;
    position: relative;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
    opacity: 0.35;
}
.section-divider__icon {
    width: 10px; height: 10px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    opacity: 0.6;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(184,134,43,0.2);
}
/* Wave SVG divider variant */
.section-divider--wave {
    padding: 0; height: 80px; display: block;
}
.section-divider--wave::before,
.section-divider--wave::after { display: none; }
.section-divider--wave svg {
    width: 100%; height: 100%;
    display: block;
}

/* =============================================================================
   25. WAVE DIVIDERS
   ============================================================================= */

.wave-separator {
    position: relative; height: 60px; overflow: hidden; background: transparent;
}
.wave-separator svg { position: absolute; bottom: 0; width: 100%; height: 60px; }
.section--dark + .section .wave-separator,
.section--dark + .wave-separator { background: var(--color-dark); }

.wave-divider {
    position: relative; height: 60px; overflow: hidden; margin-top: -1px;
}
.wave-divider--dark-to-light {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-warm) 50%, var(--color-dark-mid) 100%);
}
.wave-divider--light-to-dark { background: var(--color-cream); }
.wave-divider svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }

/* =============================================================================
   26. SCROLL-TO-TOP BUTTON
   ============================================================================= */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 800;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    border: none;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(204,34,41,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity var(--duration) var(--ease-out),
                visibility var(--duration) var(--ease-out),
                transform var(--duration) var(--ease-out),
                background var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
}
.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(204,34,41,0.45);
}
.scroll-to-top:active {
    transform: translateY(-2px) scale(0.98) !important;
}
.scroll-to-top svg { width: 22px; height: 22px; }

/* =============================================================================
   27. KONTAKT SECTION – Parallax
   ============================================================================= */

#kontakt {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
#kontakt::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(30,28,25,0.6) 0%, rgba(30,28,25,0.75) 100%);
    z-index: 0;
    pointer-events: none;
}
#kontakt > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
    #kontakt { background-attachment: scroll; }
}

/* =============================================================================
   28. IMAGE FALLBACKS & LOADING
   ============================================================================= */

/* Broken image fallback: Use background-color on img element instead (more reliable) */

/* Shimmer loading for lazy images */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
img[loading="lazy"] {
    background: linear-gradient(90deg, var(--color-cream) 25%, var(--color-sand) 50%, var(--color-cream) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s var(--ease-in-out) infinite;
}

/* No-image fallback */
.location-card__img:empty,
.event-card__img:empty,
.news-card__img:empty {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-soft));
    min-height: 180px;
}

/* Header logo containment */
.site-header__logo img { object-fit: contain; }

/* TODO marker */
.todo-marker {
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent);
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    color: var(--color-accent);
    display: block;
    margin: var(--space-sm) 0;
}

/* =============================================================================
   29. RESPONSIVE – Mobile first approach
   ============================================================================= */

@media (max-width: 1280px) {
    .highlights-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .about-split { grid-template-columns: 1fr; gap: var(--space-lg); }
    .about-split--reverse .about-split__images { order: 1; }
    .about-split--reverse .about-split__text { order: 2; }
    .about-split__images { height: 360px; }
    .about-split__text .section__title,
    .about-split__text .section__subtitle { text-align: center; }
    .about-split__text .section__title::after { margin-left: auto; }
    .about-split__text { text-align: center; }
    .atmosphere-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
    .event-showcase { grid-template-columns: 1fr; }
    .event-showcase__feature { min-height: 350px; }
    .food-showcase { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about, .events-split, .event-detail { grid-template-columns: 1fr; }
    .event-detail--reverse { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .locations-grid, .location-grid { grid-template-columns: 1fr 1fr; }
    .highlights-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-header__nav, .site-header__cta { display: none; }
    .hamburger { display: block; min-width: 44px; min-height: 44px; }
    .mobile-nav { display: block; }
    .mobile-cta { display: block; }
    body { padding-bottom: 70px; }

    .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
    .hero__subtitle { font-size: 1rem; }
    .hero__content { padding: var(--space-lg) var(--space-sm); }

    .section { padding-block: var(--space-xl); }
    .section__title { font-size: clamp(1.5rem, 4.5vw, 1.9rem); }
    .section__subtitle { font-size: var(--fs-body); margin-bottom: var(--space-lg); }

    .highlights-row { grid-template-columns: 1fr; }
    .locations-grid, .location-grid { grid-template-columns: 1fr; }
    .location-grid { gap: var(--space-md); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .hours-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Footer touch-friendly links */
    .footer-col a { min-height: 44px; display: flex; align-items: center; padding-block: 0.5rem; margin-bottom: 0; }
    .footer-contact a { min-height: 44px; display: inline-flex; align-items: center; }
    .footer-bottom__links { gap: var(--space-lg); }
    .footer-bottom__links a { min-height: 44px; display: inline-flex; align-items: center; }

    /* Menu tabs: horizontal scroll with snap */
    .menu-tabs { gap: .4rem; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; justify-content: flex-start; padding-bottom: var(--space-xs); scrollbar-width: none; -ms-overflow-style: none; }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab { scroll-snap-align: start; flex-shrink: 0; }

    /* Menu jump nav: horizontal scroll with snap */
    .menu-jump { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; justify-content: flex-start; padding: var(--space-sm); gap: .35rem; scrollbar-width: none; -ms-overflow-style: none; }
    .menu-jump::-webkit-scrollbar { display: none; }
    .menu-jump__item { scroll-snap-align: start; flex-shrink: 0; padding: .5rem .8rem; font-size: .75rem; min-height: 44px; }
    .menu-jump__icon svg { width: 14px; height: 14px; }
    .menu-category__icon { width: 28px; height: 28px; }
    .menu-category__icon svg { width: 15px; height: 15px; }
    .menu-tab { padding: .6rem 1.2rem; font-size: var(--fs-tiny); min-height: 44px; }

    /* Menu table mobile: readable layout */
    .menu-table td { padding: .75rem .25rem; font-size: var(--fs-small); }
    .menu-table__name { font-size: var(--fs-small); }
    .menu-table__desc { font-size: max(0.75rem, 12px); }
    .menu-table__price { font-size: var(--fs-small); padding-left: var(--space-xs); min-width: 60px; }
    .menu-table th { font-size: max(0.7rem, 11px); padding: var(--space-xs) .25rem; }

    .payment-icons { gap: var(--space-sm); }
    .about-split__images { height: 280px; grid-template-columns: 1fr 1fr; }
    .atmosphere-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
    .food-showcase { grid-template-columns: 1fr 1fr; }
    .food-showcase__item { aspect-ratio: 3/2; }
    .event-showcase__grid { grid-template-columns: 1fr 1fr; }
    .event-showcase__feature { min-height: 250px; }
    .gallery-grid--large { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid--large .gallery-item { aspect-ratio: 4/3; height: auto; }
    .news-card__img { aspect-ratio: 16/9; }

    .scroll-to-top { bottom: 5rem; right: 1rem; width: 46px; height: 46px; }
    .hero__slider-dots { display: none; }

    /* CTA buttons full width on mobile */
    .hero__buttons .btn { width: 100%; justify-content: center; }
    .hero__buttons { flex-direction: column; align-items: stretch; }

    /* Lightbox mobile */
    .lightbox__nav { padding: var(--space-xs) var(--space-sm); }
    .lightbox__prev { left: var(--space-xs); }
    .lightbox__next { right: var(--space-xs); }
    .lightbox { padding: var(--space-sm); }
    .lightbox__img { max-width: 100vw; max-height: 80vh; border-radius: var(--radius-sm); }

    /* Location picker cards: stack on mobile */
    .location-picker__grid { grid-template-columns: 1fr; max-width: 400px; }
    .location-picker__card { padding: var(--space-md); min-height: 44px; }

    /* Cookie banner mobile */
    .cookie-banner { padding-bottom: max(var(--space-md), env(safe-area-inset-bottom)); }
    .cookie-banner__inner { flex-direction: column; text-align: center; gap: var(--space-sm); padding-inline: var(--space-sm); }
    .cookie-banner p { font-size: var(--fs-small); min-width: unset; }
    .cookie-banner .btn { min-height: 44px; width: 100%; justify-content: center; }

    /* Order modal mobile */
    .order-start-modal { width: 95%; padding: var(--space-lg) var(--space-md); border-radius: var(--radius-lg); }
    .order-start-modal__close { width: 44px; height: 44px; }

    /* Safe area for notch phones */
    .mobile-cta { padding-bottom: max(var(--space-xs), env(safe-area-inset-bottom)); }
    .mobile-cta .btn { min-height: 44px; }

    /* Speisekarte detail modal: full width, slide from bottom */
    .sk-detail-modal { max-width: 100%; border-radius: 1.25rem 1.25rem 0 0; padding: 1.5rem 1rem 2rem; }
    .sk-detail-modal__close { width: 44px; height: 44px; }

    /* Allergen legend responsive */
    .menu-allergen-legend__grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

    /* Ensure 44px minimum touch targets for all interactive elements */
    .btn, button, [role="button"], a.btn {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .atmosphere-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .atmosphere-grid__item--wide { grid-column: span 1; }
    .food-showcase { grid-template-columns: 1fr; }
    .food-showcase__item { aspect-ratio: 4/3; }
    .event-showcase__grid { grid-template-columns: 1fr; }
    .gallery-grid--large { grid-template-columns: 1fr; }
    .gallery-grid--large .gallery-item { aspect-ratio: 4/3; height: auto; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero__buttons, .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__buttons .btn, .hero__cta .btn { width: 100%; justify-content: center; }
    .team-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .menu-table__price { padding-left: var(--space-xs); }
    .about-split__images { height: 220px; }

    /* Better container padding on small phones */
    .container { padding-inline: var(--space-sm); }

    /* Hero fine-tuning for small screens */
    .hero__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .hero__subtitle { font-size: 0.9rem; line-height: 1.5; }
    .hero__scroll-hint { display: none; }

    /* Page header small screens */
    .page-header h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .page-header p { font-size: var(--fs-small); }

    /* Section title & subtitle */
    .section__title { font-size: clamp(1.3rem, 5vw, 1.7rem); }

    /* About images stack vertically on very small */
    .about-split__images { grid-template-columns: 1fr; height: auto; gap: var(--space-xs); }
    .about-split__img { height: 200px; }

    /* Image break smaller */
    .image-break__quote { font-size: clamp(1rem, 4.5vw, 1.4rem); padding: 0 var(--space-sm); }

    /* Menu CTA full width */
    .menu-cta__btn { width: 100%; justify-content: center; }

    /* Location picker on tiny screens */
    .location-picker__grid { gap: var(--space-sm); }

    /* Contact section buttons stack */
    .contact-info--glass .btn { width: 100%; justify-content: center; }
    .contact-info__buttons { flex-direction: column; }
    .contact-info__buttons .btn { width: 100%; justify-content: center; }
}

/* =============================================================================
   30. HERO VIDEO – Cinematic fullscreen video background
   ============================================================================= */

.hero--video {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--color-dark);
}

.hero--video .hero__video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero--video .hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Cinematic overlay gradient: dark from bottom, transparent top */
.hero--video .hero__video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(20,18,15,0.35) 100%),
        linear-gradient(
            180deg,
            rgba(20,18,15,0.20) 0%,
            transparent 20%,
            transparent 50%,
            rgba(20,18,15,0.40) 75%,
            rgba(20,18,15,0.70) 100%
        );
    pointer-events: none;
}

/* Letterbox bars for cinema feel */
.hero--video::before,
.hero--video::after {
    content: none; /* Override parent hero wave */
}

.hero--video .hero__content {
    position: relative;
    z-index: 3;
}

.hero--video .hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.0;
    text-shadow: 0 4px 60px rgba(0,0,0,0.6), 0 2px 20px rgba(0,0,0,0.4);
}

.hero--video .hero__subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    letter-spacing: 0.02em;
}

/* Smooth transition from video to slides */
.hero--video .hero__slides {
    opacity: 0;
    transition: opacity 2s var(--ease-in-out);
}
.hero--video.video-ended .hero__slides {
    opacity: 1;
}
.hero--video.video-ended .hero__video {
    opacity: 0;
    transition: opacity 2s var(--ease-in-out);
}

/* Enhanced Ken Burns after video */
@keyframes kenBurnsPost1 {
    0%   { transform: scale(1.00) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, -1.5%); }
}
@keyframes kenBurnsPost2 {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.12) translate(1.5%, -1%); }
}
@keyframes kenBurnsPost3 {
    0%   { transform: scale(1.08) translate(-1%, 1%); }
    100% { transform: scale(1.00) translate(0, 0); }
}

.hero--video.video-ended .hero__slide.active {
    animation: kenBurnsPost1 10s var(--ease-in-out) forwards;
}
.hero--video.video-ended .hero__slide.active:nth-child(2n) {
    animation-name: kenBurnsPost2;
}
.hero--video.video-ended .hero__slide.active:nth-child(3n) {
    animation-name: kenBurnsPost3;
}

/* Video progress bar */
.hero__video-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    z-index: 4;
    transition: width 0.3s linear;
    border-radius: 0 2px 2px 0;
}

/* Skip video button */
.hero__video-skip {
    position: absolute;
    bottom: var(--space-xl);
    right: var(--space-lg);
    z-index: 5;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-small);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    letter-spacing: var(--ls-wide);
}
.hero__video-skip:hover {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Wave at hero bottom – reapply for video hero */
.hero--video .hero__wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 70px;
    z-index: 4;
}
.hero--video .hero__wave svg {
    width: 100%; height: 100%; display: block;
}

@media (prefers-reduced-motion: reduce) {
    .hero--video .hero__video video { animation: none; }
    .hero--video.video-ended .hero__slide.active { animation: none; }
}

@media (max-width: 768px) {
    .hero--video .hero__title { font-size: clamp(2rem, 8vw, 3.2rem); }
    .hero--video .hero__video-skip { bottom: var(--space-lg); right: var(--space-md); }
}

/* =============================================================================
   31. PARALLAX & IMAGE-PARALLAX
   ============================================================================= */

.image-parallax {
    overflow: hidden;
    position: relative;
}
.image-parallax img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateY(-10%);
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Section-level parallax background */
.section--parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
@media (max-width: 768px) {
    .section--parallax { background-attachment: scroll; }
}

/* =============================================================================
   32. CINEMATIC TEXT & TYPOGRAPHY
   ============================================================================= */

.cinematic-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--color-dark);
    text-wrap: balance;
}
.cinematic-text--light {
    color: var(--color-white);
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.cinematic-text--accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle text reveal animation */
.text-reveal {
    overflow: hidden;
}
.text-reveal__inner {
    display: block;
    transform: translateY(110%);
    transition: transform var(--duration-cinematic) var(--ease-dramatic);
}
.text-reveal.is-visible .text-reveal__inner {
    transform: translateY(0);
}

/* =============================================================================
   33. IMAGE BREAK – Fullwidth cinematic image between sections
   ============================================================================= */

.image-break {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.image-break img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center 30%;
    transform: translateY(-15%);
    will-change: transform;
}

.image-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20,18,15,0.72) 0%,
        rgba(20,18,15,0.60) 30%,
        rgba(20,18,15,0.58) 60%,
        rgba(20,18,15,0.75) 100%
    );
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
}

.image-break__text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--space-lg);
    max-width: 800px;
}

.image-break__quote {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: var(--ls-tight);
    color: #fff;
    text-shadow:
        0 1px 3px rgba(0,0,0,0.9),
        0 3px 10px rgba(0,0,0,0.8),
        0 6px 30px rgba(0,0,0,0.6),
        0 0 60px rgba(0,0,0,0.4);
    margin-bottom: var(--space-sm);
    font-style: italic;
    -webkit-font-smoothing: antialiased;
    max-width: 800px;
}
.image-break__quote::before { content: '\201E'; }
.image-break__quote::after { content: '\201C'; }

.image-break__attribution {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Small decorative line above attribution */
.image-break__attribution::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: var(--space-sm) auto;
}

@media (max-width: 768px) {
    .image-break { height: 40vh; min-height: 280px; background-attachment: scroll; }
    .image-break__quote { font-size: clamp(1.2rem, 5vw, 1.8rem); }
}

/* =============================================================================
   34. GLASSMORPHISM CONTACT CARD
   ============================================================================= */

.glass-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(30px) saturate(1.4);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
}

/* Dark variant for use over light backgrounds */
.glass-card--dark {
    background: rgba(30,28,25,0.7);
    border-color: rgba(255,255,255,0.08);
    color: var(--color-white);
}
.glass-card--dark h2, .glass-card--dark h3 { color: var(--color-white); }
.glass-card--dark p { color: rgba(255,255,255,0.8); }
.glass-card--dark a { color: var(--color-accent); }

/* Contact section with glass card */
.kontakt-glass {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: var(--space-2xl) var(--space-md);
}
.kontakt-glass .glass-card {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* =============================================================================
   35. STAGGERED GRID ANIMATIONS
   ============================================================================= */

/* Staggered card reveal for grids */
.stagger-grid > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-dramatic), transform 0.6s var(--ease-dramatic);
}
.stagger-grid.is-visible > *:nth-child(1)  { transition-delay: 0.0s; }
.stagger-grid.is-visible > *:nth-child(2)  { transition-delay: 0.08s; }
.stagger-grid.is-visible > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger-grid.is-visible > *:nth-child(4)  { transition-delay: 0.24s; }
.stagger-grid.is-visible > *:nth-child(5)  { transition-delay: 0.32s; }
.stagger-grid.is-visible > *:nth-child(6)  { transition-delay: 0.40s; }
.stagger-grid.is-visible > *:nth-child(7)  { transition-delay: 0.48s; }
.stagger-grid.is-visible > *:nth-child(8)  { transition-delay: 0.56s; }
.stagger-grid.is-visible > *:nth-child(9)  { transition-delay: 0.64s; }
.stagger-grid.is-visible > *:nth-child(10) { transition-delay: 0.72s; }
.stagger-grid.is-visible > *:nth-child(11) { transition-delay: 0.80s; }
.stagger-grid.is-visible > *:nth-child(12) { transition-delay: 0.88s; }
.stagger-grid.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .stagger-grid > * { opacity: 1; transform: none; transition: none; }
}

/* Scale-in variant */
.stagger-grid--scale > * {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition: opacity 0.5s var(--ease-dramatic), transform 0.5s var(--ease-spring);
}
.stagger-grid--scale.is-visible > * {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* =============================================================================
   36. FLOATING DECORATIVE ELEMENTS
   ============================================================================= */

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-15px) rotate(2deg); }
}
@keyframes floatMedium {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%      { transform: translateY(-10px) rotate(-1.5deg); }
    66%      { transform: translateY(-5px) rotate(1deg); }
}

.deco-float {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
    z-index: 0;
}
.deco-float--1 {
    width: 300px; height: 300px;
    border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    animation: floatSlow 12s var(--ease-in-out) infinite;
}
.deco-float--2 {
    width: 200px; height: 200px;
    border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
    background: var(--color-accent);
    animation: floatMedium 10s var(--ease-in-out) infinite;
}

@media (prefers-reduced-motion: reduce) {
    .deco-float { animation: none; }
}

/* =============================================================================
   37. ENHANCED REVEAL ANIMATIONS
   ============================================================================= */

/* Fade in from left */
.reveal--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--duration-slow) var(--ease-dramatic),
                transform var(--duration-slow) var(--ease-dramatic);
}
.reveal--left.is-visible { opacity: 1; transform: translateX(0); }

/* Fade in from right */
.reveal--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--duration-slow) var(--ease-dramatic),
                transform var(--duration-slow) var(--ease-dramatic);
}
.reveal--right.is-visible { opacity: 1; transform: translateX(0); }

/* Scale reveal */
.reveal--scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--duration-cinematic) var(--ease-dramatic),
                transform var(--duration-cinematic) var(--ease-spring);
}
.reveal--scale.is-visible { opacity: 1; transform: scale(1); }

/* Clip reveal (bottom-up wipe) */
.reveal--clip {
    clip-path: inset(100% 0 0 0);
    transition: clip-path var(--duration-cinematic) var(--ease-dramatic);
}
.reveal--clip.is-visible { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
    .reveal--left, .reveal--right, .reveal--scale { opacity: 1; transform: none; transition: none; }
    .reveal--clip { clip-path: none; transition: none; }
}

/* =============================================================================
   38. TABLET-SPECIFIC BREAKPOINT (768px – 1024px)
   ============================================================================= */

@media (min-width: 769px) and (max-width: 1024px) {
    /* Better spacing on tablets */
    .container { padding-inline: var(--space-lg); }

    /* Hero adjustments */
    .hero__title { font-size: clamp(2.4rem, 6vw, 3.5rem); }
    .hero__subtitle { font-size: clamp(1rem, 2vw, 1.2rem); }

    /* 2-column grids optimized for tablet */
    .food-showcase { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
    .food-showcase__item { aspect-ratio: 3/2; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid .gallery-item:nth-child(3n+1),
    .gallery-grid .gallery-item:nth-child(3n+2),
    .gallery-grid .gallery-item:nth-child(3n+3) { aspect-ratio: 4/3; }

    .location-card__image { aspect-ratio: 16/9; }

    .event-showcase__feature { min-height: 320px; }

    /* Ensure no horizontal overflow */
    .image-break { height: 40vh; }
    .image-break__quote { font-size: clamp(1.3rem, 3vw, 2rem); }

    /* Touch-friendly spacing */
    .btn { padding: 1rem 2rem; min-height: 48px; }
    .menu-tab { min-height: 48px; padding: .8rem 1.5rem; }

    /* About split on tablet */
    .about-split__images { height: 340px; }
}

/* =============================================================================
   39. PERFORMANCE & CONTAINMENT
   ============================================================================= */

/* Lazy section containment */
.section[data-lazy] {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Optimized will-change – apply only on hover/interaction */
.location-card:hover,
.food-showcase__item:hover,
.event-card:hover,
.news-card:hover,
.gallery-item:hover {
    will-change: transform;
}

/* GPU acceleration for animations */
.hero__slide,
.hero--video .hero__video video {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Smooth 60fps transitions */
.hero__slide,
.lightbox,
.mobile-nav {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* =============================================================================
   40. ENHANCED SECTION WAVE DIVIDERS (SVG)
   ============================================================================= */

.wave-divider--organic {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-top: -1px;
}
.wave-divider--organic svg {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
}

/* Double wave variant */
.wave-divider--double {
    height: 100px;
}

/* =============================================================================
   41. RESPONSIVE MOBILE IMPROVEMENTS
   ============================================================================= */

@media (max-width: 768px) {
    /* No horizontal scroll prevention */
    html, body { overflow-x: hidden; max-width: 100vw; }

    /* Better image sizing on mobile */
    .location-card__image { aspect-ratio: 16/10; }

    .event-showcase__feature { min-height: 260px; }

    /* Touch-optimized interaction targets – 44px minimum everywhere */
    .btn { min-height: 48px; }
    .menu-tab { min-height: 44px; }
    .gallery-item { min-height: 44px; }

    /* Disable hover effects that cause sticky states on touch */
    .location-card:hover { transform: none; }
    .food-showcase__item:hover { transform: none; }
    .highlight-card:hover { transform: none; }
    .event-card:hover { transform: none; }
    .news-card:hover { transform: none; }
    .gallery-item:hover { transform: none; }
    .location-card:active { transform: scale(0.98); }
    .food-showcase__item:active { transform: scale(0.98); }

    /* Image break mobile */
    .image-break { height: 35vh; min-height: 250px; }
    .image-break { background-attachment: scroll; }

    /* Glass card mobile */
    .glass-card { padding: var(--space-lg); border-radius: var(--radius-lg); }

    /* Gallery on mobile: uniform aspect ratio */
    .gallery-grid .gallery-item:nth-child(3n+1),
    .gallery-grid .gallery-item:nth-child(3n+2),
    .gallery-grid .gallery-item:nth-child(3n+3) { aspect-ratio: 4/3; }

    /* Cinematic text mobile */
    .cinematic-text { font-size: clamp(1.8rem, 7vw, 2.8rem); }

    /* Floating decorations hidden on small screens */
    .deco-float { display: none; }

    /* Mobile nav touch targets */
    .mobile-nav__list a { min-height: 44px; display: inline-flex; align-items: center; }
    .mobile-nav__cta .btn { min-height: 48px; }

    /* Speisekarte: clickable rows need clear tap zone */
    .menu-table__row--clickable td { padding: .85rem .4rem; }

    /* Ensure body text never below 14px */
    body { font-size: max(1rem, 14px); }
    .menu-table__desc { font-size: max(0.75rem, 12px); }

    /* Background image on image-break – CSS, not inline – ensure cover */
    .image-break { background-size: cover; background-position: center; }
}

@media (max-width: 480px) {
    .image-break { height: 30vh; min-height: 200px; }
    .glass-card { padding: var(--space-md); }
    .kontakt-glass { min-height: auto; padding: var(--space-xl) var(--space-sm); }
    /* Footer on smallest screens */
    .footer-brand p { font-size: var(--fs-small); }
    .payment-icons { justify-content: center; }
    .payment-icon span { font-size: var(--fs-tiny); }

    /* Menu allergen legend: 1 column on tiny screens */
    .menu-allergen-legend__grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   42. PRINT
   ============================================================================= */

@media print {
    .site-header, .mobile-cta, .mobile-nav, .hero__scroll-hint, .lightbox,
    .scroll-to-top, .order-modal-overlay, .order-start-modal,
    .hero__buttons, .hero__slider-dots, .btn { display: none !important; }
    body { font-size: 12pt; color: #000; padding: 0; }
    .section { padding-block: 1rem; }
    a { color: #000; text-decoration: underline; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
    .hero { min-height: auto; padding: 2rem 0; }
}

/* =============================================================================
   42. EVENTS-GALERIE
   ============================================================================= */

.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 260px;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}
.events-gallery--uniform {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: var(--space-md);
}

.events-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: block;
}

.events-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out), filter 0.5s;
}
.events-gallery--uniform .events-gallery__item {
    aspect-ratio: 4/3;
    height: auto;
}
.events-gallery--uniform .events-gallery__item img {
    aspect-ratio: 4/3;
}

.events-gallery__item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

.events-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,28,25,0.85) 0%, rgba(30,28,25,0.3) 40%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.events-gallery__item:hover .events-gallery__overlay {
    opacity: 1;
}

.events-gallery__overlay span {
    color: var(--color-white);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* Breite Items (2 Spalten) */
.events-gallery__item--wide {
    grid-column: span 2;
}

/* Hohe Items (2 Reihen) */
.events-gallery__item--tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .events-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: var(--space-xs);
    }
    .events-gallery--uniform {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: var(--space-sm);
    }
    .events-gallery__item--wide {
        grid-column: span 2;
    }
    .events-gallery__item--tall {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .events-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .events-gallery--uniform {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    .events-gallery__item--wide {
        grid-column: span 1;
    }
}

/* =============================================================================
   PRINT STYLES
   ============================================================================= */
@media print {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    body { background: #fff; color: #000; font-size: 12pt; line-height: 1.5; }
    .site-header, .site-footer, .mobile-nav, .hamburger, .hero__video,
    .hero__scroll-hint, .hero__slider-dots, .btn, .cookie-banner,
    .mobile-cta, .scroll-top, .section-divider, video { display: none !important; }
    .image-break { height: auto !important; min-height: 0 !important; page-break-inside: avoid; }
    .image-break__overlay { position: static; background: var(--color-cream); padding: 1rem; }
    .image-break__quote { color: #000; text-shadow: none; font-size: 1.1rem; }
    .image-break__quote::before, .image-break__quote::after { color: #999; }
    .container { max-width: 100%; padding: 0 1cm; }
    .section { padding: 1rem 0; }
    .section--dark, .section--cream { background: #fff !important; }
    .section--dark h2, .section--dark p, .section--dark a { color: #000 !important; }
    a { color: #000; text-decoration: underline; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
    a[href^="tel:"]::after, a[href^="mailto:"]::after, a[href^="#"]::after,
    a[href^="javascript:"]::after, .btn::after { content: none; }
    img { max-width: 100% !important; page-break-inside: avoid; }
    h2, h3 { page-break-after: avoid; color: #000; }
    .gallery-grid, .events-gallery, .atmosphere-grid { display: none; }
    .contact-glass-wrap { background: #fff !important; backdrop-filter: none !important; padding: 1rem 0 !important; }
    .contact-glass-wrap * { color: #000 !important; }
}
