/* ==========================================================================
   Lemon & Olive Café Bistro — Design System
   Palette direkt vom echten Logo/Ladenschild abgeleitet, kein Schwarz/Gold.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Farben */
  --cream:        #F3EEDD;
  --cream-light:  #FBF8EF;
  --cream-mid:    #E9E1C8;
  --forest:       #2F3B26;
  --forest-light: #435331;
  --olive:        #6E7B4F;
  --olive-light:  #94A06B;
  --lemon:        #EFC44C;
  --lemon-dark:   #D9A82E;
  --ink:          #2A2A22;

  /* Typografie */
  --font-display: 'Archivo', 'Work Sans', Arial, sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Abstände */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 12px 32px rgba(47, 59, 38, 0.12);
  --shadow-soft: 0 4px 14px rgba(47, 59, 38, 0.08);
  --header-h: 84px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest);
  margin: 0 0 var(--space-2);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { margin: 0 0 var(--space-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--space-1);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--lemon-dark);
  display: inline-block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section { padding: var(--space-6) 0; }
section.tight { padding: var(--space-4) 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-4);
  text-align: center;
}
.section-head p { color: var(--forest-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--lemon);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--lemon-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream-light); }
.btn-on-dark {
  background: var(--lemon);
  color: var(--forest);
}
.btn-ghost-on-dark {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream-light);
}
.btn-ghost-on-dark:hover { background: var(--cream-light); color: var(--forest); }

.btn-glow { animation: btn-glow-pulse 2.6s ease-in-out infinite; }
@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 196, 76, 0.55), var(--shadow-soft); }
  50% { box-shadow: 0 0 0 9px rgba(239, 196, 76, 0), var(--shadow-soft); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-glow { animation: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--cream-light);
  border-bottom: 1px solid rgba(110, 123, 79, 0.18);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--forest);
  z-index: 2;
  transition: opacity 0.2s ease;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}

.main-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-nav ul {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--forest);
  padding: 0.4rem 0.1rem;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--lemon-dark);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--forest); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: var(--space-2); z-index: 2; }
.header-cta .btn { padding: 0.7rem 1.3rem; font-size: 0.9rem; }
.phone-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--olive-light);
  color: var(--forest);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.phone-icon-btn svg { width: 18px; height: 18px; }
.phone-icon-btn:hover { background: var(--olive); border-color: var(--olive); color: var(--cream-light); }

.nav-cta-mobile { display: none; }
.nav-mobile-brand { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 300;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    inset: 0;
    left: 0;
    transform: none;
    background: var(--forest) url('../img/nav/lemontree.png') bottom right / auto 100vh no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--space-2) var(--space-3) 100vh;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0.32s;
    z-index: 250;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0s;
  }
  .nav-mobile-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--space-1);
    margin-bottom: var(--space-3);
  }
  .nav-mobile-brand img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lemon);
  }
  .nav-mobile-brand span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--cream-light);
    text-align: center;
  }
  .nav-mobile-brand small {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lemon);
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    text-align: center;
  }
  .main-nav a { font-size: 1.3rem; color: var(--cream-light); }
  .main-nav a::after { background: var(--lemon); }
  .main-nav a.active { color: var(--lemon); }
  .nav-toggle { display: flex; position: relative; }
  .header-cta { display: none; }
  .site-header.nav-open .brand { opacity: 0; pointer-events: none; }
  .site-header.nav-open .nav-toggle span { background: var(--cream-light); }
  .nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    width: 100%;
    max-width: 320px;
    margin-top: var(--space-3);
    padding-top: var(--space-2);
    border-top: 1px solid rgba(251, 248, 239, 0.25);
  }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; }
  .nav-cta-mobile .btn-outline {
    background: transparent;
    border-color: var(--cream-light);
    color: var(--cream-light);
  }
  .nav-cta-mobile .btn-outline:hover { background: var(--cream-light); color: var(--forest); }
}

/* Auf kurzen Screens (z. B. iPhone SE) wird der Baum bei 100vh so breit, dass er
   Nav-Links überdeckt (Baum-Seitenverhältnis ~0.48 liegt nah am Screen-Seitenverhältnis
   selbst) — hier etwas zurücknehmen, damit Text lesbar bleibt. */
@media (max-width: 880px) and (max-height: 700px) {
  .main-nav {
    background-size: auto 65vh;
    padding-bottom: 65vh;
  }
}

body.nav-lock { overflow: hidden; height: 100%; }

/* ==========================================================================
   Phone-FAB (mobil, tap-to-call)
   ========================================================================== */
