/* ============================================================
   BALUGA COCKTAILBAR — styles.css
   Referenz: nachbar-berlin.com
   Stil: Puristisch dunkel · Mittig · Gross · Club-Atmosphäre
   Palette: #0a0a0a (BG) · #ffffff (Text) · #7ec840 (Lime)
   Fonts: Cormorant Garamond (Display) · Montserrat (UI)
   ============================================================ */

/* ── RESET & BASICS ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    --bg:           #0a0a0a;
    --bg-card:      #111111;
    --bg-section:   #0f0f0f;
    --bg-light:     #161616;
    --gold:         #7ec840;
    --gold-light:   #9fd95a;
    --gold-dim:     rgba(126, 200, 64, 0.2);
    --white:        #ffffff;
    --grey:         rgba(255,255,255,0.55);
    --grey-dim:     rgba(255,255,255,0.3);
    --line:         rgba(255,255,255,0.08);
    --teal:         #1eb8a0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

a { text-decoration: none; color: inherit; }
em { font-family: 'Cormorant Garamond', serif; font-style: italic; }
strong { font-weight: 700; }
img, picture { display: block; }

/* ── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--dim  { color: var(--grey-dim); }

/* ── SECTION HEAD ───────────────────────────────────────────── */
.section-head {
    text-align: center;
    margin-bottom: 5rem;
}
.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 1rem;
}
.section-head h2 em { color: var(--gold-light); }
.section-sub {
    font-size: 0.9rem;
    color: var(--grey);
    max-width: 500px;
    margin: 0.75rem auto 0;
    line-height: 1.85;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
    text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 1rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
    height: 51px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1);
    transition: opacity 0.2s;
}
.logo-img:hover { opacity: 0.8; }
.nav-menu { display: flex; margin-left: auto; }
.nav-menu a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey);
    padding: 0.45rem 0.85rem;
    transition: color 0.2s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0.85rem; right: 0.85rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.cta-button {
    flex-shrink: 0;
    background: transparent;
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.55rem 1.25rem;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background 0.2s, color 0.2s;
}
.cta-button:hover { background: var(--gold); color: #0a0a0a; }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.7);
}
/* .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.1) 100%),
        linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.0)  0%, rgba(10,10,10,0.7) 100%);
} */
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 5rem 32px 5rem 8vw;
    max-width: 780px;
    text-align: left;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.hero h1 em {
    display: block;
    color: var(--gold-light);
}
.hero-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 0 3rem;
    line-height: 1.9;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.25);
    font-size: 0.9rem;
    animation: bounce 2.5s ease-in-out infinite;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}

/* ── STRIP ──────────────────────────────────────────────────── */
.strip {
    background: var(--bg-card);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.3rem 2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
    border-right: 1px solid var(--line);
}
.strip-item:last-child { border-right: none; }
.strip-item i { color: var(--gold); font-size: 0.95rem; }

/* ── SPLIT SECTIONS ─────────────────────────────────────────── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 55vh;
}
/* --reverse: DOM order is [image, content] → image left, content right */
.split-section--reverse .split-image { order: -1; }

.split-content {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Inhalt gravitiert zur Mitte (rechte Kante des linken Panels) */
}
.split-section--reverse .split-content {
    align-items: flex-start; /* Inhalt gravitiert zur Mitte (linke Kante des rechten Panels) */
}
.split-inner {
    padding: 8rem 5rem 8rem 6rem;
    width: 100%;
    max-width: 640px;
}
.split-section--reverse .split-inner {
    padding: 8rem 6rem 8rem 5rem;
}
.split-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 2rem;
}
.split-headline em { display: block; color: var(--gold-light); }
.split-inner > p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 1rem;
}
.split-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
}
.split-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.split-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.18);
    z-index: 1;
}
.split-image-badge {
    position: absolute;
    z-index: 2;
    bottom: 3rem;
    left: 3rem;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: var(--gold);
    color: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    border: 3px solid var(--bg);
}
.badge-since { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.badge-year { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-loc { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.08em; }

/* ── PARALLAX BREAK ─────────────────────────────────────────── */
.parallax-break {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#happyhour { min-height: 42vh; }
#pb-mittwoch { min-height: 80vh; }
.parallax-break__bg {
    position: absolute;
    inset: -25% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    filter: brightness(0.32) saturate(0.55);
}
.parallax-break__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0);
    z-index: 1;
}
.parallax-break__text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
}
.pb-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.pb-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 700;
    line-height: 0.88;
    color: var(--white);
}
.pb-headline em { display: block; color: var(--gold-light); }

