/* ==========================================================================
   Heidehof Restaurant – Stylesheet
   ========================================================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Cinzel:wght@500;600;700&family=Italianno&family=Yellowtail&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --cream: #f5ecd9;
  --cream-darker: #efe4ca;
  --cream-light: #faf3e4;
  --green: #1f3a2e;
  --green-dark: #14271f;
  --green-light: #2b4a3b;
  --gold: #c9a44a;
  --gold-light: #d8b965;
  --red: #9c2929;
  --red-light: #b8412e;
  --text: #2a2a2a;
  --text-light: #5a5a5a;
  --border: rgba(0, 0, 0, 0.08);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', serif;
  --font-script: 'Italianno', 'Brush Script MT', cursive;
  --font-brush: 'Yellowtail', 'Brush Script MT', cursive;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Speisekarte */
  --menu-head: #3a3322;        /* dark olive-brown for section headers */
  --menu-gold: #b08a3e;        /* gold icons / accents */
  --menu-text: #2c2418;        /* item text on cream */
  --menu-text-light: #6b5f47;  /* item descriptions on cream */
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  align-items: center;
  padding: 22px 40px;
  gap: 24px;
  position: relative;
}

.nav.nav-left { grid-column: 1; }
.nav.nav-right { grid-column: 3; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav.nav-left { justify-content: flex-start; padding-right: 0; }
.nav.nav-right { justify-content: flex-end; padding-left: 0; }
.nav a { white-space: nowrap; }

.nav a {
  color: var(--text);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }
.nav a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.logo-slot {
  /* empty grid placeholder - logo lives in .logo-tab outside the header */
}
.logo-slot-link { display: none; } /* nur auf Mobil sichtbar (siehe Media Query) */

/* Logo on inner pages (Über uns, Speisekarte, Reservierung, Kontakt) */
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-wrap img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.10));
}

.site-header { padding-bottom: 0; }
.header-inner { padding-top: 22px; padding-bottom: 22px; }

/* ============ HEADER+HERO COMBINED (for logo-tab overlap) ============ */
.header-hero {
  position: relative;
  background: var(--cream);
}

/* Logo tab: cream-colored shape that hangs below the header into the hero */
.logo-tab {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  z-index: 200;
  pointer-events: none;
}
.logo-tab-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 175px;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
}
.logo-tab-link {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  pointer-events: auto;
  display: block;
  width: 260px;
}
.logo-tab-link img {
  width: 260px;
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.10));
}

.nav .btn-reserve-header,
.btn-reserve-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
  border-bottom: none !important;
}
.btn-reserve-header:hover { background: var(--green-dark); }
.btn-reserve-header svg { width: 14px; height: 14px; fill: currentColor; }

/* Reservation page header variant - icon-only big button */
.nav .btn-reserve-icon,
.btn-reserve-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 4px;
  min-width: 130px;
  height: 56px;
  border-bottom: none !important;
}
.btn-reserve-icon svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--green); }
.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: #fff; }

/* ---------- Headings & decorative elements ---------- */
.script-eyebrow {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
  text-align: center;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}
.section-title-wrap .script-eyebrow { display: block; margin-bottom: 6px; }

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 14px 0 20px;
  position: relative;
}
.divider.center { margin-left: auto; margin-right: auto; }
.divider::before, .divider::after {
  content: '❦';
  color: var(--gold);
  font-size: 12px;
  position: absolute;
  top: -8px;
}
.divider::before { left: -16px; }
.divider::after { right: -16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream);
  padding-top: 30px;
}
.footer-info {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr auto;
  gap: 40px;
  align-items: center;
  padding: 22px 40px;
  font-size: 14px;
}
.footer-info .info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}
.footer-info .info-item svg {
  width: 18px; height: 18px;
  fill: var(--green);
  flex-shrink: 0;
}
.footer-info .info-item .lines { line-height: 1.5; }

