/* =============================================================
   LIMA LOUNGE — Shisha-Bar Walldorf
   Premium Dark + Gold Design System
   Fonts werden in den HTML-Dateien via Google Fonts geladen.
   Farben/Fonts zentral hier in :root → 1 Stelle zum Anpassen.
   ============================================================= */

:root {
  /* --- Farben --- */
  --bg: #0a0a0b;
  --bg-1: #0e0d10;
  --bg-2: #131216;
  --bg-elev: #17151b;
  --bg-glass: rgba(18, 16, 21, 0.72);

  --gold: #c9a24b;
  --gold-soft: #d9b766;
  --gold-light: #ecd79a;
  --gold-deep: #98782f;

  --text: #f4efe4;
  --muted: #a9a193;
  --muted-2: #7c7569;
  --line: rgba(201, 162, 75, 0.20);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* Gold-Verlauf für Headline-Akzente & edle Linien */
  --grad-gold: linear-gradient(115deg, #ecd79a 0%, #c9a24b 38%, #f6e7bd 64%, #a9842f 100%);
  --grad-gold-line: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold-light) 50%, var(--gold) 82%, transparent);

  /* --- Typografie --- */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* --- Layout --- */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 40px -12px rgba(201, 162, 75, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- Reset / Base ----------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* dezente Hintergrund-Textur (Vignette + warmer Schimmer) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(201, 162, 75, 0.10), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(201, 162, 75, 0.06), transparent 55%);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1rem; }

::selection { background: rgba(201, 162, 75, 0.3); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------- Layout-Helfer ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; z-index: 1; }
section[id], .hero[id] { scroll-margin-top: 84px; }

.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--grad-gold-line);
}
.section-head.left .eyebrow::after,
.eyebrow.solo::after { display: none; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.01em;
}
.section-title .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
  --btn-pad-y: 15px;
  --btn-pad-x: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-gold {
  background: var(--grad-gold);
  background-size: 180% 180%;
  color: #1a1305;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 16px 50px -10px rgba(201, 162, 75, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
  background: rgba(201, 162, 75, 0.06);
}

.btn-lg { --btn-pad-y: 18px; --btn-pad-x: 38px; font-size: 1rem; }

/* ----------------------------- Navbar ----------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand .brand-mark { width: 40px; height: 40px; flex: none; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px var(--line), 0 4px 16px -6px rgba(0,0,0,0.6); }
.brand .brand-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--grad-gold-line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; align-items: center; gap: 16px; }

/* Burger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 120;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after { transform: translate(-50%, 8px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* Mobile Overlay-Menü */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: linear-gradient(160deg, #0c0b0e 0%, #070608 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}
body.menu-open .nav-overlay { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text);
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
}
.nav-overlay a:hover { color: var(--gold-light); opacity: 1; }
.nav-overlay .btn { margin-top: 14px; }

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(110% 90% at 70% 18%, #1d1812 0%, #0c0a0b 46%, #060507 100%);
}
/* driftende, weiche Lichtschwaden (Ambient-Rauch, rein CSS) */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -2;
  opacity: 0.5;
  mix-blend-mode: screen;
}
.hero-glow.g1 { width: 620px; height: 620px; left: -8%; top: 4%; background: radial-gradient(circle, rgba(201,162,75,0.5), transparent 65%); animation: drift1 22s var(--ease) infinite alternate; }
.hero-glow.g2 { width: 520px; height: 520px; right: -6%; top: 28%; background: radial-gradient(circle, rgba(236,215,154,0.32), transparent 65%); animation: drift2 27s var(--ease) infinite alternate; }
.hero-glow.g3 { width: 440px; height: 440px; left: 38%; bottom: -14%; background: radial-gradient(circle, rgba(152,120,47,0.4), transparent 65%); animation: drift3 19s var(--ease) infinite alternate; }

@keyframes drift1 { to { transform: translate(120px, 60px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-90px, 80px) scale(1.2); } }
@keyframes drift3 { to { transform: translate(60px, -70px) scale(1.1); } }

/* Canvas-Rauch liegt über den Glows, hinter dem Text */
#smoke {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
/* feine Körnung + Vignette für edlen Foto-Look */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35), transparent 22%, transparent 70%, rgba(0,0,0,0.7));
}

.hero-content { padding: 130px 0 90px; max-width: 860px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 0.1em; }
.hero-badge strong { color: var(--text); font-weight: 600; }

