/* Restaurant: warm, atmosphärisch, etwas dramatischer. */
.demo--restaurant {
  --color-text: #1c1410;
  --color-bg: #fdf8ee;
  --color-secondary: #f4ecd8;
  --color-muted: #6b5a48;
  --color-border: #d8c9a8;
  --font-display: Georgia, "Times New Roman", serif;
}

.demo--restaurant .demo-header {
  background: rgba(28, 20, 16, 0.92); color: #f4ecd8;
}
.demo--restaurant .demo-header__inner,
.demo--restaurant .demo-footer__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 0;
}
.demo--restaurant .demo-header__brand {
  font-family: var(--font-display); font-size: 1.35rem;
  text-decoration: none; color: #f4ecd8; letter-spacing: 0.04em;
}
.demo--restaurant .demo-header__nav { display: flex; gap: 1.5rem; }
.demo--restaurant .demo-header__nav a { text-decoration: none; color: #f4ecd8; }
.demo--restaurant .demo-header__back { opacity: 0.75; }

.demo--restaurant .hero {
  position: relative; min-height: 28rem; display: flex; align-items: flex-end;
  background:
    radial-gradient(1200px 600px at 70% 80%, rgba(138, 29, 44, 0.55), transparent 60%),
    linear-gradient(135deg, #1c1410 0%, #3a1f1a 60%, #6b2a2a 100%);
  color: #fdf8ee;
}
.demo--restaurant .hero__overlay { width: 100%; padding: 4rem 0 3rem; }
.demo--restaurant .hero h1 { font-family: var(--font-display); max-width: 26ch; }
.demo--restaurant .lead { color: #f4ecd8; max-width: 50ch; font-size: 1.2rem; }
.demo--restaurant .eyebrow {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem;
  color: #d8c9a8; margin-bottom: 0.6rem;
}

.demo--restaurant .section { padding: 4rem 0; }
.demo--restaurant .section--alt { background: var(--color-secondary); }
.demo--restaurant .section--dark { background: #1c1410; color: #f4ecd8; }
.demo--restaurant .section--dark h2 { color: #f4ecd8; }

.demo--restaurant .menu-list { display: grid; gap: 1.5rem; }
.demo--restaurant .menu-item {
  border-bottom: 1px dashed var(--color-border); padding-bottom: 1rem;
}
.demo--restaurant .menu-item:last-child { border: 0; }
.demo--restaurant .menu-item h3 {
  font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.3rem;
}

.demo--restaurant .gallery {
  display: grid; gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 12rem 12rem;
}
@media (min-width: 50rem) {
  .demo--restaurant .gallery { grid-template-columns: repeat(4, 1fr); grid-template-rows: 14rem; }
}
.demo--restaurant .gallery__tile { border-radius: 6px; }
.demo--restaurant .gallery__tile--a { background: linear-gradient(135deg, #6b2a2a, #2a1010); }
.demo--restaurant .gallery__tile--b { background: linear-gradient(135deg, #b08454, #5e3920); }
.demo--restaurant .gallery__tile--c { background: linear-gradient(135deg, #8a1d2c, #3a0f15); }
.demo--restaurant .gallery__tile--d { background: linear-gradient(135deg, #d8c9a8, #8a6f4a); }

.demo--restaurant .hours { display: grid; gap: 0.5rem; }
.demo--restaurant .hours__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.5rem 0; border-bottom: 1px dashed var(--color-border);
}
.demo--restaurant .hours dt { font-weight: 600; }
.demo--restaurant .hours dd { margin: 0; color: var(--color-muted); }

.demo--restaurant .btn--primary {
  background: var(--color-primary); color: #fdf8ee;
}
