/* ============================================
   Grill & Snack MORINA — morina-grill.de
   Farben: Schwarz + Gold #FDB92E
   ============================================ */

:root {
    --gold: #FDB92E;
    --gold-dark: #d99a10;
    --black: #0a0a0a;
    --black-soft: #121212;
    --black-card: #181818;
    --grey: #9a9a9a;
    --grey-light: #cfcfcf;
    --white: #ffffff;
    --font-head: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 14px;
    --shadow: 0 12px 40px rgba(0, 0, 0, .45);
    --transition: all .3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--grey-light);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1.15;
    text-transform: uppercase;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag::before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 18px;
}

.section-title span { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: 55px; }

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center .section-tag::after {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--gold);
}

section { padding: 95px 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .5px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ---------- Header / Navigation ---------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
    border-bottom: 1px solid rgba(253, 185, 46, .15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.header.scrolled .logo-img { height: 29px; }

.footer .logo-img { height: 30px; }

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--gold);
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.logo-icon svg { width: 26px; height: 26px; }

.logo-text {
    font-family: var(--font-head);
    font-size: 1.55rem;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text small {
    display: block;
    font-family: var(--font-body);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    font-weight: 500;
    font-size: .95rem;
    color: var(--grey-light);
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.nav-cta .btn { padding: 11px 26px; font-size: .85rem; }

/* ---------- Sprachumschalter ---------- */
.lang-switch {
    position: relative;
    flex-shrink: 0;
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(253, 185, 46, .35);
    border-radius: 50px;
    padding: 8px 14px;
    color: var(--grey-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: var(--transition);
}

.lang-current:hover { border-color: var(--gold); color: var(--gold); }

.flag {
    display: inline-flex;
    flex-shrink: 0;
}

.flag svg {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: block;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .15);
}

.lang-current .chev {
    width: 13px;
    height: 13px;
    transition: var(--transition);
}

.lang-switch.open .chev { transform: rotate(180deg); }

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--black-card);
    border: 1px solid rgba(253, 185, 46, .3);
    border-radius: 12px;
    padding: 8px;
    min-width: 160px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 1100;
}

.lang-switch.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li { list-style: none; }

.lang-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--grey-light);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.lang-menu button:hover { background: rgba(253, 185, 46, .1); color: var(--gold); }

.lang-menu button.active { color: var(--gold); font-weight: 600; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    padding: 135px 0 65px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 45% at 82% 15%, rgba(253, 185, 46, .13), transparent),
        radial-gradient(ellipse 40% 35% at 5% 90%, rgba(253, 185, 46, .07), transparent),
        var(--black);
}

.hero::before {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(253, 185, 46, .16);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 440px;
    height: 440px;
    border: 1px dashed rgba(253, 185, 46, .12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-facts {
    display: flex;
    gap: 48px;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-fact strong {
    font-family: var(--font-head);
    font-size: 2.1rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hero-fact span {
    font-size: .78rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-visual { position: relative; }

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 24px -24px -24px 24px;
    border: 2px solid rgba(253, 185, 46, .35);
    border-radius: 26px;
    z-index: -1;
}

.hero-photo {
    height: 430px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(253, 185, 46, .25);
    box-shadow: var(--shadow);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(205deg, transparent 55%, rgba(10, 10, 10, .55));
}

.hero-chip {
    position: absolute;
    z-index: 3;
    background: rgba(18, 18, 18, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(253, 185, 46, .35);
    border-radius: 14px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    animation: floaty 5s ease-in-out infinite;
}

.hero-chip svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.hero-chip strong {
    color: var(--white);
    font-size: .9rem;
    display: block;
    line-height: 1.3;
}

.hero-chip small {
    color: var(--grey);
    font-size: .74rem;
}

.hero-chip .stars-inline {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: .85rem;
    line-height: 1;
}

.hero-chip-rating { top: 28px; left: -36px; }

.hero-chip-hours { bottom: 36px; right: -18px; animation-delay: 2.5s; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(253, 185, 46, .12);
    border: 1px solid rgba(253, 185, 46, .4);
    color: var(--gold);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 22px;
}

.hero h1 span { color: var(--gold); }

.hero p {
    font-size: 1.1rem;
    color: var(--grey-light);
    max-width: 560px;
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 60px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-info-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.hero-info-item strong {
    display: block;
    color: var(--white);
    font-size: .95rem;
}

.hero-info-item small {
    color: var(--grey);
    font-size: .8rem;
}

/* ---------- Page Hero (Unterseiten) ---------- */
.page-hero {
    padding: 200px 0 110px;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, .8), rgba(10, 10, 10, .95)),
        url('../images/menu-hero.jpg') center/cover no-repeat;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
    max-width: 560px;
    margin: 14px auto 0;
    color: var(--grey-light);
}

.breadcrumb {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--grey);
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb a { color: var(--gold); }

/* ---------- Feature Cards ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.feature-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 185, 46, .45);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: rgba(253, 185, 46, .1);
    border: 1px solid rgba(253, 185, 46, .35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg { stroke: var(--black); }

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: .92rem;
    color: var(--grey);
}

/* ---------- Specials / Dish Cards ---------- */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.dish-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 185, 46, .45);
    box-shadow: var(--shadow);
}

.dish-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.dish-card:hover .dish-img img { transform: scale(1.08); }

.dish-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--black);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.dish-body { padding: 26px; }

.dish-body h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.dish-body p {
    font-size: .9rem;
    color: var(--grey);
    margin-bottom: 16px;
}

.dish-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px;
}

