/* ============================================
   Schwarzer Rabe – Redesign Prototype
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0c0b0a;
  --bg-alt: #161411;
  --card: #1d1a16;
  --card-hover: #241f19;
  --accent: #c35c21;
  --accent-light: #e2894f;
  --accent-dim: rgba(195, 92, 33, 0.15);
  --text: #f3ede3;
  --text-dim: #b3a99a;
  --text-faint: #7c7367;
  --border: rgba(255, 255, 255, 0.09);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Work Sans', system-ui, -apple-system, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-light);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.15;
}

.section-heading {
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--text);
}
.section-heading em {
  font-style: italic;
  color: var(--accent-light);
}

.section-lead {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 60ch;
  margin: 0 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 3px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text); background: rgba(255,255,255,0.06); }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(12, 11, 10, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.brand img { width: 42px; height: 42px; object-fit: contain; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a:not(.btn) {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:not(.btn):hover { color: var(--text); border-color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../img/gastraum-mit-braukeller-durchgang.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,7,6,0.55) 0%, rgba(8,7,6,0.55) 30%, rgba(8,7,6,0.88) 100%),
    linear-gradient(90deg, rgba(8,7,6,0.75) 0%, rgba(8,7,6,0.15) 35%, rgba(8,7,6,0.15) 65%, rgba(8,7,6,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 780px;
}
.hero-content img.hero-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin: 0 auto 22px;
}
.hero-content .eyebrow { justify-content: center; }
.hero-content .eyebrow::before, .hero-content .eyebrow::after {
  content: "";
  width: 22px; height: 1px; background: var(--accent-light);
}
.hero-content .eyebrow { gap: 10px; }
.hero h1 {
  font-size: clamp(42px, 8vw, 84px);
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 34px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.hero-meta strong { color: #fff; font-family: var(--serif); font-size: 15px; display:block; }

.event-teaser {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  background: rgba(12,11,10,0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.event-teaser:hover { border-color: var(--accent-light); background: rgba(12,11,10,0.55); }
.event-teaser-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  animation: teaserpulse 1.8s infinite;
}
@keyframes teaserpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,137,79,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(226,137,79,0); }
}
.event-teaser-text { transition: opacity 0.25s ease; min-width: 200px; text-align: left; }
.event-teaser-text.fading { opacity: 0; }
.event-teaser-arrow { color: var(--accent-light); font-weight: 700; }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 14px;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 8px; }
}

/* ---------- Generic Section ---------- */
section { position: relative; }
.panel { padding: 110px 0; }
.panel-alt { background: var(--bg-alt); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 560px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--accent);
  color: #fff;
  padding: 20px 26px;
  font-family: var(--serif);
  line-height: 1.1;
}
.about-badge .num { font-size: 34px; font-weight: 700; display:block; }
.about-badge .lbl { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }

.about-text p { color: var(--text-dim); margin: 0 0 18px; font-size: 15.5px; }
.about-quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--card);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
}
.about-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Events ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(195,92,33,0.4);
  background: var(--card-hover);
}
.event-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.event-badge {
  background: var(--accent-dim);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.event-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
}
.event-card h3 { font-size: 23px; margin-bottom: 10px; }
.event-card p { color: var(--text-dim); font-size: 14.5px; margin: 0 0 20px; flex-grow: 1; }
.event-card .btn { align-self: flex-start; }
.event-note {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-top: 14px;
  font-style: italic;
}

/* ---------- Menu ---------- */
.menu-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.menu-tab {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.menu-tab:hover { color: var(--text); }
.menu-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadein 0.35s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.menu-cat { margin-bottom: 8px; border-bottom: 1px solid var(--border); }
.menu-cat:last-child { border-bottom: none; }
.menu-cat > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--text);
}
.menu-cat > summary::-webkit-details-marker { display: none; }
.menu-cat > summary .plus {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.menu-cat > summary .plus::before, .menu-cat > summary .plus::after {
  content: "";
  position: absolute;
  background: var(--accent-light);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.menu-cat > summary .plus::before { width: 10px; height: 1.5px; }
.menu-cat > summary .plus::after { width: 1.5px; height: 10px; transition: transform 0.2s; }
.menu-cat[open] > summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.menu-items { padding: 4px 4px 26px; display: grid; gap: 16px; }
.menu-item { display: flex; justify-content: space-between; gap: 20px; }
.menu-item .mi-name { font-weight: 500; color: var(--text); font-size: 15.5px; }
.menu-item .mi-desc { color: var(--text-faint); font-size: 13.5px; margin-top: 2px; }
.menu-item .mi-price { font-family: var(--serif); color: var(--accent-light); white-space: nowrap; font-size: 15.5px; }
.menu-item .mi-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #7dbf8a;
  border: 1px solid rgba(125,191,138,0.4);
  border-radius: 10px;
  padding: 1px 7px;
  margin-left: 8px;
  vertical-align: middle;
}
.menu-sub { grid-column: 1 / -1; margin-top: -6px; padding-left: 2px; }
.menu-sub-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); margin: 8px 0 6px; }
.menu-sub-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-dim); padding: 2px 0; }

