/* =====================================================================
   CLASSIC LOUNGE — Futuristic Design System
   Dark premium theme · neon glow · glassmorphism · smooth animations
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  --bg:            #05060b;
  --bg-2:          #0a0c16;
  --surface:       rgba(255, 255, 255, 0.045);
  --surface-2:     rgba(255, 255, 255, 0.07);
  --stroke:        rgba(255, 255, 255, 0.10);
  --stroke-strong: rgba(255, 255, 255, 0.18);

  --text:          #eef1f8;
  --text-dim:      #aab0c4;
  --text-faint:    #6c7390;

  --cyan:   #22d3ee;
  --magenta:#ff2e88;
  --violet: #7c5cff;
  --gold:   #e8b873;

  --grad-neon:   linear-gradient(120deg, #22d3ee 0%, #7c5cff 50%, #ff2e88 100%);
  --grad-gold:   linear-gradient(120deg, #f6d99a 0%, #e8b873 45%, #c9943f 100%);
  --grad-surface:linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));

  --shadow-soft: 0 18px 50px -20px rgba(0,0,0,.7);
  --shadow-neon: 0 0 0 1px rgba(124,92,255,.25), 0 16px 60px -18px rgba(124,92,255,.45);

  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:28px;

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Syne", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-script:  "Great Vibes", cursive;
}

/* ----------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, model-viewer { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* --------------------------- Backgrounds --------------------------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(1000px 650px at 8% 12%, rgba(34,211,238,.16), transparent 55%),
    radial-gradient(900px 700px at 60% 110%, rgba(255,46,136,.14), transparent 55%),
    var(--bg);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.orb { position: fixed; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: -1; pointer-events: none; }
.orb--1 { width: 380px; height: 380px; background: var(--violet); top: 8%; right: -90px; animation: float 16s ease-in-out infinite; }
.orb--2 { width: 320px; height: 320px; background: var(--cyan);  bottom: 6%; left: -80px; animation: float 19s ease-in-out infinite reverse; }

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

/* --------------------------- Typography ---------------------------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); opacity: .7; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -.01em; }
.h-xl { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.h-md { font-size: clamp(1.4rem, 2.6vw, 2rem); }

.grad-text {
  background: var(--grad-neon);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; }

.lead { color: var(--text-dim); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 62ch; }

/* ---------------------------- Layout ------------------------------- */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: .8rem; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; }