.dish-price {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.dish-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--grey-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.dish-link:hover { color: var(--gold); gap: 10px; }

/* ---------- About Split ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.split-img {
    position: relative;
    border-radius: var(--radius);
}

.split-img > img {
    border-radius: var(--radius);
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.split-img::before {
    content: "";
    position: absolute;
    inset: -18px auto auto -18px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -14px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius);
    padding: 22px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge strong {
    font-family: var(--font-head);
    font-size: 2.4rem;
    display: block;
    line-height: 1;
}

.experience-badge span {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.split-content .section-head { margin-bottom: 26px; }

.check-list { margin: 26px 0 34px; }

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--grey-light);
}

.check-list svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ---------- Stats Band ---------- */
.stats-band {
    background: var(--gold);
    padding: 55px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: var(--black);
    letter-spacing: 1px;
}

.stat p {
    color: rgba(10, 10, 10, .75);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- Menü-Seite ---------- */
.menu-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.menu-filter button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--grey-light);
    padding: 12px 22px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .88rem;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.menu-filter button svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--gold);
    transition: var(--transition);
}

.menu-filter button:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.menu-filter button.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 22px rgba(253, 185, 46, .3);
}

.menu-filter button.active svg { stroke: var(--black); }

.menu-section { margin-bottom: 70px; }

/* Übergeordnete Gruppe, z. B. "Grill & Spezialitäten" */
.menu-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 42px;
    font-family: var(--font-head);
    font-size: 1.05rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

.menu-group::before,
.menu-group::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(253, 185, 46, .35);
}

.menu-section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
}

.menu-section-title svg {
    width: 34px;
    height: 34px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.menu-section-title h2 {
    font-size: 2rem;
}

.menu-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(253, 185, 46, .5), transparent);
}

.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 50px;
}

.menu-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.menu-item:hover {
    background: var(--black-card);
    border-color: rgba(253, 185, 46, .3);
}

.menu-item-body { flex: 1; }

.menu-item-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.menu-item-head h4 {
    font-size: 1.15rem;
    letter-spacing: 1px;
    /* lange Namen wie "Morina Grillplatte Groß (1500 g)" duerfen umbrechen */
    min-width: 0;
}

.menu-item-head .dots {
    flex: 1;
    border-bottom: 2px dotted rgba(255, 255, 255, .2);
    transform: translateY(-4px);
}

.menu-item-head .price {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: var(--gold);
    white-space: nowrap;
}

.menu-item p {
    font-size: .85rem;
    color: var(--grey);
    margin-top: 4px;
}

.menu-note {
    text-align: center;
    background: var(--black-card);
    border: 1px dashed rgba(253, 185, 46, .4);
    border-radius: var(--radius);
    padding: 28px;
    color: var(--grey);
    font-size: .9rem;
}

