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

:root {
  --cream:      #FAF7F2;
  --cream-dk:   #F0EBE1;
  --espresso:   #2D1B0E;
  --espresso2:  #1A0F08;
  --terra:      #C4622D;
  --terra-lt:   #D9804F;
  --sage:       #7C9A7E;
  --sand:       #E8D5B7;
  --sand-dk:    #D4BC98;
  --muted:      #9A8878;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;
  --mono:   'DM Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-dk); }
::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 10px; }

/* ── Selection ── */
::selection { background: var(--terra); color: var(--cream); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, box-shadow 0.5s;
}
nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(45,27,14,0.08);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: var(--espresso);
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1;
  transition: color 0.4s;
}
nav:not(.scrolled) .nav-logo { color: #fff; }
nav:not(.scrolled) .nav-logo sup { color: rgba(255,255,255,0.7); }
.nav-logo sup {
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: super;
  color: var(--terra);
  margin-left: 2px;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(45,27,14,0.6);
  text-decoration: none;
  transition: color 0.4s;
  position: relative;
}
nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.8); }
nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after { width: 100%; }
.nav-reserve {
  padding: 0.6rem 1.6rem;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s;
}
.nav-reserve:hover { background: var(--terra); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--espresso); transition: all 0.3s, background 0.4s;
}
nav:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 600; font-style: italic;
  color: var(--espresso); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--terra); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--espresso2);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1800&q=85');
  background-size: cover; background-position: center 55%;
  transform: scale(1.08);
  transition: transform 10s ease-out, opacity 1.2s ease;
  opacity: 0.7;
}
.hero-bg.loaded { transform: scale(1); opacity: 0.75; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(45,27,14,0.72) 0%,
    rgba(45,27,14,0.35) 55%,
    rgba(45,27,14,0.1) 100%
  );
}
/* Grain */
.hero-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
/* Decorative coffee ring */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 15%; right: 8%;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(232,213,183,0.12);
  box-shadow: inset 0 0 0 18px rgba(232,213,183,0.04), 0 0 0 40px rgba(232,213,183,0.03);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5vw;
  max-width: 750px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(16px);
  animation: riseIn 0.8s var(--ease-out) 0.2s forwards;
}
.hero-tag::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--terra);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(30px);
  animation: riseIn 1.1s var(--ease-out) 0.45s forwards;
}
.hero-title strong {
  font-style: normal; font-weight: 700;
  color: var(--sand);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(232,213,183,0.75);
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(16px);
  animation: riseIn 0.9s var(--ease-out) 0.75s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  animation: riseIn 0.9s var(--ease-out) 0.95s forwards;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 100px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-dark:hover { background: var(--terra-lt); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,98,45,0.4); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 100px;
  border: 1px solid rgba(250,247,242,0.35);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-outline-light:hover { border-color: var(--cream); background: rgba(250,247,242,0.08); }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: riseIn 1s ease 1.6s forwards;
}
.scroll-orb {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(232,213,183,0.3);
  display: flex; align-items: center; justify-content: center;
  animation: bobble 2.5s ease-in-out infinite;
}
.scroll-orb svg { color: var(--sand); opacity: 0.6; }
.hero-scroll-hint span {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,213,183,0.35); font-family: var(--mono);
}

/* ─────────────────────────────────────────
   INTRO STRIP
───────────────────────────────────────── */
.intro-strip {
  background: var(--espresso);
  padding: 2rem 5vw;
  display: flex; align-items: center; justify-content: center;
  gap: 4rem; flex-wrap: wrap;
  overflow: hidden;
}
.intro-pill {
  display: flex; align-items: center; gap: 0.8rem;
  color: rgba(232,213,183,0.6);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.08em;
  white-space: nowrap;
}
.intro-pill svg { color: var(--terra); flex-shrink: 0; }
.intro-divider { width: 1px; height: 20px; background: rgba(232,213,183,0.12); }

/* ─────────────────────────────────────────
   GESCHICHTE
───────────────────────────────────────── */
#geschichte {
  padding: 10rem 5vw;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10vw; align-items: center;
  background: var(--cream);
}
.geschichte-text { order: 2; }
.geschichte-visual { order: 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--terra); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300; font-style: italic;
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--espresso);
  margin-bottom: 1.8rem;
}
.section-title strong { font-style: normal; font-weight: 700; }
.section-title em { color: var(--terra); }