/* ── ÜBER UNS (Merkmale im Split-Panel) ─────────────────────── */
.ueber-merkmale {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
    text-align: center;
}
.merkmal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-dim);
    line-height: 1.5;
}
.merkmal i { font-size: 1.2rem; color: var(--gold); margin-bottom: 0.1rem; }

/* ── COCKTAILKARTE ──────────────────────────────────────────── */
.karte-section { padding: 10rem 0; background: var(--bg-section); }
.karte-header { text-align: center; padding: 0 32px; margin-bottom: 3rem; }
.karte-titel {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 1rem;
}
.karte-sub { font-size: 0.88rem; font-weight: 300; color: var(--grey); max-width: 420px; margin: 1rem auto 0; }

.karte-tabs { display: flex; justify-content: center; border-bottom: 1px solid var(--line); margin-bottom: 4rem; }
.karte-tab {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey-dim);
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 2.5rem;
    position: relative;
    transition: color 0.2s;
}
.karte-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.karte-tab:hover { color: var(--grey); }
.karte-tab.active { color: var(--white); }
.karte-tab.active::after { transform: scaleX(1); }

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

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}
.drinks-grid--3 { grid-template-columns: repeat(4, 1fr); }
.drink-card { background: var(--bg); transition: background 0.3s; }
.drink-card:hover { background: var(--bg-light); }
.drink-img { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-card); }
.drink-img img, .drink-img picture { height: 100%; }
.drink-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.75);
    transition: transform 0.55s, filter 0.35s;
}
.drink-card:hover .drink-img img { transform: scale(1.05); filter: brightness(0.95) saturate(0.9); }
.drink-body { padding: 1.75rem; }
.drink-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; margin-bottom: 0.65rem; }
.drink-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--white); }
.drink-head h3 em { font-size: 0.85em; }
.drink-preis { font-size: 0.85rem; font-weight: 700; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.drink-body > p { font-size: 0.8rem; font-weight: 300; color: var(--grey); line-height: 1.75; margin-bottom: 1rem; }
.drink-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.tag { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.55rem; border: 1px solid transparent; }
.tag--frisch  { color: var(--teal); border-color: rgba(30,184,160,0.3); background: rgba(30,184,160,0.08); }
.tag--house   { color: var(--gold-light); border-color: rgba(126,200,64,0.3); background: rgba(126,200,64,0.08); }
.tag--stark   { color: #e07090; border-color: rgba(200,80,100,0.3); background: rgba(200,80,100,0.08); }
.tag--beliebt { color: var(--grey); border-color: var(--line); }
.drink-card--light { background: var(--bg-card); }
.drink-card--light .drink-body { padding: 2rem; }
.drink-card--light .drink-head h3 { font-size: 1.5rem; }

.klassiker-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 4rem; }
.klassiker-gruppe { padding: 0 0 1.5rem; }
.gruppe-titel {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.gruppe-titel i { font-size: 0.85rem; color: var(--gold); }
.klassiker-items { display: flex; flex-direction: column; }
.klassiker-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
}
.klassiker-item:last-child { border-bottom: none; }
.k-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.1rem; }
.k-desc { display: block; font-size: 0.75rem; font-weight: 300; color: var(--grey-dim); }
.k-preis { font-size: 0.82rem; font-weight: 700; color: var(--gold); white-space: nowrap; flex-shrink: 0; padding-top: 0.2rem; }

