/* Buddha Lounge & Buddha Shop — Liquid Glass Design-System
   Apple-typisch: Systemschrift, Translucenz/Blur statt Farbflächen,
   großzügiger Weißraum, ein einziger zurückhaltend eingesetzter Akzent. */

:root {
  --bg: #121216;
  --accent: #f2b84b;         /* Gold — Haupt-Akzent */
  --accent-soft: #e2934a;
  --accent-bordeaux: #7a3042;
  --accent-green: #35604f;
  --text: rgba(255,255,255,.94);
  --text-muted: rgba(255,255,255,.56);
  --text-faint: rgba(255,255,255,.5);

  --glass-fill: rgba(255,255,255,.06);
  --glass-fill-strong: rgba(255,255,255,.10);
  --glass-border: rgba(255,255,255,.14);
  --glass-blur: blur(28px) saturate(160%);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-w: 860px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          system-ui, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.7,.24,1);
}

/* Sanfter Crossfade zwischen Seiten — native Browser-API, kein JS/Framework
   nötig. Unterstützende Browser bekommen den fließenden Übergang, alle
   anderen laden ganz normal (progressive enhancement). */
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .38s;
  animation-timing-function: cubic-bezier(.22,.7,.24,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  max-width: 100%; overflow-x: hidden;
  background: var(--bg);
  font-family: var(--font);
  color: var(--text);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Atmosphäre: weiche, große Farbflecken hinter dem Glas — kein Bild,
   reines CSS, 0 zusätzliche Requests. Bewegt sich minimal für Tiefe. */
body {
  position: relative;
  isolation: isolate;
}
body::before {
  content: "";
  position: fixed; inset: -10%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(40% 32% at 14% 10%, rgba(242,184,75,.24), transparent 72%),
    radial-gradient(34% 28% at 90% 8%, rgba(122,48,66,.20), transparent 72%),
    radial-gradient(38% 32% at 84% 88%, rgba(53,96,79,.20), transparent 72%),
    radial-gradient(48% 38% at 26% 98%, rgba(226,147,74,.16), transparent 72%),
    radial-gradient(30% 26% at 55% 45%, rgba(122,48,66,.08), transparent 75%),
    var(--bg);
  animation: drift 26s ease-in-out infinite alternate;
}
body::after {
  /* feines Korn, damit große Blur-Flächen nicht bandingen */
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-2%,1.5%,0) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px) clamp(40px, 8vw, 80px);
}

/* ── Glas-Grundbaustein — direkt auf jede Karte/Box angewendet
   (keine separate .glass-Klasse im HTML nötig) ── */
.info-box, .menu-cat, .picker a.card, .visual-menu {
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 20px 50px rgba(0,0,0,.35);
}

/* ── Kopfbereich ── */
header.site {
  text-align: center;
  padding: clamp(28px, 6vw, 48px) 0 clamp(10px, 2vw, 18px);
}
header.site.hero { padding-top: clamp(56px, 12vw, 110px); }

header.site .buddha-art {
  display: block;
  width: min(150px, 34vw);
  margin: 0 auto clamp(10px, 2vw, 18px);
  opacity: .8;
  filter: drop-shadow(0 12px 30px rgba(242,184,75,.18));
}
header.site .buddha-art img { width: 100%; height: auto; }

header.site .brand {
  font-family: var(--font);
  font-size: clamp(30px, 5.4vw, 44px);
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--text);
}
header.site .brand a { text-decoration: none; color: inherit; }
header.site .tagline {
  color: var(--text-muted);
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 400;
  margin: 8px 0 0;
  letter-spacing: .01em;
}

/* ── Landing-Seite (Shop/Lounge-Auswahl): soll komplett ohne Scrollen
   auf den Bildschirm passen — kleineres Logo, engere Abstände, vertikal
   zentriert zwischen Kopf und Fuß. ── */
body.landing {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body.landing header.site.hero {
  padding-top: clamp(20px, 5vh, 44px);
  padding-bottom: 0;
}
body.landing header.site .buddha-art {
  width: min(78px, 20vw);
  margin-bottom: clamp(6px, 1.4vh, 12px);
  opacity: .85;
}
body.landing header.site .brand { font-size: clamp(26px, 4.6vw, 38px); }
body.landing header.site .tagline { margin-top: 6px; }
body.landing main.wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-top: clamp(14px, 3vh, 28px);
  padding-bottom: clamp(14px, 3vh, 28px);
}
body.landing .picker { width: 100%; }
body.landing .picker a.card { padding: clamp(22px, 4.5vw, 34px) clamp(18px, 4vw, 26px); }
body.landing { overflow: hidden; }
body.landing header.site,
body.landing main.wrap,
body.landing footer.site {
  position: relative; z-index: 1;
  /* Diese Boxen sind breiter als ihr sichtbarer Inhalt (Text ist nur
     zentriert, die Box selbst spannt die volle Breite). Ohne dieses
     pointer-events:none würden sie den leeren Raum drumherum "stehlen"
     und die Ember-Würfel dort ungreifbar machen. Echte Klickziele
     (Links) werden direkt darunter wieder aktiviert. */
  pointer-events: none;
}
body.landing header.site a,
body.landing main.wrap a,
body.landing footer.site a {
  pointer-events: auto;
}