.body-text {
  font-size: 1rem; font-weight: 300; line-height: 1.9;
  color: rgba(45,27,14,0.65);
  margin-bottom: 1.2rem;
}
.signature {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(45,27,14,0.08);
}
.sig-img {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--sand);
}
.sig-name {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic; font-weight: 600;
  color: var(--espresso); display: block; line-height: 1.2;
}
.sig-title {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

/* Photo stack */
.photo-stack {
  position: relative; padding: 2rem 2rem 3rem 1rem;
}
.photo-main {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px; display: block;
  box-shadow: 12px 16px 40px rgba(45,27,14,0.15);
  position: relative; z-index: 2;
}
.photo-accent {
  position: absolute; bottom: 0; right: -1rem; z-index: 3;
  width: 44%; aspect-ratio: 1;
  object-fit: cover; border-radius: 4px;
  box-shadow: 8px 10px 30px rgba(45,27,14,0.18);
  border: 4px solid var(--cream);
}
.coffee-ring {
  position: absolute; top: 0; left: 0; z-index: 1;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 8px solid rgba(196,98,45,0.12);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.06);
}

/* ─────────────────────────────────────────
   MENÜ
───────────────────────────────────────── */
#menu {
  padding: 8rem 5vw;
  background: var(--espresso);
  position: relative; overflow: hidden;
}
#menu::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.menu-header {
  display: grid; grid-template-columns: 1fr auto; align-items: end;
  margin-bottom: 4rem; gap: 2rem;
}
.menu-header .section-title { color: var(--cream); margin-bottom: 0; }
.menu-header .eyebrow { color: var(--terra); }
.menu-header .eyebrow::before { background: var(--terra); }

.menu-tabs {
  display: flex; gap: 0.5rem;
}
.menu-tab {
  padding: 0.5rem 1.2rem;
  background: transparent;
  color: rgba(232,213,183,0.4);
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(232,213,183,0.12);
  border-radius: 100px; cursor: pointer;
  transition: all 0.25s;
}
.menu-tab.active, .menu-tab:hover {
  background: var(--terra); color: var(--cream);
  border-color: var(--terra);
}

.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(232,213,183,0.06);
}
.menu-item {
  background: var(--espresso);
  padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.menu-item:hover { background: rgba(45,27,14,0.6); }
.menu-item-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.6rem;
}
.menu-item-name {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--cream); line-height: 1.2; flex: 1; padding-right: 1rem;
}
.menu-item-price {
  font-family: var(--mono); font-size: 0.88rem;
  color: var(--terra); white-space: nowrap;
  background: rgba(196,98,45,0.12);
  padding: 0.2rem 0.5rem; border-radius: 4px;
}
.menu-item-desc {
  font-size: 0.82rem; font-weight: 300; line-height: 1.65;
  color: rgba(232,213,183,0.45);
}
.menu-item-tag {
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: rgba(124,154,126,0.2); color: #a8c9aa;
  border-radius: 3px;
}
.menu-item-num {
  position: absolute; bottom: 1rem; right: 1.2rem;
  font-family: var(--serif); font-size: 4rem; font-weight: 700;
  color: rgba(232,213,183,0.03); line-height: 1;
  user-select: none;
}

/* ─────────────────────────────────────────
   GALERIE
───────────────────────────────────────── */
#galerie {
  padding: 8rem 5vw;
  background: var(--cream-dk);
}
.galerie-header {
  text-align: center; margin-bottom: 4rem;
}
.galerie-header .eyebrow { justify-content: center; }
.galerie-header .eyebrow::before { display: none; }
.galerie-header .eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--terra); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.8rem;
}
.gal-item {
  position: relative; overflow: hidden; border-radius: 5px;
  cursor: pointer;
}
.gal-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gal-item:nth-child(2) { grid-column: span 4; }
.gal-item:nth-child(3) { grid-column: span 3; }
.gal-item:nth-child(4) { grid-column: span 3; }
.gal-item:nth-child(5) { grid-column: span 4; }

