:root {
  --pine: #1f3a2e;
  --pine-deep: #16281f;
  --cream: #f7f2e8;
  --cream-soft: #fbf8f1;
  --amber: #b9863b;
  --amber-bright: #cf9a48;
  --ink: #2a2620;
  --muted: #6d6659;
  --line: #e3dccb;
  --shadow: 0 18px 45px -20px rgba(31, 58, 46, .35);
  --radius: 16px;
  --wrap: 1160px;
  --fraktur: "UnifrakturMaguntia", "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: .2px;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--amber);
  margin: 0 0 14px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.section-sub { color: var(--muted); margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--amber); color: #fff; box-shadow: 0 12px 24px -12px rgba(185, 134, 59, .8); }
.btn-primary:hover { background: var(--amber-bright); transform: translateY(-2px); }
.btn-ghost { border-color: currentColor; color: var(--pine); }
.btn-ghost:hover { background: var(--pine); color: #fff; border-color: var(--pine); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 242, 232, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px -12px rgba(31,58,46,.4); }
.nav { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--pine); margin-right: auto; }
.brand-mark { color: var(--amber); display: inline-flex; }
.brand-text { font-family: var(--fraktur); font-size: 1.75rem; font-weight: 400; letter-spacing: .5px; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--ink); position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--amber); transition: width .25s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--pine); color: #fff !important; padding: 9px 18px; border-radius: 999px; }
.nav-cta:hover { background: var(--pine-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--pine); transition: .3s; }

.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; flex: none; }
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  font-family: inherit; font-size: .78rem; font-weight: 600; letter-spacing: .5px;
  color: var(--muted); padding: 6px 12px; transition: background .2s ease, color .2s ease;
}
.lang-switch button:hover { color: var(--pine); }
.lang-switch button.active { background: var(--pine); color: #fff; }
.legal-header .lang-switch { border-color: rgba(255,255,255,.25); }
.legal-header .lang-switch button { color: rgba(253,250,243,.7); }
.legal-header .lang-switch button:hover { color: #fff; }
.legal-header .lang-switch button.active { background: var(--amber); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--pine-deep);
  color: #fdfaf3;
  padding: clamp(90px, 15vw, 168px) 0 clamp(100px, 13vw, 150px);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(160deg, rgba(22,40,31,.78) 0%, rgba(22,40,31,.62) 45%, rgba(22,40,31,.88) 100%),
    radial-gradient(circle at 78% 15%, rgba(207,154,72,.28), transparent 48%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 780px; }
.hero .eyebrow { color: var(--amber-bright); }
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(253,250,243,.82); margin: 22px auto 34px; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; }
.hero .btn-ghost:hover { background: #fff; color: var(--pine); }
.hero-hours { display: inline-flex; align-items: center; gap: 9px; margin-top: 34px; font-size: .9rem; letter-spacing: .5px; color: rgba(253,250,243,.85); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-bright); box-shadow: 0 0 0 4px rgba(207,154,72,.25); }

/* ---------- Highlights ---------- */
.highlights { background: var(--cream-soft); border-bottom: 1px solid var(--line); }
.highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding: clamp(48px, 7vw, 72px) 0;
}
.highlight h3 { font-size: 1.5rem; color: var(--pine); margin-bottom: 8px; }
.highlight p { color: var(--muted); font-size: .95rem; margin: 0; }
.highlight { position: relative; padding-top: 20px; }
.highlight::before { content: ""; position: absolute; top: 0; left: 0; width: 42px; height: 3px; background: var(--amber); border-radius: 2px; }

/* ---------- Speisekarte ---------- */
.speisekarte { background: var(--cream); }
.menu { display: flex; flex-direction: column; }
.menu-section { border-top: 1px solid var(--line); }
.menu-section:last-child { border-bottom: 1px solid var(--line); }
.menu-cat {
  font-size: 1.5rem; color: var(--pine); margin: 0;
  padding: 22px 4px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; list-style: none; user-select: none;
  transition: color .2s ease;
}
.menu-cat::-webkit-details-marker { display: none; }
.menu-cat:hover { color: var(--amber); }
.menu-cat::after {
  content: ""; flex: none; margin-left: auto;
  width: 10px; height: 10px;
  border-right: 2px solid var(--amber); border-bottom: 2px solid var(--amber);
  transform: rotate(45deg); transition: transform .25s ease;
}
.menu-section[open] > .menu-cat::after { transform: rotate(-135deg); }
.menu-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 52px;
  padding: 8px 4px 22px;
}
.cat-sub { font-family: "Inter", sans-serif; font-size: .82rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--amber); }
.menu-hint { margin: 0; padding: 0 4px 24px; font-size: .82rem; font-style: italic; color: var(--muted); }
.dish { margin-bottom: 20px; }
.dish-head { display: flex; align-items: baseline; gap: 10px; }
.dish-name { font-weight: 600; color: var(--ink); }
.dish-head::after {
  content: ""; flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px);
  order: 1;
}
.dish-price { order: 2; color: var(--amber); font-weight: 600; white-space: nowrap; }
.dish-desc { margin: 5px 0 0; font-size: .88rem; color: var(--muted); line-height: 1.55; }
.menu-note {
  margin-top: 48px; text-align: center; font-size: .9rem; color: var(--muted);
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 24px; max-width: 760px; margin-inline: auto;
}

