/* ═══════════════════════════════════════════════════════════════
   FRÜHSTÜCKSCAFÉ ALBSTADT  ·  STYLES
   Brand colours pulled from the logo:
     · Charcoal / Schwarz   #0F0F10
     · Reinweiß             #FFFFFF
     · Logo-Gold (Ocker)    #C8972A
     · Highlight-Gold       #E8B84B
     · Cream Hintergrund    #F8F3EA
   ═══════════════════════════════════════════════════════════════ */

:root {
    --black:        #0F0F10;
    --black-soft:   #1A1A1C;
    --black-deep:   #0A0A0B;
    --white:        #FFFFFF;
    --gold:         #C8972A;
    --gold-light:   #E8B84B;
    --gold-deep:    #9C7320;
    --cream:        #F8F3EA;
    --cream-dark:   #EFE5D2;
    --gray-100:     #F5F5F5;
    --gray-300:     #D6D6D6;
    --gray-500:     #8B8B8B;
    --gray-700:     #444446;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius:       14px;
    --radius-sm:    8px;
    --radius-lg:    24px;

    --shadow-xs:    0 2px 6px rgba(0,0,0,.08);
    --shadow-sm:    0 6px 20px rgba(0,0,0,.10);
    --shadow-md:    0 14px 40px rgba(0,0,0,.16);
    --shadow-lg:    0 24px 60px rgba(0,0,0,.20);
    --shadow-gold:  0 12px 32px rgba(200,151,42,.35);

    --ease:         cubic-bezier(.4,0,.2,1);
    --nav-h:        106px;
    --status-h:     38px;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { list-style: none; }
em { font-style: italic; color: var(--gold); }

.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 40px);
}

/* ═════════════════════════════════════════════════════════════════
   STATUS BAR (top)
   ═════════════════════════════════════════════════════════════════ */
#status-bar {
    background: var(--black-deep);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    border-bottom: 1px solid rgba(200,151,42,.18);
    min-height: var(--status-h);
    display: flex;
    align-items: center;
    padding-block: .35rem;
    position: relative;
    z-index: 999;
}
.status-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem;
    text-align: center;
}
.status-divider { color: rgba(255,255,255,.25); }
.status-link {
    color: rgba(255,255,255,.85);
    transition: color .2s var(--ease);
    white-space: nowrap;
}
.status-link:hover { color: var(--gold-light); }
.status-link i { color: var(--gold); margin-right: .35rem; }

#status-text strong { color: var(--white); font-weight: 600; }
#status-text .dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: .35rem;
    vertical-align: middle;
}
.dot-green { background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,.6); }
.dot-amber { background: #fbbf24; box-shadow: 0 0 8px rgba(251,191,36,.6); }
.dot-red   { background: #f87171; box-shadow: 0 0 8px rgba(248,113,113,.6); }

/* ═════════════════════════════════════════════════════════════════
   NAVIGATION
   ═════════════════════════════════════════════════════════════════ */
#navbar {
    position: sticky;
    top: 0;
    z-index: 998;
    background: rgba(15,15,16,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200,151,42,.10);
    transition: all .3s var(--ease);
    height: var(--nav-h);
}
#navbar.scrolled {
    background: rgba(10,10,11,.97);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.nav-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Top row: logo + CTA ── */
.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 1rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    height: 62px;
    flex-shrink: 0;
    transition: transform .3s var(--ease);
    filter: drop-shadow(0 4px 14px rgba(0,0,0,.45));
}
.nav-brand img {
    height: 62px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}
.nav-brand:hover {
    transform: scale(1.03);
}

/* ── Bottom row: page links ── */
.nav-links {
    display: flex;
    justify-content: center;
}
.brand-fallback {
    display: none;
    align-items: center;
    gap: .65rem;
}
.bf-circle {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid var(--gold);
}
.bf-text { display: flex; flex-direction: column; line-height: 1; }
.bf-name {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .5px;
}
.bf-sub {
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: 3px;
    margin-top: 3px;
}

