/* =========================================================================
   Osteria Belmonte – Demo-Website
   Gebaut von TEAM Gold LLC
   Gemeinsames Stylesheet für alle Unterseiten
   ========================================================================= */

:root {
  --color-bordeaux: #6d1f2b;
  --color-bordeaux-dark: #4a1219;
  --color-terracotta: #c1552f;
  --color-terracotta-light: #e07a4a;
  --color-cream: #faf4e8;
  --color-cream-dark: #f0e6d2;
  --color-charcoal: #2b2420;
  --color-charcoal-soft: #4a4038;
  --color-gold: #c9a227;
  --color-gold-light: #e6c65c;
  --color-white: #fffdf9;
  --color-line: rgba(43, 36, 32, 0.12);

  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 30px -14px rgba(43, 20, 12, 0.35);
  --shadow-strong: 0 24px 48px -20px rgba(43, 20, 12, 0.45);
  --container-w: 1180px;
}

/* ------------------------------ Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-bordeaux-dark);
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ------------------------------ Utility type scale ------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  display: inline-block;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; }
.lede {
  font-size: 1.15rem;
  color: var(--color-charcoal-soft);
  max-width: 60ch;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left { margin: 0 0 44px; text-align: left; }

/* ------------------------------ Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); background: var(--color-terracotta-light); }
.btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--color-bordeaux);
  color: var(--color-bordeaux);
  background: transparent;
}
.btn-ghost:hover { background: var(--color-bordeaux); color: var(--color-white); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn svg { width: 18px; height: 18px; }

/* ------------------------------ Header / Nav ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 232, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--container-w);
  margin: 0 auto;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--color-bordeaux-dark);
}
.brand-icon { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--color-bordeaux);
  border-color: var(--color-gold);
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-bordeaux-dark);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ---- Sprachumschalter (DE/EN) ---- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-line);
  color: var(--color-bordeaux);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 10px;
  min-width: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.lang-toggle:hover {
  border-color: var(--color-gold);
  color: var(--color-bordeaux-dark);
  background: rgba(201, 162, 39, 0.12);
}
.lang-toggle-nav { display: none; }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 40px;
    gap: 4px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-top: 1px solid var(--color-line);
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--color-line); }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-primary span.long { display: none; }
  .header-actions .lang-toggle { display: none; }
  .lang-toggle-nav { display: inline-flex; margin-top: 14px; }
}
@media (min-width: 981px) {
  .header-actions .cta-mobile-hide { display: inline-flex; }
  /* verhindert, dass der Markenname neben dem Sprachumschalter umbricht */
  .brand { white-space: nowrap; }
}

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: radial-gradient(circle at 15% 20%, rgba(230,198,92,0.18), transparent 45%),
              linear-gradient(135deg, var(--color-bordeaux) 0%, var(--color-bordeaux-dark) 55%, #33090f 100%);
  padding: 96px 0 80px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--color-gold-light); }
.hero h1 { color: var(--color-white); }
.hero .lede { color: rgba(255,255,255,0.86); font-size: 1.2rem; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-art { position: relative; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ------------------------------ Hero "Full-Bleed Split" (Startseite) ------------------------------ */
.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 88vh;
  padding: 0;
  background: var(--color-bordeaux-dark);
  overflow: hidden;
}
.hero-split-copy {
  position: relative;
  display: flex;
  align-items: center;
  padding: 96px 80px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 198, 92, 0.16), transparent 52%),
    linear-gradient(150deg, var(--color-bordeaux) 0%, var(--color-bordeaux-dark) 62%, #33090f 100%);
}
/* sehr feine Textur auf der Farbfläche */
.hero-split-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 11px);
  pointer-events: none;
}
/* 3px Gold-Kante an der Trennlinie zum Foto */
.hero-split-copy::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold) 45%, #8f6f16 100%);
  z-index: 3;
}
.hero-split-copy-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}
.hero-split-eyebrow {
  margin: 0 0 26px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}
.hero-split h1 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-split-accent { color: var(--color-gold-light); }
.hero-split-lede {
  margin: 30px 0 0;
  max-width: 54ch;
  font-size: 1.14rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.85);
}
.hero-split .hero-cta-row { margin-top: 38px; }

.hero-split-photo {
  position: relative;
  overflow: hidden;
  background: #241016;
}
.hero-split-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.hero-split-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(74,18,25,0.42) 0%, rgba(74,18,25,0.06) 32%, transparent 60%);
  pointer-events: none;
}