.gal-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: saturate(0.85);
}
.gal-item:hover .gal-img { transform: scale(1.06); filter: saturate(1.05); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,27,14,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: var(--cream); opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s var(--ease-out);
}
.gal-item:hover .gal-label { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   ZEITEN & ORT
───────────────────────────────────────── */
#info {
  padding: 8rem 5vw;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8vw; align-items: start;
  background: var(--cream);
}
.hours-grid {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 0;
}
.hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(45,27,14,0.06);
  transition: background 0.2s;
}
.hour-row:last-child { border-bottom: none; }
.hour-day {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(45,27,14,0.5);
}
.hour-time {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--espresso);
}
.hour-row.today .hour-day { color: var(--terra); }
.hour-row.today .hour-time { color: var(--terra); }
.hour-badge {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  background: rgba(124,154,126,0.15); color: var(--sage);
  border-radius: 3px;
}

.location-card {
  margin-top: 2.5rem;
  background: var(--cream-dk);
  border-radius: 8px; overflow: hidden;
}
.location-map {
  width: 100%; height: 180px; object-fit: cover; display: block;
  filter: saturate(0.7) sepia(0.15);
}
.location-details {
  padding: 1.5rem;
}
.location-address {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--espresso); margin-bottom: 0.5rem;
}
.location-meta {
  font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.6;
}
.location-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra); text-decoration: none;
  transition: gap 0.2s;
}
.location-link:hover { gap: 0.6rem; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
#stimmen {
  padding: 8rem 5vw;
  background: var(--sand);
  overflow: hidden;
}
.stimmen-header { margin-bottom: 4rem; }
.stimmen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.stimme-card {
  background: var(--cream);
  border-radius: 8px; padding: 2.5rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(45,27,14,0.06);
}
.stimme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(45,27,14,0.12);
}
.stimme-stars {
  display: flex; gap: 3px; margin-bottom: 1.2rem;
}
.stimme-star { color: var(--terra); font-size: 0.85rem; }
.stimme-text {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  font-weight: 400; line-height: 1.75; color: var(--espresso);
  margin-bottom: 1.8rem;
}
.stimme-author { display: flex; align-items: center; gap: 0.9rem; }
.stimme-avatar {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--sand);
}
.stimme-name {
  font-size: 0.88rem; font-weight: 500; color: var(--espresso); display: block;
}
.stimme-since {
  font-size: 0.72rem; color: var(--muted);
}
.quote-bg {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--serif); font-size: 6rem; font-weight: 700;
  color: rgba(45,27,14,0.04); line-height: 1; user-select: none;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--espresso);
  padding: 5rem 5vw 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(232,213,183,0.07);
  margin-bottom: 2.5rem;
}
.footer-brand-logo {
  font-family: var(--serif); font-size: 2rem; font-style: italic; font-weight: 600;
  color: var(--cream); text-decoration: none; display: block; margin-bottom: 1rem;
}
.footer-brand-text {
  font-size: 0.85rem; font-weight: 300; line-height: 1.8;
  color: rgba(232,213,183,0.4); max-width: 260px;
}
.footer-social {
  display: flex; gap: 0.8rem; margin-top: 1.5rem;
}
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(232,213,183,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(232,213,183,0.4);
  text-decoration: none; transition: all 0.25s;
  font-size: 0.8rem;
}
.social-btn:hover { border-color: var(--terra); color: var(--terra); }
.footer-col-title {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1.5rem;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col-links a {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(232,213,183,0.45); text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-size: 0.72rem; color: rgba(232,213,183,0.2); font-family: var(--mono);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 0.72rem; color: rgba(232,213,183,0.2); text-decoration: none;
  font-family: var(--mono); transition: color 0.2s;
}
.footer-legal a:hover { color: var(--terra); }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1050px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-grid { grid-template-rows: 220px 220px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-reserve { display: none; }
  .hamburger { display: flex; }

  #geschichte { grid-template-columns: 1fr; gap: 4rem; }
  .geschichte-text { order: 1; }
  .geschichte-visual { order: 2; }

  .menu-header { grid-template-columns: 1fr; }
  .menu-tabs { flex-wrap: wrap; }

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gal-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gal-item:nth-child(1) { grid-column: span 2; }

  #info { grid-template-columns: 1fr; gap: 4rem; }

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

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .intro-strip { gap: 1.5rem; }
  .intro-divider { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; border-radius: 12px; }
  .newsletter-btn { border-radius: 8px; padding: 0.9rem; }
}