.nav-links {
    align-items: center;
    gap: 1.75rem;
    border-top: 1px solid rgba(200,151,42,.12);
    padding: .3rem 0 .45rem;
    width: 100%;
}
.nav-links a {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: .94rem;
    position: relative;
    padding: .35rem 0;
    transition: color .2s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: .65rem 1.25rem !important;
    border-radius: 999px;
    font-weight: 600 !important;
    transition: all .25s var(--ease);
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    width: 48px; height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    transition: all .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: calc(var(--status-h) + var(--nav-h)) 0 0 0;
    /* solid black + safety layered gradient so nothing bleeds through */
    background:
        linear-gradient(180deg, #000000 0%, #0A0A0B 100%),
        #000000;
    background-color: #000000;
    padding: 2.5rem clamp(20px, 6vw, 48px);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 996;           /* below navbar so the close (X) toggle stays clickable */
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,.6);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(200,151,42,.18);
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: color .2s var(--ease), padding .2s var(--ease);
    text-shadow: 0 1px 2px rgba(0,0,0,.4);   /* extra readability safety */
}
.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--gold-light);
    padding-left: .35rem;
}
.mobile-menu .mobile-cta {
    background: #25D366;
    color: #FFFFFF !important;
    border: 0;
    border-radius: 999px;
    padding: 1.05rem 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 12px 28px rgba(37,211,102,.35);
}
.mobile-menu .mobile-cta:hover {
    background: #1ebc59;
    color: #FFFFFF !important;
    padding-left: 1.5rem;
}

/* ═════════════════════════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .95rem 1.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .94rem;
    transition: transform .2s ease-out, box-shadow .25s var(--ease), background .25s, color .2s, filter .25s, border-color .25s;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
    letter-spacing: .2px;
    will-change: transform;
}
.btn i { font-size: 1.05em; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-dark {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}
.btn-dark:hover {
    background: transparent;
    color: var(--black);
    transform: translateY(-2px);
}
.btn-black {
    background: var(--black);
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
    box-shadow: var(--shadow-sm);
}
.btn-black:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.4);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ═════════════════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h) - var(--status-h));
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0c2e 50%, #0F0F10 100%);
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .85;
}
.hero-bg.hero-bg-fallback::before {
    content: '☕';
    position: absolute;
    inset: 0;
    display: grid; place-items: center;
    font-size: 12rem;
    opacity: .15;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(15,15,16,.55) 70%),
        linear-gradient(180deg, rgba(15,15,16,.45) 0%, rgba(15,15,16,.85) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 5rem 7rem;
    max-width: 760px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(200,151,42,.15);
    border: 1px solid rgba(200,151,42,.4);
    color: var(--gold-light);
    padding: .5rem 1.1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.5px;
    margin-bottom: 1.5rem;
}
.hero-title em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-lead {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: rgba(255,255,255,.85);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-chips {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    font-size: .82rem;
    color: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
}
.chip i { color: var(--gold-light); }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 46px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 14px;
    z-index: 2;
    transition: border-color .25s var(--ease);
}
.hero-scroll span {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-down 1.6s ease-in-out infinite;
}
@keyframes scroll-down {
    0%   { transform: translate(-50%, 0); opacity: 1; }
    80%  { transform: translate(-50%, 16px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}
.hero-scroll:hover { border-color: var(--gold); }

/* ═════════════════════════════════════════════════════════════════
   HIGHLIGHTS
   ═════════════════════════════════════════════════════════════════ */
.highlights {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0;
    border-top: 1px solid rgba(200,151,42,.18);
    border-bottom: 1px solid rgba(200,151,42,.18);
}
.hl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.hl-item {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius);
    transition: transform .25s ease-out, background .3s, box-shadow .3s;
    transform-style: preserve-3d;
    will-change: transform;
}
.hl-item:hover {
    background: rgba(200,151,42,.04);
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.hl-item i {
    transition: transform .35s var(--ease), color .25s;
}
.hl-item:hover i {
    transform: scale(1.18) rotate(-6deg);
    color: var(--gold-deep);
}
.hl-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
}
.hl-item h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.hl-item p {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    line-height: 1.6;
}

/* ═════════════════════════════════════════════════════════════════
   GENERIC SECTION
   ═════════════════════════════════════════════════════════════════ */
.section {
    padding: clamp(4rem, 9vw, 7rem) 0;
    position: relative;
}
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--black); color: var(--white); }
.section-dark .section-title { color: var(--white); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}
.section-head-light { color: var(--white); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--cream-dark);
    color: var(--gold-deep);
    padding: .45rem 1.1rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.eyebrow-gold {
    background: rgba(200,151,42,.16);
    color: var(--gold-light);
    border: 1px solid rgba(200,151,42,.3);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.3px;
    margin-bottom: 1.25rem;
}
.gold-bar {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}
.section-lead {
    font-size: 1.08rem;
    color: var(--gray-700);
    line-height: 1.75;
}
.section-dark .section-lead { color: rgba(255,255,255,.72); }