/* Vertrauensleiste direkt unter dem Hero */
.hero-trustbar {
  padding: 0;
  background: #2a0d13;
  border-bottom: 1px solid rgba(230,198,92,0.16);
  color: var(--color-white);
}
.hero-trustbar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-trust-item {
  padding: 26px 40px;
  border-left: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.hero-trust-item:first-child { border-left: 0; }
.hero-trust-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 8px;
}
.hero-trust-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1.3;
}
.hero-trust-sub {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .hero-split-copy { padding: 80px 56px; }
}
@media (max-width: 900px) {
  .hero-split {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    min-height: 0;
  }
  .hero-split-photo {
    order: 1;
    height: 45vh;
    min-height: 260px;
    flex: 0 0 auto;
  }
  .hero-split-copy { order: 2; }
  .hero-split-photo::after {
    background: linear-gradient(180deg, rgba(74,18,25,0.30) 0%, transparent 45%);
  }
  .hero-split-copy {
    padding: 56px 26px 64px;
    border-top: 3px solid var(--color-gold);
  }
  .hero-split-copy::after { display: none; }
  .hero-split-copy-inner { max-width: none; margin-left: 0; }
  .hero-split h1 { font-size: clamp(2.2rem, 8.6vw, 3.2rem); }
  .hero-split-lede { font-size: 1.02rem; }
  .hero-split .hero-cta-row { margin-top: 30px; }
  .hero-trustbar-inner { grid-template-columns: 1fr; }
  .hero-trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 22px;
  }
  .hero-trust-item:first-child { border-top: 0; }
}
@media (max-width: 420px) {
  .hero-split-copy { padding: 48px 20px 56px; }
  .hero-split .hero-cta-row .btn { width: 100%; justify-content: center; }
}

/* Small page header (non-home hero) */
.page-hero {
  color: var(--color-white);
  background: linear-gradient(120deg, var(--color-bordeaux-dark), var(--color-bordeaux) 60%, var(--color-terracotta) 130%);
  padding: 70px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 28px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--color-white); max-width: 820px; }
.page-hero .lede { color: rgba(255,255,255,0.88); max-width: 66ch; }
.breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--color-gold-light); }

/* ------------------------------ Generic sections ------------------------------ */
section { padding: 84px 0; }
.section-alt { background: var(--color-cream-dark); }
.section-dark {
  background: linear-gradient(160deg, var(--color-bordeaux-dark), var(--color-bordeaux));
  color: rgba(255,255,255,0.92);
}
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-dark .lede { color: rgba(255,255,255,0.8); }

/* ------------------------------ USP / feature grid ------------------------------ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--color-terracotta), var(--color-bordeaux));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 28px; height: 28px; color: var(--color-white); }
.icon-badge.gold { background: linear-gradient(140deg, var(--color-gold-light), var(--color-gold)); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--color-charcoal-soft); margin-bottom: 0; font-size: 0.98rem; }

/* ------------------------------ Stats bar ------------------------------ */
.stats-bar {
  background: var(--color-bordeaux-dark);
  color: var(--color-white);
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-gold-light);
  margin-bottom: 4px;
}
.stat-label { font-size: 0.86rem; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }
@media (max-width: 780px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; } }

/* ------------------------------ Dish / menu cards ------------------------------ */
.dish-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.dish-card:hover { transform: translateY(-4px); }
.dish-art {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dish-art svg { width: 92px; height: 92px; }
.dish-body { padding: 22px 24px 26px; }
.dish-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.dish-title-row h3 { margin: 0; font-size: 1.18rem; }
.dish-price {
  font-family: var(--font-display);
  color: var(--color-terracotta);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.dish-body p { color: var(--color-charcoal-soft); font-size: 0.94rem; margin-bottom: 0; }
.tag-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-cream-dark);
  color: var(--color-bordeaux);
}