/* ---------------------------- Buttons ------------------------------ */
.btn {
  --b: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: var(--b);
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .01em; position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--primary { color: #07080d; background: var(--grad-neon); box-shadow: 0 14px 40px -12px rgba(124,92,255,.6); }
.btn--primary:hover { box-shadow: 0 20px 56px -12px rgba(124,92,255,.8); }
.btn--gold { color: #1a1206; background: var(--grad-gold); box-shadow: 0 14px 40px -12px rgba(232,184,115,.55); }
.btn--ghost { border: 1px solid var(--stroke-strong); background: var(--surface); color: var(--text); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--cyan); box-shadow: 0 0 0 1px rgba(34,211,238,.4); }
.btn--sm { padding: .6rem 1rem; font-size: .85rem; --b: 10px; }
.btn--block { width: 100%; }

/* ----------------------------- Cards ------------------------------- */
.glass {
  background: var(--grad-surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.card { padding: 1.6rem; }
.card-hover { transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.card-hover:hover { transform: translateY(-6px); border-color: var(--stroke-strong); box-shadow: var(--shadow-neon); }

/* Animated gradient border helper */
.border-glow { position: relative; }
.border-glow::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-neon);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .55; pointer-events: none;
}

/* --------------------------- Navigation ---------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,6,11,.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--stroke);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 0; }
.brand { display: flex; align-items: baseline; gap: .5rem; font-family: var(--font-script); font-size: 1.9rem; line-height: 1; }
.brand .dot { color: var(--cyan); }
.brand small { font-family: var(--font-display); font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: var(--text-faint); align-self: center; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { font-size: .92rem; color: var(--text-dim); transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--grad-neon); transition:width .25s var(--ease); }
.nav__links a:hover::after { width:100%; }
.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--stroke); background: var(--surface); }
.nav__burger span { display:block; width:20px; height:2px; background:var(--text); margin:4px auto; transition: .25s; }

/* --------------------------- Hero ---------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 6rem; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; width: 100%; }
.hero__title { margin: 1.2rem 0 1.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__stats { display: flex; gap: 2.2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; }
.stat .lbl { font-size: .8rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .12em; }

.hero__viz { position: relative; aspect-ratio: 3/4; max-height: 78svh; }
.hero__viz model-viewer { width: 100%; height: 100%; --poster-color: transparent; }
.viz-ring { position:absolute; inset:0; border-radius:50%; border:1px solid var(--stroke); -webkit-mask:radial-gradient(circle, transparent 58%, #000 60%); mask:radial-gradient(circle, transparent 58%, #000 60%); }
.viz-glow { position:absolute; inset:10%; border-radius:50%; background:radial-gradient(circle, rgba(124,92,255,.35), transparent 65%); filter:blur(30px); animation: pulse 6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ opacity:.5; transform:scale(.96) } 50%{ opacity:.85; transform:scale(1.04) } }
.viz-fallback { position:absolute; inset:0; display:grid; place-items:center; }

.scroll-cue { position:absolute; bottom:1.5rem; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:.5rem; color:var(--text-faint); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; }
.scroll-cue .mouse { width:22px; height:36px; border:1px solid var(--stroke-strong); border-radius:12px; position:relative; }
.scroll-cue .mouse::after { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:3px; height:7px; border-radius:3px; background:var(--cyan); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{ opacity:0; transform:translate(-50%,0) } 30%{ opacity:1 } 100%{ opacity:0; transform:translate(-50%,12px) } }

/* --------------------------- Marquee ------------------------------- */
.marquee { overflow:hidden; border-block:1px solid var(--stroke); background:rgba(255,255,255,.02); padding:.9rem 0; }
.marquee__track { display:flex; gap:3rem; white-space:nowrap; width:max-content; animation: scrollx 28s linear infinite; }
.marquee__track span { font-family:var(--font-display); font-weight:700; text-transform:uppercase; letter-spacing:.18em; color:var(--text-faint); font-size:.92rem; display:inline-flex; gap:3rem; align-items:center; }
.marquee__track span::after { content:"✦"; color:var(--cyan); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* --------------------------- Feature grid -------------------------- */
.grid { display:grid; gap:1.2rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature .ic { width:52px; height:52px; border-radius:14px; display:grid; place-items:center; font-size:1.5rem; background:var(--surface-2); border:1px solid var(--stroke); margin-bottom:1rem; }
.feature h3 { font-size:1.18rem; margin-bottom:.5rem; }
.feature p { color:var(--text-dim); font-size:.95rem; }

/* --------------------------- Flavors ------------------------------- */
.flavor-cloud { display:flex; flex-wrap:wrap; gap:.7rem; }
.flavor {
  padding:.6rem 1.05rem; border-radius:999px; border:1px solid var(--stroke);
  background:var(--surface); font-size:.92rem; color:var(--text-dim);
  transition: .25s var(--ease);
}
.flavor:hover { color:var(--text); border-color:var(--cyan); transform:translateY(-2px); box-shadow:0 8px 24px -10px rgba(34,211,238,.5); }
.flavor.is-ice { border-color: rgba(34,211,238,.5); color: var(--cyan); }

/* --------------------------- Showcase image ------------------------ */
.showcase { position:relative; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--stroke); box-shadow:var(--shadow-soft); }
.showcase img { width:100%; height:100%; object-fit:cover; }
.showcase__overlay { position:absolute; inset:auto 0 0 0; padding:1.8rem; background:linear-gradient(transparent, rgba(5,6,11,.9)); }
.showcase__overlay h3 { font-size:1.5rem; }

/* --------------------------- Info / hours -------------------------- */
.info-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:1.2rem; }
.hours { display:grid; gap:.2rem; }
.hours li { display:flex; justify-content:space-between; padding:.7rem .2rem; border-bottom:1px dashed var(--stroke); font-size:.96rem; }
.hours li.today { color:var(--cyan); font-weight:600; }
.hours li .d { color:var(--text-dim); }
.hours li.closed .t { color:var(--magenta); }
.contact-row { display:flex; align-items:center; gap:.9rem; padding:.7rem 0; }
.contact-row .ic { width:42px; height:42px; border-radius:12px; background:var(--surface-2); border:1px solid var(--stroke); display:grid; place-items:center; font-size:1.1rem; flex:none; }
.contact-row a, .contact-row span { font-size:.98rem; }
.contact-row small { display:block; color:var(--text-faint); font-size:.78rem; }

/* --------------------------- QR section ---------------------------- */
.qr-card { display:grid; grid-template-columns:auto 1fr; gap:1.8rem; align-items:center; }
.qr-box { width:200px; height:200px; background:#fff; border-radius:18px; padding:14px; display:grid; place-items:center; }
.qr-box canvas, .qr-box img { width:100%; height:100%; }

/* --------------------------- Footer -------------------------------- */
.footer { border-top:1px solid var(--stroke); padding:3.5rem 0 2.5rem; margin-top:2rem; }
.footer__grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2rem; }
.footer h4 { font-family:var(--font-display); font-size:.8rem; text-transform:uppercase; letter-spacing:.2em; color:var(--text-faint); margin-bottom:1rem; }
.footer a { color:var(--text-dim); display:block; padding:.25rem 0; transition:color .2s; }
.footer a:hover { color:var(--cyan); }
.footer__bottom { margin-top:2.6rem; padding-top:1.6rem; border-top:1px solid var(--stroke); display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem; color:var(--text-faint); font-size:.85rem; }

/* --------------------------- Reveal animation ---------------------- */
.reveal { opacity:0; transform:translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto; }
}

/* ====================================================================
   GETRÄNKEKARTE (menu page)
   ==================================================================== */
.menu-top { position:sticky; top:0; z-index:40; background:rgba(5,6,11,.86); backdrop-filter:blur(16px); border-bottom:1px solid var(--stroke); }
.menu-top__bar { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.85rem 0; }
.menu-search { flex:1; max-width:420px; display:flex; align-items:center; gap:.6rem; padding:.6rem 1rem; border-radius:12px; background:var(--surface); border:1px solid var(--stroke); }
.menu-search input { background:none; border:none; color:var(--text); width:100%; outline:none; }
.menu-search input::placeholder { color:var(--text-faint); }

.chips { display:flex; gap:.6rem; overflow-x:auto; padding:.7rem 0; -ms-overflow-style:none; scrollbar-width:none; scroll-snap-type:x proximity; }
.chips::-webkit-scrollbar { display:none; }
.chip {
  flex:none; padding:.55rem 1rem; border-radius:999px; border:1px solid var(--stroke);
  background:var(--surface); color:var(--text-dim); font-size:.9rem; font-weight:500;
  white-space:nowrap; transition:.22s var(--ease); scroll-snap-align:start;
}
.chip:hover { color:var(--text); }
.chip.active { color:#07080d; background:var(--grad-neon); border-color:transparent; font-weight:700; }

.menu-cat { padding-top: 1.4rem; scroll-margin-top: 130px; }
.menu-cat__head { display:flex; align-items:center; gap:.8rem; margin:1.6rem 0 1rem; }
.menu-cat__head .ic { font-size:1.5rem; }
.menu-cat__head h2 { font-size:clamp(1.4rem,3vw,1.9rem); }
.menu-cat__head .badge { margin-left:auto; padding:.35rem .8rem; border-radius:999px; font-family:var(--font-display); font-weight:700; font-size:.85rem; color:#1a1206; background:var(--grad-gold); }
.menu-note { color:var(--text-faint); font-size:.86rem; margin:-.3rem 0 1rem; }

.menu-list { display:grid; gap:.55rem; }
.menu-item {
  display:flex; align-items:baseline; gap:.9rem; padding:.85rem 1.1rem;
  border-radius:14px; background:var(--surface); border:1px solid var(--stroke);
  transition: background .2s, border-color .2s, transform .2s;
}
.menu-item:hover { background:var(--surface-2); border-color:var(--stroke-strong); transform:translateX(3px); }
.menu-item__name { font-weight:600; font-size:1rem; }
.menu-item__note { color:var(--text-faint); font-size:.8rem; margin-left:.4rem; }
.menu-item__lead { flex:1; border-bottom:1px dotted rgba(255,255,255,.14); transform:translateY(-3px); }
.menu-item__price { font-family:var(--font-display); font-weight:700; white-space:nowrap; color:var(--gold); }
.menu-item__price .sz { color:var(--text-faint); font-weight:500; font-size:.82rem; margin-right:.45rem; }
.menu-item__variants { display:flex; gap:1.1rem; flex-wrap:wrap; justify-content:flex-end; }

.subgroup { font-family:var(--font-display); font-weight:700; letter-spacing:.04em; color:var(--cyan); font-size:.78rem; text-transform:uppercase; margin:1.1rem 0 .3rem; }

.flavor-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(150px,1fr)); gap:.55rem; }
.flavor-tile { padding:.8rem 1rem; border-radius:12px; background:var(--surface); border:1px solid var(--stroke); font-weight:500; transition:.2s; }
.flavor-tile:hover { border-color:var(--cyan); transform:translateY(-2px); }
.flavor-tile.ice { color:var(--cyan); border-color:rgba(34,211,238,.4); }
.flavor-tile span { float:right; color:var(--gold); font-size:.82rem; }

.menu-empty { text-align:center; color:var(--text-faint); padding:3rem 0; }

.menu-foot { text-align:center; padding:2.5rem 0; color:var(--text-faint); font-size:.85rem; }
.back-top { position:fixed; right:1.2rem; bottom:1.2rem; width:48px; height:48px; border-radius:14px; display:grid; place-items:center; background:var(--grad-neon); color:#07080d; box-shadow:var(--shadow-soft); opacity:0; pointer-events:none; transition:.3s; z-index:45; }
.back-top.show { opacity:1; pointer-events:auto; }

/* ====================================================================
   EDITOR
   ==================================================================== */
.editor-wrap { width:min(100% - 2rem, 980px); margin:6rem auto 4rem; }
.editor-bar { position:sticky; top:0; z-index:30; display:flex; flex-wrap:wrap; gap:.7rem; align-items:center; padding:1rem; margin-bottom:1.5rem; background:rgba(10,12,22,.92); backdrop-filter:blur(14px); border:1px solid var(--stroke); border-radius:16px; }
.editor-bar .spacer { flex:1; }
.editor-status { font-size:.85rem; color:var(--text-faint); }
.editor-status.saved { color:var(--cyan); }

.ed-cat { margin-bottom:1.4rem; }
.ed-cat__head { display:flex; align-items:center; gap:.7rem; padding:1rem 1.2rem; cursor:pointer; }
.ed-cat__head h3 { font-size:1.1rem; }
.ed-cat__head .count { color:var(--text-faint); font-size:.85rem; }
.ed-cat__head .caret { margin-left:auto; transition:transform .25s; color:var(--text-faint); }
.ed-cat.open .caret { transform:rotate(90deg); }
.ed-cat__body { display:none; padding:0 1.2rem 1.2rem; }
.ed-cat.open .ed-cat__body { display:block; }

.ed-row { display:grid; grid-template-columns: 1fr 110px 90px auto; gap:.6rem; align-items:center; padding:.5rem 0; border-bottom:1px solid var(--stroke); }
.ed-row.flavor { grid-template-columns: 1fr 130px auto; }
.ed-input { width:100%; padding:.6rem .75rem; border-radius:10px; background:var(--surface); border:1px solid var(--stroke); color:var(--text); }
.ed-input:focus { outline:none; border-color:var(--cyan); }
.ed-input.price { text-align:right; }
.ed-del { width:38px; height:38px; border-radius:10px; background:rgba(255,46,136,.12); border:1px solid rgba(255,46,136,.3); color:var(--magenta); display:grid; place-items:center; flex:none; }
.ed-del:hover { background:rgba(255,46,136,.22); }
.ed-variant-add { font-size:.82rem; color:var(--cyan); padding:.3rem 0; }
.ed-add { margin-top:.8rem; }
.ed-hint { color:var(--text-faint); font-size:.82rem; margin:.2rem 0 1rem; }

.toast { position:fixed; bottom:1.5rem; left:50%; transform:translateX(-50%) translateY(140%); background:var(--grad-neon); color:#07080d; font-weight:700; padding:.85rem 1.4rem; border-radius:12px; box-shadow:var(--shadow-soft); transition:transform .35s var(--ease); z-index:100; }
.toast.show { transform:translateX(-50%) translateY(0); }

/* Login gate */
.gate { min-height:100svh; display:grid; place-items:center; padding:1.5rem; }
.gate__card { width:min(100%, 380px); padding:2.2rem; text-align:center; }
.gate__card h1 { font-size:1.6rem; margin-bottom:.4rem; }
.gate__card p { color:var(--text-dim); font-size:.92rem; margin-bottom:1.4rem; }
.gate__card input { width:100%; padding:.9rem 1rem; border-radius:12px; background:var(--surface); border:1px solid var(--stroke); color:var(--text); margin-bottom:.9rem; text-align:center; }
.gate__err { color:var(--magenta); font-size:.85rem; min-height:1.2em; }

/* ----------------------------- Utilities --------------------------- */
.mt-1{margin-top:.6rem}.mt-2{margin-top:1.2rem}.mt-3{margin-top:2rem}
.muted{color:var(--text-dim)} .faint{color:var(--text-faint)}
.tag { display:inline-block; padding:.3rem .7rem; border-radius:999px; font-size:.74rem; letter-spacing:.08em; text-transform:uppercase; font-weight:700; border:1px solid var(--stroke); color:var(--text-dim); }
.divider { height:1px; background:var(--stroke); margin:2rem 0; }

/* ============================ Responsive =========================== */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap:2rem; }
  .hero__viz { max-height:60svh; aspect-ratio:1/1; margin-inline:auto; max-width:420px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns:1fr; }
  .footer__grid { grid-template-columns:1fr 1fr; }
  .nav__links { display:none; }
  .nav__burger { display:block; }
  .nav.open .nav__links {
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    gap:1rem; padding:1.4rem 1.2rem; background:rgba(5,6,11,.97); border-bottom:1px solid var(--stroke);
  }
  .qr-card { grid-template-columns:1fr; justify-items:center; text-align:center; }
}
@media (max-width: 600px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns:1fr; }
  .ed-row { grid-template-columns: 1fr 80px auto; }
  .ed-row .size-cell { display:none; }
  .hero__stats { gap:1.4rem; }
  .menu-item__name { font-size:.95rem; }
}

/* =====================================================================
   ✦ BRAND-OVERHAUL — Classic Lounge (Smaragd · Gold · Schwarz, Cinzel)
   Überschreibt das frühere Neon-Theme gemäß Markenboard.
   ===================================================================== */
:root {
  --bg:            #0b0b0d;
  --bg-2:          #121417;
  --surface:       rgba(255,255,255,.038);
  --surface-2:     rgba(255,255,255,.075);
  --stroke:        rgba(212,175,55,.16);
  --stroke-strong: rgba(212,175,55,.34);

  --text:          #f5f5f5;
  --text-dim:      #b9bdc1;
  --text-faint:    #80868c;

  --emerald:       #16b488;
  --emerald-deep:  #0f7a5a;
  --emerald-dark:  #1e3a36;
  --gold:          #d4af37;
  --gold-soft:     #f0d384;
  --danger:        #e0556b;

  --cyan:   var(--emerald);   /* Kompatibilität mit Altklassen */
  --magenta:var(--danger);
  --violet: var(--emerald-deep);

  --grad-neon:    linear-gradient(120deg, #16b488 0%, #0f7a5a 60%, #d4af37 130%);
  --grad-emerald: linear-gradient(120deg, #1bd0a0 0%, #0f7a5a 100%);
  --grad-gold:    linear-gradient(120deg, #f6e3a3 0%, #d4af37 45%, #b8902b 100%);
  --grad-surface: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.015));

  --shadow-neon: 0 0 0 1px rgba(15,122,90,.3), 0 16px 60px -18px rgba(22,180,136,.5);

  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-sub:     "Montserrat", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-script:  "Pinyon Script", "Great Vibes", cursive;
}

/* Atmosphäre in Smaragd/Gold */
.bg-fx {
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(22,180,136,.18), transparent 60%),
    radial-gradient(1000px 650px at 6% 8%, rgba(15,122,90,.16), transparent 55%),
    radial-gradient(900px 700px at 60% 115%, rgba(212,175,55,.10), transparent 55%),
    var(--bg);
}
.bg-grid {
  background-image:
    linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
}
.orb--1 { background: var(--emerald-deep); opacity:.4; }
.orb--2 { background: var(--gold); opacity:.2; }
.viz-glow { background: radial-gradient(circle, rgba(22,180,136,.42), transparent 65%); }
.viz-ring { border-color: rgba(212,175,55,.18); }

/* Typografie */
.eyebrow { font-family: var(--font-sub); color: var(--emerald); letter-spacing:.26em; }
.eyebrow::before { background: var(--emerald); }
h1, h2, h3 { font-weight: 600; letter-spacing: .012em; }
.stat .lbl, .nav__links a, .chip, .hours li, .lead, .feature p, .muted { font-family: var(--font-body); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* Buttons */
.btn { font-family: var(--font-sub); letter-spacing:.04em; }
.btn--primary { color:#06140e; background: var(--grad-emerald); box-shadow: 0 14px 40px -12px rgba(22,180,136,.55); }
.btn--primary:hover { box-shadow: 0 20px 56px -12px rgba(22,180,136,.85); }
.btn--whatsapp { color:#06140e; background: linear-gradient(120deg,#2ce06f,#0f9d58); box-shadow:0 14px 40px -12px rgba(37,211,102,.5); }
.btn--whatsapp:hover { box-shadow:0 20px 56px -12px rgba(37,211,102,.8); }
.btn--ghost:hover { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(212,175,55,.4); }

/* Marke (Nav) */
.brand { font-family: var(--font-display); font-size:1.1rem; gap:.6rem; align-items:center; letter-spacing:.04em; }
.brand .dot { color: var(--emerald); }
.brand__mono { display:grid; place-items:center; width:42px; height:42px; border-radius:50%;
  border:1px solid var(--gold); color:var(--gold); font-family:var(--font-display); font-weight:700; font-size:1rem;
  background:radial-gradient(circle at 50% 28%, rgba(212,175,55,.2), transparent 70%); flex:none; }
.brand__txt { display:flex; flex-direction:column; line-height:1.06; }
.brand__name { font-family:var(--font-display); font-weight:600; letter-spacing:.18em; font-size:.92rem; color:var(--text); }
.brand__sub  { font-family:var(--font-sub); font-weight:600; letter-spacing:.2em; font-size:.55rem; text-transform:uppercase; color:var(--text-faint); margin-top:.12rem; }

/* Hero-Markenschriftzug */
.logo-classic { display:block; font-family:var(--font-display); font-weight:700; letter-spacing:.14em;
  font-size:clamp(2.7rem,6.8vw,5rem); line-height:1;
  background:linear-gradient(180deg,#ffffff 0%,#ece6d6 52%,#cbb26a 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent; }
.logo-lounge { display:block; font-family:var(--font-script); color:var(--emerald);
  font-size:clamp(3.4rem,9.5vw,6.6rem); line-height:.78; margin-top:-.06em;
  text-shadow:0 0 28px rgba(22,180,136,.5); }
.hero__city { font-family:var(--font-sub); font-weight:600; letter-spacing:.32em; text-transform:uppercase;
  font-size:.72rem; color:var(--gold); margin-top:1.1rem; }
.hero__tag { font-family:var(--font-script); font-size:1.8rem; color:var(--text-dim); margin-top:.2rem; }

/* Live-Status-Pille (Navigation) */
.status-pill { display:inline-flex; align-items:center; gap:.5rem; padding:.42rem .8rem; border-radius:999px;
  border:1px solid var(--stroke); background:var(--surface); font-family:var(--font-sub); font-weight:600;
  font-size:.78rem; white-space:nowrap; backdrop-filter:blur(8px); }
.status-pill .dot { width:9px; height:9px; border-radius:50%; flex:none; background:var(--text-faint); }
.status-pill .sub { color:var(--text-faint); font-weight:500; }
.status-pill.open  { border-color:rgba(22,180,136,.45); }
.status-pill.open  .dot { background:var(--emerald); animation:livePulse 2s infinite; }
.status-pill.open  .lbl { color:var(--emerald); }
.status-pill.closed { border-color:rgba(224,85,107,.4); }
.status-pill.closed .dot { background:var(--danger); }
.status-pill.closed .lbl { color:var(--danger); }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(22,180,136,.5)} 70%{box-shadow:0 0 0 7px rgba(22,180,136,0)} 100%{box-shadow:0 0 0 0 rgba(22,180,136,0)} }

/* Statuszeile in der Öffnungszeiten-Karte */
.hours-status { display:inline-flex; align-items:center; gap:.5rem; margin-bottom:1rem; padding:.45rem .85rem;
  border-radius:999px; font-family:var(--font-sub); font-weight:600; font-size:.85rem; }
.hours-status .dot { width:10px; height:10px; border-radius:50%; }
.hours-status .sub { color:var(--text-dim); font-weight:500; }
.hours-status.open  { color:var(--emerald); border:1px solid rgba(22,180,136,.4); }
.hours-status.open  .dot { background:var(--emerald); animation:livePulse 2s infinite; }
.hours-status.closed { color:var(--danger); border:1px solid rgba(224,85,107,.4); }
.hours-status.closed .dot { background:var(--danger); }

/* Highlight-Tags (Gut zu wissen) */
.perks { display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin-top:1.6rem; }
.perks .tag { border-color:var(--stroke); color:var(--text-dim); }

/* Größere 3D-Shisha + Hero-Balance */
.nav__cta { gap:.7rem; }
.hero__grid { grid-template-columns: .9fr 1.18fr; gap:1.4rem; }
.hero__viz { aspect-ratio:4/5; max-height:92svh; }
.hero__viz model-viewer { filter: drop-shadow(0 30px 60px rgba(0,0,0,.55)); }

@media (max-width: 1024px) {
  .nav__links { display:none; }
  .nav__burger { display:block; }
  .nav.open .nav__links {
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    gap:1rem; padding:1.4rem 1.2rem; background:rgba(11,11,13,.97); border-bottom:1px solid var(--stroke);
  }
}
@media (max-width: 940px) {
  .hero__grid { grid-template-columns:1fr; }
  .hero__viz { aspect-ratio:1/1; max-width:560px; max-height:64svh; margin-inline:auto; }
}
@media (max-width: 600px) {
  .status-pill .sub { display:none; }
  .status-pill { padding:.4rem .7rem; font-size:.74rem; }
  .nav__cta .btn--gold { display:none; }      /* auf Mobil: nur Status + Burger */
  .brand__txt { display:none; }               /* auf Mobil nur CL-Monogramm */
  .brand__mono { width:40px; height:40px; font-size:.95rem; }
  .nav__inner { padding:.8rem 0; }
}

/* =====================================================================
   ✦ ECHTES LOGO + FOTO-GALERIE (reale Bilder der Classic Lounge)
   ===================================================================== */
.brand__logo { height:50px; width:auto; display:block; }
.menu-top .brand__logo { height:44px; }
.hero__logo { width:min(82%, 470px); height:auto; display:block; margin:0 0 .4rem;
  filter: drop-shadow(0 12px 36px rgba(22,180,136,.28)); }

.gallery { display:grid; grid-template-columns:repeat(4, 1fr); gap:1rem; }
.gallery figure { position:relative; overflow:hidden; border-radius:18px; border:1px solid var(--stroke);
  margin:0; aspect-ratio:1/1; box-shadow:var(--shadow-soft); }
.gallery img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.gallery figure:hover img { transform:scale(1.07); }
.gallery figcaption { position:absolute; inset:auto 0 0 0; padding:.9rem 1rem;
  background:linear-gradient(transparent, rgba(5,6,11,.88)); font-family:var(--font-sub);
  font-weight:600; font-size:.86rem; color:var(--text); }
.gallery .wide { grid-column:span 2; aspect-ratio:auto; }

@media (max-width: 900px) {
  .gallery { grid-template-columns:repeat(2, 1fr); }
  .gallery .wide { grid-column:span 2; }
}
@media (max-width: 600px) {
  .brand__logo { height:42px; }
  .hero__logo { width:min(86%, 340px); }
}

/* =====================================================================
   ✦ FEINSCHLIFF — Raster weg, Shisha ohne Rand, einheitliche Rundung,
     Neon-Icons, sauberere Headlines & schönere Getränkekarte
   ===================================================================== */

/* 1) Hintergrund-Raster entfernen */
.bg-grid { display:none !important; }

/* 2) Ovalen Rand/Ring um die Shisha entfernen, weicher Glow bleibt */
.viz-ring { display:none !important; }
.viz-glow { inset:14%; background:radial-gradient(circle, rgba(22,180,136,.30), transparent 68%); filter:blur(42px); }
.hero__viz model-viewer { background:transparent; --poster-color:transparent; }

/* 3) Einheitliche Rundung aller Steuerelemente im Header */
.btn, .btn--sm { border-radius:14px; }
.status-pill { border-radius:14px; }
.chip { border-radius:12px; }

/* 4) Neon-Grün-Icons (einfarbig, konsistent) */
[data-icon] { display:inline-flex; align-items:center; justify-content:center; color:var(--emerald); line-height:0; }
[data-icon] svg { width:1.5em; height:1.5em; }
.feature .ic { color:var(--emerald); background:rgba(22,180,136,.1); border-color:rgba(22,180,136,.30); }
.feature .ic svg { width:26px; height:26px; }
.contact-row .ic { color:var(--emerald); }
.contact-row .ic svg { width:20px; height:20px; }
.perks .tag { display:inline-flex; align-items:center; gap:.45rem; }
.perks .tag svg { width:16px; height:16px; color:var(--emerald); }
.btn [data-icon] { color:inherit; }
.btn [data-icon] svg { width:18px; height:18px; }
.menu-search [data-icon] svg { width:18px; height:18px; }
.menu-cat__head .ic { color:var(--emerald); width:auto; height:auto; background:none; border:none; }
.menu-cat__head .ic svg { width:28px; height:28px; }

/* 5) Eyebrow mit Nummer */
.eyebrow .no { color:var(--gold); margin-right:.1rem; }

/* 6) Hero-Tagline etwas größer & edler */
.hero__tag { font-size:2.1rem; color:var(--text); opacity:.92; }

/* 7) Getränkekarte — Banner + zweispaltige Listen + Reveal */
.menu-hero { position:relative; overflow:hidden; border-radius:0 0 28px 28px; margin-bottom:.5rem; }
.menu-hero__bg { position:absolute; inset:0; }
.menu-hero__bg img { width:100%; height:100%; object-fit:cover; filter:brightness(.4) saturate(1.1); }
.menu-hero__bg::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,11,13,.55), rgba(11,11,13,.92)); }
.menu-hero__inner { position:relative; text-align:center; padding:clamp(3rem,8vw,5.5rem) 1.2rem clamp(2rem,5vw,3rem); }
.menu-hero__logo { width:min(70%,300px); height:auto; margin:0 auto 1.2rem; display:block; filter:drop-shadow(0 10px 30px rgba(22,180,136,.3)); }
.menu-hero h1 { font-size:clamp(1.8rem,5vw,3rem); }
.menu-hero .price-badge { display:inline-flex; align-items:center; gap:.6rem; margin-top:1.2rem; padding:.7rem 1.3rem; border-radius:999px;
  background:var(--grad-gold); color:#1a1206; font-family:var(--font-sub); font-weight:700; box-shadow:0 12px 30px -10px rgba(212,175,55,.5); }
.menu-hero .price-badge [data-icon] { color:#1a1206; }

.menu-list { grid-template-columns:1fr 1fr; column-gap:1.4rem; }
.menu-list.single { grid-template-columns:1fr; }
@media (max-width:680px){ .menu-list { grid-template-columns:1fr; } }

.menu-cat__head h2 { font-family:var(--font-display); }
.menu-cat__head .badge { font-family:var(--font-sub); }
.menu-cat__count { color:var(--text-faint); font-size:.85rem; font-family:var(--font-sub); margin-left:.2rem; }

.menu-item { opacity:0; transform:translateY(14px); transition:opacity .6s var(--ease), transform .6s var(--ease), background .2s, border-color .2s; }
.menu-item.in { opacity:1; transform:none; }
.flavor-tile { opacity:0; transform:translateY(12px); transition:opacity .5s var(--ease), transform .5s var(--ease), border-color .2s; }
.flavor-tile.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .menu-item,.flavor-tile{opacity:1!important;transform:none!important;} }

/* dezente Akzentlinie unter Kategorie-Überschrift */
.menu-cat__head { border-bottom:1px solid var(--stroke); padding-bottom:.7rem; }