/* ═════════════════════════════════════════════════════════════════
   MENU GRID
   ═════════════════════════════════════════════════════════════════ */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,.04);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200,151,42,.28);
}
.menu-card-large { grid-column: span 2; }
.menu-card-large .menu-img { aspect-ratio: 16/9; }
.menu-card-featured {
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0c2e 100%);
    color: var(--white);
}
.menu-card-featured .menu-body p { color: rgba(255,255,255,.78); }
.menu-card-featured .menu-body h3 { color: var(--white); }
.menu-card-featured:hover { box-shadow: 0 24px 60px rgba(45,27,61,.4); }

.menu-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream);
    position: relative;
}
.menu-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.menu-card:hover .menu-img img { transform: scale(1.08); }
.menu-img.img-fallback {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    display: grid; place-items: center;
}
.menu-img.img-fallback::before {
    content: attr(data-icon);
    font-size: 4rem;
    opacity: .55;
}

.menu-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: var(--shadow-xs);
}
.badge-bestseller { background: var(--black); color: var(--white); }
.badge-fav        { background: var(--gold); color: var(--black); }
.badge-trend {
    background: linear-gradient(135deg, #9b59b6, #c39bd3);
    color: var(--white);
}

.menu-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.menu-body h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: .55rem;
}
.menu-body p {
    color: var(--gray-700);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}
.tag-row {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}
.tag {
    background: var(--cream);
    color: var(--gray-700);
    padding: .3rem .7rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 500;
}
.tag-veg   { background: rgba(76,175,80,.14); color: #2e7d32; }
.tag-signature { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); font-weight: 700; }
.menu-card-featured .tag { background: rgba(255,255,255,.12); color: var(--white); }

.menu-cta {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}
.menu-cta p {
    color: var(--gray-700);
    margin: 0;
    flex: 1 1 320px;
    text-align: left;
}
.menu-cta i { color: var(--gold); margin-right: .35rem; }

/* ═════════════════════════════════════════════════════════════════
   BUFFET PHOTO BENTO GRID
   ═════════════════════════════════════════════════════════════════ */
.buffet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 340px 280px 270px;
    gap: 10px;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bg-item {
    position: relative;
    overflow: hidden;
    background: var(--black-soft);
}

.bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s var(--ease);
}

.bg-item:hover img {
    transform: scale(1.07);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,11,.78) 0%, rgba(10,10,11,0) 52%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.2rem;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.bg-item:hover .bg-overlay {
    opacity: 1;
}

.bg-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
    line-height: 1.2;
}

/* Wide hero: spans first 2 columns, row 1 */
.bg-featured {
    grid-column: 1 / 3;
    grid-row: 1;
}

/* Coffee: column 3, spans rows 1 & 2 */
.bg-coffee {
    grid-column: 3;
    grid-row: 1 / 3;
}

/* Responsive – tablet */
@media (max-width: 900px) {
    .buffet-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 230px 220px 220px;
        border-radius: var(--radius);
    }
    .bg-featured {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    .bg-coffee {
        grid-column: auto;
        grid-row: auto;
    }
    .bg-item { /* uniform height handled by row definition */ }
}

/* Responsive – mobile */
@media (max-width: 560px) {
    .buffet-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px repeat(3, 170px);
        gap: 6px;
    }
    .bg-featured {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    .bg-overlay { opacity: 1; }
}

/* ═════════════════════════════════════════════════════════════════
   ÜBER UNS
   ═════════════════════════════════════════════════════════════════ */
.about-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-photos {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 14px;
    min-height: 520px;
}
.about-photos figure {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--black-soft);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-photos figure img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-photos figure.img-fallback {
    background: linear-gradient(135deg, var(--black-soft), var(--black));
    display: grid; place-items: center;
}
.about-photos figure.img-fallback::before {
    content: attr(data-icon);
    font-size: 5rem;
    opacity: .6;
}
.photo-main {
    position: relative;
    grid-column: 1;
    grid-row: 1 / span 2;
    border: 6px solid var(--white);
    overflow: hidden;
}
.photo-main img, .photo-side img, .photo-barista img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photo-main figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 60%, transparent 100%);
    color: var(--white);
    padding: 2.75rem 1.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.photo-main .cap-names {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--white);
}
.photo-main .cap-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.78);
    letter-spacing: .3px;
}
.photo-main .cap-sub strong {
    color: var(--gold-light);
    font-weight: 600;
}
.photo-side {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    border: 6px solid var(--gold);
    transform: none;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    overflow: hidden;
}
.photo-side:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.photo-barista {
    position: relative;
    grid-column: 2;
    grid-row: 2;
    border: 6px solid var(--white);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.photo-barista:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }


.about-story p { color: rgba(255,255,255,.78); margin-bottom: 1.1rem; font-size: 1.02rem; }
.about-story .lead { font-size: 1.15rem; color: rgba(255,255,255,.92); }
.about-story blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.5;
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
    padding: .75rem 0 .75rem 1.5rem;
    margin: 1.75rem 0;
    display: block;
}
.about-story blockquote cite {
    display: block;
    font-style: normal;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .5px;
    color: rgba(255,255,255,.65);
    margin-top: .85rem;
}
.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
.value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.value-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(200,151,42,.16);
    color: var(--gold-light);
    display: grid; place-items: center;
    font-size: 1.05rem;
}
.value strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: .15rem;
}
.value span {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
}

/* ═════════════════════════════════════════════════════════════════
   SIGNATURE (Ube Latte)
   ═════════════════════════════════════════════════════════════════ */
.signature {
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0c2e 60%, #0F0F10 100%);
    color: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}
.signature::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 50%; aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,151,42,.18), transparent 65%);
    pointer-events: none;
}
.signature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.signature-img {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--gold);
}
.signature-img img { width: 100%; height: 100%; object-fit: cover; }
.signature-img.img-fallback {
    background: linear-gradient(135deg, #c39bd3 0%, #6c3483 50%, #4a0080 100%);
    display: grid; place-items: center;
}
.signature-img.img-fallback::before {
    content: attr(data-icon);
    font-size: 7rem;
}
.signature-text .eyebrow {
    background: rgba(200,151,42,.16);
    color: var(--gold-light);
    border: 1px solid rgba(200,151,42,.3);
}
.signature-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 1rem 0 1.25rem;
    color: var(--white);
}
.signature-text > p {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem 1.5rem;
    margin-bottom: 2rem;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255,255,255,.85);
    font-size: .95rem;
}
.check-list i {
    width: 24px; height: 24px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: .7rem;
    flex-shrink: 0;
}

/* ═════════════════════════════════════════════════════════════════
   OPENING HOURS
   ═════════════════════════════════════════════════════════════════ */
.hours-wrap {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
}

/* live status pill above the table */
.hours-live-pill {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem 1.1rem;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 600;
    background: rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.08);
    color: var(--black);
    transition: background .3s, border-color .3s, color .3s;
}
.hlp-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--gray-700);
    box-shadow: 0 0 0 0 currentColor;
    animation: hlpPulse 2s ease-in-out infinite;
}
.hours-live-pill.hlp-open    { background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.35); color: #166534; }
.hours-live-pill.hlp-open    .hlp-dot { background: #22c55e; color: rgba(34,197,94,.5); }
.hours-live-pill.hlp-soon    { background: rgba(234,179,8,.10);  border-color: rgba(234,179,8,.35);  color: #854d0e; }
.hours-live-pill.hlp-soon    .hlp-dot { background: #eab308; color: rgba(234,179,8,.5); }
.hours-live-pill.hlp-closed  { background: rgba(239,68,68,.10);  border-color: rgba(239,68,68,.35);  color: #991b1b; }
.hours-live-pill.hlp-closed  .hlp-dot { background: #ef4444; color: rgba(239,68,68,.5); }
@keyframes hlpPulse {
    0%, 100% { box-shadow: 0 0 0 0 currentColor; }
    50%      { box-shadow: 0 0 0 6px transparent; }
}

.hours-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    align-self: center;
}
.hours-table tr {
    transition: background .25s var(--ease);
}
.hours-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--cream-dark);
}
.hours-table td {
    padding: 1.15rem 1.5rem;
    font-size: 1rem;
}
.hours-table .day {
    font-weight: 600;
    color: var(--black);
}
.hours-table .time {
    color: var(--gray-700);
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.hours-table .closed {
    color: #c0392b;
    font-weight: 600;
}
.hours-table tr.today {
    background: linear-gradient(90deg, rgba(200,151,42,.14) 0%, rgba(200,151,42,.04) 100%);
    position: relative;
}
.hours-table tr.today td:first-child {
    border-left: 4px solid var(--gold);
    padding-left: calc(1.5rem - 4px);
}
.hours-table tr.today .day::after {
    content: '· Heute';
    color: var(--gold-deep);
    font-weight: 500;
    font-size: .82rem;
    margin-left: .5rem;
}

/* ═════════════════════════════════════════════════════════════════
   LOCATION
   ═════════════════════════════════════════════════════════════════ */
.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
}
.loc-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}
.loc-row {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
}
.loc-ic {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--cream);
    color: var(--gold);
    display: grid; place-items: center;
    font-size: 1.15rem;
}
.loc-label {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray-500);
    margin-bottom: .25rem;
    font-weight: 600;
}
.loc-val {
    display: block;
    color: var(--black);
    font-size: 1rem;
    line-height: 1.5;
}
.loc-val a { color: var(--gold-deep); font-weight: 500; }
.loc-val a:hover { color: var(--gold); }
.loc-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.loc-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 460px;
    display: flex;
    flex-direction: column;
}
.loc-außen {
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}
.loc-außen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s var(--ease);
}
.loc-außen:hover img {
    transform: scale(1.04);
}
.loc-map iframe {
    width: 100%;
    flex: 1;
    min-height: 280px;
    border: 0;
    display: block;
}

