:root {
    --bg: #F7F0E1;
    --surface: #F1EAE0;
    --pine: #3B2A1C;
    --pine-soft: #5A4530;
    --copper: #B08A2E;
    --copper-dark: #8E6E20;
    --ink: #2B2015;
    --ink-soft: rgba(43,32,21,0.68);
    --line: rgba(43,32,21,0.14);
    --radius: 6px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 {
    font-family: 'Fraunces', serif;
    color: var(--pine);
    margin: 0;
    font-weight: 600;
  }

  a { color: inherit; }

  .wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- Nav ---------- */
  nav.topnav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 249, 245, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
  }
  .topnav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    max-width: 900px;
  }
  .brand {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--pine);
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .navlinks {
    display: flex;
    gap: 22px;
    font-size: 0.88rem;
  }
  .navlinks a {
    position: relative;
    text-decoration: none;
    color: var(--ink-soft);
    padding-bottom: 3px;
  }
  .navlinks a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 2px;
    background: var(--copper);
    transition: right 0.25s ease;
  }
  .navlinks a:hover::after { right: 0; }
  .navlinks a:hover { color: var(--pine); }
  .nav-call {
    background: #91531A;
    color: #FBF9F5;
    padding: 8px 16px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .nav-call:hover { background: #744214; transform: translateY(-1px); }

  /* Hamburger (mobil) */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pine);
    transition: transform 0.25s 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); }

  .mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transition: max-height 0.3s ease;
  }
  .mobile-menu.open { max-height: 600px; }
  .mobile-menu a {
    display: block;
    padding: 15px 24px;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.95rem;
    border-top: 1px solid var(--line);
  }

  .navlinks { display: none; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    z-index: 0;
  }
  .hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(30,21,13,0.32) 0%, rgba(26,18,11,0.5) 45%, rgba(20,14,8,0.94) 100%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 48px 0 46px;
    color: #F7F0E1;
    width: 100%;
  }
  .hero-inner .wrap { max-width: 700px; }
  .hero-textbox {
    background: rgba(18,12,7,0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 26px 24px;
    border-radius: 8px;
    display: inline-block;
    max-width: 100%;
  }
  .hero h1 {
    color: #F7F0E1;
    font-size: clamp(2rem, 6vw, 2.9rem);
    line-height: 1.14;
    max-width: 13ch;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  }
  .hero .tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    color: #DC883C;
    margin-top: 12px;
  }
  .hero p.lead {
    margin-top: 18px;
    max-width: 44ch;
    color: rgba(247,240,225,0.92);
  }
  .cta-row {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: #91531A; color: #FBF9F5; }
  .btn-primary:hover { background: #744214; }
  .btn-ghost { border-color: rgba(251,249,245,0.5); color: #FBF9F5; }
  .btn-ghost:hover { border-color: rgba(251,249,245,0.9); }

  /* ---------- Sections ---------- */
  section { padding: 60px 0; }
  section + section { border-top: 1px solid var(--line); }

  h2 { font-size: 1.6rem; max-width: 20ch; }
  .section-lead { max-width: 54ch; margin-top: 12px; color: var(--ink-soft); }

  .occasions {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .occasion {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .occasion:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43,32,21,0.1);
  }
  .occasion h3 { font-size: 1.02rem; }
  .occasion p { margin: 8px 0 0; font-size: 0.92rem; color: var(--ink-soft); }

  .steps { margin-top: 28px; }
  .step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
  }
  .step:last-child { border-bottom: 1px solid var(--line); }
  .step-num {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    color: var(--copper);
    min-width: 2ch;
  }
  .step h3 { font-size: 1.02rem; }
  .step p { margin: 6px 0 0; color: var(--ink-soft); font-size: 0.95rem; }

  .rooms { margin-top: 28px; display: grid; gap: 2px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
  .room {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 20px;
    background: var(--surface);
  }
  .room .name { font-family: 'Fraunces', serif; font-size: 1.08rem; color: var(--pine); }
  .room .cap { font-size: 0.88rem; color: var(--ink-soft); text-align: right; }

  .hours dl { margin: 26px 0 0; display: grid; grid-template-columns: 1fr auto; row-gap: 10px; max-width: 420px; }
  .hours dt { color: var(--ink-soft); }
  .hours dd { margin: 0; text-align: right; font-weight: 500; }
  .hours .note { margin-top: 16px; font-size: 0.9rem; color: var(--ink-soft); max-width: 46ch; }

  .gallery { margin-top: 28px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 10px; }
  .gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
  .gallery .ph {
    background: var(--surface);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--ink-soft); text-align: center; padding: 8px;
  }

  .contact { background: #91531A; color: #FBF9F5; }
  .contact h2 { color: #FBF9F5; }
  .contact-grid { margin-top: 26px; display: grid; gap: 22px; }
  .contact-item .label { font-size: 0.82rem; color: rgba(251,249,245,0.55); }
  .contact-item .value { font-family: 'Fraunces', serif; font-size: 1.25rem; margin-top: 4px; }
  .contact-item .value a { text-decoration: none; border-bottom: 1px solid rgba(251,249,245,0.35); }

  footer { padding: 40px 0 60px; font-size: 0.85rem; color: var(--ink-soft); }
  footer p, footer div { line-height: 1.55; }
  footer strong { color: var(--ink); }

  @media (max-width: 560px) {
    .occasions { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .hero { min-height: 68vh; }
  }

/* Scroll-Einblendung */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Kompakter Footer mit Impressum-Link */
footer.site-footer {
  padding: 36px 0 48px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}
footer.site-footer a {
  color: var(--pine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Impressum-Seite */
.impressum-page main {
  padding: 48px 0 60px;
}
.impressum-page .back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--copper-dark);
  text-decoration: none;
  font-size: 0.9rem;
}
.impressum-page .back-link:hover { text-decoration: underline; }

/* Küchen-Galerie */
.food-gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.food-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.food-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.food-gallery figure:hover img {
  transform: scale(1.05);
}
@media (max-width: 700px) {
  .food-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Impressionen-Galerie (Partyservice-Fotos) */
.food-gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.food-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.food-gallery figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(43,32,21,0.16);
}
.food-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .food-gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .food-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Seitenwechsel-Link (führt auf eine andere Seite, kein Anker) */
.navlinks a.nav-page-link {
  margin-left: 10px;
  padding: 6px 14px;
  border: 1px solid var(--copper);
  border-radius: var(--radius);
  color: var(--copper-dark) !important;
}
.navlinks a.nav-page-link::after { display: none; }
.navlinks a.nav-page-link:hover {
  background: var(--copper);
  color: #FBF9F5 !important;
}
.mobile-menu a.nav-page-link {
  color: var(--copper-dark);
  font-weight: 500;
}

/* Google-Bewertungs-Badge im Hero */
.review-badge {
  margin-top: 20px;
}
.review-badge a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(247,240,225,0.92);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(247,240,225,0.3);
  padding-bottom: 2px;
}
.review-badge a:hover { border-bottom-color: rgba(247,240,225,0.7); }
.review-badge .stars {
  color: #DC883C;
  letter-spacing: 1px;
  font-size: 1rem;
}
.review-badge strong { color: #F7F0E1; }