/* ── HAPPY HOUR (im Split-Panel) ────────────────────────────── */
.happyhour-text { margin-bottom: 3rem; }
.happyhour-text > p { font-size: 0.9rem; font-weight: 300; color: var(--grey); line-height: 1.9; margin-bottom: 1rem; }
.happyhour-note {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.78rem !important;
    color: var(--grey-dim) !important;
    font-style: italic;
    max-width: 460px;
}
.happyhour-note i { color: var(--gold); flex-shrink: 0; margin-top: 0.18rem; }
/* Vertikale Stapelung der drei Slots im Split-Content */
.happyhour-slots--vertical {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
}
.happyhour-slots--vertical .slot {
    border-right: none;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 2rem 2.5rem;
    text-align: left;
}
.happyhour-slots--vertical .slot:last-child { border-bottom: none; }
.happyhour-slots--vertical .slot-time-block {
    min-width: 130px;
    flex-shrink: 0;
}
.happyhour-slots--vertical .slot-tage {
    border-top: none;
    width: auto;
    text-align: left;
    padding-top: 0;
    margin-top: 0;
}
/* Fallback für horizontale Darstellung (für andere Verwendung) */
.happyhour-slots {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid var(--line);
}
.slot {
    padding: 3rem 2rem;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: background 0.3s;
}
.slot:last-child { border-right: none; }
.slot:hover { background: var(--bg-light); }
.slot--mid { background: var(--bg-card); }
.slot-zeit { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.slot-zeit span { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 500; color: var(--grey-dim); vertical-align: baseline; margin-left: 0.2rem; }
.slot-tage { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; padding-top: 0.75rem; border-top: 1px solid var(--line); width: 100%; text-align: center; }

/* ── EVENTS ─────────────────────────────────────────────────── */
.events-section {
    padding: 10rem 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}
.events-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.events-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: saturate(1.4) blur(1px);
    transform: scale(1.05); /* verhindert blur-Rand */
}
.events-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--bg-section) 0%,
        rgba(15,15,15,0.7) 20%,
        rgba(15,15,15,0.7) 80%,
        var(--bg-section) 100%
    );
}
.events-section .container {
    position: relative;
    z-index: 1;
}
.events-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--line);
}
.event-card { background: var(--bg); padding: 2.5rem; display: flex; flex-direction: column; gap: 0.65rem; transition: background 0.3s; }
.event-card:hover { background: var(--bg-light); }
.event-card--main { grid-row: 1 / 3; }
.event-card--main h3 { font-size: 2rem; }
.event-tag-wrap { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.event-cat { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(126,200,64,0.35); padding: 0.2rem 0.65rem; }
.event-featured { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: var(--gold); color: #0a0a0a; padding: 0.2rem 0.65rem; }
.event-date-block { display: flex; align-items: baseline; gap: 0.35rem; }
.event-day { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: rgba(255,255,255,0.08); line-height: 1; }
.event-card--main .event-day { font-size: 5.5rem; }
.event-month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.event-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1.15; }
.event-card p { font-size: 0.83rem; font-weight: 300; color: var(--grey); line-height: 1.75; flex: 1; }
.event-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: 0.72rem; font-weight: 500; color: var(--grey-dim); padding-top: 0.75rem; border-top: 1px solid var(--line); }
.event-meta i { color: var(--gold); margin-right: 0.3rem; }
.events-hinweis { text-align: center; margin-top: 3rem; font-size: 0.78rem; font-weight: 300; color: var(--grey-dim); }
.events-hinweis i { color: var(--gold); margin-right: 0.4rem; }