/* ═════════════════════════════════════════════════════════════════
   INSTAGRAM GRID
   ═════════════════════════════════════════════════════════════════ */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.ig-tile {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
    background: var(--black-soft);
}
.ig-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.ig-tile.ig-fallback {
    background: linear-gradient(135deg, var(--black-soft), var(--black));
    display: grid; place-items: center;
}
.ig-tile.ig-fallback::before {
    content: attr(data-icon);
    font-size: 2.5rem;
    opacity: .55;
}
.ig-tile:hover img { transform: scale(1.08); }
.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,16,.7);
    color: var(--gold-light);
    display: grid; place-items: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity .25s var(--ease);
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-cta { text-align: center; }

/* ═════════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════════ */
footer {
    background: var(--black-deep);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(200,151,42,.12);
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.foot-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform .3s var(--ease);
}
.foot-brand:hover { transform: scale(1.03); }
.foot-logo {
    height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(200,151,42,.18));
}
.foot-brand-fallback {
    display: none;
    flex-direction: column;
    line-height: 1;
}
.fb-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 600;
}
.fb-sub {
    font-size: .85rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-top: 6px;
}
.foot-desc { line-height: 1.7; max-width: 360px; margin-bottom: 1.5rem; }
.foot-social {
    display: flex;
    gap: .8rem;
}
.foot-social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: grid; place-items: center;
    color: var(--white);
    transition: all .25s var(--ease);
}
.foot-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

footer h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: .5px;
}
footer ul li { margin-bottom: .65rem; }
footer ul a, footer p {
    color: rgba(255,255,255,.65);
    font-size: .92rem;
    transition: color .2s var(--ease);
}
footer ul a:hover { color: var(--gold); }
.link-gold { color: var(--gold) !important; }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-right: 14rem;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
    gap: 1rem;
}
.foot-links { display: flex; gap: 1.5rem; }
.foot-links a { color: rgba(255,255,255,.55); }
.foot-links a:hover { color: var(--gold); }
.made-by { color: rgba(255,255,255,.3); font-size: .75rem; }
.made-by a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.made-by a:hover { color: var(--gold); }