.art-bg-1 { background: linear-gradient(140deg, #f3e2c4, #eccf9d); }
.art-bg-2 { background: linear-gradient(140deg, #f0d7d2, #e3b3a8); }
.art-bg-3 { background: linear-gradient(140deg, #e7ecd8, #cdd9ab); }
.art-bg-4 { background: linear-gradient(140deg, #f8e9e2, #edc9b6); }
.art-bg-5 { background: linear-gradient(140deg, #e3d4e8, #c9a9d6); }
.art-bg-6 { background: linear-gradient(140deg, #d9e5ea, #a9c6d6); }

/* ------------------------------ Reviews teaser / testimonial ------------------------------ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}
.stars { display: inline-flex; gap: 2px; color: var(--color-gold); }
.stars svg { width: 18px; height: 18px; }

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.testimonial-quote { font-size: 1.02rem; color: var(--color-charcoal-soft); margin-bottom: 18px; }
.testimonial-quote::before { content: "\201C"; color: var(--color-gold); font-family: var(--font-display); font-size: 1.4em; margin-right: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.monogram {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(140deg, var(--color-terracotta), var(--color-bordeaux));
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--color-bordeaux-dark); }
.testimonial-meta { font-size: 0.82rem; color: var(--color-charcoal-soft); }
.testimonial-stars { margin-top: 8px; }

/* ------------------------------ Timeline ------------------------------ */
.timeline { position: relative; margin-left: 12px; padding-left: 36px; border-left: 3px solid var(--color-gold); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-terracotta);
  border: 3px solid var(--color-cream);
  box-shadow: 0 0 0 3px var(--color-gold);
}
.timeline-year {
  font-family: var(--font-display);
  color: var(--color-terracotta);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

/* ------------------------------ Team ------------------------------ */
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.team-monogram {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.9rem;
  color: var(--color-white);
  background: linear-gradient(150deg, var(--color-gold-light), var(--color-terracotta) 55%, var(--color-bordeaux));
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-soft);
}
.team-role { color: var(--color-terracotta); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.team-bio { color: var(--color-charcoal-soft); font-size: 0.93rem; }

/* ------------------------------ Gallery tiles ------------------------------ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.gallery-tile.tall { min-height: 420px; }
.gallery-tile-icon { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; opacity: 0.85; }
.gallery-tile-icon svg { width: 100%; height: 100%; }
.gallery-tile h3 { color: var(--color-white); font-size: 1.4rem; margin-bottom: 6px; }
.gallery-tile p { color: rgba(255,255,255,0.86); font-size: 0.92rem; margin-bottom: 0; }
.gallery-tile::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,0.05) 0 3px, transparent 3px 22px);
}
.g-bg-1 { background: linear-gradient(150deg, #7a2b21, #45120f); }
.g-bg-2 { background: linear-gradient(150deg, #b98d34, #7a5a16); }
.g-bg-3 { background: linear-gradient(150deg, #59707a, #2c3d44); }
.g-bg-4 { background: linear-gradient(150deg, #8a3b46, #4a1219); }
.g-bg-5 { background: linear-gradient(150deg, #7c8a4f, #46521f); }
.g-bg-6 { background: linear-gradient(150deg, #c1552f, #6d1f2b); }

.quote-slab {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--color-bordeaux-dark);
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.35;
}
.quote-slab span { color: var(--color-terracotta); }

/* ------------------------------ Press ------------------------------ */
.press-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
}
.press-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-bordeaux);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: inline-block;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 4px;
}
.press-quote { font-style: italic; color: var(--color-charcoal-soft); }

/* ------------------------------ Event packages ------------------------------ */
.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-card.featured { border: 2px solid var(--color-gold); position: relative; }
.package-badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--color-gold);
  color: var(--color-bordeaux-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
}
.package-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-terracotta); margin: 8px 0 16px; }
.package-price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--color-charcoal-soft); font-weight: 500; }
.package-list { margin: 0 0 22px; }
.package-list li { display: flex; gap: 10px; padding: 7px 0; font-size: 0.94rem; color: var(--color-charcoal-soft); border-bottom: 1px dashed var(--color-line); }
.package-list li:last-child { border-bottom: none; }
.package-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-terracotta); margin-top: 2px; }

/* ------------------------------ Menu page ------------------------------ */
.menu-section { margin-bottom: 56px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-gold);
}
.menu-section-head .icon-badge { margin-bottom: 0; width: 46px; height: 46px; }
.menu-section-head .icon-badge svg { width: 24px; height: 24px; }
.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
}
.menu-row:last-child { border-bottom: none; }
.menu-row-name { font-weight: 700; color: var(--color-bordeaux-dark); font-size: 1.03rem; }
.menu-row-desc { color: var(--color-charcoal-soft); font-size: 0.92rem; margin-top: 4px; }
.menu-row-price { font-family: var(--font-display); font-weight: 700; color: var(--color-terracotta); white-space: nowrap; font-size: 1.05rem; }
.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--color-charcoal-soft);
}
.menu-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.wine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .wine-grid { grid-template-columns: 1fr; } }
.wine-col h4 { color: var(--color-terracotta); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 14px; }