.socials {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  transition: background 0.2s;
}
.socials a:hover { background: var(--gold); color: var(--green); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

.footer-copy {
  background: var(--green);
  color: var(--cream);
  font-size: 12px;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.04em;
}
.footer-copy .legal-links { display: flex; gap: 24px; }
.footer-copy a:hover { color: var(--gold); }

/* ----- Dark footer variant (used on Reservierung) ----- */
.site-footer.dark {
  background: var(--green);
  color: var(--cream);
  padding: 0;
}
.site-footer.dark .footer-info { color: var(--cream); }
.site-footer.dark .footer-info .info-item { color: var(--cream); }
.site-footer.dark .footer-info .info-item svg { fill: var(--gold); }
.site-footer.dark .socials a { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.site-footer.dark .socials a:hover { background: var(--gold); color: var(--green); }
.site-footer.dark .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.site-footer.dark .footer-brand .name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--cream);
  line-height: 1;
}
.site-footer.dark .footer-brand .tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.site-footer.dark .footer-copy {
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ========================================================================
   STARTSEITE
   ======================================================================== */

/* Hero */
.hero {
  position: relative;
  padding-top: 0;
  margin-top: 0;
}
.hero-image {
  background: url('../images/hero-restaurant.jpg') center 30%/cover no-repeat;
  height: 620px;
  position: relative;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,15,10,0.7) 0%, rgba(20,15,10,0.3) 45%, transparent 70%);
}

/* Torn edge SVG at the bottom of the hero - sanfte elegante Papierkante */
.hero-torn {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 42px;
  display: block;
  z-index: 3;
  filter: drop-shadow(0 -1px 1px rgba(0,0,0,0.04));
}

/* Dezente Pünktchen unterhalb der Kante (subtiles "getupft") */
.torn-particles {
  position: relative;
  background: var(--cream);
  height: 22px;
  margin-top: -2px;
  z-index: 2;
  overflow: hidden;
}
.torn-particles svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 520px;
}
.hero-content .script-eyebrow {
  color: var(--gold);
  display: block;
  font-size: 38px;
  margin-bottom: 4px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 88px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--cream-light);
}
.hero-divider {
  width: 100px;
  height: 1px;
  background: var(--gold);
  margin: 14px 0 22px;
  position: relative;
}
.hero-divider::before {
  content: '❦';
  color: var(--gold);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  font-size: 14px;
}
.hero-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 26px;
  color: #f4ecd6;
}
.hero-text .tradition { color: #8aba6a; font-weight: 600; }
.hero-text .leidenschaft { color: #e88671; font-weight: 600; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Feature row */
.features {
  background: var(--cream);
  padding: 50px 40px 70px;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  text-align: center;
}
.feature {
  padding: 0 30px;
  position: relative;
}
.feature + .feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(0,0,0,0.1);
}
.feature-icon {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-icon img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.feature p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Highlights */
.highlights {
  background: var(--cream-darker);
  padding: 60px 40px 70px;
}
.highlights-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.dish-card {
  background: var(--cream-light);
  border-radius: 4px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
}
.dish-card .dish-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.dish-card .dish-badge {
  position: absolute;
  top: 178px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border: 4px solid var(--cream-light);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.dish-card .dish-badge.gold { background: var(--gold); }
.dish-card .dish-badge.red { background: var(--red); }
.dish-card .dish-badge.green { background: var(--green); }
.dish-card .dish-badge svg { width: 24px; height: 24px; fill: var(--cream-light); }
.dish-card .dish-body {
  padding: 32px 16px 20px;
}
.dish-card h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}
.dish-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
  min-height: 60px;
}
.dish-card .mehr-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  padding-bottom: 14px;
}
.dish-card .mehr-link:hover { color: var(--gold); }
.dish-card .mehr-link::after { content: ' ›'; }

