/* ==========================================================================
   ROTES KAMEL · Restaurant — Stylesheet
   Palette: Warmes Schwarzbraun, Creme, Brandrot, Gold
   Typografie: Cormorant Garamond (Display) · Manrope (Text)
   ========================================================================== */

:root {
  --bg-dark: #16110e;
  --bg-dark-2: #1e1713;
  --bg-dark-3: #261d17;
  --cream: #f6efe2;
  --cream-2: #efe5d2;
  --paper: #fbf7ee;
  --ink: #241b14;
  --ink-soft: #6b5b4a;
  --red: #9e2b25;
  --red-dark: #7c1f1a;
  --red-bright: #b5352d;
  --gold: #c79a4e;
  --gold-soft: #dcc294;
  --gold-faint: rgba(199, 154, 78, 0.22);
  --white-soft: #f3ece0;
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Manrope', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --container: 1180px;
  --radius: 4px;
  --shadow-soft: 0 18px 50px -18px rgba(20, 12, 6, 0.45);
  --transition: 0.35s cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* ---------- Reset / Basis ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.15; }

p { margin: 0 0 1.1em; }

section { position: relative; }

[id] { scroll-margin-top: 84px; }

::selection { background: var(--red); color: var(--cream); }

/* ---------- Utilities ---------- */

.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-head { max-width: 720px; margin-bottom: 3rem; }

.section-head.center { margin-inline: auto; text-align: center; }

.section-head.center .kicker::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-head .lead {
  margin-top: 1rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.on-dark .section-head h2 { color: var(--white-soft); }
.on-dark .section-head .lead { color: rgba(243, 236, 224, 0.66); }

/* Ornament-Trenner (achtzackiger Stern) */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  opacity: 0.85;
}

.ornament::before, .ornament::after {
  content: '';
  width: 70px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: #fdf6ec;
  box-shadow: 0 12px 28px -12px rgba(158, 43, 37, 0.55);
}

.btn-primary:hover { background: var(--red-dark); }

.btn-ghost {
  border-color: rgba(243, 236, 224, 0.45);
  color: var(--white-soft);
  background: rgba(22, 17, 14, 0.18);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

.btn-ghost-dark {
  border-color: rgba(36, 27, 20, 0.35);
  color: var(--ink);
}

.btn-ghost-dark:hover { border-color: var(--red); color: var(--red); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition),
    padding var(--transition);
  padding: 0.4rem 0;
}

.site-header.scrolled {
  background: rgba(18, 13, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.6);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--white-soft);
}

.brand__mark { height: 44px; width: auto; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--white-soft);
}

.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35rem;
}

.main-nav { display: flex; align-items: center; gap: 1.9rem; }

.main-nav a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(243, 236, 224, 0.82);
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition);
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:not(.btn):hover { color: var(--gold-soft); }
.main-nav a:not(.btn):hover::after { transform: scaleX(1); }

.main-nav .btn { padding: 0.68rem 1.5rem; font-size: 0.72rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 130;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white-soft);
  transition: transform var(--transition), opacity var(--transition);
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-soft);
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(16, 11, 8, 0.55) 0%, rgba(16, 11, 8, 0.28) 40%, rgba(16, 11, 8, 0.72) 100%),
    radial-gradient(ellipse at center, rgba(16, 11, 8, 0.05) 0%, rgba(16, 11, 8, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 6.5rem;
  max-width: 860px;
  margin-inline: auto;
}

.hero__salam {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero__sub {
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  color: rgba(243, 236, 224, 0.85);
  max-width: 620px;
  margin: 0 auto 2.4rem;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.6rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(243, 236, 224, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: color var(--transition);
}

.hero__scroll:hover { color: var(--gold-soft); }

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Google Badge ---------- */

.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.4rem;
  background: rgba(16, 11, 8, 0.42);
  border: 1px solid rgba(243, 236, 224, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  color: var(--white-soft);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), border-color var(--transition);
}

.gbadge:hover {
  transform: translateY(-2px);
  background: rgba(16, 11, 8, 0.55);
  border-color: rgba(199, 154, 78, 0.4);
  box-shadow: 0 20px 46px -16px rgba(0, 0, 0, 0.65);
}

.gbadge__g { width: 26px; height: 26px; flex: none; }

.gbadge__score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white-soft);
}

.stars {
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 2px;
  color: #d8cfc0;
}

.stars::before { content: '★★★★★'; }

.stars__fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: #f5b301;
  white-space: nowrap;
}

.stars__fill::before { content: '★★★★★'; letter-spacing: 2px; }

.gbadge__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.gbadge__count {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(243, 236, 224, 0.72);
}

/* ---------- Abschnitt 01 · Willkommen ---------- */

