
  /* ── Reset ─────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }

  /* ── Tokens ─────────────────────────────────────────── */
  :root {
    --ink:     #0a0807;          /* near-black, warm tint */
    --ink2:    #131009;
    --ink3:    #1e1a14;
    --ink4:    #28231a;
    --white:   #fdf8f1;          /* brighter warm off-white */
    --muted:   rgba(253,248,241,0.72);
    --muted2:  rgba(253,248,241,0.52);
    /* Akzent: goldgelb wie knuspriges Schnitzel */
    --ember:   #b67a1a;          /* deep golden */
    --amber:   #d79a2b;          /* warm schnitzel gold */
    --amber2:  #e7b24a;          /* hover/highlight */
    --rust:    #7a2200;
    --green:   #2d6a4f;          /* logo green */
    --border:  rgba(247,242,235,0.1);
    --border2: rgba(215,154,43,0.45);

    --slab:    'Great Vibes', 'Mrs Saint Delafield', cursive;
    --serif:   'Montserrat', sans-serif;
    --script:  'Montserrat', sans-serif;
    --sans:    'Montserrat', sans-serif;
  }

  body {
    background: var(--ink);
    color: var(--white);
    font-family: var(--serif);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Noise texture layer (subtle grain = rustic feel) */
  .noise {
    position: relative;
  }
  .noise::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  }

  /* ── Scrollbar ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--ink); }
  ::-webkit-scrollbar-thumb { background: var(--ink4); }

  /* ── Typography scale ── */
  .t-display {
    font-family: var(--slab);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0.01em;
  }
  .t-heading {
    font-family: var(--slab);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0.01em;
  }

  /* Script-Headlines nie fett darstellen */
  .hero-title,
  .dish-name,
  .dish-price,
  .special-title,
  .special-highlight,
  .event-day,
  .event-title,
  .about-tagline,
  .fact-num,
  .footer-brand-name,
  .mob-link {
    font-weight: 400;
  }
  .t-sub {
    font-family: var(--serif);
    font-style: normal;
    line-height: 1.4;
  }
  .t-label {
    font-family: var(--sans);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
  }
  .t-body {
    font-family: var(--serif);
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(253,248,241,0.82);
  }

  /* ── Ornament divider ── */
  .ornament {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--amber);
  }
  .ornament::before, .ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,134,10,0.5), transparent);
  }

  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 2rem;
    height: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
  }
  .btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

  .btn-primary {
    background: var(--ember);
    color: var(--white);
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.3);
  }
  .btn-primary:hover { background: #d96510; transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(247,242,235,0.4);
  }
  .btn-ghost:hover { border-color: var(--white); background: rgba(247,242,235,0.06); }

  .btn-amber {
    background: var(--amber);
    color: var(--ink);
    font-weight: 800;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.25);
  }
  .btn-amber:hover { background: var(--amber2); transform: translateY(-1px); }

  /* ── Icon button ── */
  .icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    background: none; border: none; cursor: pointer;
    color: var(--white); opacity: 0.6;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .icon-btn:hover { opacity: 1; }
  .icon-btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

  /* ── Rustic tag/badge ── */
  .tag {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: 1.5px solid var(--border);
    color: var(--muted);
  }
  .tag.tag-amber { border-color: rgba(200,134,10,0.5); color: var(--amber); }
  .tag.tag-ember { border-color: rgba(200,86,10,0.6); color: var(--ember); }
  .tag.tag-new   { border-color: rgba(200,86,10,0.8); color: var(--ember); background: rgba(200,86,10,0.12); }

  /* ── Scroll reveal ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in { opacity: 1; transform: none; }

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

  /* ══════════════════════════════════ NAVBAR ══ */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 66px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
  justify-content: flex-end;
    transition: background 0.3s ease;
  }
  #navbar.scrolled {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  }

  /* Logo SVG */
  .nav-logo {
    display: block;
    text-decoration: none;
    width: 74px;
    height: 66px;
    display: flex;
    align-items: center;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .nav-links-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
    margin-right: 1rem;
  }
  .nav-link {
    font-family: var(--sans);
    font-size: 0.7rem;
  font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  color: rgba(247,242,235,0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s;
  }
  .nav-link:hover { color: var(--white); }

  /* ══════════════════════════════════ HERO ══ */
  #hero {
    position: relative;
    width: 100%;
  height: 100vh;
  min-height: 100dvh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

/* Fullscreen Hero-Foto: Pfanne + Schnitzel + Gasflamme + Kocharm */
  .hero-photo {
    position: absolute;
    inset: 0;
  z-index: 0;
  background: url('assets/hero-pfanne-flamme-01.png') 72% 52% / cover no-repeat;
  /* deutlich heller, damit Pfanne/Schnitzel sichtbar bleibt */
  filter: brightness(0.65) contrast(1.35) saturate(0.7);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 52%;
  pointer-events: none;
  filter: none;
}

/* Halbtransparenter Dark-Layer für den gewünschten schwarzen Look */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.28) 40%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  /* Gasflamme / Pfannenglühen – warmes Amber-Oranje von unten */
  .hero-flame-glow {
    position: absolute;
    inset: 0;
  z-index: 2;
  display: none;
    background:
    radial-gradient(ellipse 36% 28% at 61% 74%,
      rgba(255,140,40,0.48) 0%,
      rgba(200,86,10,0.32) 34%,
      rgba(120,32,0,0.18) 60%,
        transparent 100%);
  }

  /* Edge vignette */
  .hero-vignette {
    position: absolute;
    inset: 0;
  z-index: 3;
  display: none;
    background:
      linear-gradient(to right, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.55) 35%, rgba(10,10,10,0.1) 60%, rgba(10,10,10,0.5) 100%),
      linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, transparent 25%, transparent 60%, rgba(10,10,10,0.92) 100%);
  }

  /* Vertical restaurant name (left side, like mockup) */
  .hero-vert {
    position: absolute;
  right: 0; top: 0; bottom: 0;
  width: clamp(240px, 16vw, 360px);
    display: flex;
    align-items: center;
    justify-content: center;
  z-index: 4;
    pointer-events: none;
  }
  .hero-vert-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: rgba(247,242,235,0.58);
    user-select: none;
  }