/* Info Strip - Opening hours - mit Innenabstand vom Seitenrand */
.info-strip-wrap {
  background: var(--cream);
  padding: 40px 24px 60px;
}
.info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.info-block {
  padding: 50px 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-hours {
  background: var(--green-dark);
  color: var(--cream);
}
.info-hours h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.info-hours .hour-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.info-hours .hour-row:last-of-type { border-bottom: none; margin-bottom: 22px; }

.info-quote {
  background: var(--cream-darker);
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-quote .quote-deco { color: var(--gold); font-size: 14px; letter-spacing: 0.5em; margin-bottom: 10px; }
.info-quote .quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--text);
  max-width: 280px;
}
.info-quote img {
  max-width: 100px;
  margin-top: 24px;
  opacity: 0.85;
}
.info-image {
  background: url('../images/startseite-terrasse.jpg') center/cover no-repeat;
}

/* ========================================================================
   ÜBER UNS
   ======================================================================== */

.ueberuns-hero {
  position: relative;
  margin-top: 0;
}
.ueberuns-hero-image {
  background: url('../images/ueber-uns-willkommen.jpg') center 60%/cover no-repeat;
  height: 620px;
  position: relative;
}
.ueberuns-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,15,10,0.55) 0%, rgba(20,15,10,0.15) 50%, transparent 100%);
}
.ueberuns-hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--cream-light);
  max-width: 520px;
}
.ueberuns-hero-content .script-eyebrow {
  color: var(--gold);
  display: inline-block;
}
.ueberuns-hero-content .script-eyebrow::after {
  content: ' ❦';
  font-size: 22px;
}
.ueberuns-hero-content h1 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 68px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--cream-light);
}
.ueberuns-hero-content h1 .subline {
  display: block;
  font-size: 36px;
  font-weight: 600;
  margin-top: 6px;
}
.ueberuns-hero-content p {
  font-size: 16px;
  color: #f4ecd6;
  margin-top: 18px;
  max-width: 380px;
}

.geschichte {
  background: var(--cream);
  padding: 70px 40px;
}
.geschichte-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.geschichte-text h2 {
  font-family: var(--font-script);
  font-size: 50px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.geschichte-text .divider { margin-bottom: 26px; }
.geschichte-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}
.geschichte-text p strong { font-weight: 700; }
.geschichte-illustration {
  text-align: center;
  filter: sepia(0.3);
  opacity: 0.85;
}
.geschichte-illustration img { max-width: 100%; }

.values {
  background: var(--cream);
  padding: 30px 40px 70px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  padding-top: 50px;
}
.value {
  padding: 0 40px;
}
.value-icon {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.value-icon img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
}
.value h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.value p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.cta-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--green-dark);
  color: var(--cream);
}
.cta-strip .cta-text {
  padding: 50px 50px;
}
.cta-strip .cta-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.cta-strip .cta-text .sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.cta-strip .cta-text p { font-size: 14px; line-height: 1.7; max-width: 360px; }
.cta-strip .cta-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-strip .cta-img {
  background: url('../images/ueber-uns-haus.jpg') center/cover no-repeat;
  min-height: 260px;
}

/* ========================================================================
   SPEISEKARTE
   ======================================================================== */