/* ---------- Feiern ---------- */
.feiern { background: var(--pine); color: #fdfaf3; }
.feiern-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.feiern .eyebrow { color: var(--amber-bright); }
.feiern-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.feiern-text > p { color: rgba(253,250,243,.82); }
.feature-list { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 30px; color: rgba(253,250,243,.9); font-size: .96rem; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 9px;
  border-left: 2px solid var(--amber-bright); border-bottom: 2px solid var(--amber-bright);
  transform: rotate(-45deg);
}
.feiern-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 34px; backdrop-filter: blur(4px);
}
.feiern-card h3 { color: var(--amber-bright); font-size: 1.3rem; margin-bottom: 10px; }
.feiern-hours { font-size: 1.05rem; color: rgba(253,250,243,.85); margin: 0 0 4px; }
.feiern-hours strong { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; color: #fff; }
.feiern-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.14); margin: 26px 0; }
.mini-facts { margin: 0; display: grid; gap: 14px; }
.mini-facts div { display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; }
.mini-facts dt { color: rgba(253,250,243,.6); }
.mini-facts dd { margin: 0; text-align: right; color: #fff; font-weight: 500; }

/* ---------- Kontakt ---------- */
.kontakt { background: var(--cream); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: stretch; }
.kontakt-info h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 22px; }
.kontakt-info address { font-style: normal; display: grid; gap: 14px; }
.k-line { margin: 0; color: var(--ink); }
.k-line strong { color: var(--pine); }
.k-label { display: inline-block; min-width: 92px; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.k-line a { color: var(--amber); font-weight: 600; }
.kontakt-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.kontakt-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 360px; border: 1px solid var(--line); }
.kontakt-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-deep); color: rgba(253,250,243,.75); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; padding: 60px 0 40px; }
.footer-brand .brand-mark { color: var(--amber-bright); }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .brand-text { font-family: var(--fraktur); font-weight: 400; font-size: 1.65rem; color: #fff; }
.footer-brand p { margin: 6px 0 0; font-size: .9rem; max-width: 300px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--amber-bright); }
.footer-contact p { margin: 0 0 8px; font-size: .92rem; }
.footer-contact a { color: #fff; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 20px 0; font-size: .82rem;
}
.footer-bar .container { }
.footer-bar { padding-inline: max(20px, calc((100% - var(--wrap)) / 2)); }
.footer-legal a:hover { color: var(--amber-bright); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .feiern-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream-soft); border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px; box-shadow: var(--shadow);
    clip-path: inset(0 0 100% 0); transition: clip-path .3s ease; pointer-events: none;
  }
  .nav-links.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-cta { text-align: center; margin-top: 12px; }
  .menu-items { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Legal pages ---------- */
.legal-header { position: sticky; top: 0; z-index: 50; background: var(--pine-deep); }
.legal-header .nav { height: 68px; }
.legal-header .brand { color: #fdfaf3; }
.legal-header .brand-mark { color: var(--amber-bright); }
.legal-back { color: rgba(253,250,243,.85); font-size: .92rem; font-weight: 500; }
.legal-back:hover { color: var(--amber-bright); }
.legal-main { background: var(--cream); padding: clamp(48px, 8vw, 96px) 0; }
.legal { max-width: 800px; }
.legal .eyebrow { margin-bottom: 12px; }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); color: var(--pine); margin-bottom: 10px; }
.legal .lead { color: var(--muted); margin: 0 0 8px; }
.legal h2 { font-size: 1.45rem; color: var(--pine); margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.legal p { margin: 0 0 16px; color: var(--ink); }
.legal address { font-style: normal; margin: 0 0 16px; line-height: 1.7; color: var(--ink); }
.legal a { color: var(--amber); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal .legal-source { margin-top: 40px; font-size: .85rem; color: var(--muted); }

/* ---------- Unofficial concept banner ---------- */
.concept-banner {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--amber); color: #16281f;
  text-align: center; font-weight: 700; font-size: .82rem;
  letter-spacing: .5px; padding: 11px 16px; line-height: 1.3;
  border-bottom: 2px solid #16281f;
}
.concept-banner::before {
  content: "⚠"; font-size: 1rem; line-height: 1;
}
/* offset the sticky page headers so they sit below the banner */
.site-header, .legal-header { top: 43px; }
@media (max-width: 560px) {
  .concept-banner { font-size: .7rem; padding: 9px 12px; letter-spacing: .3px; }
  .site-header, .legal-header { top: 39px; }
}

/* ---------- Google Reviews ---------- */
.reviews { background: var(--cream-soft); }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.reviews-score { font-family: "Cormorant Garamond", serif; font-size: 3.2rem; font-weight: 600; color: var(--pine); line-height: 1; }
.reviews-summary-meta { text-align: left; }
.reviews-summary-meta .count { font-size: .9rem; color: var(--muted); }
.reviews-summary .g-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }

.stars { position: relative; display: inline-block; font-size: 1.05rem; line-height: 1; letter-spacing: 3px; font-family: Arial, sans-serif; }
.stars::before { content: "★★★★★"; color: #d9d2c1; }
.stars-fill { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; }
.stars-fill::before { content: "★★★★★"; color: var(--amber); }
.stars-lg { font-size: 1.4rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px;
}
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none;
  background: var(--pine); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1.05rem;
}
.review-who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-author { font-weight: 600; color: var(--ink); font-size: .95rem; }
.review-time { font-size: .76rem; color: var(--muted); }
.review-head .g-mark { margin-left: auto; flex: none; }
.review-stars { margin-top: -2px; }
.review-text { font-size: .9rem; color: var(--muted); line-height: 1.6; margin: 0; }
.review-text.clamp { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }

.reviews-loading, .reviews-fallback { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 20px 0; }
.reviews-fallback .btn { margin-top: 16px; }
.reviews-cta { text-align: center; margin-top: 40px; }
.reviews-attrib { text-align: center; margin: 20px 0 0; font-size: .76rem; color: var(--muted); }

@media (max-width: 960px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .reviews-grid { grid-template-columns: 1fr; } }