.menu-note {
  margin-top: 30px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.menu-note strong { color: var(--accent-light); }
.menu-footer-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.menu-footer-actions .hint { font-size: 12.5px; color: var(--text-faint); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-row: span 1; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s;
}
.gallery-grid a:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* ---------- Ratings / Testimonials ---------- */
.rating-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.rating-bar-item { display: flex; flex-direction: column; }
.rating-bar-score { font-family: var(--serif); font-size: 30px; color: var(--accent-light); line-height: 1.2; }
.rating-bar-label { font-size: 13px; color: var(--text-dim); }
.rating-bar-sep { width: 1px; height: 38px; background: var(--border); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonial-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px 24px;
}
.testimonial-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.4;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
}

@media (max-width: 980px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .rating-bar { gap: 24px; }
  .rating-bar-sep { display: none; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-list { display: grid; gap: 26px; margin-bottom: 34px; }
.contact-row { display: flex; gap: 18px; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 19px; height: 19px; fill: var(--accent-light); }
.contact-row h4 { font-family: var(--sans); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin: 0 0 6px; font-weight: 600; }
.contact-row p, .contact-row a { color: var(--text); font-size: 15.5px; margin: 0; }
.contact-row a:hover { color: var(--accent-light); }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  transition: all 0.2s;
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); }
.social-row svg { width: 17px; height: 17px; fill: var(--text); }

.map-wrap { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); height: 100%; min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

.rating-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  padding: 10px 16px; border-radius: 30px; margin-bottom: 30px;
  font-size: 13.5px;
}
.rating-chip .stars { color: #e8b84b; letter-spacing: 1px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #080706;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 46px; }
.footer-brand div { font-family: var(--serif); font-size: 20px; }
.footer-brand small { display:block; font-family: var(--sans); font-size: 12px; color: var(--text-faint); font-weight: 400; margin-top: 2px; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-links h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin: 0 0 14px; }
.footer-links a { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 9px; }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--text-faint);
}
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--text-dim); }

/* ---------- Sticky reserve (mobile) ---------- */
.sticky-reserve {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;
  background: rgba(12,11,10,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-reserve .btn { flex: 1; justify-content: center; }
.sticky-reserve span { font-size: 12.5px; color: var(--text-dim); }

/* ---------- Notice banner (dev note) ---------- */
.dev-note {
  background: #1a2a1f;
  color: #a9d3b3;
  font-size: 13px;
  text-align: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dev-note strong { color: #cdeed3; }

/* ---------- Reservierungsformular ---------- */
.reserve-form {
  max-width: 720px;
  margin-top: 32px;
}
.reserve-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-field label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.form-field label .hint {
  font-weight: 400;
  color: var(--text-faint);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  color-scheme: dark;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { resize: vertical; }
.reserve-form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-faint);
}
.reserve-success {
  display: none;
  max-width: 560px;
  margin-top: 32px;
  padding: 26px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--accent-dim);
  border-radius: 10px;
}
.reserve-success.show { display: block; }
.reserve-success h3 {
  font-family: var(--serif);
  color: var(--accent-light);
  margin: 0 0 10px;
  font-size: 22px;
}
.reserve-success p { color: var(--text-dim); margin: 0; }
.reserve-success a { color: var(--accent-light); }

@media (max-width: 700px) {
  .reserve-form-grid { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 380px; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .panel { padding: 76px 0; }
  .hero-meta { gap: 22px; }
  .sticky-reserve { display: flex; }
  body { padding-bottom: 66px; }
  .menu-item { flex-direction: column; gap: 2px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-grid a:nth-child(1) { grid-column: span 1; }
  .menu-tabs { gap: 8px; }
  .menu-tab { padding: 10px 16px; font-size: 12px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8,7,6,0.98);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-family: var(--serif); font-size: 26px; }
.mobile-nav .close-nav {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--text); font-size: 30px; cursor: pointer;
}

/* Kennzeichnung für das Hausbier (vormals Inline-Stil im HTML) */
.menu-item .mi-tag-haus {
  color: var(--accent-light);
  border-color: rgba(195, 92, 33, 0.4);
}