/* ── Ember-Feld: schwebende, glühende Shisha-Kohle-Würfel im Hintergrund
   der Startseite. Reines CSS/JS, keine Bilder — bleibt performant. Jeder
   Würfel ist per Zeiger greif- und wegschnippbar (assets/embers.js). ── */
.ember-field {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.ember-cube {
  position: absolute;
  pointer-events: auto;
  border-radius: 11%;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(255,255,255,.28), transparent 32%),
    linear-gradient(320deg, rgba(0,0,0,.4), transparent 42%),
    linear-gradient(145deg, #ffbb5e 0%, #e8632f 38%, #8a2a18 72%, #421208 100%);
  background-blend-mode: overlay, overlay, multiply, normal;
  background-size: cover;
  box-shadow:
    0 0 20px 4px rgba(232,99,47,.55),
    0 0 42px 10px rgba(242,184,75,.18),
    inset -6px -6px 10px rgba(0,0,0,.5),
    inset 4px 4px 9px rgba(255,214,150,.4);
  opacity: 0;
  transform: rotate(var(--r)) skew(var(--skew, 0deg));
  transition: opacity 1.3s var(--ease);
  cursor: grab;
  animation: ember-float 22s ease-in-out 0s infinite;
  touch-action: none;
}
.ember-cube.in { opacity: .95; }
.ember-cube.physics { animation: none; }
.ember-cube.dragging {
  animation: none;
  cursor: grabbing;
  box-shadow:
    0 0 26px 6px rgba(232,99,47,.7),
    0 0 52px 14px rgba(242,184,75,.24),
    inset -6px -6px 10px rgba(0,0,0,.5),
    inset 4px 4px 9px rgba(255,214,150,.45);
}
/* Organischer Wander-Pfad mit mehreren Wegpunkten statt starrem Hin-und-Her
   -- jeder Würfel bekommt eigene Zwischenpunkte (--dx1/--dy1 usw.), damit
   sich niemand wie der andere bewegt und sie auch mal deutlich seitlich
   bzw. aus Karten-Bereichen heraus wandern. */
@keyframes ember-float {
  0%   { transform: translate(0, 0) rotate(var(--r)) skew(var(--skew, 0deg)); }
  22%  { transform: translate(var(--dx1), var(--dy1)) rotate(calc(var(--r) + 8deg)) skew(var(--skew, 0deg)); }
  48%  { transform: translate(var(--dx2), var(--dy2)) rotate(calc(var(--r) + 18deg)) skew(var(--skew, 0deg)); }
  74%  { transform: translate(var(--dx3), var(--dy3)) rotate(calc(var(--r) + 10deg)) skew(var(--skew, 0deg)); }
  100% { transform: translate(0, 0) rotate(var(--r)) skew(var(--skew, 0deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .ember-cube { animation: none; }
}
body.landing footer.site {
  padding: 0 20px clamp(20px, 4vh, 34px);
}

.status-bar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 10px 0 0;
  font-size: 12.5px; font-weight: 500; color: var(--text-muted);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto;
  background: var(--text-faint);
}
.status-dot.is-open { background: #4fbf7a; box-shadow: 0 0 0 3px rgba(79,191,122,.18); }
.status-dot.is-soon { background: var(--accent); box-shadow: 0 0 0 3px rgba(242,184,75,.18); }
.status-sep { color: var(--text-faint); }
.status-rating {
  color: var(--text-muted); font-weight: 600;
}
.status-rating:hover { color: var(--text); }
.status-rating .star { color: var(--accent); }
.status-hint {
  margin: 4px 0 0;
  font-size: clamp(9.5px, 2.6vw, 11px); line-height: 1.3;
  color: var(--text-faint); text-align: center;
  white-space: nowrap;
}

.insta-note {
  position: relative; z-index: 1;
  margin: 0; padding: 12px 20px 16px;
  font-size: clamp(12px, 3.2vw, 13px); color: var(--text-muted);
  text-align: center;
}

nav.crumbs {
  font-size: 13px; color: var(--text-faint); text-align: center;
  padding: 4px 0 clamp(20px, 4vw, 32px);
  font-weight: 400;
}
nav.crumbs a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(255,255,255,.28); }
nav.crumbs a:hover { color: var(--text); text-decoration-color: currentColor; }

/* ── Buttons: Glas-Pillen, kein Farbblock ── */
.btn {
  display: inline-block;
  font-size: 15px; font-weight: 590; letter-spacing: -.005em;
  color: var(--text);
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--glass-fill-strong);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 8px 24px rgba(0,0,0,.28);
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 12px 30px rgba(0,0,0,.32);
}
.btn:active { transform: translateY(0); }
.btn.secondary {
  background: transparent;
  box-shadow: none;
  border-color: rgba(255,255,255,.16);
  color: var(--text-muted);
}
.btn.secondary:hover { color: var(--text); background: var(--glass-fill); }

/* ── Karten (Hub-Auswahl) ── */
.picker {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 3vw, 22px);
  padding: clamp(6px, 2vw, 14px) 0 0;
}
@media (max-width: 600px) { .picker { grid-template-columns: 1fr; } }

.picker a.card {
  display: block;
  padding: clamp(30px, 6vw, 44px) clamp(20px, 4vw, 26px);
  text-align: center;
  transition: transform .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.picker a.card:hover, .picker a.card:focus-visible {
  transform: translateY(-4px);
  background: var(--glass-fill-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 28px 60px rgba(0,0,0,.4);
}
.picker .icon {
  width: 30px; height: 30px; margin: 0 auto 16px;
  color: var(--accent);
}
.picker h2 {
  font-size: 19px; font-weight: 600; letter-spacing: -.01em;
  margin: 0 0 6px;
}
.picker p {
  margin: 0; color: var(--text-muted); font-size: 14px;
  line-height: 1.55; font-weight: 400;
}

/* ── Info-Grid ── */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 0 0 clamp(22px, 4vw, 32px);
}
.info-box {
  padding: 24px 20px 26px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.info-box .info-icon {
  width: 22px; height: 22px; margin-bottom: 10px;
  color: var(--accent);
}
.info-box h3 {
  margin: 0 0 8px; font-size: 12px; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-faint); font-weight: 600;
}
.info-box p { margin: 0; line-height: 1.65; font-size: 15.5px; font-weight: 400; text-align: center; }
.info-box a { color: var(--text); }
.info-box a:hover { color: var(--accent); }

/* ── Menü ── */
.menu-section { margin: clamp(30px, 5vw, 46px) 0; }
.menu-section h2 {
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 600; letter-spacing: -.01em;
  margin: 0 0 6px;
}
.menu-section .sub-note { color: var(--text-faint); font-size: 13px; margin: 4px 0 16px; font-weight: 400; }

.menu-cat { padding: 6px 22px; margin: 16px 0; }
.menu-cat h3 {
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-faint); font-weight: 600; margin: 16px 0 2px;
}
.menu-cat ul { list-style: none; margin: 0; padding: 0; }
.menu-cat li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15.5px; font-weight: 400;
}
.menu-cat li:last-child { border-bottom: 0; }
.menu-cat li .name { color: var(--text); }
.menu-cat li .desc { display: block; color: var(--text-faint); font-size: 12.5px; margin-top: 2px; }
.menu-cat li .price { white-space: nowrap; color: var(--text-muted); font-variant-numeric: tabular-nums; font-weight: 500; }

