/* ============================================================
   ZEYTIN RESTAURANT – Stylesheet
   Warm · Verspielt · Mediterran
   ============================================================ */

/* 0. LOCAL FONT FACES (DSGVO-konform, kein Google CDN) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/playfair-display-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-italic.woff') format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/lato-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lato-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lato-700.woff2') format('woff2');
}

/* 1. CSS CUSTOM PROPERTIES */
:root {
  --color-primary:    #5C7A52;  /* Salbeigrün */
  --color-secondary:  #4A6840;  /* Waldgrün */
  --color-gold:       #C8A843;  /* Gold (Logo-Akzent) */
  --color-burgundy:   #8A2846;  /* Burgunder (warm, opulent) */
  --color-dark:       #1A2218;  /* Dunkelgrün/Schwarz */
  --color-warm-bg:    #F4ECD8;  /* Warmes Beige */
  --color-sand:       #E0D0A8;  /* Sand/Hellbeige */
  --color-olive:      #4A6840;  /* Sattes Olivgrün */
  --color-white:      #FDFAF3;  /* Warmweiß */
  --color-text:       #3A3028;  /* Fließtext warmbraun */
  --color-text-light: #7A6E5A;  /* Gedämpftes Warmbraun */

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Lato', system-ui, sans-serif;
  --font-script:  'Cormorant Garamond', Georgia, serif;

  --shadow-sm:   0 2px 8px rgba(90, 70, 40, 0.10);
  --shadow-md:   0 4px 20px rgba(90, 70, 40, 0.14);
  --shadow-lg:   0 8px 40px rgba(30, 24, 14, 0.18);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;

  --nav-height:  72px;
  --container:   1200px;
  --section-gap: 100px;
}

/* 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* 3. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--color-dark);
}

.section-label {
  display: inline-block;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-burgundy);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* 4. LAYOUT */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn-primary:hover {
  background: #3a5430;
  border-color: #3a5430;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 104, 64, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-small { padding: 0.5rem 1.2rem; font-size: 0.875rem; }

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.section-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 50px;
}

.section-wave--hero {
  color: var(--color-white);
  margin-top: -50px;
}

.section-wave--light {
  color: var(--color-white);
  margin-top: -1px;
}

@media (min-width: 768px) {
  .section-wave svg { height: 70px; }
  .section-wave--hero { margin-top: -70px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(26, 34, 24, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--color-secondary) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #3a5430 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO – Photo background with warm overlay
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(26,34,24,0.82) 0%, rgba(45,64,38,0.78) 50%, rgba(30,40,26,0.85) 100%),
    url("../images/hero-img-5158.webp") center/cover no-repeat;
}

/* Second photo hint – right side */
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 0;
  width: 55%;
  height: 100%;
  background: url("../images/hero-img-5161.webp") center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  filter: blur(1px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 168, 67, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(92, 122, 82, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse at center, transparent 40%, rgba(26, 34, 24, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 5rem;
  max-width: 800px;
}

.hero-tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-sand);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(4.5rem, 14vw, 10rem);
  font-weight: 500;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}

.hero-mezze {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  width: 36px;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   ÜBER UNS – with photo hint
   ============================================================ */
.ueber-uns {
  background: var(--color-white);
}


.ueber-uns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.ueber-uns-text p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.ueber-uns-text em {
  color: var(--color-primary);
  font-style: italic;
  font-family: var(--font-script);
  font-size: 1.08em;
}

.zeytin-quote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-burgundy);
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-gold);
  line-height: 1.5;
}

.ueber-uns-image {
  position: relative;
}
.ueber-uns-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  min-height: 300px;
}

.ueber-uns-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--color-burgundy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.image-placeholder {
  background: linear-gradient(135deg, var(--color-sand) 0%, #c8b888 100%);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.image-placeholder--tall { aspect-ratio: 3/4; }

/* ============================================================
   GALERIE – with photo hint
   ============================================================ */
.galerie {
  background: var(--color-warm-bg);
}


.galerie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.galerie-item img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.galerie-item--large {
  grid-column: span 2;
}
.galerie-item--large img {
  aspect-ratio: 16/7;
  min-height: unset;
}

/* ============================================================
   SPEISEKARTE
   ============================================================ */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-warm-bg);
  border: 2px solid var(--color-primary);
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-back:hover {
  background: var(--color-primary);
  color: #fff;
}

.speisekarte {
  background: var(--color-white);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-light);
  background: var(--color-warm-bg);
  border: 2px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.menu-tab:hover { color: var(--color-primary); border-color: var(--color-sand); }
.menu-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-warm-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-sand);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.menu-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}
.menu-item-name .veg-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--color-olive);
  color: #fff;
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 6px;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