.phone-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--cream-light);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(110, 123, 79, 0.4);
  z-index: 250;
}
.phone-fab svg { width: 24px; height: 24px; }
@media (max-width: 880px) {
  .phone-fab { display: flex; }
  body.nav-lock .phone-fab { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: var(--cream-light);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47,59,38,0.28) 0%, rgba(40,50,31,0.6) 55%, rgba(47,59,38,1) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  padding: var(--space-5) 0 var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 6px rgba(251,248,239,0.14), 0 18px 40px rgba(15,20,10,0.45);
  margin-bottom: var(--space-3);
}
.hero .eyebrow { color: var(--lemon); }
.hero .eyebrow::before { background: var(--lemon); }
.hero h1 { color: var(--cream-light); max-width: 720px; }
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; justify-content: center; margin-top: var(--space-3); }

.page-hero {
  background: var(--forest);
  color: var(--cream-light);
  padding: calc(var(--space-6) + 1rem) 0 var(--space-5);
}
.page-hero .eyebrow { color: var(--lemon); }
.page-hero .eyebrow::before { background: var(--lemon); }
.page-hero h1 { color: var(--cream-light); }
.page-hero p { color: rgba(251, 248, 239, 0.85); max-width: 620px; }

/* ==========================================================================
   Status-Widget (Live-Öffnungsstatus)
   ========================================================================== */
.status-band {
  background: var(--forest);
  color: var(--cream-light);
}
.status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  background: var(--forest-light);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
}
.status-left { display: flex; align-items: center; gap: var(--space-2); }
.status-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #8FBF6B;
  box-shadow: 0 0 0 5px rgba(143, 191, 107, 0.25);
  flex-shrink: 0;
}
.status-dot.closed {
  background: #D97757;
  box-shadow: 0 0 0 5px rgba(217, 119, 87, 0.22);
}
.status-text strong { display: block; font-size: 1.15rem; }
.status-text span { font-size: 0.9rem; color: rgba(251,248,239,0.75); }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.3rem 1.5rem;
  font-size: 0.92rem;
}
.hours-grid .day-today { color: var(--lemon); font-weight: 600; }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: var(--space-3); }
.card-body h3 { margin-bottom: 0.35rem; }
.card-body p { color: var(--forest-light); font-size: 0.95rem; margin-bottom: 0; }

.about-teaser-lead { font-size: 1.15rem; line-height: 1.75; }

/* Über-uns-Teaser mobil: Text + Button liegen über dem abgedunkelten Bild,
   statt darunter zu stehen. Bild und Text teilen sich dieselbe Grid-Zelle. */
@media (max-width: 880px) {
  .about-teaser .grid-2 { grid-template-columns: 1fr; }
  .about-teaser .grid-2 > * { grid-area: 1 / 1; }
  .about-teaser-image {
    position: relative;
    z-index: 1;
    min-height: 520px;
    border-radius: 0;
  }
  .about-teaser-image img { height: 100%; }
  .about-teaser-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 38, 26, 0.62) 0%, rgba(20, 38, 26, 0.72) 40%, rgba(20, 38, 26, 0.88) 100%);
  }
  .about-teaser-text {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: var(--space-3) var(--space-2);
    text-align: center;
  }
  .about-teaser-text .eyebrow { color: var(--lemon); }
  .about-teaser-text .eyebrow::before { background: var(--lemon); }
  .about-teaser-text h2,
  .about-teaser-text p { color: var(--cream-light); }
  .about-teaser-text .btn-outline {
    background: transparent;
    border-color: var(--cream-light);
    color: var(--cream-light);
  }
  .about-teaser-text .btn-outline:hover { background: var(--cream-light); color: var(--forest); }
}

/* Dish teaser row */
.dish-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(110,123,79,0.35);
}
.dish-row:last-child { border-bottom: none; }
.dish-name { font-weight: 600; color: var(--forest); }
.dish-note { display: block; font-size: 0.85rem; color: var(--olive); margin-top: 0.15rem; }
.dish-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}
.dish-price.tbd { color: var(--olive); font-style: italic; font-family: var(--font-body); font-size: 0.9rem; }

.menu-group {
  margin-bottom: var(--space-4);
  scroll-margin-top: calc(var(--header-h) + 64px);
}
.menu-group h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.menu-group h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(110,123,79,0.3);
}

/* ==========================================================================
   Kategorien-Leiste (Speisekarte) — sticky unter dem Header, kein
   backdrop-filter (siehe Scroll-Jank-Fix beim Header: blur+sticky ruckelt).
   ========================================================================== */
.cat-tabs {
  position: sticky;
  top: var(--header-h);
  z-index: 150;
  background: var(--cream-light);
  border-bottom: 1px solid rgba(110, 123, 79, 0.18);
}
.cat-tabs-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.7rem var(--space-3);
}
.cat-tabs-scroll::-webkit-scrollbar { display: none; }
.cat-tab {
  flex: 0 0 auto;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 123, 79, 0.3);
  color: var(--forest-light);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cat-tab:hover { border-color: var(--olive); color: var(--forest); }