.speisekarte-page {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, transparent 40px),
    linear-gradient(180deg, #e6d8b8 0%, #e1d2af 100%);
  padding: 60px 0 70px;
  position: relative;
}
.speisekarte-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(140,110,55,0.25) 25%, rgba(140,110,55,0.4) 50%, rgba(140,110,55,0.25) 75%, transparent 100%);
}
.speisekarte-title {
  text-align: center;
  padding: 20px 0 40px;
}
.speisekarte-title h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.speisekarte-title h1::before, .speisekarte-title h1::after {
  content: '❦';
  color: var(--gold);
  font-size: 16px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.menu-section h2 {
  font-family: var(--font-brush);
  font-size: 33px;
  color: var(--menu-head);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.menu-section h2 .sect-deco {
  width: 46px;
  height: 26px;
  color: var(--menu-gold);
  flex-shrink: 0;
  display: inline-block;
}
.menu-section .h-divider {
  width: 62%;
  height: 11px;
  margin-bottom: 16px;
  background: no-repeat left center / contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='11' viewBox='0 0 240 11' fill='none' stroke='%23b08a3e' stroke-width='1.4' stroke-linecap='round'><path d='M2 7 C50 2 90 2 120 4 C160 6.5 200 6.5 238 3'/></svg>");
}

.menu-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-family: var(--font-serif);
}
.menu-item .num {
  font-weight: 700;
  color: var(--menu-text);
  font-family: var(--font-serif);
}
.menu-item .item-name {
  font-weight: 700;
  color: var(--menu-text);
  font-family: var(--font-serif);
  font-size: 14px;
}
.menu-item .item-desc {
  font-size: 12px;
  color: var(--menu-text-light);
  margin-top: 2px;
  line-height: 1.4;
  font-family: var(--font-serif);
}
.menu-item .price {
  font-weight: 500;
  color: var(--menu-text);
  white-space: nowrap;
  font-family: var(--font-serif);
}

/* Center wooden panel */
.menu-center {
  background: linear-gradient(to bottom, #4a3019, #3a2614 50%, #2d1d10);
  background-image: 
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.25 0 0 0 0 0.15 0 0 0 0 0.08 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>"),
    linear-gradient(to bottom, #4a3019, #3a2614 50%, #2d1d10);
  border-radius: 6px;
  padding: 36px 30px;
  color: #efe0c0;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.4);
}
.menu-center .menu-section h2 {
  color: #e6cf95;
  display: block;
  text-align: center;
  margin-bottom: 8px;
  font-size: 34px;
}
.menu-center .menu-section h2 .sect-deco {
  color: #e6cf95;
}
.menu-center .menu-section .h-divider {
  width: 55%;
  margin: 0 auto 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='11' viewBox='0 0 240 11' fill='none' stroke='%23cbab63' stroke-width='1.4' stroke-linecap='round'><path d='M2 7 C50 2 90 2 120 4 C160 6.5 200 6.5 238 3'/></svg>");
  background-position: center center;
}
.menu-center .menu-item {
  color: #efe0c0;
}
.menu-center .menu-item .num,
.menu-center .menu-item .item-name,
.menu-center .menu-item .price {
  color: #efe0c0;
}
.menu-center .menu-item .item-desc { color: #c5b48a; }
.menu-center .price-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  font-family: var(--font-serif);
  border-bottom: 1px dotted rgba(255,255,255,0.15);
}
.menu-center .price-line:last-child { border-bottom: none; }
.menu-center .price-line .item-l { font-weight: 600; color: #efe0c0; }
.menu-center .price-line .item-r { font-style: italic; color: #c5b48a; }

.menu-quote {
  text-align: center;
  margin-top: 30px;
  color: #d8b965;
}
.menu-quote .quote-icon {
  display: block;
  margin: 0 auto 14px;
  width: 56px;
  height: auto;
  color: #d8b965;
  opacity: 0.95;
}
.menu-quote p {
  font-family: var(--font-brush);
  font-size: 30px;
  font-style: normal;
  line-height: 1.35;
  color: #d8b965;
}

.menu-photo {
  position: relative;
  margin: 0;
}
.menu-photo img {
  width: 100%;
  border-radius: 4px;
}
.menu-photo.salmon { margin-top: 10px; }
.menu-photo.pizza { margin-top: 10px; }

.menu-section.subgroup {
  margin-top: 30px;
  padding: 0 4px;
}
.menu-section.subgroup h3 {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}

/* Pizza-Block: kleinere Headline, zentriert + Hinweis darunter */
.menu-section.pizza-block {
  margin-top: 28px;
  text-align: center;
}
.menu-section.pizza-block h2 {
  display: inline-flex;
  font-size: 32px;
  margin-bottom: 2px;
}
.menu-section.pizza-block .menu-item {
  text-align: left;
}

/* Zwei Pizza-Spalten nebeneinander unter dem Holzpanel */
.center-pizzas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.center-pizzas .menu-section.pizza-block {
  margin-top: 0;
}
.center-pizzas .menu-item {
  grid-template-columns: 24px 1fr auto;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 10px;
}
.center-pizzas .menu-item .item-desc {
  font-size: 11px;
}

.menu-section h2 .sect-deco.flip { transform: scaleX(-1); }

.subgroup-note {
  font-size: 11px;
  color: var(--menu-text-light);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 14px;
  text-align: center;
}

/* Hauptüberschrift "Unsere Speisekarte" mit Blatt-Ranken links/rechts */
.speisekarte-title h1 .title-sprig {
  width: 44px;
  height: 22px;
  color: #4c4626;
  margin: 0 16px;
  flex-shrink: 0;
}
.speisekarte-title h1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.speisekarte-page-footer {
  background: var(--green);
  color: var(--cream);
  padding: 16px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
  font-size: 13px;
}
.speisekarte-page-footer .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.speisekarte-page-footer .info-item svg {
  width: 16px; height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}
.speisekarte-page-footer .socials a {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.speisekarte-page-footer .socials a:hover {
  background: var(--gold);
  color: var(--green);
}

/* ========================================================================
   RESERVIERUNG
   ======================================================================== */

.reservierung-hero {
  background: url('../images/reservierung-aussen.jpg') center/cover no-repeat;
  height: 280px;
  position: relative;
}

.reservierung-main {
  background: var(--cream);
  padding: 40px 40px 60px;
}
.reservierung-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.reservierung-card, .partyraum-card {
  background: var(--cream-light);
  border-radius: 6px;
  padding: 36px 38px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.card-title {
  text-align: center;
  margin-bottom: 30px;
}
.card-title h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
}
.card-title .deco {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.5em;
  margin-top: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px 18px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group label svg {
  width: 14px; height: 14px; fill: var(--green);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 60px; }

.form-submit {
  text-align: center;
  margin-top: 24px;
}
.form-submit .btn-primary {
  padding: 16px 38px;
  width: 100%;
  max-width: 380px;
  justify-content: center;
}
.form-submit .privacy {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-submit .privacy svg { width: 14px; height: 14px; fill: var(--green); }

/* Partyraum card */
.partyraum-card h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  text-align: center;
  margin-bottom: 22px;
  font-weight: 600;
}
.partyraum-card .deco {
  text-align: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.5em;
  margin-bottom: 22px;
}
.partyraum-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.partyraum-img {
  width: 100%;
  max-width: 480px;
}
.partyraum-img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.partyraum-info {
  text-align: center;
  width: 100%;
}
.partyraum-info p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--text);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.partyraum-info ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  display: inline-block;
  text-align: left;
}
.partyraum-info ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}
.partyraum-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.partyraum-info .btn { margin-top: 4px; }

.partyraum-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 30px auto 0;
  max-width: 580px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 26px;
}
.pf-item {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.pf-item .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(31,58,46,0.07);
}
.pf-item svg { width: 22px; height: 22px; fill: var(--green); }

/* ========================================================================
   KONTAKT
   ======================================================================== */

.kontakt-hero {
  background: url('../images/kontakt-innenraum.jpg') center/cover no-repeat;
  height: 420px;
  position: relative;
  margin-top: 0;
}
.kontakt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,15,10,0.45);
}
.kontakt-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  text-align: center;
  z-index: 2;
  color: var(--cream-light);
}
.kontakt-hero-content .script-eyebrow { color: var(--gold); }
.kontakt-hero-content h1 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 72px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--cream-light);
}
.kontakt-hero-content p { max-width: 520px; font-size: 16px; }