.speisekarte-hinweis {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.speisekarte-hinweis p { color: var(--color-text-light); font-size: 0.875rem; }

/* ============================================================
   SPEISEKARTE UNTERSEITE
   ============================================================ */
.speisekarte-header {
  padding-top: calc(var(--nav-height) + 3rem);
}

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.menu-category-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.menu-intro {
  background: var(--color-warm-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--color-gold);
}

.menu-intro p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.menu-subcategory-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-burgundy);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-sand);
}

.allergen-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-left: 4px;
}

.allergene-legende {
  margin-bottom: 1rem;
}

.allergene-legende h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.allergene-legende p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.story-closing {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-top: 1rem;
}

/* ============================================================
   SPEISEKARTE TEASER
   ============================================================ */
.speisekarte-teaser {
  background: var(--color-white);
}

.teaser-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.teaser-item {
  padding: 1.5rem;
  background: var(--color-warm-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teaser-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.teaser-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.teaser-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.teaser-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .teaser-highlights { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   KONTAKT – with photo hint
   ============================================================ */
.kontakt {
  background: var(--color-warm-bg);
}


.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.kontakt-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.kontakt-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kontakt-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.kontakt-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.kontakt-icon svg { color: #fff; width: 100%; height: 100%; }

.kontakt-block h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}
.kontakt-block p { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 0.25rem; }

.kontakt-link { color: var(--color-primary); font-weight: 700; font-size: 0.875rem; }
.kontakt-link:hover { text-decoration: underline; }

.oeffnungszeiten { border-collapse: collapse; font-size: 0.875rem; width: 100%; }
.oeffnungszeiten td { padding: 0.2rem 0.5rem 0.2rem 0; color: var(--color-text-light); }
.oeffnungszeiten td:last-child { font-weight: 700; color: var(--color-dark); text-align: right; }

.kontakt-note { font-size: 0.75rem; color: var(--color-text-light); margin-top: 0.5rem; font-style: italic; }

.kontakt-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
}

.map-placeholder {
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--color-sand) 0%, #b8a878 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
}
.map-placeholder-sub { font-size: 0.8rem; font-weight: 400; color: var(--color-text-light); }

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.legal-page {
  padding-top: 6rem;
}
.legal-content {
  max-width: 720px;
  line-height: 1.8;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
}
.legal-content p {
  margin-bottom: 0.8rem;
}
.legal-placeholder {
  background: #FFF3CD;
  border-left: 4px solid var(--color-gold);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-style: italic;
  color: var(--color-text-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 300px;
  margin-top: 0.75rem;
}

.footer-logo {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.25s ease;
  color: rgba(255,255,255,0.7);
}
.social-link svg { width: 100%; height: 100%; }
.social-link:hover { border-color: var(--color-gold); color: #fff; background: rgba(200,168,67,0.2); }

.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-nav ul li {
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
}
.footer-nav ul li a { transition: color 0.2s; }
.footer-nav ul li a:hover { color: #fff; }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer-hours li span:last-child { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }

/* ============================================================
   ANIMATIONS / SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MEDIA QUERIES – TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  :root { --section-gap: 120px; }

  .ueber-uns-grid { grid-template-columns: 1fr 1fr; }

  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .galerie-item--large { grid-column: span 2; }
  .galerie-item--large img { aspect-ratio: 16/9; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .kontakt-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .kontakt-info { grid-template-columns: 1fr; }
  .kontakt-map { min-height: 450px; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   MEDIA QUERIES – DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .nav-hamburger { display: none; }

  .kontakt-info { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE NAVIGATION OVERLAY
   ============================================================ */
@media (max-width: 1023px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 34, 24, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }

  .nav-cta {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
}
