/* ============================================================
   Masa – Pide and Grill | style.css
   Farben: Grün #336144 | Font: Inter (Google Fonts)
   ============================================================ */

/* ── Reset & Basis ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #336144;
  --green-d:      #264d35;
  --green-l:      #4a7d5e;
  --green-pale:   #eaf2ec;
  --gold:         #c8a97c;
  --gold-l:       #e8cfa0;
  --white:        #ffffff;
  --bg-alt:       #f9f6f1;
  --text:         #1a1a1a;
  --text-m:       #4a4a4a;
  --text-l:       #757575;
  --border:       #e0dbd4;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.13);
  --radius:       12px;
  --radius-sm:    6px;
  --radius-lg:    20px;
  --transition:   .25s ease;
  --max-w:        1200px;
  --font:         'Inter', sans-serif;
}

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

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

/* ── Barrierefreiheit ── */
.skip-nav {
  position: absolute;
  top: -120px;
  left: 1rem;
  background: var(--green);
  color: var(--white);
  padding: .6rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  z-index: 9999;
  transition: top var(--transition);
  text-decoration: none;
}
.skip-nav:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Utility ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: .75rem;
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-m);
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

section { padding: 5rem 0; }

/* ── Navigation ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 54px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-m);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 700; }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: .88rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--green-d) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.burger span:nth-child(1) { width: 24px; }
.burger span:nth-child(2) { width: 18px; }
.burger span:nth-child(3) { width: 24px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 1.5rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu a {
  display: block;
  padding: .75rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: var(--green-pale); color: var(--green); }
.mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin-top: .5rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .95rem !important;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  background: var(--bg-alt);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 1.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {
  min-width: 0;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.hero-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-m);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.hero-location svg { color: var(--green); flex-shrink: 0; }
.hero-welcome-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: .5rem;
  flex-wrap: wrap;
}
.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.hero-welcome-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-m);
}
.hero-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-m);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hero-stat .value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero-stat .label {
  font-size: .78rem;
  color: var(--text-l);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Trust Bar ── */
#trust {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 2rem;
  color: var(--text-m);
  font-size: .9rem;
  font-weight: 500;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 1.5rem;
  width: 1px;
  background: var(--border);
}
.trust-icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Leistungen ── */
#leistungen { background: var(--bg-alt); }
.leistungen-header { margin-bottom: 3rem; }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.leistung-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.leistung-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.leistung-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.leistung-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.leistung-card p {
  font-size: .9rem;
  color: var(--text-m);
  line-height: 1.65;
}

/* ── Tradition ── */
#tradition { background: var(--white); }
.tradition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.tradition-block {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
}
.tradition-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.tradition-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
}
.tradition-block p {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 1.8;
}

/* ── Speisekarte ── */
#speisekarte { background: var(--bg-alt); }
.speisekarte-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.speisekarte-text .section-sub { margin-bottom: 2rem; }
.speisekarte-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.speisekarte-info li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-m);
}
.speisekarte-info li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.speisekarte-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.speisekarte-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.speisekarte-img-wrap:hover img { transform: scale(1.03); }
.speisekarte-img-wrap .zoom-hint {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .78rem;
  padding: .4rem .8rem;
  border-radius: 100px;
  display: flex; align-items: center; gap: .4rem;
  backdrop-filter: blur(4px);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9990;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ── Galerie ── */
#galerie { background: var(--white); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.galerie-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.galerie-item:hover img { transform: scale(1.06); }

/* ── Über uns ── */
#ueber-uns { background: var(--bg-alt); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ueber-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ueber-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.ueber-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 600;
}
.ueber-badge .badge-icon { font-size: 1.5rem; }

.ueber-text .section-sub { margin-bottom: 1.5rem; }
.ueber-text p { color: var(--text-m); line-height: 1.8; margin-bottom: 1.2rem; font-size: .97rem; }

.oeffnungszeiten-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.oeffnungszeiten-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.oz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.oz-row:last-child { border-bottom: none; }
.oz-row .day { font-weight: 500; }
.oz-row .time { color: var(--text-m); }
.oz-row .closed { color: #c0392b; font-weight: 600; }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-wrap {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q[aria-expanded="true"] { background: var(--green-pale); color: var(--green); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  color: var(--text-m);
  line-height: 1.7;
}

/* ── Kontakt ── */
#kontakt { background: var(--bg-alt); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; }
.kontakt-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.kontakt-card-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kontakt-card h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-l);
  margin-bottom: .25rem;
}
.kontakt-card p, .kontakt-card a {
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
}
.kontakt-card a:hover { color: var(--green); }

/* Google Maps 2-Klick */
.maps-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.maps-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  background: var(--bg-alt);
}
.maps-placeholder .maps-icon { font-size: 3rem; }
.maps-placeholder p {
  font-size: .85rem;
  color: var(--text-l);
  max-width: 280px;
}
.maps-placeholder p a { color: var(--green); }
.maps-placeholder .btn { font-size: .85rem; padding: .6rem 1.2rem; }
.maps-iframe {
  display: none;
  width: 100%;
  height: 100%;
  border: none;
}
.maps-iframe.loaded { display: block; }

/* Kontaktformular (versteckt – wird später aktiviert) */
.kontakt-form-section { display: none; }

/* ── Reservierung CTA ── */
#reservierung {
  background: #0d1a0f;
  padding: 5rem 0;
  text-align: center;
}
#reservierung .section-title { color: var(--white); }
#reservierung .section-sub { color: rgba(255,255,255,.7); margin: 0 auto 2rem; }
.reservierung-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.reservierung-actions .btn-primary {
  background: var(--gold);
  color: var(--text);
}
.reservierung-actions .btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); }
.reservierung-actions .btn-outline { border-color: rgba(255,255,255,.4); color: var(--white); }
.reservierung-actions .btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── Footer ── */
footer {
  background: #0d1a0f;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 1rem; border-radius: 8px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
footer h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--green); color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 1.5rem; }


/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,.08);
  z-index: 9980;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: .88rem; color: var(--text-m); flex: 1; min-width: 260px; }
.cookie-text a { color: var(--green); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-actions .btn { padding: .55rem 1.1rem; font-size: .85rem; }

/* ── Scroll-Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Seiten-spezifisch (Impressum / Datenschutz) ── */
.legal-page { padding-top: 70px; }
.legal-hero {
  background: var(--green);
  padding: 4rem 0 3rem;
  color: var(--white);
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: .5rem; }
.legal-hero p { color: rgba(255,255,255,.75); font-size: .95rem; }
.legal-content { padding: 4rem 0; }
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--green-pale);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.legal-content p { color: var(--text-m); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }
.legal-content a { color: var(--green); }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-m); line-height: 2; font-size: .95rem; }
.legal-toc {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}
.legal-toc h3 { font-size: .95rem; margin-bottom: .75rem; }
.legal-toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .35rem; }
.legal-toc a { color: var(--green); font-size: .9rem; text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .speisekarte-inner,
  .ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ueber-img-wrap img { height: 320px; }
  .tradition-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .galerie-item:nth-child(1) { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }

  .hero-stats { gap: 1.5rem; }
  .trust-item { padding: .6rem 1rem; font-size: .82rem; }
  .trust-item + .trust-item::before { display: none; }
  .trust-inner { gap: .5rem; justify-content: flex-start; padding: 0 1rem; overflow-x: auto; flex-wrap: nowrap; }

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

  .speisekarte-inner { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-item:nth-child(1) { grid-column: span 2; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  #cookie-banner { flex-direction: column; align-items: flex-start; }

  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-img-wrap img { height: 280px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-welcome-row { gap: 1rem; }
  .hero-logo { width: 64px; height: 64px; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-item:nth-child(1) { grid-column: span 2; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Print ── */
@media print {
  #header, #cookie-banner, .burger { display: none !important; }
  body { padding-top: 0; }
  section { padding: 1rem 0; }
}
