/* ==========================================
   Café Maryami · Düsseldorf-Bilk
   Warm, einladend, marokkanisch-persisch inspiriert
   ========================================== */

:root {
  /* Farb-System: warmes cream + terracotta + tea-green */
  --bg: oklch(0.97 0.015 75);
  --bg-soft: oklch(0.94 0.020 70);
  --bg-card: oklch(0.99 0.008 75);
  --bg-warm: oklch(0.92 0.030 65);

  --ink: oklch(0.22 0.030 50);
  --ink-soft: oklch(0.42 0.025 50);
  --ink-mute: oklch(0.58 0.020 60);

  --accent: oklch(0.58 0.130 35);
  --accent-strong: oklch(0.48 0.140 32);
  --accent-soft: oklch(0.92 0.040 35);
  --accent-ink: oklch(0.99 0.005 75);

  --tea: oklch(0.50 0.080 150);
  --tea-soft: oklch(0.92 0.030 150);

  --line: oklch(0.86 0.015 70);
  --line-soft: oklch(0.91 0.012 70);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px oklch(0.20 0.03 50 / 0.05);
  --shadow: 0 8px 28px -10px oklch(0.20 0.03 50 / 0.18);
  --shadow-warm: 0 12px 40px -12px oklch(0.58 0.130 35 / 0.25);

  --max-w: 1240px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* Typografie */
h1, h2, h3, h4 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p { color: var(--ink-soft); }

.eyebrow {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  color: var(--accent);
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-1.5deg);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 60ch;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 22px -10px rgba(37, 211, 102, 0.7);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}
.btn-whatsapp svg { flex-shrink: 0; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================
   WELCOME-INTRO Overlay
   ========================================== */
.intro {
  position: fixed; inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 50% 50%, oklch(0.92 0.040 35) 0%, oklch(0.97 0.015 75) 60%, var(--bg) 100%);
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: introFade 2.4s ease forwards;
}
.intro-inner {
  text-align: center;
  animation: introScale 2.2s ease forwards;
}
.intro-mark {
  font-family: 'Marcellus', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.intro-tag {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  transform: rotate(-2deg);
}
.intro-bar {
  width: 200px;
  height: 2px;
  margin: 0 auto;
  background: oklch(0.86 0.015 70);
  position: relative;
  overflow: hidden;
}
.intro-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: introProgress 1.6s ease forwards;
}
@keyframes introScale {
  0% { transform: scale(0.92); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes introProgress {
  to { transform: translateX(0); }
}
@keyframes introFade {
  0%, 80% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
.intro.done { display: none; }

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}

/* ==========================================
   HEADER
   ========================================== */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.97 0.015 75 / 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
nav a:hover { color: var(--accent); }
nav a.btn { color: var(--accent-ink); }
nav a.btn:hover { color: var(--accent-ink); }

.nav-call {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  border-radius: 12px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  nav ul { display: none; }
  nav.mobile-open ul {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 16px;
  }
  nav.mobile-open ul a { padding: 8px 0; }
  .menu-toggle { display: inline-flex; }
  .nav-call { display: inline-flex; }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 100px);
}
.hero-text {
  padding: 0 clamp(20px, 4vw, 48px) 0 clamp(20px, 6vw, 80px);
}
.hero h1 {
  margin-top: 24px;
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 44px;
  align-items: center;
  color: var(--ink-mute);
  font-size: 0.92rem;
}
.hero-meta .stars {
  color: var(--accent);
  letter-spacing: 0.05em;
}
.hero-meta .dot {
  width: 4px; height: 4px;
  background: var(--ink-mute);
  border-radius: 50%;
  display: inline-block;
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 60vh;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  margin-left: clamp(20px, 3vw, 40px);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, transparent 0%, oklch(0.20 0.03 50 / 0.10) 100%);
  pointer-events: none;
}

/* Zellige-Pattern als subtiles Ornament */
.tile-pattern {
  position: absolute;
  width: 180px; height: 180px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}
.tile-tl { top: 80px; left: 30px; }
.tile-br { bottom: 30px; right: 30px; transform: rotate(180deg); }

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
  }
  .hero-text { padding: 0 24px; order: 2; }
  .hero-image {
    order: 1;
    margin-left: 0;
    border-radius: 0;
    min-height: 60vw;
    aspect-ratio: 4/3;
  }
}

/* ==========================================
   ABOUT — Wie bei Freunden
   ========================================== */
.about {
  padding: clamp(70px, 12vw, 140px) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-quote {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--ink);
  line-height: 1.4;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 28px 0;
  font-style: normal;
}
.about p { margin-bottom: 18px; }
.about-feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.about-feature li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.94rem;
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-feature li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  margin-top: -1px;
}
@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-feature { grid-template-columns: 1fr; }
}