/* ── SERVICE ────────────────────────────────────────────────── */
.service-section { padding: 10rem 0; background: var(--bg); text-align: center; }
.service-section .section-head { margin-bottom: 5rem; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.service-item {
    padding: 3.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
}
.service-item:hover { background: var(--bg-card); }
.service-icon {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(126,200,64,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: var(--gold);
    font-size: 1.5rem;
    transition: background 0.3s, border-color 0.3s;
}
.service-item:hover .service-icon { background: var(--gold-dim); border-color: var(--gold); }
.service-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.service-item p { font-size: 0.82rem; font-weight: 300; color: var(--grey); line-height: 1.8; max-width: 260px; margin: 0 auto; }

/* ── VIBES ──────────────────────────────────────────────────── */
.vibes-section { display: grid; grid-template-columns: 5fr 7fr; min-height: 65vh; }
.vibes-statement {
    background: var(--gold);
    color: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
}
.vibes-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14rem;
    font-weight: 700;
    line-height: 0.7;
    color: rgba(10,10,10,0.1);
    position: absolute;
    top: 2rem;
    left: 2rem;
    pointer-events: none;
    user-select: none;
}
blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; color: #0a0a0a; position: relative; z-index: 1; }
.vibes-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; background: var(--bg); }
.vibes-img { overflow: hidden; background: var(--bg-card); }
.vibes-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) saturate(0.65); transition: transform 0.6s, filter 0.4s; }
.vibes-img:hover img { transform: scale(1.04); filter: brightness(0.88) saturate(0.8); }

/* ── RESERVIERUNG ───────────────────────────────────────────── */
.reservieren-section { padding: 10rem 0; background: var(--bg-section); }
.reservieren-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 7rem; align-items: start; }
.reservieren-info h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; line-height: 0.9; color: var(--white); margin-bottom: 2rem; }
.reservieren-info h2 em { color: var(--gold-light); }
.reservieren-info > p { font-size: 0.9rem; font-weight: 300; color: var(--grey); line-height: 1.9; margin-bottom: 2.5rem; }
.info-blocks { display: flex; flex-direction: column; gap: 1.75rem; }
.info-block { display: flex; gap: 1.25rem; align-items: flex-start; }
.info-block > i { color: var(--gold); font-size: 0.9rem; width: 16px; flex-shrink: 0; margin-top: 0.2rem; }
.info-block strong { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.info-block p { font-size: 0.87rem; font-weight: 300; color: var(--grey); line-height: 1.7; }
.reservieren-form { background: var(--bg-card); border: 1px solid var(--line); padding: 3rem; }
.reservieren-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold-light); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 0.6rem; }
.reservieren-form h3 i { font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-bottom: 2px solid rgba(255,255,255,0.14);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--white);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); background: var(--bg-light); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-success { display: flex; align-items: center; gap: 0.75rem; background: rgba(30,184,160,0.07); border: 1px solid rgba(30,184,160,0.25); padding: 1rem 1.25rem; margin-top: 1rem; font-size: 0.82rem; font-weight: 500; color: var(--teal); }
.form-success i { font-size: 1rem; flex-shrink: 0; }
.form-success[hidden] { display: none !important; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: #050505; border-top: 1px solid var(--line); padding: 7rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 5rem; border-bottom: 1px solid var(--line); }
.footer-logo { display: flex; align-items: center; margin-bottom: 1.25rem; }
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.85;
}
.footer-brand > p { font-size: 0.83rem; font-weight: 300; color: var(--grey-dim); line-height: 1.8; margin-bottom: 1.75rem; max-width: 240px; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--grey-dim); font-size: 0.78rem; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.footer-social a:hover { color: var(--gold-light); border-color: var(--gold); background: var(--gold-dim); }
.footer-col h4 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a, .footer-col a { font-size: 0.83rem; font-weight: 300; color: var(--grey-dim); transition: color 0.2s; }
.footer-col ul li a:hover, .footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.83rem; font-weight: 300; color: var(--grey-dim); line-height: 1.85; margin-bottom: 0.3rem; }
.footer-bottom { padding: 1.75rem 0; text-align: center; }
.footer-bottom p { font-size: 0.72rem; font-weight: 300; color: rgb(255, 255, 255); }
.footer-bottom a { color: #eb7005;; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── DISCLAIMER ─────────────────────────────────────────────── */
.escape-disclaimer { background: #030303; padding: 1rem 0; border-top: 1px solid rgba(126,200,64,0.1); }
.escape-disclaimer__inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.72rem; font-weight: 300; color: rgba(255, 255, 255, 0.807); line-height: 1.65; }
.escape-disclaimer__inner i { color: rgb(115, 255, 0); flex-shrink: 0; margin-top: 0.14rem; }
.escape-disclaimer__inner strong { font-weight: 600; color: rgb(115, 255, 0); }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.3); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* ── FADE-IN ────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .drinks-grid { grid-template-columns: 1fr 1fr; }
    .drinks-grid--3 { grid-template-columns: 1fr 1fr; }
    .klassiker-list { grid-template-columns: 1fr; gap: 2rem; }
    .events-grid { grid-template-columns: 1fr 1fr; background: none; gap: 1px; }
    .event-card--main { grid-column: 1 / -1; grid-row: auto; }
    .vibes-section { grid-template-columns: 1fr; min-height: auto; }
    .vibes-statement { padding: 5rem 4rem; }
    .vibes-images { grid-template-columns: 1fr 1fr; min-height: 400px; }
}