.cat-tab.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream-light);
}

/* ==========================================================================
   Placeholder-Bilder (nummeriert, markiert — siehe PLATZHALTER-MANIFEST.md)
   ========================================================================== */
.img-placeholder {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 2px dashed var(--olive);
  background:
    repeating-linear-gradient(135deg, rgba(110,123,79,0.08) 0 14px, rgba(110,123,79,0.03) 14px 28px),
    var(--cream-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2);
  color: var(--forest);
}
.img-placeholder .ph-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
}
.img-placeholder .ph-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-top: 0.4rem;
}
.img-placeholder .ph-desc {
  font-size: 0.8rem;
  color: var(--forest-light);
  margin-top: 0.2rem;
  max-width: 22ch;
}

/* Speisekarte-Galerie (Startseite) — Kacheln in gleicher Zeilenhöhe (nur die
   Breite variiert), echte Fotos ersetzen die Kacheln später 1:1. */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.gallery-masonry .img-placeholder { aspect-ratio: unset; height: 100%; padding: var(--space-1); }
.gallery-masonry .img-placeholder .ph-number { font-size: 1.6rem; }
.gallery-masonry .img-placeholder .ph-label { font-size: 0.68rem; }
.gallery-tile-wide { grid-column: span 2; }
.gallery-tile {
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 880px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: var(--space-1);
    margin-top: var(--space-2);
  }
  .gallery-masonry .img-placeholder { padding: 0.4rem; }
  .gallery-masonry .img-placeholder .ph-number { font-size: 1.2rem; }
  .gallery-masonry .img-placeholder .ph-label { font-size: 0.6rem; }
  .gallery-tile-mobile-hide { display: none; }
}

/* ==========================================================================
   Testimonials — Marquee-Karussell
   ========================================================================== */
#reviews {
  background-color: var(--cream);
  transition: background-color 1s ease;
}
#reviews.theme-dark {
  background-color: var(--forest);
}
.reviews-heading {
  color: var(--lemon-dark);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  text-align: center;
  margin-bottom: var(--space-4);
  transition: color 1s ease;
}
#reviews.theme-dark .reviews-heading {
  color: var(--lemon);
}
@media (prefers-reduced-motion: reduce) {
  #reviews,
  .reviews-heading { transition: none; }
}
.testi-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  animation: testi-scroll 64s linear infinite;
}
.testi-marquee:hover .testi-track,
.testi-marquee:focus-within .testi-track { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; }
  .testi-marquee { overflow-x: auto; }
}
.testi-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.testi-stars { color: var(--lemon-dark); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.testi-quote { flex: 1; font-size: 0.96rem; color: var(--ink); }
.testi-name {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--olive);
  margin-top: var(--space-2);
  font-weight: 600;
}

/* ==========================================================================
   Values (Halal / Frauen geführt / LGBTQ+)
   ========================================================================== */
.value-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.value-chip.in-view {
  opacity: 1;
  transform: translateY(0);
}
.value-chip:nth-child(2) { transition-delay: 0.1s; }
.value-chip:nth-child(3) { transition-delay: 0.2s; }
.value-chip .icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
}
.value-chip .icon svg { width: 34px; height: 34px; }
.value-chip h4 { margin: 0; font-size: 1.3rem; font-family: var(--font-display); font-weight: 700; color: var(--forest); }
@media (prefers-reduced-motion: reduce) {
  .value-chip { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Map
   ========================================================================== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--forest);
  color: rgba(251,248,239,0.85);
  padding: var(--space-5) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 {
  font-family: var(--font-body);
  color: var(--lemon);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.55rem; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--lemon); }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: var(--space-2); }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream-light); }
.footer-social-heading {
  font-family: var(--font-body);
  color: var(--lemon);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: var(--space-2) 0 0.7rem;
}
.social-row { display: flex; gap: 0.7rem; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(251,248,239,0.35);
  color: var(--cream-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-row a svg { width: 18px; height: 18px; }
.social-row a:hover { background: var(--lemon); color: var(--forest); border-color: var(--lemon); }
.footer-bottom {
  border-top: 1px solid rgba(251,248,239,0.15);
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(251,248,239,0.6);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Formulare (Reservieren / Kontakt)
   ========================================================================== */
.form-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); margin-bottom: var(--space-2); }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-2); }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--forest); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(110,123,79,0.35);
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--olive);
  background: var(--cream-light);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-4);
}
.form-success .icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-2);
}
.demo-note {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: rgba(239, 196, 76, 0.18);
  border: 1px solid rgba(217, 168, 46, 0.4);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--forest);
  margin-bottom: var(--space-3);
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--olive); }
.divider { height: 1px; background: rgba(110,123,79,0.25); margin: var(--space-4) 0; }

@media (max-width: 620px) {
  section { padding: var(--space-5) 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