/* ------------------------------ Contact / Form ------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-block { display: flex; gap: 16px; margin-bottom: 26px; }
.info-block .icon-badge { flex-shrink: 0; margin-bottom: 0; }
.info-block h3 { margin-bottom: 6px; font-size: 1.1rem; }
.info-block p { color: var(--color-charcoal-soft); margin-bottom: 0; font-size: 0.96rem; }

.map-placeholder {
  border-radius: var(--radius-lg);
  height: 260px;
  background: linear-gradient(135deg, #dfe6d8, #c7d4bd);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid var(--color-line);
}
.map-placeholder svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; top: 50%; left: 52%; transform: translate(-50%, -100%); width: 42px; height: 42px; color: var(--color-terracotta); filter: drop-shadow(0 6px 8px rgba(0,0,0,0.25)); }

.demo-notice {
  background: #fff7e0;
  border: 1px solid #e6c65c;
  color: #6b5411;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.demo-notice svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.86rem; font-weight: 700; color: var(--color-bordeaux-dark); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-line);
  background: var(--color-cream);
  color: var(--color-charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background: var(--color-white);
}
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--color-charcoal-soft); margin-bottom: 22px; }
.field-check input { margin-top: 3px; }

/* ------------------------------ Opening hours table ------------------------------ */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 1px dashed var(--color-line); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--color-bordeaux-dark); }

/* ------------------------------ CTA band ------------------------------ */
.cta-band {
  background: linear-gradient(120deg, var(--color-terracotta), var(--color-bordeaux));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--color-white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* ------------------------------ Legal ------------------------------ */
.legal-block { max-width: 820px; margin: 0 auto; }
.legal-block h2 { margin-top: 48px; }
.legal-block h2:first-child { margin-top: 0; }
.legal-block h3 { font-size: 1.1rem; margin-top: 28px; }
.legal-block p, .legal-block li { color: var(--color-charcoal-soft); }
.legal-block ul { margin: 12px 0 12px 4px; }
.legal-block li { padding: 4px 0; padding-left: 20px; position: relative; }
.legal-block li::before { content: "—"; position: absolute; left: 0; color: var(--color-terracotta); }
.legal-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.legal-tabs a {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--color-line);
  font-weight: 600;
  font-size: 0.9rem;
}
.legal-tabs a:hover { border-color: var(--color-terracotta); color: var(--color-terracotta); }
hr.legal-divider { border: none; border-top: 2px solid var(--color-gold); margin: 56px 0; }

/* ------------------------------ Footer ------------------------------ */
.site-footer {
  background: var(--color-bordeaux-dark);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-icon { width: 36px; height: 36px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-white); font-weight: 700; }
.site-footer h4 {
  font-family: var(--font-body);
  color: var(--color-gold-light);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.site-footer p { font-size: 0.92rem; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.92rem; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--color-gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.footer-demo-note {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.82rem;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.75);
}
.footer-demo-note strong { color: var(--color-gold-light); }

/* ------------------------------ Misc helpers ------------------------------ */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.two-col-text { columns: 2; column-gap: 48px; }
@media (max-width: 780px) { .two-col-text { columns: 1; } }
.divider-olive { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 40px 0; color: var(--color-gold); }
.divider-olive svg { width: 32px; height: 32px; }
.divider-olive::before, .divider-olive::after { content: ""; flex: 1; height: 1px; background: var(--color-line); max-width: 160px; }

.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .philosophy-grid { grid-template-columns: 1fr; } }

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .value-list { grid-template-columns: 1fr; } }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-item .icon-badge { width: 44px; height: 44px; margin-bottom: 0; flex-shrink: 0; }
.value-item .icon-badge svg { width: 22px; height: 22px; }
.value-item h4 { margin-bottom: 4px; font-family: var(--font-body); font-size: 1rem; color: var(--color-bordeaux-dark); }
.value-item p { font-size: 0.9rem; color: var(--color-charcoal-soft); margin-bottom: 0; }

.reserve-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-cream-dark);
  border: 1px dashed var(--color-gold);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--color-bordeaux-dark);
  font-weight: 600;
  width: fit-content;
  margin: 0 auto 28px;
}
.reserve-strip svg { width: 18px; height: 18px; color: var(--color-terracotta); }