@media (max-width: 900px) {
    /* Split Sections: stapleln */
    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .split-section--reverse .split-image { order: -1; }
    .split-image { min-height: 58vw; }
    .split-image-bg { inset: 0; transform: none !important; } /* Kein JS-Parallax auf Mobile */
    .split-inner {
        padding: 5rem 3rem;
        max-width: 100%;
    }
    .split-section--reverse .split-inner { padding: 5rem 3rem; }
    .split-headline { font-size: clamp(2.5rem, 6vw, 3.5rem); }
    /* Parallax Break */
    .parallax-break { min-height: 45vw; }
    .parallax-break__bg { inset: 0; transform: none !important; }
    /* Über uns Merkmale */
    .ueber-merkmale { grid-template-columns: repeat(2, 1fr); }
    /* Service / Form */
    .service-grid { grid-template-columns: 1fr 1fr; }
    .reservieren-inner { grid-template-columns: 1fr; gap: 4rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .cta-button  { display: none; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: rgba(10,10,10,1);
        border-bottom: 1px solid var(--line);
        padding: 1rem;
        z-index: 499;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 0.85rem 1rem; font-size: 0.82rem; border-bottom: 1px solid var(--line); }
    .nav-menu a:last-child { border-bottom: none; }
    .nav-menu a::after { display: none; }
    .hero { min-height: 60vh; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-inner { padding: 4rem 2rem; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .strip { flex-direction: column; }
    .strip-item { border-right: none; border-bottom: 1px solid var(--line); justify-content: center; padding: 1rem; }
    .strip-item:last-child { border-bottom: none; }
    .drinks-grid, .drinks-grid--3 { grid-template-columns: 1fr; }
    .karte-tabs { overflow-x: auto; justify-content: flex-start; }
    .karte-tab { padding: 0.85rem 1.5rem; }
    .events-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .karte-section, .events-section, .service-section, .reservieren-section { padding: 6rem 0; }
    .split-inner { padding: 4rem 2rem; }
    .parallax-break { min-height: 55vw; }
    .pb-headline { font-size: clamp(2.5rem, 10vw, 4.5rem); }
    .happyhour-slots--vertical .slot { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1.5rem; }
    .vibes-statement { padding: 4rem 2.5rem; }
    blockquote { font-size: 1.8rem; }
    .vibes-images { min-height: 300px; }
    .reservieren-form { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .ueber-merkmale { grid-template-columns: repeat(2, 1fr); }
    .split-image-badge { width: 88px; height: 88px; bottom: 1.5rem; left: 1.5rem; }
    .badge-year { font-size: 1.7rem; }
    .btn { font-size: 0.65rem; padding: 0.85rem 1.75rem; }
}
