/* subpage.css — generische Blöcke für Franchise/Jobs/Standorte/Kontakt
   (alles andere aus base.css/sections.css) */

/* Scrub-Hero (generisch, via .scrub-hero + data-prefix) */
.scrub-hero { margin-top: calc(-1 * var(--nav-h)); }
@media (prefers-reduced-motion: no-preference) {
  html.js .scrub-hero { height: 400vh; }
}
.scrub-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Foto-Hero (statisch, z. B. Kontakt) */
.photo-hero {
  position: relative;
  margin-top: calc(-1 * var(--nav-h));
  height: 88vh;
  height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.photo-hero .scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.photo-hero .hero-copy {
  position: relative;
  pointer-events: auto;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

/* Kontakt-/CTA-Buttons zentriert */
.kontakt-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}
.kontakt-note {
  margin-top: 1.6rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Feature-Container (Klon des #fleisch-Blocks, generisch) */
.feature-stack {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6vh 24px 10vh;
  display: flex;
  flex-direction: column;
  gap: 12vh;
}
.feature-stack .section-head { padding-left: 0; padding-right: 0; }

/* Specs-Sektion generisch */
.specs-section { padding: 10vh 0 14vh; }
.specs-section .display-m { margin-bottom: 3.5rem; }
.specs-section .display-s { margin-bottom: 2.5rem; }

/* Rechtstext (Impressum/Datenschutz) — Lesbarkeit vor Effekt:
   linksbündig, ruhiger Zeilenabstand, klar abgesetzte Abschnitte */
.legal-hero {
  margin-top: calc(-1 * var(--nav-h));
  padding: calc(var(--nav-h) + 16vh) 0 8vh;
  text-align: center;
}
.legal-block { margin-bottom: 5.5rem; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block .display-s { margin-bottom: 2rem; }
.legal-adresse {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text);
}
.legal-adresse a { color: var(--orange); font-weight: 700; }
.legal-item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2rem 0;
}
.legal-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.legal-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.legal-item p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--muted);
}
.legal-item p + p { margin-top: 0.9rem; }
.legal-stand {
  margin-top: 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--faint);
}

/* Standort-Grid mit Details */
.locations-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  /* siehe .locations in sections.css — Tablet-Umbruch */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.location-detail-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}
.location-detail-card:hover { transform: translateY(-6px); background: #1d1d1f; }
.location-detail-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.location-detail-card .loc-body { padding: 1.8rem 1.8rem 2rem; }
.location-detail-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.location-detail-card p { color: var(--muted); font-weight: 500; margin-bottom: 1.4rem; }
.location-detail-card .loc-links { display: flex; gap: 18px; flex-wrap: wrap; }
.location-detail-card .loc-links a { color: var(--orange); font-weight: 700; font-size: 0.95rem; }

/* Speisekarte — bewusst ohne Preise (weichen je Filiale ab) */
.menu-section { padding: 7vh 0 3vh; }
.menu-head, .menu-list, .menu-note {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.menu-head { margin-bottom: 1.4rem; }
.menu-head .display-s { margin-top: 0.2rem; }
.menu-list { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.menu-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.menu-item h3 { font-size: 1.12rem; font-weight: 700; }
.menu-item p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.15rem;
}
.menu-note { margin-top: 1rem; font-size: 0.85rem; color: var(--faint); }
.menu-bild {
  max-width: 880px;
  margin: 0 auto 1.6rem;
  padding: 0 24px;
}
.menu-bild img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

@media (max-width: 734.98px) {
  .locations-detail { grid-template-columns: 1fr; }
}
@media (max-width: 734.98px) and (prefers-reduced-motion: no-preference) {
  html.js .scrub-hero { height: 320vh; }
}