/* =========================================================================
   Fotografie-Erweiterungen (Bilder + Marken-Overlays)
   ========================================================================= */

/* Foto-Hero (Startseite): Foto + kräftiger Bordeaux-Verlauf darüber */
.hero.has-photo {
  background-image:
    linear-gradient(100deg, rgba(74,18,25,0.94) 0%, rgba(109,31,43,0.86) 45%, rgba(193,85,47,0.52) 100%),
    var(--photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.hero.has-photo::after {
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 26px);
}

/* Foto-Seitenkopf (Unterseiten) */
.page-hero.has-photo {
  background-image:
    linear-gradient(100deg, rgba(74,18,25,0.94) 0%, rgba(109,31,43,0.85) 48%, rgba(193,85,47,0.55) 100%),
    var(--photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* Hero-Bildkachel rechts (ersetzt/ergänzt die SVG-Illustration) */
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255,255,255,0.22);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.hero-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(109,31,43,0.18), rgba(74,18,25,0.42));
  pointer-events: none;
}

/* Fotos in Gerichte-Karten */
.dish-photo {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--color-cream-dark);
}
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.dish-card:hover .dish-photo img { transform: scale(1.04); }

/* Vollbreite Foto-Band mit Zitat */
.photo-band {
  position: relative;
  padding: 0;
  color: var(--color-white);
  background-image:
    linear-gradient(100deg, rgba(74,18,25,0.93) 0%, rgba(109,31,43,0.80) 45%, rgba(193,85,47,0.48) 100%),
    var(--photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll;
}
.photo-band-inner {
  padding: 110px 0;
  max-width: 760px;
}
.photo-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.32;
  color: var(--color-white);
}
.photo-band blockquote::before { content: "\201C"; color: var(--color-gold-light); }
.photo-band blockquote::after { content: "\201D"; color: var(--color-gold-light); }
.photo-band cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}
@media (max-width: 700px) { .photo-band-inner { padding: 72px 0; } }

/* Akzentfoto pro Speisekarten-Kategorie */
.menu-cat-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
}
.menu-cat-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 640px) { .menu-cat-photo img { height: 170px; } }

/* Zweispaltige Text/Bild-Sektion */
.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .split-media { grid-template-columns: 1fr; gap: 32px; } }
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-frame.framed-gold { border: 3px solid var(--color-gold); }
.media-caption {
  font-size: 0.84rem;
  color: var(--color-charcoal-soft);
  margin-top: 10px;
  font-style: italic;
}

/* Kleines Foto in Event-Paketen */
.package-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: -8px 0 20px;
}
.package-photo img { width: 100%; height: 150px; object-fit: cover; }

/* Foto-Galerie (Masonry-artiges Raster) */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.photo-gallery figure {
  margin: 0;
  position: relative;
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-bordeaux-dark);
}
.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 0.4s ease;
}
.photo-gallery figure:hover img { transform: scale(1.05); }
.photo-gallery figure.span-3 { grid-column: span 3; }
.photo-gallery figure.span-4 { grid-column: span 4; }
.photo-gallery figure.span-3 img { aspect-ratio: 4 / 3; }
.photo-gallery figure.span-4 img { aspect-ratio: 16 / 9; }
.photo-gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 20px 18px;
  color: var(--color-white);
  font-size: 0.9rem;
  line-height: 1.45;
  background: linear-gradient(to top, rgba(74,18,25,0.92) 0%, rgba(74,18,25,0.62) 50%, rgba(74,18,25,0) 100%);
}
.photo-gallery figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 2px;
  color: var(--color-white);
}
@media (max-width: 900px) {
  .photo-gallery { grid-template-columns: repeat(4, 1fr); }
  .photo-gallery figure.span-4 { grid-column: span 4; }
}
@media (max-width: 600px) {
  .photo-gallery { grid-template-columns: 1fr; gap: 18px; }
  .photo-gallery figure,
  .photo-gallery figure.span-3,
  .photo-gallery figure.span-4 { grid-column: span 1; }
  .photo-gallery img,
  .photo-gallery figure.span-3 img,
  .photo-gallery figure.span-4 img { aspect-ratio: 4 / 3; }
}

@media (max-width: 900px) {
  .hero-art:has(.hero-photo-frame) { max-width: 520px; }
}