/* ═════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═════════════════════════════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    background: #25D366;
    color: var(--white);
    padding: .9rem 1.3rem .9rem 1.1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 600;
    font-size: .92rem;
    box-shadow: 0 12px 28px rgba(37,211,102,.4);
    transition: all .25s var(--ease);
    text-decoration: none;
}
.wa-float i { font-size: 1.45rem; }
.wa-float:hover {
    background: #1ebc59;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(37,211,102,.55);
}

/* ═════════════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ═════════════════════════════════════════════════════════════════ */
.to-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.to-reveal.reveal {
    opacity: 1;
    transform: none;
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hl-grid       { grid-template-columns: repeat(2, 1fr); gap: 2.25rem; }
    .menu-grid     { grid-template-columns: repeat(2, 1fr); }
    .menu-card-large { grid-column: span 2; }
    .about-layout  { grid-template-columns: 1fr; gap: 5rem; }
    .about-photos  { max-width: 540px; margin: 0 auto; grid-template-columns: 1fr; }
    .photo-main    { min-height: 320px; grid-row: auto; }
    .photo-side    { min-height: 200px; }
    .photo-barista { min-height: 200px; }
    .signature-grid{ grid-template-columns: 1fr; gap: 2.5rem; }
    .hours-wrap    { max-width: 100%; }
    .loc-grid      { grid-template-columns: 1fr; gap: 2rem; }
    .loc-map       { min-height: 360px; }
    .ig-grid       { grid-template-columns: repeat(3, 1fr); }
    .foot-grid     { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --nav-h: 72px; --status-h: 66px; }
    #navbar         { background: #0F0F10; backdrop-filter: none; }
    #navbar.scrolled{ background: #0A0A0B; }
    .nav-links     { display: none; }
    .nav-cta       { display: none; }
    .nav-toggle    { display: flex; }
    .nav-brand     { height: 50px; }
    .nav-brand img { height: 50px; max-width: 220px; }
    .foot-logo     { height: 130px !important; }
    .hero          { min-height: calc(100svh - var(--nav-h) - var(--status-h)); }
    #status-bar    { font-size: .78rem; gap: .5rem; }
    .status-inner  { gap: .5rem; row-gap: .3rem; }
    .hl-grid       { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
    .menu-grid     { grid-template-columns: 1fr; gap: 1.5rem; }
    .menu-card-large { grid-column: auto; }
    .menu-card-large .menu-img { aspect-ratio: 4/3; }
    .value-grid    { grid-template-columns: 1fr; gap: 1.25rem; }
    .check-list    { grid-template-columns: 1fr; gap: .65rem; }
    .ig-grid       { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .foot-grid     { grid-template-columns: 1fr; gap: 2rem; }
    .menu-cta      { flex-direction: column; text-align: center; }
    .menu-cta p    { text-align: center; flex: none; }
    .hero-title    { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .wa-float span { display: none; }
    .wa-float      { padding: 1rem; }

    /* ── About photos: 3-across row on phones ── */
    .about-photos {
        grid-template-columns: repeat(3, 1fr);
        min-height: auto;
        gap: 8px;
        max-width: 100%;
        margin: 0;
    }
    .photo-main {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 2 / 3;
        border-width: 3px;
        min-height: unset;
    }
    .photo-side,
    .photo-barista {
        aspect-ratio: 2 / 3;
        min-height: unset;
    }
    .photo-main figcaption {
        padding: 2rem .5rem .6rem;
    }
    .photo-main .cap-names { font-size: .85rem; }
    .photo-main .cap-sub   { font-size: .65rem; }
}

@media (max-width: 480px) {
    .hl-grid       { grid-template-columns: 1fr; }
    .hero-actions  { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .loc-actions   { flex-direction: column; }
    .loc-actions .btn { width: 100%; }
    .foot-bottom   { flex-direction: column; text-align: center; padding-right: 0; }
}

/* ═════════════════════════════════════════════════════════════════
   LIGHTBOX
   ═════════════════════════════════════════════════════════════════ */
#buffet-lb {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
    padding: 1rem;
}
#buffet-lb.lb-open {
    opacity: 1;
    pointer-events: all;
}
.lb-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    max-width: min(94vw, 1140px);
}
#lb-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 32px 80px rgba(0,0,0,.7);
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    display: block;
}
#lb-img.lb-fade {
    opacity: 0;
    transform: scale(.97);
}
.lb-caption {
    color: rgba(255,255,255,.72);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    text-align: center;
}
.lb-counter {
    color: rgba(255,255,255,.35);
    font-size: .75rem;
    letter-spacing: 1.5px;
}
.lb-close {
    position: fixed;
    top: 1.1rem;
    right: 1.1rem;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    font-size: 1.15rem;
    display: grid; place-items: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
    z-index: 9001;
}
.lb-close:hover { background: rgba(255,255,255,.22); transform: scale(1.1) rotate(90deg); }

.lb-prev, .lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
    font-size: 1.15rem;
    display: grid; place-items: center;
    cursor: pointer;
    transition: background .2s, transform .25s;
    z-index: 9001;
}
.lb-prev { left: 1.1rem; }
.lb-next { right: 1.1rem; }
.lb-prev:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.08); }
.lb-next:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.08); }

/* zoom cursor + magnifier hint on buffet photos */
.bg-item { cursor: zoom-in; }
.bg-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: rgba(255,255,255,.9);
    position: absolute;
    top: .8rem;
    right: .8rem;
    z-index: 3;
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.bg-item:hover::after { opacity: 1; }

/* ═════════════════════════════════════════════════════════════════
   RESERVIERUNG
   ═════════════════════════════════════════════════════════════════ */
.reserve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.reserve-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.75rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--white);
    gap: 1rem;
    transition: transform .25s ease-out, box-shadow .3s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}
.reserve-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,0,0,.45);
}
.reserve-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background .3s var(--ease);
    pointer-events: none;
}
.reserve-card:hover::before { background: rgba(255,255,255,.06); }