.hero-vert-main {
  /* gewünscht: Halbzeit in Montserrat */
  font-family: 'Montserrat', var(--sans);
  font-size: clamp(3.4rem, 8.8vw, 6.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);
}
.hero-vert-sub {
  /* gewünscht: Die Schnitzelfaktur ebenfalls Montserrat, fein */
  font-family: 'Montserrat', var(--sans);
  font-size: clamp(1.05rem, 2.2vw, 1.7rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(247,242,235,0.5);
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}

/* Abstand zwischen den beiden Zeilen minimieren */
.hero-vert-main { padding-bottom: 0; margin-bottom: 0; }
.hero-vert-sub  { padding-top: 0; margin-top: 0; }

  /* Hero main content */
  .hero-content {
    position: absolute;
    bottom: 120px;
  left: auto;
  right: 200px;
  width: min(720px, calc(100% - 260px));
  padding: 0 2rem 0 2.5rem;
  z-index: 5;
  text-align: right;
  }
  .hero-tagline-top {
    font-family: var(--serif);
    font-style: normal;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(247,242,235,0.55);
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
  }
  .hero-title {
    font-family: var(--slab);
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 32px rgba(0,0,0,0.6);
  }
  .hero-subtitle {
    font-family: var(--serif);
    font-style: normal;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--amber);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
  }
  .hero-motto {
    font-family: var(--slab);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(247,242,235,0.18);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
  }
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  justify-content: flex-end;
  }

  /* Hero bottom bar */
  .hero-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    gap: 1.5rem;
  z-index: 6;
  }
  .hero-bar-addr {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
  }
  .hero-bar-hours {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    text-align: right;
    white-space: nowrap;
  }

  /* ══════════════════════════════ INFO STRIP ══ */
  .info-strip {
    background: var(--ink2);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .info-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .info-item svg { color: var(--amber); flex-shrink: 0; }

  /* ══════════════════════════════ SECTIONS ══ */
  .section {
    padding: 6rem 2.5rem;
  }
  .section-inner {
    max-width: 1320px;
    margin: 0 auto;
  }
  .section-head {
    margin-bottom: 3.5rem;
  }

  /* ═══════════════════════ SCHNITZEL / HIGHLIGHTS ══ */
  #highlights { background: var(--ink); }

  /* Card grid */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1px;
    background: rgba(247, 242, 235, 0.08);
    border: 1px solid rgba(215, 154, 43, 0.28);
  }

  .dish-card {
    background: linear-gradient(155deg, rgba(10, 10, 10, 0.94), rgba(18, 18, 18, 0.98));
    border: 1px solid rgba(215, 154, 43, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    padding: 2rem;
    position: relative;
    transition: background 0.2s;
  }
  .dish-card:hover { background: linear-gradient(155deg, rgba(16, 16, 16, 0.96), rgba(24, 24, 24, 0.99)); }

  /* Rustic top accent: thick slab border */
  .dish-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ember), var(--amber));
  }

  .dish-cat {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem;
  }
  .dish-name {
    font-family: var(--slab);
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 0.2rem;
  }
  .dish-italic {
    font-family: var(--serif);
    font-style: normal;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1rem;
  }
  .dish-desc {
    font-family: var(--serif);
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(253,248,241,0.78);
    margin-bottom: 1.5rem;
  }
  .dish-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
  .dish-price {
    font-family: var(--slab);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
  }
  .dish-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-end;
  }

  /* ══════════════════════════════ SPECIALS ══ */
  #specials { background: #0b0b0b; border-top: 1px solid var(--border); }

  .special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  align-items: stretch;
    gap: 1px;
    background: rgba(247, 242, 235, 0.08);
    border: 1px solid rgba(215, 154, 43, 0.28);
  }

  .special-card {
    background: linear-gradient(155deg, rgba(10, 10, 10, 0.96), rgba(15, 15, 15, 0.99));
    border: 1px solid rgba(215, 154, 43, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: background 0.2s;
    position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 600px;
  }
  .special-card:hover { background: linear-gradient(155deg, rgba(14, 14, 14, 0.97), rgba(20, 20, 20, 0.99)); }

  .special-img {
    height: 220px;
    position: relative;
    overflow: hidden;
  }

  /* Cinematic photo headers for each special */
  .simg-fondue {
    background:
      linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 60%, transparent 100%),
      url('https://images.unsplash.com/photo-1574894709920-11b28e7367e3?w=800&q=80&auto=format&fit=crop')
      center / cover;
  }
  .simg-family {
    background:
      linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 60%, transparent 100%),
      url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800&q=80&auto=format&fit=crop')
      center / cover;
  }
  .simg-bbq {
    background:
      linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 60%, transparent 100%),
      url('https://images.unsplash.com/photo-1544025162-d76694265947?w=800&q=80&auto=format&fit=crop')
      center / cover;
  }
  .simg-bowl {
    background:
      linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 60%, transparent 100%),
      url('https://images.unsplash.com/photo-1569058242272-e3ef89be3a05?w=800&q=80&auto=format&fit=crop')
      center / cover;
  }

  /* Badge on image */
  .special-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
  }
  .badge-amber { background: var(--amber); color: var(--ink); }
  .badge-ember { background: var(--ember); color: var(--white); }
  .badge-new   { background: var(--ember); color: var(--white); animation: pulseBadge 2s ease-in-out infinite; }

  @keyframes pulseBadge {
    0%,100% { box-shadow: 0 0 0 0 rgba(200,86,10,0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(200,86,10,0); }
  }

  .special-body {
    padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  }
  .special-when {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.4rem;
  }
  .special-title {
    font-family: var(--slab);
    font-size: 1.9rem;
    letter-spacing: 0.01em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .special-highlight {
    font-family: var(--slab);
    font-size: 3rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .special-desc {
    font-family: var(--serif);
    font-size: 0.875rem;
    color: rgba(253,248,241,0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 0;
    display: block;
    overflow: visible;
  }
  .special-meta {
    font-family: var(--sans);
    font-size: 0.72rem;
    color: var(--muted2);
    letter-spacing: 0.06em;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  min-height: 3em;
  }

.special-body > .btn,
.special-body > a.btn {
  margin-top: auto;
}

  /* ══════════════════════════════════ EVENTS ══ */
  #events { background: var(--ink); border-top: 1px solid var(--border); }

  .event-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(247, 242, 235, 0.08);
    border: 1px solid rgba(215, 154, 43, 0.28);
  }
  .event-row {
    background: linear-gradient(155deg, rgba(10, 10, 10, 0.94), rgba(18, 18, 18, 0.98));
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 190px;
    align-items: stretch;
  min-height: 220px;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }
  .event-row:hover { background: linear-gradient(155deg, rgba(16, 16, 16, 0.96), rgba(24, 24, 24, 0.99)); }

  .event-date {
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    flex-shrink: 0;
    gap: 0.15rem;
  }
  .event-day  { font-family: var(--slab); font-size: 3.5rem; line-height: 1; color: var(--white); }
  .event-mon  { font-family: var(--sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); }
  .event-time { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--muted2); margin-top: 0.25rem; }

  .event-body {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25rem;
  height: 100%;
  }
  .event-type  { font-family: var(--sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.4rem; }
  .event-title { font-family: var(--slab); font-size: 1.8rem; letter-spacing: 0.01em; color: var(--white); line-height: 1.05; margin-bottom: 0.5rem; }
.event-desc  { font-family: var(--serif); font-size: 0.875rem; color: rgba(253,248,241,0.78); line-height: 1.6; max-width: 500px; min-height: 0; display: block; overflow: visible; }
  .event-tags  { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }

  .event-cta {
    display: flex;
    align-items: center;
  justify-content: center;
    padding: 1.25rem 1.75rem;
    border-left: 1px solid var(--border);
  min-width: 190px;
    flex-shrink: 0;
  }

  .event-cta .btn {
    width: 140px;
    justify-content: center;
  }

  /* ═════════════════════════ Google Reviews ══ */
  #google-reviews {
    background: #090909;
    border-top: 1px solid rgba(247, 242, 235, 0.12);
  }

  .reviews-live {
    border: 1px solid rgba(247, 242, 235, 0.12);
    background: linear-gradient(155deg, rgba(6, 6, 6, 0.98), rgba(14, 14, 14, 0.98));
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.46);
    padding: 1.25rem;
  }

  .reviews-meta {
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 1rem;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .review-card {
    border: 1px solid rgba(247, 242, 235, 0.1);
    background: rgba(8, 8, 8, 0.86);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-height: 210px;
  }

  .review-head {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: center;
  }

  .review-author {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
  }

  .review-stars {
    font-family: var(--sans);
    color: var(--amber);
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .review-text {
    font-family: var(--serif);
    font-size: 0.86rem;
    color: rgba(253, 248, 241, 0.84);
    line-height: 1.6;
    margin: 0;
    display: block;
    overflow: visible;
  }

  .review-foot {
    margin-top: auto;
    font-family: var(--sans);
    font-size: 0.7rem;
    color: var(--muted2);
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .review-card-fallback {
    grid-column: 1 / -1;
  }

  .reviews-embed {
    width: 100%;
    height: 540px;
    border: 0;
    display: block;
    filter: saturate(0.9) contrast(1.02);
  }

  /* ══════════════════════════════ Über uns ══ */
  #ueber-uns {
    background: var(--ink2);
    border-top: 1px solid var(--border);
    overflow: hidden;
  }
  .about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
  .about-photo {
    background:
      linear-gradient(to right, transparent 0%, rgba(10,10,10,0.7) 100%),
      url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=900&q=80&auto=format&fit=crop')
      center / cover;
    position: relative;
    min-height: 400px;
  }
  .about-text-col {
    padding: 5rem 3.5rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-quote {
    font-family: var(--serif);
    font-style: normal;
    font-size: 1.1rem;
    color: rgba(247,242,235,0.5);
    line-height: 1.7;
    border-left: 3px solid var(--ember);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
  }
  .about-tagline {
    font-family: var(--slab);
    font-size: 2.5rem;
    color: rgba(247,242,235,0.12);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    line-height: 1;
  }
  .about-body {
    font-family: var(--serif);
    font-size: 0.9375rem;
    color: rgba(253,248,241,0.82);
    line-height: 1.85;
  }
  .about-body p + p { margin-top: 1rem; }
  .about-body strong { color: var(--white); font-weight: 600; }

  .about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }
  .fact-num {
    font-family: var(--slab);
    font-size: 2.2rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .fact-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted2);
  }

  /* ══════════════════════════════════ FOOTER ══ */
  footer {
    background: var(--ink);
    border-top: 1px solid var(--border);
    padding: 4rem 2.5rem 2rem;
  }
  .footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
  }
  .footer-brand-name {
    font-family: var(--slab);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .footer-brand-sub {
    font-family: var(--serif);
    font-style: normal;
    font-size: 0.875rem;
    color: var(--amber);
    margin-bottom: 1.25rem;
  }

  em {
    font-style: normal;
  }
  .footer-brand-desc {
    font-family: var(--serif);
    font-size: 0.875rem;
    color: rgba(253,248,241,0.72);
    line-height: 1.75;
    max-width: 240px;
  }

  .footer-col-title {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.25rem;
  }
  .footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--serif);
    font-size: 0.875rem;
    color: rgba(253,248,241,0.78);
    gap: 1rem;
    padding: 0.25rem 0;
  }
  .footer-hours-row.closed { color: rgba(253,248,241,0.5); }
  .footer-contact-link {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    text-decoration: none;
    font-family: var(--serif);
    font-size: 0.875rem;
    color: rgba(253,248,241,0.78);
    line-height: 1.5;
    padding: 0.25rem 0;
    transition: color 0.2s;
  }
  .footer-contact-link:hover { color: var(--white); }
  .footer-contact-link svg { flex-shrink: 0; margin-top: 2px; color: var(--ember); }

  .footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-copy {
    font-family: var(--sans);
    font-size: 0.72rem;
    color: rgba(253,248,241,0.58);
  }
  .footer-legal {
    display: flex;
    gap: 2rem;
  }
  .footer-legal a {
    font-family: var(--sans);
    font-size: 0.72rem;
    color: rgba(253,248,241,0.58);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: rgba(247,242,235,0.6); }

  /* ══════════════════ MOBILE MENU ══ */
  #mobile-menu {
    position: fixed;
    top: 66px; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.99);
    z-index: 99;
    display: none;
    flex-direction: column;
    padding: 2.5rem 2rem;
    overflow-y: auto;
  }
  .mob-link {
    display: block;
    font-family: var(--sans);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.1;
    transition: color 0.2s;
  }
  .mob-link:hover { color: var(--amber); }

  /* ══════════════════════════ RESPONSIVE ══ */
  @media (min-width: 900px) {
    .nav-links-desktop { display: flex; }
  }
  @media (max-width: 900px) {
    .about-wrap { grid-template-columns: 1fr; }
    .about-photo { height: 320px; }
    .about-text-col { padding: 3rem 2rem; }
    .about-facts { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .event-row { grid-template-columns: 120px 1fr; }
    .event-cta { grid-column: 1/-1; border-left: none; border-top: 1px solid var(--border); }
    .event-day { font-size: 2.5rem; }
    .event-date { padding: 1rem; }
    .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    #hamburger {
      opacity: 1;
      color: var(--white);
      border: 1px solid rgba(247,242,235,0.45);
      background: rgba(10,10,10,0.85);
      box-shadow: 0 0 0 1px rgba(0,0,0,0.3) inset;
    }
  }
  @media (max-width: 650px) {
    #hero { background: #000; }
    .hero-vert { display: none; }
    .hero-photo {
      background-position: center top;
      background-size: contain;
      background-color: #000;
    }
    .hero-video {
      object-position: center top;
      object-fit: contain;
      background: #000;
    }
    .section { padding: 4rem 1.25rem; }
    #hero .hero-content {
      left: 0;
      right: 0;
      width: auto;
      max-width: none;
      padding: 0 1rem;
      text-align: right;
    }
    #hero .hero-title { font-size: 3.2rem; }
    #hero .hero-bar { padding: 0 1.25rem; }
    #hero .hero-bar-addr, #hero .hero-bar-hours { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .event-row { grid-template-columns: 1fr; }
    .event-date { flex-direction: row; gap: 0.6rem; border-right: none; border-bottom: 1px solid var(--border); justify-content: flex-start; padding: 1rem 1.25rem; }
    .event-cta { justify-content: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero-ctas .btn { height: 44px; font-size: 0.72rem; }
  }

  /* ═══════════════════════════ Über uns Hero ══ */
  .about-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }
  .about-hero-media {
    position: absolute;
    inset: 0;
    background:
      url('assets/our%20story.jpg')
      center center / cover no-repeat;
    filter: brightness(0.42) contrast(1.12) saturate(0.52);
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }

  .story-panel {
    background: linear-gradient(155deg, rgba(10, 10, 10, 0.94), rgba(18, 18, 18, 0.98));
    border: 1px solid rgba(215, 154, 43, 0.34);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(2px);
    padding: 2rem;
  }

  .story-panel-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

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

  .reservation-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }

  .reservation-overlay[hidden] {
    display: none !important;
  }

  .reservation-modal {
    position: relative;
    width: min(1100px, 96vw);
    height: min(86vh, 860px);
    background: #0f0f0f;
    border: 1px solid rgba(215, 154, 43, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .reservation-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(253, 248, 241, 0.35);
    background: rgba(15, 15, 15, 0.88);
    color: var(--white);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
  }

  .reservation-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #fff;
  }

  /* ═════════════════════ Cookie Consent ══ */
  .cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    border: 1px solid rgba(247, 242, 235, 0.22);
    background: rgba(9, 9, 9, 0.96);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.42);
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
  }
  .cookie-consent[hidden] { display: none !important; }
  .cookie-consent-text {
    font-family: var(--serif);
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(253, 248, 241, 0.88);
  }
  .cookie-consent-text a {
    color: var(--amber);
    text-decoration: none;
  }
  .cookie-consent-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  