/* ── Bildbasierter (nicht indexierter) Bereich ── */
.visual-menu { padding: clamp(16px, 4vw, 22px); margin: 18px 0 36px; }
.visual-menu img { border-radius: var(--radius-sm); }
.visual-menu .hint { font-size: 12.5px; color: var(--text-faint); margin-top: 12px; text-align: center; font-weight: 400; }

/* ── Instagram-Bereich (eigenes Design statt offizielles Meta-Embed —
   passt sonst optisch nicht zum ruhigen Glass-Look) ──
   Aufbau: großer Kopf mit Marken-Gradient + Handle/Follow-Button,
   darunter ein Kachel-Raster (Fotos/Reels — Platzhalter bis echtes
   Material vorliegt, dann einfach die <img>/<video> in reel-tile
   austauschen). */
.insta-block {
  margin: 0 0 34px;
  overflow: hidden;
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 20px 50px rgba(0,0,0,.35);
}
.insta-head {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 22px 20px;
  position: relative;
}
.insta-head::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(242,184,75,.14), rgba(217,75,122,.10) 55%, rgba(122,63,176,.12));
  pointer-events: none;
}
.insta-ring {
  flex: 0 0 auto; position: relative; z-index: 1;
  width: 52px; height: 52px; border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #f2b84b, #d94b7a 55%, #7a3fb0);
  display: flex; align-items: center; justify-content: center;
}
.insta-ring span {
  width: 100%; height: 100%; border-radius: 50%;
  background: #17171b;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.insta-ring svg { width: 24px; height: 24px; }
.insta-text { position: relative; z-index: 1; flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.insta-text strong { font-size: 16px; font-weight: 600; }
.insta-text span { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.insta-follow {
  position: relative; z-index: 1; flex: 0 0 auto;
  font-size: 13.5px; font-weight: 600; color: var(--text);
  padding: 9px 18px; border-radius: 999px;
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.insta-follow:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }

/* Karussell statt Raster: platzsparender, wirkt hochwertiger, an mobile
   Instagram-Storyzeilen angelehnt. Natives Scroll+Snap statt JS-Slider —
   leichter, funktioniert auch ohne JS-Interaktion. */
.reel-grid {
  display: flex;
  gap: 12px;
  padding: 6px 22px 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-left: 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22px, #000 calc(100% - 22px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 22px, #000 calc(100% - 22px), transparent);
}
.reel-grid::-webkit-scrollbar { display: none; }
.reel-tile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(150px, 38vw, 196px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.reel-tile:hover, .reel-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.36);
}
.reel-tile img, .reel-tile video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.reel-tile img {
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.reel-tile img.loaded {
  opacity: 1;
}
.reel-tile .reel-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.28);
}
.reel-tile .reel-icon svg { width: 24px; height: 24px; }
.reel-tile.has-media .reel-icon { display: none; }
.reel-tile .reel-play {
  position: absolute; top: 8px; right: 8px; z-index: 1;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.42);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: #fff;
}
.reel-tile .reel-play svg { width: 12px; height: 12px; }
.reel-tile .reel-cta {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center; gap: 5px;
  padding: 10px 10px 14px;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72));
  font-size: 11.5px; font-weight: 600; letter-spacing: -.005em;
  color: var(--text); text-align: center;
  animation: reel-cta-in .35s var(--ease);
}
.reel-tile .reel-cta svg { width: 13px; height: 13px; flex: 0 0 auto; }
.reel-tile .reel-mute {
  position: absolute; bottom: 8px; left: 8px; z-index: 2;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: #fff;
}
.reel-tile .reel-mute svg { width: 13px; height: 13px; }
.reel-tile .reel-progress {
  position: absolute; top: 8px; left: 8px; right: 8px; z-index: 2;
  height: 2.5px; border-radius: 999px;
  background: rgba(255,255,255,.28);
  overflow: hidden;
}
.reel-tile .reel-progress > span {
  display: block; height: 100%; width: 100%;
  background: #fff;
  transform: translateX(-100%);
  animation: reel-progress-fill linear forwards;
}
@keyframes reel-progress-fill {
  to { transform: translateX(0); }
}
@keyframes reel-cta-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reel-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35));
  pointer-events: none;
}
/* ── Karte / Anfahrt ── */
.map-embed {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  margin: 8px 0 28px;
}
.map-embed iframe {
  display: block; width: 100%; height: 320px; border: 0;
  filter: grayscale(.15) brightness(1) contrast(1.03) saturate(1.1);
}
.map-embed .map-tint {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(150deg, rgba(10,10,12,.22) 0%, rgba(122,48,66,.08) 48%, rgba(242,184,75,.08) 100%);
  mix-blend-mode: color;
}
.map-badge {
  position: absolute; z-index: 2; right: 14px; top: 14px;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(8,8,10,.74);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px; font-weight: 600; color: var(--text);
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.map-badge:hover { background: rgba(8,8,10,.88); transform: translateY(-1px); }
.map-badge svg { width: 14px; height: 14px; color: var(--accent); flex: 0 0 auto; }

/* ── Footer ── */
footer.site {
  text-align: center; padding: clamp(30px, 6vw, 54px) 20px clamp(50px, 9vw, 76px);
  color: var(--text-faint); font-size: 13px; font-weight: 400;
}
footer.site .footer-brand { margin: 0; font-weight: 600; color: var(--text-muted); }
footer.site .footer-address { margin: 3px 0 0; }
footer.site .legal-links { margin-top: 12px; }
footer.site .legal-links a { color: var(--text-faint); margin: 0 8px; }
footer.site .legal-links a:hover { color: var(--text-muted); }

@media (max-width: 480px) {
  .glass, .info-box, .menu-cat, .picker a.card, .visual-menu { border-radius: var(--radius-sm); }
}