.reserve-wa { background: linear-gradient(145deg, #075E54 0%, #25D366 100%); }
.reserve-ig { background: linear-gradient(145deg, #405DE6 0%, #C13584 50%, #F77737 100%); }
.reserve-fb { background: linear-gradient(145deg, #0057B8 0%, #1877F2 100%); }

.reserve-icon {
    font-size: 3.75rem;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}

.reserve-body {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.reserve-platform {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: .8;
}

.reserve-cta {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    display: block;
}

.reserve-msg {
    font-size: .84rem;
    line-height: 1.65;
    opacity: .9;
    background: rgba(0,0,0,.18);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    margin: .25rem 0 0;
    font-style: italic;
}

.reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    padding: .65rem 1.4rem;
    font-size: .9rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: background .25s var(--ease), gap .25s var(--ease);
    white-space: nowrap;
}
.reserve-card:hover .reserve-btn {
    background: rgba(255,255,255,.28);
    gap: .75rem;
}

@media (max-width: 1024px) {
    .reserve-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .reserve-card { flex-direction: row; text-align: left; padding: 1.75rem; gap: 1.25rem; }
    .reserve-icon { font-size: 2.75rem; flex-shrink: 0; }
    .reserve-body { gap: .3rem; }
    .reserve-cta  { font-size: 1.35rem; }
    .reserve-btn  { align-self: flex-end; flex-shrink: 0; }
}

@media (max-width: 600px) {
    .reserve-card { flex-direction: column; text-align: center; }
    .reserve-btn  { align-self: center; }
}

/* ═════════════════════════════════════════════════════════════════
   PAGE TRANSITION OVERLAY
   ═════════════════════════════════════════════════════════════════ */
#pt {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    overflow: hidden;
    /* Starts covering the screen; JS animates it away on load */
}

/* Sweeping golden shimmer across the dark background */
#pt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 50%,
        rgba(200,151,42,.07) 0%,
        transparent 70%);
    animation: pt-pulse 2.4s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Gold accent line at the leading edge */
#pt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-deep) 20%,
        var(--gold-light) 50%,
        var(--gold-deep) 80%,
        transparent 100%);
    opacity: .8;
}

@keyframes pt-pulse {
    from { opacity: .6; transform: scale(.95); }
    to   { opacity: 1;  transform: scale(1.05); }
}

/* ── Content centred in overlay ── */
.pt-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    transition: opacity .2s ease, transform .2s ease;
}

.pt-logo-wrap {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 28px rgba(200,151,42,.35));
    animation: pt-float 3s ease-in-out infinite;
}

@keyframes pt-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

.pt-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.pt-logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--black);
}

/* ── Shimmer progress bar ── */
.pt-bar {
    width: 180px;
    height: 1.5px;
    background: rgba(200,151,42,.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.pt-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -55%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-deep) 30%,
        var(--gold-light) 50%,
        var(--gold-deep) 70%,
        transparent 100%);
    animation: pt-shimmer 1.4s cubic-bezier(.4,0,.6,1) infinite;
}

@keyframes pt-shimmer {
    to { left: 155%; }
}

.pt-label {
    color: rgba(255,255,255,.3);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 400;
}

/* ═════════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═════════════════════════════════════════════════════════════════ */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #ffc16b 0%, #ff8fab 50%, #c9a3ff 100%);
    z-index: 9500;
    box-shadow: 0 0 8px rgba(255,193,107,.5);
    transition: width .08s linear;
    pointer-events: none;
}

/* ═════════════════════════════════════════════════════════════════
   FEIERN / EVENTS – Geburtstage & private Feiern
   ═════════════════════════════════════════════════════════════════ */