.welcome {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  overflow: hidden;
}

.welcome__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.welcome__text .section-head { margin-bottom: 1.6rem; }

.welcome__text p { color: var(--ink-soft); }

.welcome__text strong { color: var(--ink); font-weight: 600; }

.quote {
  margin: 2.2rem 0 0;
  padding-left: 1.6rem;
  border-left: 2px solid var(--gold);
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.welcome__figure { position: relative; }

.welcome__figure::before {
  content: '';
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--gold-faint);
  border-radius: var(--radius);
  z-index: 0;
}

.welcome__figure img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.6rem;
}

.fact {
  background: var(--paper);
  border: 1px solid rgba(36, 27, 20, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  text-align: center;
}

.fact__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.1;
}

.fact__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

/* ---------- Abschnitt 02 · Spezialitäten & Karte ---------- */

.menu-section {
  background:
    radial-gradient(1100px 500px at 85% -5%, rgba(158, 43, 37, 0.14), transparent 60%),
    radial-gradient(900px 500px at 0% 105%, rgba(199, 154, 78, 0.08), transparent 60%),
    var(--bg-dark);
  color: var(--white-soft);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.dish {
  background: var(--bg-dark-2);
  border: 1px solid rgba(199, 154, 78, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.dish:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 154, 78, 0.4);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, 0.7);
}

.dish__img { overflow: hidden; aspect-ratio: 4 / 3; }

.dish__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.25, 1);
}

.dish:hover .dish__img img { transform: scale(1.06); }

.dish__body { padding: 1.5rem 1.5rem 1.7rem; }

.dish__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.dish__title-row h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--white-soft);
}

.dish__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.dish__desc {
  font-size: 0.9rem;
  color: rgba(243, 236, 224, 0.62);
  margin: 0;
}

.dish__tag {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-faint);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
}

/* Karte (Auszug) */

.menu-list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem clamp(2.5rem, 6vw, 5.5rem);
}

.menu-cat h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.menu-cat__note {
  font-size: 0.78rem;
  color: rgba(243, 236, 224, 0.5);
  margin-bottom: 1.1rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.55rem 0;
}

.menu-item + .menu-item { border-top: 1px dashed rgba(199, 154, 78, 0.16); }

.menu-item__name {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--white-soft);
}

.menu-item__name small {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(243, 236, 224, 0.55);
  margin-top: 0.15rem;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(199, 154, 78, 0.35);
  transform: translateY(-4px);
  min-width: 20px;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.menu-cta {
  margin-top: 4rem;
  text-align: center;
}

.menu-cta .hint {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: rgba(243, 236, 224, 0.5);
}

/* ---------- Abschnitt 03 · Weine ---------- */

.wine {
  position: relative;
  color: var(--white-soft);
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--bg-dark-3);
  overflow: hidden;
}

.wine__bg {
  position: absolute;
  inset: 0;
}

.wine__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wine__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18, 12, 9, 0.93) 0%, rgba(18, 12, 9, 0.72) 45%, rgba(18, 12, 9, 0.25) 100%);
}

.wine__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.wine__inner p { color: rgba(243, 236, 224, 0.78); }

.wine-list {
  margin: 2rem 0 2.4rem;
  padding: 0.6rem 1.6rem;
  list-style: none;
  background: rgba(12, 8, 6, 0.72);
  border: 1px solid rgba(199, 154, 78, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px -24px rgba(0, 0, 0, 0.7);
}

.wine-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(199, 154, 78, 0.32);
}

.wine-list li:last-child { border-bottom: 0; }

.wine-list .menu-item__name {
  font-size: 1rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.wine-list .menu-item__name small { color: rgba(243, 236, 224, 0.72); }

.wine-list .menu-item__price {
  font-size: 1.2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* ---------- Abschnitt 04 · Galerie ---------- */

.gallery {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: var(--bg-dark-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.25, 1), opacity var(--transition);
}

.gallery-item:hover img { transform: scale(1.07); opacity: 0.88; }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 8, 6, 0.94);
  padding: 3rem 1.5rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
}

.lightbox__close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  background: none;
  border: 0;
  color: rgba(243, 236, 224, 0.8);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}

.lightbox__close:hover { color: var(--gold); }

/* ---------- Abschnitt 05 · Bewertungen ---------- */

.reviews {
  background:
    radial-gradient(900px 460px at 50% -10%, rgba(158, 43, 37, 0.16), transparent 65%),
    var(--bg-dark);
  color: var(--white-soft);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  text-align: center;
}

.review-hero {
  max-width: 360px;
  margin: 0 auto 3.5rem;
  background: rgba(16, 11, 8, 0.42);
  border: 1px solid rgba(243, 236, 224, 0.18);
  color: var(--white-soft);
  border-radius: 12px;
  padding: 1.8rem 1.8rem 1.9rem;
  box-shadow: 0 22px 50px -24px rgba(0, 0, 0, 0.6);
}