.menu-note strong { color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.testimonial {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 34px 30px;
    transition: var(--transition);
}

.testimonial:hover {
    border-color: rgba(253, 185, 46, .4);
    transform: translateY(-6px);
}

.stars {
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.testimonial p {
    font-style: italic;
    font-size: .95rem;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-size: 1.3rem;
}

.testimonial-author strong {
    color: var(--white);
    display: block;
    font-size: .95rem;
}

.testimonial-author small { color: var(--grey); }

/* ---------- CTA Band ---------- */
.cta-band {
    background: linear-gradient(rgba(10, 10, 10, .82), rgba(10, 10, 10, .82)),
        url('../images/grill-fleisch.jpg') center/cover fixed no-repeat;
    text-align: center;
    padding: 110px 0;
}

.cta-band h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 16px;
}

.cta-band h2 span { color: var(--gold); }

.cta-band p {
    max-width: 540px;
    margin: 0 auto 36px;
}

.cta-phone {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gold);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
    transition: var(--transition);
}

.cta-phone:hover { transform: scale(1.05); }

.cta-phone svg { width: 34px; height: 34px; stroke: var(--gold); }

/* ---------- Kontakt ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 20px;
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 26px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-card:hover { border-color: rgba(253, 185, 46, .4); }

.contact-card .icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: rgba(253, 185, 46, .1);
    border: 1px solid rgba(253, 185, 46, .35);
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.contact-card .icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.contact-card p, .contact-card a { color: var(--grey); font-size: .92rem; }

.contact-card a:hover { color: var(--gold); }

.hours-table { width: 100%; }

.hours-table li {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: .95rem;
}

.hours-table li:last-child { border-bottom: none; }

.hours-table span:first-child { color: var(--grey-light); font-weight: 500; }

.hours-table span:last-child { color: var(--gold); font-weight: 600; }

.contact-form {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 44px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--grey);
    font-size: .92rem;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--grey-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(253, 185, 46, .15);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-alert {
    display: none;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 22px;
    font-size: .93rem;
    font-weight: 500;
    line-height: 1.5;
}

.form-alert.success {
    display: block;
    background: rgba(76, 217, 133, .1);
    border: 1px solid rgba(76, 217, 133, .45);
    color: #6fdfa0;
}

.form-alert.error {
    display: block;
    background: rgba(224, 92, 92, .1);
    border: 1px solid rgba(224, 92, 92, .45);
    color: #e57373;
}

.map-wrap {
    margin-top: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(253, 185, 46, .25);
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(1) invert(.9) contrast(.9);
}

.map-wrap iframe[hidden] { display: none; }

.map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 70px 24px;
    background: var(--black-card);
}

.map-consent svg {
    width: 46px;
    height: 46px;
    stroke: var(--gold);
}

.map-consent p {
    max-width: 480px;
    color: var(--grey);
    font-size: .9rem;
}

/* ---------- Cookie Banner (DSGVO) ---------- */
.cookie-banner {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1300;
    max-width: 420px;
    background: var(--black-card);
    border: 1px solid rgba(253, 185, 46, .4);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: .85rem;
    color: var(--grey);
    margin-bottom: 16px;
}

.cookie-banner p a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: .85rem;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 78px;
        max-width: none;
        padding: 18px;
    }
}