.kontakt-main {
  background: var(--cream);
  padding: 70px 40px;
}
.kontakt-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-card {
  background: var(--cream-light);
  padding: 40px 36px;
  border-radius: 6px;
}
.contact-card h2 {
  font-family: var(--font-script);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.contact-card .h-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; }
.contact-item .ic-wrap {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .ic-wrap svg { width: 16px; height: 16px; fill: currentColor; }
.contact-item .ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.contact-item .ci-content { font-size: 14px; line-height: 1.6; color: var(--text); }
.contact-item .ci-content a:hover { color: var(--gold); }

.hours-card {
  background: var(--green-dark);
  color: var(--cream);
  padding: 36px 36px;
  border-radius: 6px;
  margin-top: 24px;
}
.hours-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.hours-card .hour-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours-card .hour-row:last-child { border-bottom: none; }

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  height: 100%;
  min-height: 540px;
  background: var(--cream-darker);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: relative;
  z-index: 2;
  min-height: 540px;
}
/* Fallback: liegt unter dem iframe, wird sichtbar wenn iframe nicht lädt */
.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 40px 24px;
  background:
    linear-gradient(135deg, rgba(31,58,46,0.04) 0%, rgba(201,164,74,0.06) 100%),
    repeating-linear-gradient(45deg, rgba(31,58,46,0.03) 0 10px, transparent 10px 20px),
    var(--cream-darker);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-sans);
  z-index: 1;
  transition: filter 0.2s ease;
}
.map-fallback:hover { filter: brightness(0.97); }
.map-fallback svg {
  width: 38px;
  height: 38px;
  fill: var(--green);
  margin-bottom: 6px;
}
.map-fallback strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}
.map-fallback span {
  font-size: 13px;
  color: var(--text);
}
.map-fallback em {
  margin-top: 14px;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.kontakt-cta {
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
  padding: 50px 40px;
}
.kontakt-cta h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.kontakt-cta p { font-size: 14px; margin-bottom: 22px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ========================================================================
   FLOATING CALL BUTTON
   ======================================================================== */
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.floating-call .fc-hint {
  background: var(--cream-light);
  color: var(--green-dark);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: auto;
  border: 1px solid rgba(31,58,46,0.08);
}
.floating-call.show-hint .fc-hint {
  opacity: 1;
  transform: translateX(0);
}
.floating-call .fc-btn {
  background: var(--green);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
}
.floating-call .fc-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}
.floating-call .fc-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}
.floating-call .fc-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: fc-pulse 2.6s infinite;
}
@keyframes fc-pulse {
  0%   { transform: scale(0.95); opacity: 0.5; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ========================================================================
   MOBILES MENÜ / BURGER
   ======================================================================== */

.nav-toggle {
  display: none;            /* auf Desktop ausgeblendet, nur mobil sichtbar */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.mobile-nav.open { display: block; }

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 39, 31, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  animation: mn-fade 0.25s ease;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82vw, 340px);
  background: var(--cream);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.25);
  padding: 24px 26px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: mn-slide 0.3s ease;
}
@keyframes mn-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mn-slide { from { transform: translateX(100%); } to { transform: translateX(0); } }