.review-hero__g { width: 32px; height: 32px; margin: 0 auto 0.7rem; }

.review-hero__score {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white-soft);
}

.review-hero .stars { font-size: 1.15rem; letter-spacing: 3px; margin: 0.5rem 0 0.4rem; }

.review-hero__count {
  font-size: 0.85rem;
  color: rgba(243, 236, 224, 0.7);
  margin-bottom: 1.3rem;
}

.review-hero .btn { padding: 0.75rem 1.7rem; font-size: 0.72rem; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  text-align: left;
}

.testimonial {
  background: var(--bg-dark-2);
  border: 1px solid rgba(199, 154, 78, 0.14);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.testimonial .stars { font-size: 0.85rem; }

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.4;
  color: rgba(243, 236, 224, 0.92);
  flex: 1;
}

.testimonial figcaption {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial figcaption span {
  display: block;
  margin-top: 0.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(243, 236, 224, 0.45);
}

.reviews__source-note {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(243, 236, 224, 0.4);
}

/* ---------- Abschnitt 06 · Kontakt & Lage ---------- */

.contact {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}

.contact-card {
  background: var(--paper);
  border: 1px solid rgba(36, 27, 20, 0.08);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
}

.contact-block + .contact-block {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px dashed rgba(36, 27, 20, 0.15);
}

.contact-block h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
}

.contact-block p { margin: 0; color: var(--ink-soft); }

.contact-block a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-faint);
  transition: border-color var(--transition), color var(--transition);
}

.contact-block a:hover { color: var(--red); border-color: var(--red); }

.contact-block .big {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.hours { width: 100%; border-collapse: collapse; }

.hours td {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed rgba(36, 27, 20, 0.12);
}

.hours tr:last-child td { border-bottom: 0; }

.hours td:last-child { text-align: right; font-weight: 600; color: var(--ink); }

.hours .today td { color: var(--red); font-weight: 700; }

/* Karte (Consent-Loader) */

.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  background: var(--bg-dark-2);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
  padding: 2rem;
  color: var(--white-soft);
  background:
    linear-gradient(rgba(18, 13, 10, 0.68), rgba(18, 13, 10, 0.82)),
    var(--map-poster, none) center / cover no-repeat, var(--bg-dark-2);
}

.map-consent svg { width: 44px; height: 44px; color: var(--gold); }

.map-consent p {
  max-width: 380px;
  font-size: 0.85rem;
  color: rgba(243, 236, 224, 0.7);
  margin: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #110c09;
  color: rgba(243, 236, 224, 0.7);
  padding: 4.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(199, 154, 78, 0.14);
}

.footer-brand .brand__name { font-size: 1.6rem; }

.footer-brand p { margin-top: 1.1rem; max-width: 340px; color: rgba(243, 236, 224, 0.55); }

.site-footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }

.site-footer li { padding: 0.28rem 0; }

.site-footer a {
  color: rgba(243, 236, 224, 0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer a:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.78rem;
  color: rgba(243, 236, 224, 0.4);
}

.footer-bottom nav { display: flex; gap: 1.6rem; }

.footer-partners {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.35);
}

/* ---------- Unterseiten (Impressum / Datenschutz) ---------- */

.legal-page {
  background: var(--cream);
  min-height: 100vh;
}

.legal-hero {
  background: var(--bg-dark);
  color: var(--white-soft);
  padding: 9.5rem 0 4rem;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.legal-content {
  padding: 4rem 0 6rem;
  max-width: 780px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 2.6rem 0 0.9rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.8rem 0 0.6rem;
}

.legal-content p, .legal-content li { color: var(--ink-soft); }

.legal-content a { color: var(--red); }

/* ---------- Reveal-Animationen ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.25, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.25, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(16, 11, 8, 0.97);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 120;
  }

  body.nav-open .main-nav { opacity: 1; pointer-events: auto; }

  .main-nav a:not(.btn) { font-size: 1.05rem; }

  .nav-toggle { display: flex; }

  body.nav-open { overflow: hidden; }

  .welcome__grid, .contact__grid { grid-template-columns: 1fr; }

  .welcome__figure { order: -1; max-width: 420px; }

  .menu-list { grid-template-columns: 1fr; }

  .facts { grid-template-columns: 1fr 1fr; }

  .map-frame { min-height: 380px; }
}

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }

  .hero__actions .btn { width: 100%; }

  .facts { grid-template-columns: 1fr; }

  .gbadge { padding: 0.6rem 1.1rem; gap: 0.6rem; }

  .gbadge__meta { display: none; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
}