/* ==========================================
   SPEISEKARTE
   ========================================== */
.menu {
  padding: clamp(70px, 12vw, 140px) 0;
  background: var(--bg);
}
.menu-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.menu-head .eyebrow { display: block; margin-bottom: 12px; }
.menu-head h2 { margin-bottom: 18px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}
.menu-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.menu-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-image img { transform: scale(1.05); }
.menu-card-body { padding: 30px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.menu-card h3 { margin-bottom: 8px; }
.menu-card-sub {
  color: var(--ink-mute);
  font-size: 0.88rem;
  margin-bottom: 24px;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  transform: rotate(-1deg);
  display: inline-block;
}
.menu-list { display: flex; flex-direction: column; gap: 14px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}
.menu-item-desc {
  display: block;
  color: var(--ink-mute);
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.5;
}
.menu-item-price {
  font-family: 'Marcellus', serif;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-card-foot {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  border-top: 1px dashed var(--line);
  margin-top: 22px;
}

@media (max-width: 880px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   HIGHLIGHT-QUOTE
   ========================================== */
.highlight {
  padding: clamp(60px, 10vw, 120px) 0;
  background:
    linear-gradient(165deg, var(--accent-soft) 0%, oklch(0.94 0.020 70) 100%);
  position: relative;
  overflow: hidden;
}
.highlight-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.highlight .stars {
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.highlight blockquote {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--ink);
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 32px;
}
.highlight cite {
  font-style: normal;
  color: var(--ink-mute);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* ==========================================
   ATMOSPHÄRE / Bildergalerie-Teaser
   ========================================== */
.vibe {
  padding: clamp(70px, 12vw, 140px) 0;
}
.vibe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.vibe-text { padding-right: clamp(0px, 3vw, 40px); }
.vibe-text .eyebrow { display: block; margin-bottom: 12px; }
.vibe-text h2 { margin-bottom: 24px; }
.vibe-text p { margin-bottom: 16px; }
.vibe-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.vibe-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ink);
}
.vibe-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.vibe-image {
  background: url('/img/innenraum.jpg') center/cover;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vibe-tag {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--bg);
  padding: 12px 20px;
  border-radius: 999px;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
@media (max-width: 880px) {
  .vibe-inner { grid-template-columns: 1fr; }
  .vibe-text { padding-right: 0; order: 2; }
  .vibe-image { order: 1; aspect-ratio: 1/1; }
}

/* ==========================================
   GALERIE — Bento-Grid mit Café-Eindrücken
   ========================================== */
.gallery {
  padding: clamp(70px, 12vw, 140px) 0;
  background: var(--bg);
}
.gallery-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.gallery-head .eyebrow { display: block; margin-bottom: 12px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  cursor: zoom-in;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item::after {
  content: attr(data-tag);
  position: absolute;
  bottom: 14px; left: 14px;
  background: oklch(0.99 0.005 75 / 0.92);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--ink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.gal-item:hover::after { opacity: 1; transform: translateY(0); }

.gal-1 { grid-column: span 3; grid-row: span 2; }
.gal-2 { grid-column: span 2; grid-row: span 1; }
.gal-3 { grid-column: span 1; grid-row: span 1; }
.gal-4 { grid-column: span 2; grid-row: span 1; }
.gal-5 { grid-column: span 1; grid-row: span 1; }
.gal-6 { grid-column: span 3; grid-row: span 1; }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
  .gal-1 { grid-column: span 4; grid-row: span 2; }
  .gal-2, .gal-4, .gal-6 { grid-column: span 2; grid-row: span 1; }
  .gal-3, .gal-5 { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gal-1 { grid-column: span 2; grid-row: span 2; }
  .gal-2, .gal-3, .gal-4, .gal-5, .gal-6 { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================
   INFO — Öffnungszeiten + Lage
   ========================================== */
.info {
  padding: clamp(70px, 12vw, 140px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.info-card .eyebrow { display: block; margin-bottom: 8px; }
.info-card h3 { margin-bottom: 20px; }
.info-hours { display: flex; flex-direction: column; gap: 10px; }
.info-hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
  font-size: 0.95rem;
}
.info-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-hours-row.closed { color: var(--ink-mute); }
.info-hours-row strong { color: var(--ink); font-weight: 600; }
.info-card p { font-size: 0.96rem; line-height: 1.7; }
.info-hours-note {
  margin-top: 16px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-mute);
}
.info-card a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.info-card a:hover { border-color: var(--accent); }
.info-card-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.94rem;
}
@media (max-width: 880px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   RESERVIERUNG CTA
   ========================================== */
.cta-band {
  padding: clamp(70px, 10vw, 120px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, oklch(0.92 0.040 35) 0%, transparent 70%),
    var(--bg);
}
.cta-band .eyebrow { display: block; margin-bottom: 12px; }
.cta-band h2 { margin-bottom: 16px; max-width: 18ch; margin-inline: auto; }
.cta-band p { max-width: 56ch; margin: 0 auto 36px; }
.cta-band .btn-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: oklch(0.18 0.025 50);
  color: oklch(0.85 0.012 70);
  padding: clamp(50px, 8vw, 80px) 0 30px;
}
footer .brand { color: oklch(0.95 0.012 70); margin-bottom: 18px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer p { color: oklch(0.75 0.012 70); font-size: 0.9rem; line-height: 1.65; }
footer h5 {
  font-family: 'Marcellus', serif;
  font-size: 1rem;
  font-weight: 400;
  color: oklch(0.95 0.012 70);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
footer ul { display: flex; flex-direction: column; gap: 8px; }
footer ul a {
  color: oklch(0.75 0.012 70);
  font-size: 0.9rem;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid oklch(0.40 0.02 50);
  color: oklch(0.88 0.012 70);
  font-size: 0.86rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: oklch(0.30 0.02 50 / 0.4);
}
.footer-social svg { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid oklch(0.30 0.02 50);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: oklch(0.65 0.012 70);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================
   STICKY MOBILE BOTTOM-BAR
   ========================================== */
.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 24px -10px oklch(0.20 0.03 50 / 0.15);
}
.bottom-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}
.bottom-bar .bb-call {
  background: var(--bg-warm);
  color: var(--ink);
  border: 1px solid var(--line);
}
.bottom-bar .bb-reserve {
  background: var(--accent);
  color: var(--accent-ink);
}
@media (max-width: 880px) {
  .bottom-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ==========================================
   ANIMATIONS — Reveal-on-Scroll
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
}

/* ==========================================
   LEGAL PAGES (Impressum/Datenschutz)
   ========================================== */
.legal-page {
  padding: clamp(60px, 10vw, 120px) 0;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 { margin-bottom: 32px; font-size: clamp(2.2rem, 5vw, 3rem); }
.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}
.legal-page p, .legal-page address {
  font-style: normal;
  margin-bottom: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-page a { color: var(--accent); }

/* ==========================================
   BRAND-LOGO (Nav + Footer)
   ========================================== */
.brand-logo {
  height: 46px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 8px;
}
footer .brand-logo { height: 50px; }

/* ==========================================
   BEWERTUNGEN / Reviews
   ========================================== */
.reviews-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}
.reviews-head .stars {
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.reviews-head h2 { margin-bottom: 12px; }
.reviews-sub {
  color: var(--ink-mute);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}
.review-card .stars {
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.review-card blockquote {
  font-family: 'Marcellus', serif;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.review-card figcaption {
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
}
@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ==========================================
   ANMIETUNG / Eventlocation
   ========================================== */
.rental {
  padding: clamp(70px, 12vw, 140px) 0;
  background: var(--bg-soft);
}
.rental-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.rental-text .eyebrow { display: block; margin-bottom: 12px; }
.rental-text h2 { margin-bottom: 22px; }
.rental-text p { margin-bottom: 20px; color: var(--ink-soft); }
.rental-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.rental-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ink);
}
.rental-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.rental-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.rental-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16/10;
}
.rental-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 880px) {
  .rental-inner { grid-template-columns: 1fr; }
  .rental-media { order: 1; aspect-ratio: 16/10; }
  .rental-text { order: 2; }
}

/* Menu: Link zur kompletten Speisekarte */
.menu-more {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================
   VOLLE SPEISEKARTE (Landing-Menü + /karte)
   ========================================== */
.menu-doc-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.menu-sec {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px 24px;
}
.menu-sec-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 14px;
  margin-bottom: 18px;
  display: block;
}
.menu-sec h2 {
  font-family: 'Marcellus', serif;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.mrow { display: flex; align-items: baseline; gap: 10px; padding: 7px 0; }
.mrow .mname { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.mrow .msub { display: block; font-weight: 400; color: var(--ink-mute); font-size: 0.82rem; margin-top: 2px; line-height: 1.45; }
.mrow .mdots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); min-width: 16px; }
.mrow .mprice { font-family: 'Marcellus', serif; color: var(--accent); font-size: 1rem; white-space: nowrap; flex-shrink: 0; }
.menu-sec .menu-note { font-size: 0.82rem; color: var(--ink-mute); line-height: 1.6; margin-top: 8px; }
.menu-sec .menu-subhead { font-family: 'Manrope', sans-serif; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 18px 0 6px; }
@media (max-width: 880px) {
  .menu-doc-cols { grid-template-columns: 1fr; }
  .menu-sec-img { height: 220px; }
}