.mobile-nav-close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--green);
}
.mobile-nav-close svg { width: 26px; height: 26px; fill: currentColor; }

.mobile-nav-logo { display: block; width: 150px; margin: 0 auto 22px; }
.mobile-nav-logo img { width: 100%; height: auto; }

.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  padding: 15px 4px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--gold); }

.mobile-nav-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 15px 18px;
  background: var(--green);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-nav-reserve svg { width: 18px; height: 18px; fill: currentColor; }
.mobile-nav-reserve:hover { background: var(--green-dark); }

.mobile-nav-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}
.mobile-nav-contact a { color: var(--green); font-weight: 600; font-size: 16px; }

body.nav-open { overflow: hidden; }

/* Menü darf nie auf Desktop erscheinen */
@media (min-width: 701px) {
  .mobile-nav { display: none !important; }
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 1024px) {
  .header-inner { padding: 18px 24px; grid-template-columns: 1fr 240px 1fr; gap: 16px; }
  .nav { gap: 18px; font-size: 11px; }
  .nav.nav-left { padding-right: 0; }
  .nav.nav-right { padding-left: 0; }
  .logo-wrap img { width: 180px; }
  .hero-title { font-size: 64px; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-layout { grid-template-columns: 1fr; gap: 20px; }
  .geschichte-inner, .reservierung-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .info-strip, .cta-strip { grid-template-columns: 1fr; }
  .info-block { min-height: auto; }
  .info-image { min-height: 260px; }
  .features-grid, .values-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature + .feature::before, .value + .value::before { display: none; }
  .footer-info, .speisekarte-page-footer { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .partyraum-content { max-width: 100%; }
  .center-pizzas { grid-template-columns: 1fr; gap: 0; }
  /* Logo-Tab auf Tablet sanft verkleinern */
  .logo-tab { width: 280px; height: 190px; }
  .logo-tab-shape { height: 130px; }
  .logo-tab-link { width: 200px; top: 14px; }
  .logo-tab-link img { width: 200px; }
}

@media (max-width: 700px) {
  /* Burger anzeigen, Text-Navigation ausblenden */
  .nav-toggle { display: inline-flex; grid-column: 1; justify-self: start; }
  .site-header .nav a:not(.btn-reserve-header):not(.btn-reserve-icon) { display: none; }
  .site-header .nav { gap: 0; }
  .nav-left { display: none; }

  /* 3-Spalten-Raster: Burger | Logo (mittig) | Reserve-Button */
  .header-inner,
  .header-hero .header-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 12px 14px;
    gap: 8px;
    align-items: center;
  }

  /* Logo mittig – Unterseiten */
  .logo-wrap { grid-column: 2; justify-self: center; }
  .logo-wrap img { width: 120px; }

  /* Logo mittig – Startseite: Notch-Logo ausblenden, einfaches Logo im Raster zeigen */
  .header-hero .logo-tab { display: none; }
  .header-hero .logo-slot { display: block; grid-column: 2; justify-self: center; }
  .logo-slot-link { display: block; width: 120px; }
  .logo-slot-link img { width: 120px; }

  /* Reserve-Button rechts */
  .nav-right { grid-column: 3; justify-self: end; justify-content: flex-end; }
  .nav .btn-reserve-header span { display: none; }
  .nav .btn-reserve-header { display: inline-flex !important; padding: 11px 13px; }
  .nav .btn-reserve-header svg { width: 16px; height: 16px; }
  /* Großer Icon-Button (Reservierungsseite) kompakter */
  .nav .btn-reserve-icon { min-width: 0; height: 46px; padding: 11px 15px; }
  .nav .btn-reserve-icon svg { width: 22px; height: 22px; }
  .hero-image, .ueberuns-hero-image { height: 420px; }
  .hero-image { background-position: center center; }
  .hero-content, .ueberuns-hero-content { left: 6%; right: 6%; }
  .hero-title { font-size: 48px; }
  .ueberuns-hero-content h1 { font-size: 44px; }
  .ueberuns-hero-content h1 .subline { font-size: 26px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .partyraum-features { grid-template-columns: 1fr 1fr; }
  .kontakt-hero-content h1 { font-size: 48px; }
  .footer-copy { flex-direction: column; gap: 8px; text-align: center; }
  .footer-info { padding: 22px 20px; }
  .speisekarte-page-footer { padding: 16px 20px; }
  /* Features etwas kleinere Icons auf Mobile */
  .feature-icon { height: 100px; }
  .feature-icon img { width: 100px; height: 100px; }
  .value-icon { height: 160px; }
  .value-icon img { width: 160px; height: 160px; }
  /* Maps placeholder etwas niedriger auf Mobile */
  .map-wrap, .map-wrap iframe { min-height: 360px; }
  .map-fallback { padding: 28px 18px; }
  /* Floating Button etwas weniger Abstand */
  .floating-call { right: 14px; bottom: 14px; }
  .floating-call .fc-btn { width: 52px; height: 52px; }
  .floating-call .fc-hint { font-size: 11px; padding: 8px 12px; }
  /* Info-Strip wrapper schmal padding auf mobile */
  .info-strip-wrap { padding: 30px 12px 40px; }

  /* Leichter heller Glow hinter der Header-/Hero-Schrift – NUR mobil,
     damit die Schrift trotz dunkler Bildbereiche gut lesbar bleibt */
  .hero-content .script-eyebrow,
  .hero-title,
  .hero-text,
  .ueberuns-hero-content .script-eyebrow,
  .ueberuns-hero-content h1,
  .ueberuns-hero-content h1 .subline,
  .ueberuns-hero-content p,
  .kontakt-hero-content .script-eyebrow,
  .kontakt-hero-content h1,
  .kontakt-hero-content p,
  .legal-hero-content .script-eyebrow,
  .legal-hero-content h1 {
    text-shadow:
      0 0 6px rgba(255, 248, 230, 0.85),
      0 0 14px rgba(255, 248, 230, 0.55),
      0 1px 3px rgba(0, 0, 0, 0.45);
  }
}

/* ==========================================================================
   Rechtsseiten – Impressum & Datenschutz
   ========================================================================== */
.legal-hero {
  background: var(--green);
  position: relative;
  padding: 70px 24px 56px;
  text-align: center;
  overflow: hidden;
}
.legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,164,74,0.18), transparent 60%);
  pointer-events: none;
}
.legal-hero-content { position: relative; z-index: 2; }
.legal-hero-content .script-eyebrow {
  color: var(--gold);
  display: block;
  font-size: 34px;
  margin-bottom: 2px;
}
.legal-hero-content h1 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: 0.03em;
  color: var(--cream-light);
}