.hero h1 {
  font-size: clamp(3.1rem, 11vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.hero h1 .line2 {
  display: block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Echtes Logo im Hero */
.hero-logo { margin: 0 0 22px; line-height: 0; }
.hero-logo img {
  width: clamp(210px, 30vw, 330px);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 55px rgba(201, 162, 75, 0.5));
}
/* Palmen-Deko (Echo zum Logo) */
.palm {
  position: absolute;
  z-index: -1;
  width: clamp(180px, 26vw, 320px);
  height: auto;
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
}
.palm-tr { top: -60px; right: -50px; transform: rotate(165deg); }
.palm-bl { bottom: -70px; left: -50px; transform: rotate(20deg); }
@media (max-width: 720px) {
  .palm { opacity: 0.1; }
  .palm-bl { display: none; }
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin: 8px 0 6px;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted-2);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 24px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
}
.scroll-cue .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ----------------------------- Scroll-Reveal ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ----------------------------- Erlebnis / Über uns ----------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-copy .section-title { margin-bottom: 22px; }
.about-copy p { color: var(--muted); font-size: 1.06rem; }
.about-copy .lead { color: var(--text); font-size: 1.18rem; }

.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media .badge-float {
  position: absolute;
  left: -26px; bottom: 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-media .badge-float .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-media .badge-float .lbl { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}
.stats .stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats .stat .lbl { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; margin-top: 4px; }

/* ----------------------------- Highlights ----------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  padding: 38px 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(201,162,75,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card .ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(201,162,75,0.06);
  color: var(--gold-light);
  margin-bottom: 22px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ----------------------------- Speisekarte ----------------------------- */
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 50px; }
.menu-tab {
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.menu-tab:hover { color: var(--text); border-color: var(--gold); }
.menu-tab.active { background: var(--grad-gold); color: #1a1305; border-color: transparent; font-weight: 600; box-shadow: var(--shadow-gold); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); }
.menu-group h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.menu-item { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; border-bottom: 1px dashed var(--line-soft); }
.menu-item:last-child { border-bottom: 0; }
.menu-item .mi-name { font-family: var(--font-display); font-size: 1.18rem; color: var(--text); white-space: nowrap; }
.menu-item .mi-desc { font-size: 0.85rem; color: var(--muted-2); display: block; font-family: var(--font-body); margin-top: 2px; }
.menu-item .mi-dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.14); transform: translateY(-4px); }
.menu-item .mi-price { font-family: var(--font-display); font-size: 1.18rem; color: var(--gold-light); white-space: nowrap; }
.menu-note { text-align: center; color: var(--muted-2); font-size: 0.85rem; margin-top: 44px; letter-spacing: 0.02em; }

/* ----------------------------- Galerie ----------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery-item .zoom-ico {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--line);
  color: var(--gold-light);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .zoom-ico { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 4, 6, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--gold-light);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover { border-color: var(--gold); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--gold-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.lightbox-nav:hover { border-color: var(--gold); background: rgba(201,162,75,0.08); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

/* ----------------------------- Bewertungen ----------------------------- */
.reviews-wrap { display: grid; grid-template-columns: 0.8fr 2fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.reviews-score {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
}
.reviews-score .big {
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reviews-score .stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.15em; margin: 10px 0 8px; }
.reviews-score .count { color: var(--muted); font-size: 0.9rem; }
.reviews-score .src { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 0.82rem; color: var(--gold-light); border-top: 1px solid var(--line-soft); padding-top: 16px; }

.reviews-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.review {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.review:hover { transform: translateY(-5px); border-color: var(--line); }
.review .stars { color: var(--gold); letter-spacing: 0.12em; margin-bottom: 14px; font-size: 0.95rem; }
.review p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--text); line-height: 1.6; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review .who .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold);
  color: #1a1305; font-weight: 700; font-family: var(--font-display);
}
.review .who .nm { font-size: 0.92rem; font-weight: 600; }
.review .who .mt { font-size: 0.76rem; color: var(--muted-2); }

/* ----------------------------- Standort / Öffnungszeiten ----------------------------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: stretch; }
.hours-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
}
.hours-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.hours-card .hint { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.hours-row:last-of-type { border-bottom: 0; }
.hours-row .day { color: var(--muted); letter-spacing: 0.04em; }
.hours-row.today .day { color: var(--gold-light); font-weight: 600; }
.hours-row .time { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }
.hours-row.today .time { color: var(--gold-light); }
.hours-row .closed { color: var(--muted-2); font-size: 0.95rem; }

.contact-lines { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 16px; }
.contact-line { display: flex; align-items: center; gap: 14px; color: var(--text); }
.contact-line svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.contact-line a:hover { color: var(--gold-light); }
.contact-line span small { display: block; color: var(--muted-2); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  position: relative;
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.4) invert(0.9) hue-rotate(180deg) contrast(0.9); }

/* ----------------------------- CTA-Band ----------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  text-align: center;
  padding: clamp(54px, 8vw, 96px) clamp(24px, 5vw, 80px);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(201,162,75,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}
.cta-inner::before { background: rgba(201,162,75,0.5); left: -80px; top: -120px; }
.cta-inner::after { background: rgba(152,120,47,0.5); right: -80px; bottom: -120px; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin-bottom: 16px; }
.cta-inner p { color: var(--muted); max-width: 520px; margin: 0 auto 34px; font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ----------------------------- Footer ----------------------------- */
.footer { border-top: 1px solid var(--line-soft); padding: 70px 0 32px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-soft); }
.footer .brand { margin-bottom: 18px; }
.footer-about p { color: var(--muted); font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 0.95rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.socials a:hover { color: var(--gold-light); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 26px; color: var(--muted-2); font-size: 0.84rem; }
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ----------------------------- Floating WhatsApp ----------------------------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  box-shadow: 0 12px 34px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.4s var(--ease);
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #0a0a0b; }
@keyframes waPulse {
  0% { box-shadow: 0 12px 34px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 12px 34px -8px rgba(37,211,102,0.6), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 34px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* ----------------------------- Legal-Seiten ----------------------------- */
.legal { padding: 160px 0 100px; position: relative; z-index: 1; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 14px; }
.legal .lead { color: var(--muted); margin-bottom: 48px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--gold-light); }
.legal h3 { font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.04em; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.legal .todo {
  background: rgba(201,162,75,0.07);
  border: 1px dashed var(--gold-deep);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin: 24px 0;
}
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-top: 50px; color: var(--gold-light); font-weight: 500; }
.back-home:hover { gap: 12px; }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 460px; }
  .reviews-wrap { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .menu-cols { grid-template-columns: 1fr; gap: 36px; }
  .reviews-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .stats { gap: 16px; }
  .about-media .badge-float { left: 50%; transform: translateX(-50%); bottom: -26px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr; text-align: center; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
}

/* ----------------------------- Reduced Motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  #smoke, .hero-glow { display: none; }
}
