:root {
  --krone-red: #D21C25;
  --krone-red-dark: #B01820;
  --krone-red-light: #E04040;
  --cream: #FAF3E8;
  --cream-deep: #F0E2CF;
  --brown-dark: #3D2218;
  --brown-mid: #6B4C3B;
  --brown-light: #8C6D5A;
  --gold: #B8860B;
  --gold-light: #D4A825;
  --beige: #E8D5BC;
  --surface: var(--cream);
  --surface-alt: var(--cream-deep);
  --text-primary: var(--brown-dark);
  --text-secondary: var(--brown-mid);
  --text-muted: var(--brown-light);
  --accent: var(--krone-red);
  --accent-hover: var(--krone-red-dark);
  --border: var(--beige);
  --card-bg: #fff;
  --card-shadow: rgba(61, 34, 24, 0.08);
  --footer-bg: var(--brown-dark);
  --footer-text: var(--cream-deep);
  --footer-muted: #9A8474;
  --hero-overlay: rgba(61, 34, 24, 0.03);
  --divider-ornament: var(--beige);
  --nav-bg: rgba(250, 243, 232, 0.95);
  --nav-border: var(--beige);
  --chili: #D21C25;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--surface);
  color: var(--text-primary);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}

/* --- Header / Nav bar --- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.topbar--with-back { justify-content: space-between; }
.topbar-logo { height: 36px; width: auto; }
.topbar-back {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.topbar-back:hover { color: var(--accent); }
.topbar-back svg { width: 16px; height: 16px; }
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.topbar-nav a:hover { color: var(--accent); }

/* --- Hero --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}
.hero-logo {
  width: min(380px, 80vw);
  height: auto;
  margin-bottom: 2.5rem;
}
.hero-notice {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  border: none;
  margin: 2rem auto 0;
  opacity: 0.6;
}

/* --- Image banner --- */
.img-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.img-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .img-banner img { height: 200px; }
}

/* --- Gallery strip --- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  line-height: 0;
}
.gallery-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { height: 220px; }
}

/* --- Ornament dividers --- */
.ornament-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  color: var(--divider-ornament);
}
.ornament-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border);
}
.ornament-diamond {
  width: 8px; height: 8px;
  border: 1px solid var(--border);
  transform: rotate(45deg);
}

/* --- Sections --- */
.section {
  padding: 3.5rem 1.5rem;
  max-width: 840px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  text-wrap: balance;
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* --- Buffet cards --- */
.buffet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.buffet-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px var(--card-shadow);
  transition: box-shadow 0.2s ease;
}
.buffet-card:hover { box-shadow: 0 4px 16px var(--card-shadow); }
.buffet-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.buffet-card-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.buffet-card-times {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.buffet-card-prices {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.buffet-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
}
.buffet-price-row .label { color: var(--text-secondary); }
.buffet-price-row .price {
  font-weight: 600;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.buffet-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-top: 1rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 0.6rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--card-bg);
}

/* --- Info grid (hours + contact) --- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .info-grid { grid-template-columns: 1fr; }
}
.info-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px var(--card-shadow);
}
.info-block-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.3rem 0;
  font-size: 0.88rem;
}
.info-row .day { color: var(--text-secondary); }
.info-row .time { color: var(--text-primary); font-variant-numeric: tabular-nums; }
.info-closed {
  color: var(--accent);
  font-size: 0.82rem;
  font-style: italic;
}
.info-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 2px;
}
.contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.contact-item a:hover { border-bottom-color: var(--accent); }

/* --- Order CTA --- */
.order-banner {
  background: var(--surface-alt);
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.order-banner-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.order-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--accent);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.order-phone:hover { background: var(--accent); color: var(--card-bg); }
.order-phone svg { width: 22px; height: 22px; }

/* --- Footer --- */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 840px;
  margin: 0 auto;
}
.footer-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--footer-text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--footer-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-muted);
  margin-bottom: 0.25rem;
}
.footer-value {
  font-size: 0.88rem;
  color: var(--footer-text);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.footer-value a {
  color: var(--footer-text);
  text-decoration: none;
  border-bottom: 1px solid var(--footer-muted);
  transition: border-color 0.15s;
}
.footer-value a:hover { border-bottom-color: var(--footer-text); }
.footer-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--footer-muted);
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--footer-muted);
  margin-right: 1.5rem;
}
.footer-links a:hover { color: var(--footer-text); }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--footer-muted);
  font-size: 0.75rem;
  color: var(--footer-muted);
  text-align: center;
}

