:root {
  --bg: #fbf7f1; /* warmes Creme */
  --surface: #ffffff; /* Karten */
  --text: #1f2328; /* fast schwarz */
  --muted: #5b6168; /* Sekundärtext */
  --border: rgba(31, 35, 40, 0.1);

  --primary: #b23a2f; /* Terracotta / Rot */
  --primary-hover: #982f26;
  --accent: #2f5d3a; /* Olive/Grün */
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);

  --radius: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.brand__text small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
}
.nav a {
  padding: 8px 6px;
  border-radius: 10px;
}
.nav a:hover {
  background: rgba(178, 58, 47, 0.08);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.btn--primary {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}
.btn--primary:hover {
  background: var(--primary-hover);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(178, 58, 47, 0.25);
  color: var(--primary);
}
.btn--ghost:hover {
  background: rgba(178, 58, 47, 0.06);
}
.btn--wide {
  width: 100%;
}

.hero {
  padding: 56px 0 28px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(178, 58, 47, 0.18);
  background: rgba(178, 58, 47, 0.06);
  color: var(--primary);
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 650;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: -0.6px;
}
.lead {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0 0 18px;
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.meta-card {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.meta-title {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}
.meta-value {
  display: block;
  font-weight: 750;
}

.hero__visual {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      420px 240px at 25% 25%,
      rgba(178, 58, 47, 0.2),
      transparent 60%
    ),
    radial-gradient(
      380px 220px at 80% 40%,
      rgba(47, 93, 58, 0.18),
      transparent 60%
    );
  opacity: 0.75;
}
.hero__visual > * {
  position: relative;
  z-index: 1;
}

.glass-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(330px, 85%);
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.glass-card__badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 93, 58, 0.1);
  color: var(--accent);
  border: 1px solid rgba(47, 93, 58, 0.18);
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-weight: 650;
}
.glass-card__title {
  font-size: 1.18rem;
  font-weight: 900;
}
.glass-card__text {
  color: var(--muted);
}

.section {
  padding: 46px 0;
}
.section--alt {
  background: rgba(178, 58, 47, 0.035);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head {
  margin-bottom: 16px;
}
.section__head h2 {
  margin: 0 0 6px;
  font-size: 1.8rem;
  letter-spacing: -0.2px;
}
.section__head p {
  margin: 0;
  color: var(--muted);
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.menu-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.menu-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.92rem;
}

.pdf {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}

.list {
  margin: 10px 0 0 18px;
  color: var(--text);
}
.callbox {
  margin-top: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(178, 58, 47, 0.05);
  border: 1px solid rgba(178, 58, 47, 0.16);
}
.callbox__number {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.footer {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__links {
  display: flex;
  gap: 14px;
  color: var(--muted);
}
.footer__links a:hover {
  color: var(--text);
}

@media (max-width: 940px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__meta {
    grid-template-columns: 1fr;
  }
  .menu-card {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .header__cta {
    display: none;
  }
}

/* =========================
   GALLERY (Mama Mia Style)
   ========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 18px;
}

/* Jede Kachel = Card-Look */
.gallery-item {
  grid-column: span 3; /* 4 Kacheln pro Reihe (Desktop) */
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

/* Bild: immer gleichmäßige Optik */
.gallery-item img {
  width: 100%;
  height: 240px; /* gleiche Höhe für Ordnung */
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

/* Caption als eleganter Footer */
.gallery-caption {
  padding: 12px 14px 14px;
  color: var(--text);
  font-weight: 750;
  letter-spacing: -0.2px;
}

/* kleine Subline optional, falls du später was ergänzen willst */
.gallery-caption small {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  color: var(--muted);
}

/* Optional: dezentes "Label" oben links (wenn du später willst) */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.06) 100%
  );
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-item {
    grid-column: span 6;
  } /* 2 pro Reihe */
  .gallery-item img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .gallery-item {
    grid-column: span 12;
  } /* 1 pro Reihe */
  .gallery-item img {
    height: 240px;
  }
}