.feiern-section {
    position: relative;
    overflow: hidden;
    --mx: 50%;
    --my: 50%;
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(255,193,107,.18) 0%, transparent 35%),
        radial-gradient(ellipse at top left,  rgba(255,182,193,.18) 0%, transparent 55%),
        radial-gradient(ellipse at top right, rgba(186,134,255,.16) 0%, transparent 55%),
        radial-gradient(ellipse at bottom,    rgba(255,193,107,.14) 0%, transparent 60%),
        linear-gradient(160deg, #1a1a1a 0%, #261d2e 50%, #1f1622 100%);
    color: var(--white);
    padding: 6rem 0;
    transition: background-position .15s ease-out;
}
.feiern-section .section-title { color: var(--white); }
.feiern-section .section-title em {
    background: linear-gradient(90deg, #ffb3c1 0%, #ffc16b 50%, #c9a3ff 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    font-style: italic;
}
.feiern-section .section-lead { color: rgba(255,255,255,.72); }

/* eyebrow – festive variant */
.eyebrow-festive {
    background: linear-gradient(90deg, rgba(255,179,193,.18) 0%, rgba(201,163,255,.18) 100%) !important;
    color: #ffd6a8 !important;
    border: 1px solid rgba(255,193,107,.32) !important;
}

/* floating confetti backdrop */
.confetti-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.confetti {
    position: absolute;
    font-size: 1.8rem;
    opacity: .14;
    filter: blur(.3px);
    animation: confettiFloat 14s ease-in-out infinite;
    user-select: none;
}
.confetti.c1 { top:  8%; left:  6%; font-size: 2.4rem; animation-delay: 0s; }
.confetti.c2 { top: 16%; left: 88%; font-size: 1.6rem; animation-delay: 1.5s; }
.confetti.c3 { top: 38%; left:  3%; font-size: 2rem;   animation-delay: 3s; }
.confetti.c4 { top: 60%; left: 92%; font-size: 2.2rem; animation-delay: 4.5s; }
.confetti.c5 { top: 78%; left: 12%; font-size: 1.8rem; animation-delay: 2s; }
.confetti.c6 { top: 28%; left: 50%; font-size: 1.5rem; animation-delay: 6s; }
.confetti.c7 { top: 88%; left: 78%; font-size: 2rem;   animation-delay: 5s; }
.confetti.c8 { top: 50%; left: 35%; font-size: 1.6rem; animation-delay: 7s; }
@keyframes confettiFloat {
    0%, 100% { transform: translateY(0) rotate(-6deg); opacity: .14; }
    50%      { transform: translateY(-22px) rotate(8deg); opacity: .22; }
}

.feiern-inner { position: relative; z-index: 1; }

/* feature grid */
.feiern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem auto 2.75rem;
    max-width: 1100px;
}
.feiern-feature {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 2.25rem 1.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .25s ease-out, border-color .35s var(--ease), background .35s var(--ease);
    text-align: center;
    transform-style: preserve-3d;
    will-change: transform;
}
.feiern-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(255,193,107,.35);
    background: rgba(255,255,255,.06);
}
.feiern-feature-highlight {
    background: linear-gradient(160deg, rgba(255,193,107,.16) 0%, rgba(255,179,193,.12) 50%, rgba(201,163,255,.14) 100%);
    border: 1px solid rgba(255,193,107,.4);
    box-shadow: 0 12px 38px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
    transform: translateY(-8px);
}
.feiern-feature-highlight:hover {
    transform: translateY(-14px);
}

.ff-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: grid; place-items: center;
    font-size: 1.85rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.ff-icon-pink   { background: linear-gradient(135deg, #ff8fab 0%, #ff6f9c 100%); }
.ff-icon-gold   { background: linear-gradient(135deg, #ffc16b 0%, #d99a3c 100%); color: #2a1c0a; }
.ff-icon-purple { background: linear-gradient(135deg, #c9a3ff 0%, #8b5cf6 100%); }

.feiern-feature h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .65rem;
    line-height: 1.25;
}
.ff-big {
    font-size: 2.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffc16b 0%, #ff8fab 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    display: inline-block;
    line-height: 1;
    margin: 0 .15rem;
}
.feiern-feature p {
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0;
}

/* CTA block */
.feiern-cta {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.feiern-cta-text {
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.feiern-cta-text i { color: #ffc16b; margin-right: .35rem; }
.feiern-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-festive {
    background: linear-gradient(90deg, #ff8fab 0%, #ffc16b 50%, #c9a3ff 100%);
    color: #1a1a1a;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 30px rgba(255,143,171,.3);
    transition: transform .25s var(--ease), box-shadow .3s var(--ease), filter .3s;
}
.btn-festive:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255,143,171,.42);
    filter: brightness(1.08);
}
.btn-festive-alt {
    background: linear-gradient(90deg, #ffc16b 0%, #d99a3c 100%);
    color: #1a1a1a;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 30px rgba(255,193,107,.28);
    transition: transform .25s var(--ease), box-shadow .3s var(--ease), filter .3s;
}
.btn-festive-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255,193,107,.4);
    filter: brightness(1.08);
}
.btn-festive-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.25);
    transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.btn-festive-ghost:hover {
    border-color: #ffc16b;
    background: rgba(255,193,107,.08);
    transform: translateY(-3px);
}

/* ── responsive ── */
@media (max-width: 900px) {
    .feiern-grid { grid-template-columns: 1fr; gap: 1.1rem; max-width: 480px; }
    .feiern-feature-highlight { transform: none; }
    .feiern-feature-highlight:hover { transform: translateY(-6px); }
}
@media (max-width: 600px) {
    .feiern-section { padding: 4rem 0; }
    .feiern-feature  { padding: 1.85rem 1.4rem; }
    .ff-big          { font-size: 2.2rem; }
    .feiern-actions  { flex-direction: column; align-items: stretch; }
    .feiern-actions .btn { justify-content: center; }
    .confetti        { font-size: 1.4rem !important; }
}

/* Print fallback */
@media print {
    #status-bar, #navbar, .wa-float, .nav-toggle, .mobile-menu, .hero-scroll { display: none; }
    .section { padding: 2rem 0; }
}