/* ---------- Galerie ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 260px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(10, 10, 10, .85));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

/* ---------- Footer ---------- */
.footer {
    background: var(--black-soft);
    border-top: 1px solid rgba(253, 185, 46, .15);
    padding: 75px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer h4 {
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.footer-about p {
    color: var(--grey);
    font-size: .9rem;
    margin: 18px 0 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: var(--grey-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.social-links a:hover svg { fill: var(--black); }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--grey);
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a::before {
    content: "›";
    color: var(--gold);
    font-weight: 700;
}

.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--grey);
    font-size: .9rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    color: var(--grey);
}

.footer-bottom a { color: var(--gold); }

/* ---------- Parallax ---------- */
@media (min-width: 901px) {
    .page-hero,
    .parallax-band,
    .cta-band {
        background-attachment: fixed;
    }
}

.page-hero .container {
    will-change: transform, opacity;
}

.parallax-band {
    background: linear-gradient(rgba(10, 10, 10, .78), rgba(10, 10, 10, .78)),
        url('../images/restaurant.jpg') center/cover no-repeat;
    text-align: center;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.parallax-band::before,
.parallax-band::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.parallax-band::before { top: 0; }
.parallax-band::after { bottom: 0; }

.parallax-band h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.parallax-band h2 span { color: var(--gold); }

.parallax-band p {
    max-width: 560px;
    margin: 0 auto 34px;
    font-size: 1.05rem;
}

/* Sanfte Schwebe-Animation für Hero-Badge */
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge { animation: floaty 4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
    .hero-badge { animation: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Scroll-to-top ---------- */
.to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
    box-shadow: var(--shadow);
}

.to-top.show { opacity: 1; visibility: visible; }

.to-top:hover { transform: translateY(-4px); }

.to-top svg { width: 22px; height: 22px; stroke: var(--black); }

/* ---------- Floating Call Button (Mobile) ---------- */
.call-fab { display: none; }

@keyframes call-pulse {
    0%, 100% { box-shadow: 0 -6px 25px rgba(0, 0, 0, .45), 0 -2px 12px rgba(253, 185, 46, .25); }
    50% { box-shadow: 0 -6px 25px rgba(0, 0, 0, .45), 0 -4px 26px rgba(253, 185, 46, .6); }
}

@media (max-width: 900px) {
    .call-fab {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 950;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--gold);
        color: var(--black);
        font-weight: 700;
        font-size: 1.05rem;
        letter-spacing: .5px;
        padding: 16px 20px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        border-radius: 0;
        white-space: nowrap;
        box-shadow: 0 -6px 25px rgba(0, 0, 0, .45);
        animation: call-pulse 2.5s infinite;
    }

    .call-fab svg {
        width: 20px;
        height: 20px;
        stroke: var(--black);
        flex-shrink: 0;
    }

    .call-fab:active { background: var(--gold-dark); }

    /* "Nach oben"-Button höher setzen, damit er nicht kollidiert */
    .to-top { bottom: 76px; }

    /* Platz am Seitenende, damit die Leiste nichts verdeckt */
    .footer { padding-bottom: 60px; }
}

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

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 800px; }

.legal-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 14px;
    color: var(--gold);
}

.legal-content p { margin-bottom: 14px; color: var(--grey); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .split { gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { gap: 50px; }
    .hero-photo { height: 440px; }
    .hero-chip-rating { left: -12px; }
    .hero-chip-hours { right: -8px; }
}

@media (max-width: 900px) {
    /* Mobilmenü als Dropdown direkt unter dem Header (kein Vollbild-Overlay) */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(14, 14, 14, .98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(253, 185, 46, .18);
        border-bottom: 1px solid rgba(253, 185, 46, .18);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
        padding: 6px 0;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
        z-index: 1050;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        font-size: 1.05rem;
        padding: 15px 26px;
    }

    .nav-menu a + a { border-top: 1px solid rgba(255, 255, 255, .07); }

    .nav-menu a::after { display: none; }

    .nav-menu a.active { background: rgba(253, 185, 46, .08); }

    .nav-toggle { display: flex; }

    .nav-cta { display: none; }

    /* Sprachumschalter mobil: zwischen Logo und Menü-Button */
    .lang-switch { margin-left: auto; margin-right: 14px; }

    .lang-current { padding: 7px 11px; font-size: .8rem; }

    .split { grid-template-columns: 1fr; }

    .split-img > img { height: 400px; }

    .hero { padding: 130px 0 70px; }

    .hero-grid { grid-template-columns: 1fr; gap: 55px; }

    .hero-photo { height: 360px; }

    .hero-visual::before { inset: 14px -14px -14px 14px; }

    .hero-chip-rating { top: 16px; left: 14px; }

    .hero-chip-hours { bottom: 18px; right: 14px; }

    .contact-grid { grid-template-columns: 1fr; }

    .menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .menu-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .menu-filter button {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
        padding: 13px 8px;
        font-size: .8rem;
    }

    .menu-filter button:first-child { grid-column: 1 / -1; }

    .menu-filter button:hover { transform: none; }
}

@media (max-width: 600px) {
    section { padding: 65px 0; }

    .hero { padding-top: 115px; }

    .hero-facts { gap: 24px; flex-wrap: wrap; }

    .hero-fact strong { font-size: 1.7rem; }

    .hero-photo { height: 300px; }

    .hero-chip { padding: 10px 14px; }

    .logo-img { height: 29px; }

    .page-hero { padding: 160px 0 80px; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form { padding: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 35px; }

    .footer-bottom { justify-content: center; text-align: center; }

    .experience-badge { padding: 16px 20px; right: 4px; }

    .experience-badge strong { font-size: 1.8rem; }

    .cta-band { background-attachment: scroll; }

    .parallax-band { padding: 90px 0; }
}