.legal-main {
  background: var(--cream);
  padding: 64px 24px 80px;
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(20,15,10,0.08);
  padding: 48px 46px;
}
.legal-container h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--green);
  margin: 34px 0 12px;
}
.legal-container h2:first-child { margin-top: 0; }
.legal-container h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--green-dark);
  margin: 22px 0 8px;
}
.legal-container p,
.legal-container li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 12px;
}
.legal-container ul { margin: 0 0 12px 22px; }
.legal-container a { color: var(--red); text-decoration: underline; }
.legal-container a:hover { color: var(--gold); }
.legal-container .legal-divider {
  width: 70px; height: 2px; background: var(--gold);
  margin: 6px 0 26px; border: 0;
}
.legal-container strong { color: var(--green-dark); }
.legal-meta { font-size: 13px; color: var(--text-light); margin-top: 30px; }

@media (max-width: 700px) {
  .legal-hero { padding: 54px 18px 42px; }
  .legal-hero-content h1 { font-size: 38px; }
  .legal-main { padding: 40px 14px 60px; }
  .legal-container { padding: 30px 20px; border-radius: 12px; }
  .legal-container h2 { font-size: 22px; }
}

/* ---------- Footer: "Made by Ayzix" ---------- */
.footer-credit {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.footer-credit a { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }
.speisekarte-page-footer .footer-credit { grid-column: 1 / -1; width: 100%; text-align: center; margin-top: 14px; }
.speisekarte-page-footer .legal-links { grid-column: 1 / -1; }
.speisekarte-page-footer .legal-links a { color: var(--gold); margin: 0 10px; text-decoration: none; }
.speisekarte-page-footer .legal-links a:hover { text-decoration: underline; }