/* --- Category nav (speisekarte) --- */
.cat-nav {
  position: sticky;
  top: 53px;
  z-index: 15;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex;
  gap: 0;
  padding: 0 0.5rem;
  min-width: max-content;
}
.cat-nav-inner a {
  padding: 0.6rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.cat-nav-inner a:hover,
.cat-nav-inner a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* --- Page header --- */
.page-header {
  text-align: center;
  padding: 2.5rem 1.25rem 1.5rem;
  background: var(--surface-alt);
}
.page-header h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.page-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* --- Menu sections --- */
.menu-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1rem;
}
.menu-section {
  padding-top: 2rem;
  padding-bottom: 1rem;
  scroll-margin-top: 110px;
}
.menu-section-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}
.menu-section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
}
.menu-section-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}
.menu-section-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  line-height: 1.55;
}

/* --- Menu items --- */
.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.25rem 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  align-items: first baseline;
}
.menu-item:last-child { border-bottom: none; }
.item-nr {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 2.2rem;
  font-variant-numeric: tabular-nums;
}
.item-body { min-width: 0; }
.item-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.4;
}
.item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.45;
  margin-top: 0.15rem;
}
.item-allergens {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.item-price {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.chili {
  color: var(--chili);
  font-size: 0.85em;
}

/* Multi-price items */
.multi-price-header {
  display: grid;
  grid-template-columns: auto 1fr repeat(3, 3.5rem);
  gap: 0.25rem 0.5rem;
  padding: 0.5rem 0 0.25rem;
  align-items: baseline;
}
.multi-price-header .col-label {
  font-size: 0.7rem;
  text-align: right;
  color: var(--text-muted);
  font-weight: 600;
}
.menu-item-multi {
  display: grid;
  grid-template-columns: auto 1fr repeat(3, 3.5rem);
  gap: 0.25rem 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: first baseline;
}
.menu-item-multi:last-child { border-bottom: none; }
.menu-item-multi .item-price { font-size: 0.85rem; }
.menu-item-dual {
  display: grid;
  grid-template-columns: auto 1fr repeat(2, 3.5rem);
  gap: 0.25rem 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: first baseline;
}

/* --- Menu image break --- */
.menu-image-break {
  margin: 2rem -1rem;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
}
.menu-image-break img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* --- Allergen legend --- */
.allergen-section {
  background: var(--surface-alt);
  padding: 2rem 1.25rem;
  margin-top: 2rem;
}
.allergen-inner {
  max-width: 780px;
  margin: 0 auto;
}
.allergen-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.25rem 1.5rem;
}
.allergen-item {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.allergen-item strong {
  color: var(--text-primary);
  font-weight: 600;
  margin-right: 0.2rem;
}
.allergen-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* --- Privacy page --- */
.privacy-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.privacy-wrap h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.privacy-wrap h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
}
.privacy-wrap p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.privacy-wrap address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--border);
}
.privacy-wrap ul {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0.5rem 0 1rem;
  padding-left: 1.5rem;
}
.privacy-wrap li {
  margin-bottom: 0.35rem;
}
.privacy-wrap a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-wrap a:hover {
  color: var(--accent-hover);
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .menu-item {
    grid-template-columns: auto 1fr auto;
    gap: 0.15rem 0.5rem;
  }
  .item-nr { min-width: 1.8rem; font-size: 0.72rem; }
  .item-name { font-size: 0.88rem; }
  .item-price { font-size: 0.88rem; }
  .menu-item-multi,
  .multi-price-header {
    grid-template-columns: auto 1fr repeat(3, 2.8rem);
    gap: 0.15rem 0.3rem;
  }
  .menu-item-multi .item-price { font-size: 0.78rem; }
  .multi-price-header .col-label { font-size: 0.65rem; }
  .menu-item-dual {
    grid-template-columns: auto 1fr repeat(2, 2.8rem);
    gap: 0.15rem 0.3rem;
  }
  .topbar-nav { gap: 0.75rem; }
  .topbar-nav a { font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }
