/* === Startseite — additions on top of the base website kit === */

/* ---------- Header: mobile toggle + responsive collapse ---------- */
.site-header .nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--cream-50);
  border-radius: 2px;
  margin-left: auto;
}

/* Hidden drawer for narrow viewports — visible only when .open */
.site-header .site-nav-drawer {
  display: none;
}

@media (max-width: 1280px) {
  .site-header .site-nav { gap: 14px; }
  .site-header .site-nav a { font-size: 10.5px; letter-spacing: 0.12em; }
  .site-header .header-info { font-size: 10px; letter-spacing: 0.12em; gap: 8px; }
  .site-header .cta { padding: 8px 14px; font-size: 10.5px; letter-spacing: 0.14em; }
}

@media (max-width: 1100px) {
  /* Hide the wordy hours/address on tighter widths; keep nav + lang + CTA */
  .site-header .header-info { display: none; }
}

@media (max-width: 860px) {
  .site-header { --bar-h: 60px; --badge-w: clamp(120px, 18vw, 156px); }
  .site-header .site-nav--left,
  .site-header .header-actions { display: none; }
  .site-header .header-bar { padding: 0 16px; justify-content: space-between; }
  .site-header .nav-toggle { display: inline-flex; }
  .site-header .badge-logo { width: var(--badge-w); }

  /* Mobile full-width drawer below the bar */
  .site-header .site-nav-drawer {
    position: absolute; top: 100%; left: 0; right: 0;
    display: flex; flex-direction: column;
    background: var(--brand-forest-800);
    border-top: 1px solid rgba(0,0,0,0.18);
    padding: 6px 22px 18px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: all 0.22s var(--ease-out);
  }
  .site-header.open .site-nav-drawer { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-header .site-nav-drawer a {
    display: block; padding: 14px 0;
    font-family: var(--font-sans);
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--cream-50);
    border-bottom: 1px solid rgba(240,232,216,0.12);
  }
  .site-header .site-nav-drawer a.active { color: var(--brand-gold-300); }
  .site-header .site-nav-drawer__meta {
    display: flex; flex-direction: column; gap: 6px;
    padding-top: 16px;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(240,232,216,0.72);
  }
  .site-header .lang-switch--drawer {
    margin-bottom: 10px;
    font-size: 15px; letter-spacing: 0.04em;
    gap: 10px;
  }
  .site-header .lang-switch--drawer .lang-switch__btn { padding: 6px 4px; }
}

/* ---------- Language switcher (on green bar) ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(240, 232, 216, 0.7);
  user-select: none;
}

.lang-switch__btn {
  background: transparent; border: 0; padding: 4px 2px;
  font: inherit; letter-spacing: inherit; color: inherit;
  cursor: pointer;
  transition: color 0.18s var(--ease-out);
}
.lang-switch__btn:hover { color: var(--brand-gold-300); }

.lang-switch__btn.active {
  color: var(--cream-50);
  position: relative;
}
.lang-switch__btn.active::after {
  content: ''; position: absolute; left: 1px; right: 1px; bottom: -3px;
  height: 1.5px; background: var(--brand-gold-400);
}

.lang-switch__sep {
  color: inherit; opacity: 0.55;
  font-weight: 400; letter-spacing: 0; padding: 0 2px;
}

/* ---------- Hero: scroll indicator and three-CTA layout ---------- */
.hero-scroll {
  position: absolute; right: clamp(20px, 4vw, 56px); bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(240,232,216,0.55);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--brand-gold-400), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}
@media (max-width: 760px) {
  .hero-scroll { display: none; }
  .hero-meta { font-size: 11px; gap: 14px; padding: 0 20px; }
}

/* ---------- Aktuelles (announcements) ---------- */
.aktuelles { padding-bottom: clamp(40px, 6vw, 80px); }
.aktuelles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
@media (max-width: 980px) { .aktuelles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .aktuelles-grid { grid-template-columns: 1fr; gap: 20px; } }

.aktuelles-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  display: flex; flex-direction: column;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.aktuelles-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-2px);
}
.aktuelles-card--feature {
  box-shadow: inset 0 0 0 1px var(--brand-gold-400), 0 14px 40px rgba(20,47,33,0.08);
  border-color: transparent;
}
.aktuelles-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #2A4A36, #142F21);
}
.aktuelles-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.aktuelles-card:hover .aktuelles-card__img img { transform: scale(1.04); }
.aktuelles-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,34,24,0.4) 100%);
}
.aktuelles-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 14px;
  background: var(--brand-gold-500); color: var(--brand-forest-900);
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
}
.aktuelles-badge--wine {
  background: var(--brand-wine-200);
  color: var(--brand-wine-800);
  box-shadow: inset 0 0 0 1px var(--brand-wine-700);
}
.aktuelles-badge--drink {
  background: var(--brand-gold-500); color: var(--brand-forest-900);
}
.aktuelles-card--drink { cursor: pointer; }
.aktuelles-card__hit {
  position: absolute; inset: 0; z-index: 3;
  background: none; border: 0; padding: 0; margin: 0; cursor: pointer;
}
.aktuelles-card--drink .link-gold { position: relative; z-index: 4; }
.aktuelles-card__body {
  padding: 26px 24px 28px;
  display: flex; flex-direction: column; flex: 1;
}
.aktuelles-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px; gap: 14px;
}
.aktuelles-date {
  font-family: var(--font-serif); font-style: italic; font-size: 13px;
  color: var(--brand-forest-700);
}
.aktuelles-card h3 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 22px; line-height: 1.2;
  color: var(--brand-forest-900);
  margin: 4px 0 12px;
}
.aktuelles-card p {
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 18px;
  flex: 1;
}
.link-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-gold-700);
  border-bottom: 1px solid var(--brand-gold-400);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.2s var(--ease-out);
}
.link-gold:hover { color: var(--brand-gold-600); border-bottom-color: var(--brand-gold-600); border-bottom-width: 2px; padding-bottom: 3px; }
.link-gold svg { transition: transform 0.2s var(--ease-out); }
.link-gold:hover svg { transform: translateX(3px); }

/* ---------- Mittagstisch ---------- */
.mittag-wrap { max-width: 1100px; margin: 0 auto; }
.mittag-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.mittag-head .gold-rule { max-width: 220px; margin: 18px auto 22px; }
.mittag-head p { color: var(--fg-3); font-size: 18px; line-height: 1.6; }
.mittag-head em { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--brand-gold-700); font-size: 22px; }

/* ---------- Angebote explorer (tab rail + stage) ---------- */
.ang-explorer {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 252px 1fr;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20,47,33,0.10);
}
.ang-rail {
  display: flex; flex-direction: column;
  background: var(--brand-forest-900);
  padding: 8px 0;
}
.ang-tab {
  position: relative;
  display: flex; flex-direction: column; gap: 3px;
  text-align: left; cursor: pointer;
  background: none; border: 0;
  padding: 16px 40px 16px 22px;
  border-left: 3px solid transparent;
  color: rgba(240,232,216,0.62);
  transition: background 0.18s var(--ease-out), color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.ang-tab + .ang-tab { border-top: 1px solid rgba(240,232,216,0.08); }
.ang-tab__label { font-family: var(--font-serif); font-weight: 600; font-size: 18px; color: rgba(240,232,216,0.92); }
.ang-tab__hint {
  font-family: var(--font-sans); font-size: 11.5px; letter-spacing: 0.02em;
  color: rgba(240,232,216,0.5);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ang-tab__arrow {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%) translateX(-4px);
  opacity: 0; color: var(--brand-gold-300);
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.ang-tab:hover { background: rgba(240,232,216,0.05); }
.ang-tab:hover .ang-tab__label { color: #fff; }
.ang-tab.is-active {
  background: rgba(212,167,79,0.14);
  border-left-color: var(--brand-gold-600);
}
.ang-tab.is-active .ang-tab__label { color: var(--brand-gold-300); }
.ang-tab.is-active .ang-tab__hint { color: rgba(240,232,216,0.66); }
.ang-tab.is-active .ang-tab__arrow { opacity: 1; transform: translateY(-50%) translateX(0); }

.ang-stage {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  min-height: 480px;
  animation: angFade 0.32s var(--ease-out);
}
@keyframes angFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.ang-stage__media { margin: 0; position: relative; background: var(--cream-200); min-height: 280px; }
.ang-stage__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ang-stage__text {
  padding: clamp(28px, 3.4vw, 48px);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.ang-stage__text .eb { color: var(--brand-gold-700); }
.ang-stage__text h3 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(24px, 2.6vw, 30px); color: var(--brand-forest-900); margin: 10px 0 12px; }
.ang-stage__text > p { color: var(--fg-3); font-size: 15.5px; line-height: 1.7; margin: 0 0 18px; }
.ang-sub { font-family: var(--font-serif); font-style: italic; color: var(--brand-gold-700); font-size: 16px; margin-bottom: 12px; }

.ang-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin: 4px 0 20px; }
.ang-when {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--brand-forest-900);
}
.ang-when svg { color: var(--brand-gold-700); }
.ang-price { display: inline-flex; align-items: baseline; gap: 8px; }
.ang-price .num { font-family: var(--font-serif); font-weight: 600; font-size: 26px; color: var(--brand-forest-900); }
.ang-price .lbl { font-size: 12.5px; color: var(--ink-500); }

.ang-feature {
  background: var(--cream-100, #faf5ea); border: 1px solid var(--cream-300);
  border-radius: 8px; padding: 16px 18px; margin-bottom: 20px;
}
.ang-feature__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ang-feature__name { font-family: var(--font-serif); font-weight: 600; font-size: 18px; color: var(--brand-forest-900); }
.ang-feature__price { font-family: var(--font-serif); font-weight: 600; font-size: 18px; color: var(--brand-gold-700); white-space: nowrap; }
.ang-feature__sub { display: block; font-size: 13px; color: var(--ink-500); margin: 2px 0 8px; }
.ang-feature__desc { font-size: 14px; line-height: 1.6; color: var(--fg-3); margin: 0 0 6px; }

.ang-daytabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ang-daytab {
  cursor: pointer; background: var(--cream-100, #faf5ea); border: 1px solid var(--cream-300);
  border-radius: 7px; padding: 7px 12px; text-align: left;
  display: flex; flex-direction: column; gap: 1px;
  transition: border-color 0.16s var(--ease-out), background 0.16s var(--ease-out);
}
.ang-daytab__day { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--brand-forest-900); }
.ang-daytab__date { font-size: 11px; color: var(--ink-500); }
.ang-daytab:hover { border-color: var(--brand-gold-600); }
.ang-daytab.is-active { background: var(--brand-forest-900); border-color: var(--brand-forest-900); }
.ang-daytab.is-active .ang-daytab__day { color: var(--brand-gold-300); }
.ang-daytab.is-active .ang-daytab__date { color: rgba(240,232,216,0.7); }

.ang-dish { border-top: 1px solid var(--cream-300); padding-top: 14px; margin-bottom: 18px; }
.ang-dish__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ang-dish__name { font-family: var(--font-serif); font-weight: 600; font-size: 18px; color: var(--brand-forest-900); }
.ang-dish__tag { margin-left: 10px; font-family: var(--font-sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--brand-gold-700); background: var(--brand-gold-100, #f3ead4); padding: 3px 8px; border-radius: 999px; vertical-align: middle; }
.ang-dish__price { font-family: var(--font-serif); font-weight: 600; font-size: 18px; color: var(--brand-gold-700); white-space: nowrap; }
.ang-dish__desc { font-size: 14px; line-height: 1.6; color: var(--fg-3); margin: 6px 0 8px; }
.ang-dish__salad { font-size: 12.5px; color: var(--ink-500); }

.ang-themes { list-style: none; margin: 0 0 16px; padding: 0; }
.ang-themes li {
  display: grid; grid-template-columns: 120px 1fr; gap: 4px 16px;
  padding: 12px 0; border-bottom: 1px solid var(--cream-300);
}
.ang-themes li:last-child { border-bottom: 0; }
.ang-themes__day { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.03em; color: var(--brand-gold-700); align-self: start; padding-top: 2px; }
.ang-themes__theme { font-family: var(--font-serif); font-weight: 600; font-size: 16px; color: var(--brand-forest-900); }
.ang-themes__desc { grid-column: 2; font-size: 13.5px; line-height: 1.55; color: var(--fg-3); }
.ang-themes--plain li { grid-template-columns: 1fr; }
.ang-themes--plain .ang-themes__desc { grid-column: 1; }

.ang-variants { margin-bottom: 16px; }
.ang-variants .eb { color: var(--brand-gold-700); display: block; margin-bottom: 8px; }
.ang-variant { display: flex; align-items: baseline; gap: 8px; padding: 7px 0; }
.ang-variant__name { font-size: 14.5px; color: var(--brand-forest-900); font-weight: 500; }
.ang-variant__name em { font-style: normal; color: var(--ink-500); font-size: 12.5px; margin-left: 8px; }
.ang-variant__dots { flex: 1; border-bottom: 1px dotted var(--cream-300); transform: translateY(-3px); }
.ang-variant__price { font-family: var(--font-serif); font-weight: 600; color: var(--brand-gold-700); white-space: nowrap; }

.ang-note { font-size: 12.5px; color: var(--ink-500); line-height: 1.55; margin: 0 0 18px; }
.ang-actions { margin-top: auto; padding-top: 8px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.ang-actions__link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; }

@media (max-width: 860px) {
  .ang-explorer { grid-template-columns: 1fr; }
  .ang-rail { flex-direction: row; overflow-x: auto; padding: 0; -webkit-overflow-scrolling: touch; }
  .ang-tab { flex: 0 0 auto; min-width: 150px; border-left: 0; border-top: 0; border-bottom: 3px solid transparent; padding: 14px 18px; }
  .ang-tab + .ang-tab { border-top: 0; border-left: 1px solid rgba(240,232,216,0.08); }
  .ang-tab.is-active { border-left-color: transparent; border-bottom-color: var(--brand-gold-600); }
  .ang-tab__arrow { display: none; }
  .ang-stage { grid-template-columns: 1fr; min-height: 0; }
  .ang-stage__media { height: 240px; min-height: 0; }
}


.mittag-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  box-shadow: 0 30px 70px rgba(20,47,33,0.08), inset 0 0 0 1px rgba(176,141,92,0.18);
}
.mittag-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--cream-300);
  background: var(--cream-100);
}
@media (max-width: 680px) { .mittag-tabs { grid-template-columns: repeat(2, 1fr); } }
.mittag-tab {
  background: transparent; border: 0; cursor: pointer;
  padding: 22px 18px; text-align: center;
  border-right: 1px solid var(--cream-300);
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.mittag-tab:last-child { border-right: 0; }
.mittag-tab__day {
  display: block;
  font-family: var(--font-serif); font-size: 20px; font-weight: 600;
  color: var(--brand-forest-900);
}
.mittag-tab__date {
  display: block; margin-top: 4px;
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3);
}
.mittag-tab:hover { background: var(--cream-200); }
.mittag-tab.active { background: var(--cream-50); }
.mittag-tab.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--brand-gold-500);
}
.mittag-body {
  display: grid; grid-template-columns: 280px 1fr 300px;
}
@media (max-width: 1060px) { .mittag-body { grid-template-columns: 280px 1fr; } .mittag-photo { display: none; } }
@media (max-width: 860px) {
  .mittag-body { grid-template-columns: 1fr; }
  .mittag-photo { display: block; height: 260px; }
}
.mittag-photo {
  position: relative; margin: 0; overflow: hidden;
  border-left: 1px solid var(--cream-300);
  background: var(--cream-200);
}
.mittag-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 860px) { .mittag-photo { border-left: 0; border-top: 1px solid var(--cream-300); } }
.mittag-meta {
  padding: 36px 32px;
  background: var(--brand-forest-800);
  color: var(--cream-50);
  display: flex; flex-direction: column; gap: 18px;
}
.mittag-meta .eb { color: var(--brand-gold-300); font-size: 11px; }
.mittag-price {
  display: flex; align-items: baseline; gap: 10px;
}
.mittag-price .num {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 56px; color: var(--brand-gold-300);
  line-height: 1;
}
.mittag-price .lbl {
  font-size: 12px; line-height: 1.3; max-width: 110px;
  color: rgba(240,232,216,0.75);
  letter-spacing: 0.02em;
}
.mittag-points {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.mittag-points li {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px; color: rgba(240,232,216,0.85);
}
.mittag-points li svg { color: var(--brand-gold-300); flex-shrink: 0; }
.mittag-meta .btn-primary {
  margin-top: 8px;
  background: var(--brand-gold-500);
  color: var(--brand-forest-900);
}
.mittag-meta .btn-primary:hover { background: var(--brand-gold-400); }

.mittag-menu {
  padding: 36px 40px;
  display: flex; flex-direction: column; gap: 28px;
}
@media (max-width: 560px) { .mittag-menu { padding: 28px 22px; } }
.mittag-soup .eb,
.mittag-mains .eb { color: var(--brand-gold-700); margin-bottom: 8px; display: inline-block; }
.mittag-soup .menu-item-head { margin-top: 4px; }
.mittag-soup .menu-item-price { color: var(--brand-forest-700); font-style: normal; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.mittag-mains .menu-item { padding: 16px 0; border-bottom: 1px dashed var(--cream-300); }
.mittag-mains .menu-item:last-child { border-bottom: 0; }
.mittag-salad .menu-item-price,
.mittag-salad__incl {
  color: var(--brand-forest-700); font-style: normal; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
}
.mittag-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--cream-300);
  font-size: 13px; color: var(--fg-4); flex-wrap: wrap; gap: 12px;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--brand-forest-800); }
.reviews .section-head h2 { color: var(--cream-50); }
.reviews .section-head p { color: rgba(240,232,216,0.75); }

.reviews-rating {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin: 0 auto 48px;
}
.reviews-rating__num {
  font-family: var(--font-serif); font-weight: 700; font-style: italic;
  font-size: 68px; color: var(--brand-gold-300);
  line-height: 1;
}
.reviews-rating__stars { display: flex; gap: 4px; color: var(--brand-gold-500); }
.reviews-rating__count {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,232,216,0.6);
}

.reviews-carousel {
  position: relative;
  max-width: 920px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
}
.reviews-track {
  position: relative;
  flex: 1;
  height: 360px;
  overflow: hidden;
}
@media (max-width: 760px) { .reviews-track { height: 460px; } }
.review-card {
  position: absolute; inset: 0;
  background: var(--cream-50);
  color: var(--ink-900);
  padding: 44px 48px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: inset 0 0 0 1px rgba(176,141,92,0.3), 0 30px 60px rgba(0,0,0,0.25);
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
@media (max-width: 560px) { .review-card { padding: 32px 24px; } }
.review-quote svg { color: var(--brand-gold-400); }
.review-text {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.55;
  color: var(--brand-forest-900);
  margin: 0;
  flex: 1;
}
.review-stars { display: flex; gap: 3px; color: var(--brand-gold-500); }
.review-author {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 14px; border-top: 1px solid var(--cream-300);
  font-size: 13px; gap: 16px;
}
.review-name {
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: var(--brand-forest-900);
}
.review-where {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-4); margin-top: 4px;
}
.review-source {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-gold-700);
  padding: 4px 10px; border: 1px solid var(--brand-gold-400);
  border-radius: 999px;
  white-space: nowrap;
}
.reviews-nav {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(240,232,216,0.3);
  color: var(--cream-50);
  border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.reviews-nav:hover { background: var(--brand-gold-500); color: var(--brand-forest-900); border-color: var(--brand-gold-500); }
.reviews-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 32px;
}
.reviews-dots .dot {
  width: 8px; height: 8px;
  background: transparent;
  border: 1px solid rgba(240,232,216,0.5);
  border-radius: 50%; cursor: pointer; padding: 0;
  transition: all 0.2s;
}
.reviews-dots .dot.active { background: var(--brand-gold-500); border-color: var(--brand-gold-500); width: 24px; border-radius: 4px; }

/* ---------- Social feed ---------- */
.social-head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: end;
  margin-bottom: 36px;
}
@media (max-width: 760px) { .social-head { grid-template-columns: 1fr; } }
.social-head__left h2 { margin: 12px 0 14px; }
.social-head__left p { color: var(--fg-3); max-width: 560px; font-size: 16px; line-height: 1.55; }
.social-handles { display: flex; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.social-handle {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  background: var(--cream-50); border: 1px solid var(--cream-300);
  transition: border-color 0.2s, transform 0.2s;
}
.social-handle:hover { border-color: var(--brand-gold-500); transform: translateY(-1px); }
.social-handle svg { color: var(--brand-forest-800); flex-shrink: 0; }
.social-handle strong {
  display: block;
  font-family: var(--font-serif); font-weight: 600; font-size: 15px;
  color: var(--brand-forest-900);
}
.social-handle span {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-4);
}
.social-cta { align-self: end; white-space: nowrap; }

.social-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
@media (max-width: 980px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }
.social-tile {
  position: relative; aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(135deg, #2A4A36, #142F21);
}
.social-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-out); }
.social-tile:hover img { transform: scale(1.06); }
.social-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,34,24,0) 30%, rgba(14,34,24,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px 14px; gap: 4px;
  color: var(--cream-50);
  opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.social-tile:hover .social-tile__overlay { opacity: 1; }
.social-tile__likes {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
}
.social-tile__likes svg { color: var(--brand-gold-300); }
.social-tile__cap {
  font-size: 12px; line-height: 1.4;
  color: rgba(255,252,246,0.85);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ---------- Hours redesign (card with map) ---------- */
.hours-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 860px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  padding: 32px 36px;
  display: flex; flex-direction: column;
}
.hours-card--map { padding: 32px 32px 28px; gap: 18px; }
.hours-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px; gap: 14px;
}
.hours-card__head h4 { margin: 0; }
.hours-state {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.hours-state.open { background: rgba(74,124,58,0.14); color: #3a6230; }
.hours-state.closed { background: rgba(154,40,40,0.1); color: var(--semantic-danger); }
.hours-note {
  margin-top: 18px;
  font-size: 13.5px; line-height: 1.55;
  color: var(--fg-4);
}

.map-frame {
  position: relative;
  flex: 1;
  min-height: 280px;
  background: linear-gradient(180deg, #e8e0d0 0%, #d8cdb6 100%);
  border: 1px solid var(--cream-300);
  overflow: hidden;
}
.map-frame__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(176,141,92,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,141,92,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-frame__road {
  position: absolute;
  background: var(--cream-100);
  box-shadow: 0 0 0 1px rgba(176,141,92,0.25);
}
.map-frame__road--h { left: -10%; right: -10%; top: 52%; height: 16px; transform: rotate(-3deg); }
.map-frame__road--v { top: -10%; bottom: -10%; left: 38%; width: 12px; transform: rotate(4deg); }
.map-frame__road--diag {
  width: 160%; height: 8px;
  top: 78%; left: -30%;
  transform: rotate(-18deg);
  background: var(--cream-200);
}
.map-frame__river {
  position: absolute;
  top: 20%; left: -10%; right: -10%;
  height: 22px;
  background: linear-gradient(180deg, #a9c6d2, #7fa3b5);
  transform: rotate(-7deg);
  opacity: 0.85;
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(20,47,33,0.1);
}
.map-frame__label {
  position: absolute;
  font-family: var(--font-serif); font-style: italic;
  font-size: 13px; color: rgba(20,47,33,0.5);
  letter-spacing: 0.04em;
}
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.map-pin__pulse {
  position: absolute; top: 8px; left: 50%;
  width: 14px; height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: var(--brand-gold-500);
  animation: pinPulse 2s ease-out infinite;
}
@keyframes pinPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}
.map-pin svg { filter: drop-shadow(0 4px 10px rgba(20,47,33,0.4)); z-index: 1; }
.map-pin__card {
  background: var(--brand-forest-800); color: var(--cream-50);
  padding: 8px 14px;
  white-space: nowrap;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transform: translateY(4px);
}
.map-pin__card strong { display: block; font-family: var(--font-serif); font-size: 14px; }
.map-pin__card span { color: rgba(240,232,216,0.7); font-size: 11px; letter-spacing: 0.04em; }

.contact-rows { display: flex; flex-direction: column; gap: 14px; padding-top: 4px; }
.contact-rows .contact-row { margin: 0; font-size: 14.5px; }

/* ---------- Footer additions ---------- */
.footer-brand .footer-mini-hours {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(240,232,216,0.12);
  max-width: 320px;
}
.footer-mini-hours .eb { color: var(--brand-gold-300); display: block; margin-bottom: 10px; font-size: 10.5px; }
.footer-mini-hours ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-mini-hours li {
  display: flex; justify-content: space-between;
  font-size: 14px; color: rgba(240,232,216,0.78);
  font-variant-numeric: tabular-nums;
}
.footer-mini-hours li .muted { color: rgba(240,232,216,0.4); font-style: italic; }

.footer-col .footer-social-row {
  display: flex; flex-direction: row; gap: 12px;
  margin-top: 2px;
}
.footer-col .footer-social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(240,232,216,0.22);
  border-radius: 50%;
  color: rgba(240,232,216,0.75);
}
.footer-col .footer-social-row a svg { color: var(--brand-gold-300); }
.footer-col .footer-social-row a:hover { color: var(--cream-50); border-color: var(--brand-gold-300); }

.footer-bottom__links { display: flex; gap: 8px; align-items: center; }
.footer-bottom__links a { color: rgba(240,232,216,0.55); transition: color 0.2s; }
.footer-bottom__links a:hover { color: var(--cream-50); }
.footer-bottom__links span { color: rgba(240,232,216,0.25); }


/* ===================================================================
   Reservation / Pickup modal
   =================================================================== */
.reserve-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: rmFade 0.22s var(--ease-out) both;
}
@keyframes rmFade { from { opacity: 0; } to { opacity: 1; } }
.reserve-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 22, 16, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.reserve-modal__panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
  box-shadow: 0 40px 100px rgba(14, 34, 24, 0.4), inset 0 0 0 1px rgba(176, 141, 92, 0.2);
  animation: rmRise 0.32s var(--ease-out) both;
}
@keyframes rmRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.reserve-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
  color: var(--ink-700);
  border-radius: 2px;
  transition: background 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.reserve-modal__close:hover { background: var(--cream-200); color: var(--brand-forest-800); }

.reserve-modal__head { text-align: center; margin-bottom: 22px; padding-right: 32px; padding-left: 32px; }
.reserve-modal__head .eb {
  display: inline-block;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--brand-gold-600);
  margin-bottom: 12px;
}
.reserve-modal__head h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--brand-forest-900);
  margin: 0 0 8px;
  line-height: 1.15;
}
.reserve-modal__head p {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-700);
  margin: 0;
}

/* --- Tabs --- */
.reserve-tabs {
  display: flex; gap: 0;
  background: var(--cream-200);
  padding: 4px;
  border-radius: 2px;
  margin: 0 auto 28px;
  max-width: 420px;
}
.reserve-tab {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-700);
  border-radius: 2px;
  transition: all 0.2s var(--ease-out);
}
.reserve-tab:hover { color: var(--brand-forest-800); }
.reserve-tab.active {
  background: var(--brand-forest-800);
  color: var(--cream-50);
}
.reserve-tab svg { flex-shrink: 0; }

/* --- Generic field --- */
.reserve-form { display: flex; flex-direction: column; gap: 20px; }
.reserve-field { display: flex; flex-direction: column; gap: 10px; }
.reserve-field__label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-forest-700);
}
.reserve-field input,
.reserve-field textarea {
  font-family: var(--font-sans); font-size: 15px;
  padding: 12px 14px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
  color: var(--ink-900);
  width: 100%;
}
.reserve-field input:focus,
.reserve-field textarea:focus {
  border-color: var(--brand-forest-800);
  box-shadow: 0 0 0 3px rgba(20, 47, 33, 0.08);
}
.reserve-field textarea { resize: vertical; min-height: 60px; }

.reserve-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.reserve-field--full { grid-column: 1 / -1; }
@media (max-width: 540px) { .reserve-grid { grid-template-columns: 1fr; } }

/* --- Date field + quick day buttons --- */
.reserve-datefield {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 2px;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.reserve-datefield:focus-within {
  border-color: var(--brand-forest-800);
  box-shadow: 0 0 0 3px rgba(20, 47, 33, 0.08);
}
.reserve-datefield > svg { color: var(--brand-forest-700); flex-shrink: 0; }
.reserve-field .reserve-datefield__input {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  margin: 0; padding: 0 14px; border: 0;
  cursor: pointer;
}
.reserve-datefield__input::-webkit-calendar-picker-indicator {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; cursor: pointer; opacity: 0;
}
.reserve-datefield__pretty {
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

.reserve-dayquick { display: flex; gap: 8px; }
.reserve-dayquick__btn {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 16px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 999px;
  cursor: pointer;
  color: var(--brand-forest-800);
  transition: all 0.18s var(--ease-out);
}
.reserve-dayquick__btn:hover {
  border-color: var(--brand-forest-700);
  background: var(--cream-100);
}
.reserve-dayquick__btn.active {
  background: var(--brand-forest-800);
  border-color: var(--brand-forest-800);
  color: var(--cream-50);
}

/* --- Time slot grid --- */
.reserve-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}
.reserve-slot {
  padding: 10px 8px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--brand-forest-900);
  font-variant-numeric: tabular-nums;
  transition: all 0.16s var(--ease-out);
}
.reserve-slot:hover:not(:disabled) {
  border-color: var(--brand-forest-700);
  background: var(--cream-100);
}
.reserve-slot.active {
  background: var(--brand-forest-800);
  border-color: var(--brand-forest-800);
  color: var(--cream-50);
}
.reserve-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, 0.35);
}

.reserve-slots__legend {
  display: flex; gap: 18px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-700);
}
.reserve-slots__legend span { display: inline-flex; align-items: center; gap: 6px; }
.reserve-slots__legend .dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block;
}
.dot--ok { background: var(--brand-gold-500); }
.dot--off { background: var(--cream-300); }

/* --- Guests --- */
.reserve-guests { display: flex; flex-wrap: wrap; gap: 6px; }
.reserve-guest {
  min-width: 44px; height: 44px;
  padding: 0 10px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-serif); font-size: 17px; font-weight: 600;
  color: var(--brand-forest-900);
  transition: all 0.16s var(--ease-out);
}
.reserve-guest:hover { border-color: var(--brand-forest-700); }
.reserve-guest.active {
  background: var(--brand-forest-800);
  border-color: var(--brand-forest-800);
  color: var(--cream-50);
}
.reserve-guest--more { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.05em; }

/* --- Alert / no-slots state --- */
.reserve-alert {
  padding: 18px 22px;
  background: rgba(176, 30, 30, 0.04);
  border: 1px solid rgba(176, 30, 30, 0.25);
  border-left: 3px solid var(--semantic-danger, #b3543c);
  border-radius: 2px;
}
.reserve-alert strong {
  display: block;
  font-family: var(--font-serif); font-weight: 700; font-size: 17px;
  color: var(--brand-forest-900); margin-bottom: 4px;
}
.reserve-alert p { margin: 0 0 12px; font-size: 14px; color: var(--ink-700); line-height: 1.5; }
.reserve-alert__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--brand-forest-800);
  color: var(--cream-50);
  border: 0; border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.18s var(--ease-out);
}
.reserve-alert__cta:hover { background: var(--brand-forest-700); }

/* --- Foot --- */
.reserve-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--cream-300);
}
.reserve-foot__note { margin: 0; font-size: 12.5px; color: var(--ink-700); line-height: 1.5; flex: 1 1 240px; }
.reserve-foot__submit {
  background: var(--brand-forest-800);
  color: var(--cream-50);
  padding: 14px 26px;
}
.reserve-foot__submit:hover:not(:disabled) { background: var(--brand-forest-700); }
.reserve-foot__submit:disabled { opacity: 0.4; cursor: not-allowed; }

/* --- Success state --- */
.reserve-success { text-align: center; padding: 8px 0 4px; }
.reserve-success__mark {
  width: 76px; height: 76px;
  background: var(--brand-gold-500);
  color: var(--brand-forest-900);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.reserve-success__line {
  font-family: var(--font-serif); font-size: 18px; line-height: 1.55;
  color: var(--brand-forest-900);
  max-width: 460px; margin: 0 auto 18px;
}
.reserve-success__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--brand-gold-400);
  border-radius: 999px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-forest-800);
  margin-bottom: 22px;
}
.reserve-success__actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.btn-ghost-dark {
  background: transparent;
  color: var(--brand-forest-800);
  box-shadow: inset 0 0 0 1.5px var(--brand-forest-800);
}
.btn-ghost-dark:hover { background: rgba(20, 47, 33, 0.06); }

/* --- Tight viewport --- */
@media (max-width: 560px) {
  .reserve-modal { padding: 10px; }
  .reserve-modal__panel { padding: 22px 18px; max-height: calc(100vh - 20px); }
  .reserve-modal__head { padding-left: 0; padding-right: 0; }
  .reserve-tabs { max-width: none; }
  .reserve-tab { padding: 10px 8px; font-size: 11px; letter-spacing: 0.10em; }
  .reserve-foot { flex-direction: column; align-items: stretch; }
  .reserve-foot__submit { justify-content: center; }
}


/* ===================================================================
   Page hero (used on dedicated sub-pages, e.g. /kontakt.html)
   =================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--bar-h, 72px) + clamp(80px, 8vw, 120px)) 0 clamp(48px, 6vw, 88px);
  background: var(--brand-forest-800);
  color: var(--cream-50);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(193,162,98,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(20,47,33,0.6), transparent 50%),
    linear-gradient(180deg, var(--brand-forest-900), var(--brand-forest-800));
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
}
.page-hero .eb {
  display: inline-block;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brand-gold-300);
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.08;
  color: var(--cream-50);
  margin: 0 0 18px;
}
.page-hero__lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(240, 232, 216, 0.78);
  margin: 0 auto;
  max-width: 600px;
}

/* On a dedicated contact page the Hours section sits right under the page hero —
   tighten its top padding and drop its inner section-head (since the page-hero
   already plays that role). */
.page-hero + #hours { padding-top: clamp(40px, 5vw, 80px); }
.page-hero + #hours .section-head { display: none; }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(56px, 8vw, 110px); }
.legal__inner { display: flex; justify-content: center; }
.legal__prose { max-width: 760px; width: 100%; }
.legal__block { margin-bottom: 34px; }
.legal__block h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(20px, 2vw, 25px);
  color: var(--brand-forest-900);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-300);
}
.legal__block p {
  font-size: 16px; line-height: 1.7;
  color: var(--ink-700, #3d3a33);
  margin: 0 0 8px;
  max-width: 68ch;
}
.legal__block p:last-child { margin-bottom: 0; }
.legal__updated {
  font-family: var(--font-sans); font-size: 13px;
  letter-spacing: 0.04em; color: var(--ink-500, #6b6559);
  margin: 40px 0 0;
}
.legal__note {
  margin: 14px 0 0;
  padding: 14px 18px;
  background: var(--brand-gold-50, #f7f0df);
  border-left: 3px solid var(--brand-gold-500);
  font-size: 14px; line-height: 1.6;
  color: var(--ink-700, #3d3a33);
}
.allergene__group { margin-bottom: 38px; }
.allergene__group h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(20px, 2vw, 25px);
  color: var(--brand-forest-900);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-300);
}
.allergene__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px;
}
.allergene__list li {
  font-size: 15px; line-height: 1.5;
  color: var(--ink-700, #3d3a33);
  padding: 4px 0;
  border-bottom: 1px dotted var(--cream-300);
}
.allergene__note {
  margin: 8px 0 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--brand-forest-900);
}
@media (max-width: 560px) {
  .allergene__list { grid-template-columns: 1fr; }
}


/* ===================================================================
   Contact popup (replaces the old booking modal)
   =================================================================== */
.reserve-modal__panel--contact { max-width: 540px; }
.contact-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 26px;
}
.contact-action {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink-900);
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.contact-action:hover {
  border-color: var(--brand-forest-700);
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}
.contact-action__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-forest-800);
  color: var(--cream-50);
}
.contact-action--wa .contact-action__icon { background: #1f8a4c; }
.contact-action--mail .contact-action__icon { background: var(--brand-gold-600); }
.contact-action__text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.contact-action__label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-500);
}
.contact-action__value {
  font-family: var(--font-sans); font-size: 17px; font-weight: 600;
  color: var(--brand-forest-900);
}
.contact-action__arrow { color: var(--brand-gold-600); flex-shrink: 0; }
.contact-hours {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 20px;
  font-size: 13px; color: var(--ink-500);
}
.contact-hours svg { color: var(--brand-gold-600); }


/* ===================================================================
   Seasonal summer drink — teaser + popup
   =================================================================== */
.drink-teaser {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 320px 1fr;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  box-shadow: 0 30px 70px rgba(20,47,33,0.08), inset 0 0 0 1px rgba(176,141,92,0.18);
  overflow: hidden;
}
@media (max-width: 720px) { .drink-teaser { grid-template-columns: 1fr; } }
.drink-teaser__media { position: relative; margin: 0; min-height: 340px; background: var(--cream-200); }
@media (max-width: 720px) { .drink-teaser__media { min-height: 0; height: 300px; } }
.drink-teaser__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.drink-teaser__price {
  position: absolute; top: 16px; left: 16px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--brand-gold-500); color: var(--brand-forest-900);
  font-family: var(--font-serif); font-weight: 700; font-size: 16px;
}
.drink-teaser__body {
  padding: clamp(28px, 3.4vw, 46px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  justify-content: center;
}
.drink-teaser__body .eb { color: var(--brand-gold-700); }
.drink-teaser__body h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px); line-height: 1.1;
  color: var(--brand-forest-900); margin: 0;
}
.drink-teaser__tagline {
  font-family: var(--font-serif); font-style: italic; font-size: 18px;
  color: var(--brand-gold-700);
}
.drink-teaser__body p { color: var(--ink-700); font-size: 15.5px; line-height: 1.65; margin: 0; max-width: 460px; }
.drink-teaser__body .btn-gold { margin-top: 8px; }

/* Popup */
.drink-modal__panel { max-width: 880px; padding: 0; overflow: hidden; }
.drink-modal .reserve-modal__close { background: rgba(255,252,246,0.88); }
.drink-modal .reserve-modal__close:hover { background: #fff; color: var(--brand-forest-800); }
.drink-modal__grid { display: grid; grid-template-columns: 0.82fr 1fr; }
@media (max-width: 720px) { .drink-modal__grid { grid-template-columns: 1fr; } }
.drink-modal__media { margin: 0; position: relative; background: var(--cream-200); min-height: 100%; }
.drink-modal__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
@media (max-width: 720px) { .drink-modal__media { height: 260px; } }
.drink-modal__info {
  padding: clamp(28px, 3.4vw, 46px);
  display: flex; flex-direction: column; gap: 8px;
}
.drink-modal__info .eb { color: var(--brand-gold-700); }
.drink-modal__info h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.1;
  color: var(--brand-forest-900); margin: 6px 0 0;
}
.drink-modal__sub {
  font-family: var(--font-serif); font-style: italic; font-size: 16px;
  color: var(--brand-gold-700); margin-bottom: 8px;
}
.drink-modal__info p { color: var(--ink-700); font-size: 14.5px; line-height: 1.65; margin: 0 0 6px; }
.drink-modal__ing { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--cream-300); }
.drink-modal__ing .eb { color: var(--brand-gold-700); display: block; margin-bottom: 10px; }
.drink-modal__ing ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.drink-modal__ing li {
  font-family: var(--font-sans); font-size: 13px; color: var(--brand-forest-900);
  padding: 6px 13px; background: var(--cream-100, #faf5ea);
  border: 1px solid var(--cream-300); border-radius: 999px;
}
.drink-modal__price { margin-top: 18px; }
.drink-modal__price-num {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 34px; color: var(--brand-gold-700);
}


/* ===================================================================
   Weekly special / Wochenangebot
   =================================================================== */
.weekly-card {
  margin-top: 28px;
  display: grid; grid-template-columns: 380px 1fr;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  box-shadow: 0 30px 70px rgba(20,47,33,0.08), inset 0 0 0 1px rgba(176,141,92,0.18);
  overflow: hidden;
}
@media (max-width: 760px) { .weekly-card { grid-template-columns: 1fr; } }
.weekly-card__media { position: relative; min-height: 280px; background: var(--cream-200); }
@media (max-width: 760px) { .weekly-card__media { min-height: 0; height: 240px; } }
.weekly-slot {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
}
.weekly-card__body {
  padding: 36px 40px 34px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
@media (max-width: 560px) { .weekly-card__body { padding: 28px 22px; } }
.weekly-card__body .eb { color: var(--brand-gold-700); }
.weekly-card__body h3 { font-size: 30px; margin: 0; }
.weekly-card__body p { color: var(--ink-700); font-size: 15.5px; line-height: 1.65; max-width: 560px; margin: 0; }
.weekly-chip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px; padding: 8px 16px;
  border: 1px solid var(--brand-gold-500); border-radius: 999px;
  background: rgba(176,141,92,0.08);
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--brand-forest-800);
}
.weekly-chip svg { color: var(--brand-gold-600); flex-shrink: 0; }


/* ===================================================================
   Sunday buffet card
   =================================================================== */
.buffet-card {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 300px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  box-shadow: inset 0 0 0 1px var(--brand-gold-400), 0 14px 40px rgba(20,47,33,0.08);
  border-color: transparent;
  overflow: hidden;
}
@media (max-width: 760px) { .buffet-card { grid-template-columns: 1fr; } }
.buffet-card__main { padding: 36px 36px 32px; }
.buffet-card__main .eb { color: var(--brand-gold-700); }
.buffet-card__main h3 { font-size: 30px; margin: 10px 0 12px; }
.buffet-card__main p { color: var(--ink-700); font-size: 15.5px; line-height: 1.65; max-width: 540px; }
.buffet-card__meta { margin-top: 18px; }
.buffet-time {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-forest-700);
}
.buffet-card__aside {
  padding: 36px 32px;
  background: var(--brand-forest-800);
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.buffet-price { display: flex; align-items: baseline; gap: 10px; }
.buffet-price .num {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 46px; color: var(--brand-gold-300); line-height: 1;
}
.buffet-price .lbl { font-size: 12px; line-height: 1.3; max-width: 130px; color: rgba(240,232,216,0.75); }


/* ===================================================================
   Themed evenings
   =================================================================== */
.abend-block { margin-top: clamp(48px, 6vw, 72px); }
.abend-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.abend-head .eb { color: var(--brand-gold-600); }
.abend-head h3 { font-size: 30px; margin: 10px 0 12px; }
.abend-head p { color: var(--fg-3); font-size: 16px; line-height: 1.6; }
.abend-buffet {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 9px 18px;
  border: 1px solid var(--brand-gold-500); border-radius: 999px;
  background: rgba(176,141,92,0.08);
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.03em; color: var(--brand-forest-800);
}
.abend-buffet svg { color: var(--brand-gold-600); flex-shrink: 0; }
.abend-buffet strong { font-weight: 700; color: var(--brand-forest-900); }
.abend-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 920px) { .abend-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .abend-grid { grid-template-columns: 1fr; } }
.abend-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.abend-card:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); }
.abend-card__img {
  position: relative; aspect-ratio: 5/4; overflow: hidden;
  background: linear-gradient(135deg, #2A4A36, #142F21);
}
.abend-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.abend-card:hover .abend-card__img img { transform: scale(1.04); }
.abend-card__day {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 13px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--brand-gold-300); color: var(--brand-forest-900);
  border-radius: 999px;
}
.abend-card__body { padding: 20px 22px 24px; }
.abend-card__body h4 { font-size: 21px; margin: 0 0 8px; }
.abend-card__body p { font-size: 14px; line-height: 1.6; color: var(--ink-700); }


/* ===================================================================
   Offers — in-section sub-navigation
   =================================================================== */
.angebot-subnav {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto 40px;
  padding: 16px 20px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-top: 2px solid var(--brand-gold-500);
  box-shadow: var(--shadow-1);
}
.angebot-subnav__label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-gold-700);
  flex-shrink: 0;
}
.angebot-subnav__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.angebot-chip {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--brand-forest-800);
  padding: 9px 18px;
  background: var(--cream-200);
  border: 1px solid var(--cream-300);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s var(--ease-out), color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.angebot-chip:hover {
  background: var(--brand-forest-800);
  color: var(--cream-50);
  border-color: var(--brand-forest-800);
}
@media (max-width: 640px) {
  .angebot-subnav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .angebot-subnav__chips { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .angebot-chip { flex-shrink: 0; }
}


/* ===================================================================
   Schnitzelplatte / Familienplatte — sharing platters
   =================================================================== */
.platten-block { margin-top: clamp(48px, 6vw, 72px); }
.platten-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.platten-head .eb { color: var(--brand-gold-600); }
.platten-head h3 { font-size: clamp(26px, 3vw, 32px); margin: 10px 0 12px; }
.platten-head p { color: var(--fg-3); font-size: 16.5px; line-height: 1.6; }
.platten-sub {
  display: block; margin: 2px 0 10px;
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: 19px; color: var(--brand-gold-700);
}

/* --- Familienplatte detail card --- */
.famplatte {
  display: grid; grid-template-columns: 380px 1fr;
  max-width: 1000px; margin: 0 auto;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  box-shadow: 0 30px 70px rgba(20,47,33,0.08), inset 0 0 0 1px rgba(176,141,92,0.18);
  overflow: hidden;
}
@media (max-width: 820px) { .famplatte { grid-template-columns: 1fr; } }
.famplatte__media { position: relative; min-height: 460px; background: var(--cream-200); }
@media (max-width: 820px) { .famplatte__media { min-height: 0; height: 320px; } }
.famplatte__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.famplatte__body {
  padding: 34px 38px 30px;
  display: flex; flex-direction: column; gap: 24px;
}
@media (max-width: 560px) { .famplatte__body { padding: 28px 22px; } }
.famplatte__variants .eb,
.famplatte__inhalt .eb { color: var(--brand-gold-700); margin-bottom: 6px; display: inline-block; }
.famplatte-variant {
  display: flex; align-items: baseline; gap: 10px;
  padding: 10px 0; border-bottom: 1px dashed var(--cream-300);
}
.famplatte-variant:last-child { border-bottom: 0; }
.famplatte-variant__name {
  font-family: var(--font-serif); font-size: 19px; font-weight: 600;
  color: var(--brand-forest-900);
}
.famplatte-variant__note { font-size: 13px; color: var(--fg-3); white-space: nowrap; }
@media (max-width: 480px) { .famplatte-variant__note { white-space: normal; } }
.famplatte-variant__price {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: 19px; color: var(--brand-gold-700); white-space: nowrap;
}
.famplatte__rows { margin: 0; }
.famplatte-row {
  display: grid; grid-template-columns: 104px 1fr; gap: 14px;
  padding: 7px 0;
}
.famplatte-row dt {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--brand-forest-700); padding-top: 2px;
}
.famplatte-row dd { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-700); }
.famplatte__wish {
  margin: 0; font-size: 13.5px; line-height: 1.6;
  font-style: italic; color: var(--fg-3);
}
.platten-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; max-width: 1000px; margin: 0 auto;
}
@media (max-width: 680px) { .platten-grid { grid-template-columns: 1fr; } }
.platten-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  box-shadow: var(--shadow-1);
  padding: 28px 30px 30px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.platten-card:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); }
.platten-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.platten-card__head h4 { font-size: 23px; margin: 0; color: var(--brand-forest-900); }
.platten-card__price {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: 22px; color: var(--brand-gold-700); white-space: nowrap;
}
.platten-card__serves {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--brand-forest-700);
}
.platten-card__serves svg { color: var(--brand-gold-600); }
.platten-card__desc { font-size: 14.5px; line-height: 1.62; color: var(--ink-700); margin: 0; }
.platten-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
  max-width: 1000px; margin: 26px auto 0;
  padding: 20px 26px;
  background: var(--brand-forest-800);
  color: rgba(240,232,216,0.82);
}
.platten-foot span { font-size: 14.5px; line-height: 1.55; max-width: 560px; }
@media (max-width: 560px) { .platten-foot { flex-direction: column; align-items: flex-start; } }


/* ===================================================================
   Räume & Terrasse — room cards + detail modal
   =================================================================== */
.raeume-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 720px) { .raeume-grid { grid-template-columns: 1fr; } }

.room-card {
  display: flex; flex-direction: column;
  text-align: left;
  padding: 0; border: 1px solid var(--cream-300);
  background: var(--cream-50);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: var(--brand-gold-300);
}
.room-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--brand-forest-900);
}
.room-card__media > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.room-card:hover .room-card__media > img { transform: scale(1.05); }
.room-card__cap {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(20,40,28,0.62); color: var(--cream-50);
  border: 1px solid rgba(255,252,246,0.22);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.room-card__cap svg { color: var(--brand-gold-300); }
.room-card__body {
  display: flex; flex-direction: column;
  gap: 9px;
  padding: clamp(20px, 2.2vw, 26px);
  flex: 1;
}
.room-card__body h3 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(21px, 2.2vw, 26px); line-height: 1.12;
  color: var(--brand-forest-900);
  margin: 0;
}
.room-card__body p {
  font-size: 15px; line-height: 1.58;
  color: var(--ink-600, #5b5249);
  margin: 0;
  flex: 1;
}
.room-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--brand-forest-700, #2f5a3f);
}
.room-card__more svg { transition: transform 0.25s var(--ease-out); }
.room-card:hover .room-card__more svg { transform: translateX(4px); }

/* Combine note */
.raeume-combine {
  display: flex; align-items: flex-start; gap: 18px;
  max-width: 1100px;
  margin: clamp(26px, 3.4vw, 40px) auto 0;
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 32px);
  background: var(--brand-forest-900);
  color: var(--cream-50);
  border-radius: 4px;
}
.raeume-combine__icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,252,246,0.1);
  color: var(--brand-gold-300);
  border: 1px solid rgba(255,252,246,0.2);
}
.raeume-combine h4 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(18px, 1.9vw, 22px); line-height: 1.18;
  color: var(--cream-50);
  margin: 2px 0 7px;
}
.raeume-combine p {
  font-size: 15px; line-height: 1.6;
  color: rgba(240,232,216,0.86);
  margin: 0;
}
@media (max-width: 560px) { .raeume-combine { flex-direction: column; gap: 12px; } }

/* Detail modal */
.room-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: clamp(12px, 3vw, 36px);
  background: rgba(14,28,20,0.74);
  backdrop-filter: blur(4px);
  animation: roomFade 0.2s var(--ease-out);
}
@keyframes roomFade { from { opacity: 0; } to { opacity: 1; } }
.room-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  width: min(1040px, 100%);
  max-height: calc(100vh - clamp(24px, 6vw, 72px));
  background: var(--cream-50);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(14,28,20,0.45);
  animation: roomRise 0.28s var(--ease-out);
}
@keyframes roomRise { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 800px) {
  .room-modal__panel { grid-template-columns: 1fr; grid-template-rows: auto 1fr; overflow-y: auto; }
}
.room-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 6;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(20,40,28,0.55); color: var(--cream-50);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s var(--ease-out);
}
.room-modal__close:hover { background: var(--brand-forest-900); }

.room-modal__gallery {
  display: flex; flex-direction: column;
  background: var(--brand-forest-900);
  min-width: 0;
  min-height: 0;
}
.room-modal__stage {
  position: relative;
  flex: 1 1 auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
}
@media (max-width: 800px) { .room-modal__stage { aspect-ratio: 16 / 10; } }
.room-modal__stage > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.room-modal__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(20,40,28,0.5); color: var(--cream-50);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s var(--ease-out);
}
.room-modal__nav:hover { background: var(--brand-gold-500); color: var(--brand-forest-900); }
.room-modal__nav--prev { left: 12px; }
.room-modal__nav--next { right: 12px; }
.room-modal__counter {
  position: absolute; right: 12px; bottom: 12px;
  padding: 4px 11px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  color: var(--cream-50);
  background: rgba(20,40,28,0.55);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.room-modal__thumbs {
  flex: 0 0 auto;
  display: flex; gap: 8px;
  padding: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.room-modal__thumb {
  flex-shrink: 0;
  width: 70px; height: 52px;
  padding: 0; border: 2px solid transparent; border-radius: 3px;
  overflow: hidden; cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.room-modal__thumb > img { width: 100%; height: 100%; object-fit: cover; }
.room-modal__thumb:hover { opacity: 0.85; }
.room-modal__thumb.active { opacity: 1; border-color: var(--brand-gold-300); }

.room-modal__info {
  display: flex; flex-direction: column;
  padding: clamp(24px, 2.8vw, 38px);
  overflow-y: auto;
}
.room-modal__info h3 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px); line-height: 1.1;
  color: var(--brand-forest-900);
  margin: 0 0 16px;
}
.room-modal__facts {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.room-fact {
  display: flex; flex-direction: column; gap: 2px;
  padding: 9px 16px;
  background: var(--cream-100, #f4ede1);
  border: 1px solid var(--cream-300);
  border-radius: 4px;
}
.room-fact__label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-forest-700, #2f5a3f);
}
.room-fact__value {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: var(--brand-forest-900);
}
.room-modal__desc {
  font-size: 15.5px; line-height: 1.66;
  color: var(--ink-600, #5b5249);
  margin: 0 0 22px;
}
.room-modal__details { margin-bottom: 22px; }
.room-modal__details-label {
  display: block;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-forest-700, #2f5a3f);
  margin-bottom: 11px;
}
.room-modal__details ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.room-modal__details li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; line-height: 1.45;
  color: var(--ink-700, #463f37);
}
.room-modal__details li svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-gold-500); }
.room-modal__combine {
  font-size: 13.5px; line-height: 1.55; font-style: italic;
  color: var(--ink-600, #5b5249);
  padding: 13px 16px;
  background: var(--cream-100, #f4ede1);
  border-left: 3px solid var(--brand-gold-300);
  border-radius: 0 4px 4px 0;
  margin: 0 0 22px;
}
.room-modal__cta { margin-top: auto; align-self: flex-start; }
@media (prefers-reduced-motion: reduce) {
  .room-modal, .room-modal__panel { animation: none; }
  .room-card__media > img { transition: none; }
}

.raeume-cta { text-align: center; margin-top: clamp(36px, 5vw, 56px); }

.raeume-streetview {
  max-width: 1100px;
  margin: clamp(28px, 4vw, 48px) auto 0;
}
.raeume-streetview .map-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(20,47,33,0.18);
}


/* ===================================================================
   Heimat-Eckle
   =================================================================== */
.heimat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .heimat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .heimat-grid { grid-template-columns: 1fr; } }
.heimat-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.heimat-card:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); }
.heimat-card__media { position: relative; }
.heimat-slot {
  display: block; width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2A4A36, #142F21);
}
.heimat-card__body { padding: 22px 24px 26px; }
.heimat-card__body h3 { font-size: 21px; margin: 0 0 8px; }
.heimat-card__body p { font-size: 14.5px; line-height: 1.6; color: var(--ink-700); }
.heimat-card--cta {
  background: var(--brand-forest-800);
  border-color: transparent;
  align-items: center; justify-content: center; text-align: center;
}
.heimat-card--cta .heimat-card__body {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 40px 28px;
}
.heimat-card--cta svg { color: var(--brand-gold-300); }
.heimat-card--cta h3 { color: var(--cream-50); }


/* ===================================================================
   Jobs
   =================================================================== */
.jobs-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px) { .jobs-wrap { grid-template-columns: 1fr; gap: 40px; } }
.jobs-intro .eb { color: var(--brand-gold-600); }
.jobs-intro h2 { margin: 12px 0 16px; }
.jobs-intro > p { color: var(--fg-3); font-size: 17px; line-height: 1.7; max-width: 460px; }
.jobs-intro .btn-gold { margin-top: 26px; }
.jobs-note { margin-top: 14px; font-size: 13.5px; color: var(--ink-500); }
.jobs-list {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  padding: 12px 28px 20px;
}
.jobs-list__head {
  color: var(--brand-gold-700);
  padding: 18px 0 6px;
}
.jobs-list ul { list-style: none; margin: 0; padding: 0; }
.jobs-row {
  border-bottom: 1px solid var(--cream-300);
}
.jobs-row:last-child { border-bottom: 0; }
.jobs-row__toggle {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; text-align: left;
}
.jobs-row__role {
  font-family: var(--font-serif); font-weight: 600; font-size: 20px;
  color: var(--brand-forest-900); flex: 1;
}
.jobs-row__type {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-gold-700);
  background: var(--brand-gold-100, #f3ead4);
  padding: 5px 12px;
  border-radius: 999px;
}
.jobs-row__chevron {
  width: 34px; height: 34px; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--brand-forest-900);
  border: 1px solid var(--cream-300);
  border-radius: 999px;
  transition: transform 0.22s var(--ease-out), background 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.jobs-row__toggle:hover .jobs-row__chevron { background: var(--brand-gold-600); color: var(--brand-forest-900); border-color: var(--brand-gold-600); }
.jobs-row.is-open .jobs-row__chevron { transform: rotate(180deg); }

.jobs-detail {
  padding: 4px 0 24px;
  animation: roomFade 0.25s var(--ease-out);
}
.jobs-detail__summary {
  color: var(--fg-3); font-size: 15.5px; line-height: 1.65;
  margin: 0 0 20px; max-width: 640px;
}
.jobs-detail__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 560px) { .jobs-detail__cols { grid-template-columns: 1fr; gap: 20px; } }
.jobs-detail__col .eb { color: var(--brand-gold-700); display: block; margin-bottom: 10px; }
.jobs-detail__col ul { list-style: none; margin: 0; padding: 0; }
.jobs-detail__col li {
  position: relative; padding-left: 16px; margin-bottom: 8px;
  font-size: 14px; line-height: 1.55; color: var(--brand-forest-900);
}
.jobs-detail__col li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 999px; background: var(--brand-gold-600);
}

.jobs-apply {
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid var(--cream-300);
}
.jobs-apply__head {
  font-family: var(--font-serif); font-weight: 600; font-size: 16px;
  color: var(--brand-forest-900); margin-bottom: 14px;
}
.jobs-apply__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.jobs-apply__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600;
  border: 1px solid var(--brand-forest-900);
  color: var(--brand-forest-900); background: transparent;
  transition: background 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.jobs-apply__btn:hover { background: var(--brand-forest-900); color: var(--cream-50); }
.jobs-apply__btn--gold {
  background: var(--brand-gold-600); border-color: var(--brand-gold-600); color: var(--brand-forest-900);
}
.jobs-apply__btn--gold:hover { background: var(--brand-gold-700); border-color: var(--brand-gold-700); color: var(--brand-forest-900); }
.jobs-apply__btn--wa:hover { background: #1faf54; border-color: #1faf54; color: #fff; }
.jobs-apply__note { margin-top: 12px; font-size: 13px; color: var(--ink-500); }


/* ===================================================================
   Speisekarte band — prominent full-menu entry point
   =================================================================== */
.speisekarte-band {
  position: relative;
  background: var(--brand-forest-900);
  color: var(--cream-50);
  overflow: hidden;
}
.speisekarte-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(193,162,98,0.16), transparent 52%),
    radial-gradient(ellipse at 90% 100%, rgba(20,47,33,0.7), transparent 55%);
  pointer-events: none;
}
.speisekarte-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px) {
  .speisekarte-inner { grid-template-columns: 1fr; gap: 40px; justify-items: start; }
}
.speisekarte-text { max-width: 560px; }
.speisekarte-text .eb { color: var(--brand-gold-300); }
.speisekarte-text h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.06;
  color: var(--cream-50);
  margin: 14px 0 16px;
}
.speisekarte-text p {
  font-size: 17px; line-height: 1.65;
  color: rgba(240,232,216,0.84);
  margin: 0 0 30px;
  max-width: 500px;
}

/* Decorative "menu sheet" card that doubles as a tap target */
.speisekarte-card {
  display: block;
  perspective: 800px;
  transition: transform 0.3s var(--ease-out);
}
.speisekarte-card:hover { transform: translateY(-3px); }
.speisekarte-card__sheet {
  width: 230px; min-height: 290px;
  padding: 34px 28px;
  background: linear-gradient(170deg, #fbf7ef 0%, #f3ebda 100%);
  color: var(--brand-forest-900);
  border: 1px solid rgba(176,141,92,0.4);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.5);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.speisekarte-card:hover .speisekarte-card__sheet {
  transform: rotate(0deg);
  box-shadow: 0 38px 70px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.6);
}
.speisekarte-card__sheet::after {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid rgba(176,141,92,0.45);
  pointer-events: none;
}
.speisekarte-card__crest {
  color: var(--brand-gold-600);
  margin-top: 8px;
}
.speisekarte-card__label {
  font-family: var(--font-serif); font-weight: 700; font-style: italic;
  font-size: 26px; color: var(--brand-forest-900);
  margin-top: 2px;
}
.speisekarte-card__sub {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-gold-700);
}
@media (max-width: 820px) {
  .speisekarte-card { align-self: center; }
}

/* Heimat-Eckle: "read more" link in the CTA card */
.heimat-card--cta .heimat-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-gold-300);
  border-bottom: 1px solid rgba(193,162,98,0.5);
  padding-bottom: 4px;
  transition: color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.heimat-card--cta .heimat-more:hover { color: var(--cream-50); border-color: var(--cream-50); }
.heimat-card--cta .heimat-more svg { transition: transform 0.2s var(--ease-out); }
.heimat-card--cta .heimat-more:hover svg { transform: translateX(3px); }

/* Heimat-Eckle dedicated detail page */
.page-hero + #heimat.heimat-detail { padding-top: clamp(48px, 6vw, 88px); }
.heimat-invite {
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
  max-width: 620px; margin-left: auto; margin-right: auto;
  padding: clamp(32px, 4vw, 48px);
  background: var(--brand-forest-800);
  color: var(--cream-50);
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(193,162,98,0.4);
}
.heimat-invite h3 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--cream-50);
  margin: 0 0 12px;
}
.heimat-invite p {
  font-size: 16px; line-height: 1.65;
  color: rgba(240,232,216,0.82);
  margin: 0 auto 26px;
  max-width: 480px;
}


/* ===================================================================
   Seasonal menu page (seasonal-menu.html)
   =================================================================== */
.seasonal-detail { padding-top: clamp(44px, 5vw, 76px); }
.seasonal-note {
  max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.seasonal-note .eb {
  display: inline-block; color: var(--brand-gold-700);
  margin-bottom: 12px;
}
.seasonal-note p {
  font-size: 16px; line-height: 1.65; color: var(--ink-700);
  margin: 0;
}
.seasonal-courses {
  display: flex; flex-direction: column;
  gap: clamp(36px, 4.5vw, 56px);
  max-width: 980px; margin: 0 auto;
}
.seasonal-course__head {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brand-forest-700);
  text-align: center;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-300);
}
.seasonal-list { gap: 4px 64px; }
.seasonal-item__head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; column-gap: 18px;
}
.seasonal-item .menu-item-name { line-height: 1.3; }
.seasonal-item .menu-item-price { transform: translateY(2px); }
.seasonal-item .menu-item-desc { display: block; }
.seasonal-tag {
  display: inline-block; vertical-align: middle;
  margin-left: 8px; transform: translateY(-1px);
}
.seasonal-foot {
  max-width: 640px; margin: clamp(40px, 5vw, 60px) auto 0;
  text-align: center;
  font-size: 13.5px; line-height: 1.6; color: var(--ink-500);
  font-style: italic;
}
.seasonal-cta { text-align: center; margin-top: 28px; }


/* ===================================================================
   Events / Live Music page (events.html)
   =================================================================== */
.events-detail { padding-top: clamp(44px, 5vw, 76px); }
.events-head { text-align: center; margin-bottom: clamp(28px, 3.5vw, 44px); }
.events-head .eb { display: inline-block; color: var(--brand-gold-700); }
.events-list {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 920px; margin: 0 auto;
}
.event-row {
  display: grid; grid-template-columns: 320px 1fr;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.event-row:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); }
.event-row--feature {
  border-color: transparent;
  box-shadow: inset 0 0 0 1px var(--brand-gold-400), 0 14px 40px rgba(20,47,33,0.08);
}
@media (max-width: 720px) { .event-row { grid-template-columns: 1fr; } }
.event-row__media {
  position: relative;
  background: linear-gradient(135deg, #2A4A36, #142F21);
  min-height: 240px;
}
.event-row__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
@media (max-width: 720px) { .event-row__media { position: relative; min-height: 0; aspect-ratio: 16/9; } }
.event-row__entry {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 14px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--cream-50); color: var(--brand-forest-900);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(14,34,24,0.25);
}
.event-row__body {
  padding: 26px 30px 28px;
  display: flex; flex-direction: column;
}
.event-row__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; margin-bottom: 8px;
}
.event-row__meta .eb { color: var(--brand-gold-700); }
.event-row__date {
  font-family: var(--font-serif); font-style: italic; font-size: 13.5px;
  color: var(--brand-forest-700); white-space: nowrap;
}
.event-row__body h3 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 24px; line-height: 1.2;
  color: var(--brand-forest-900);
  margin: 4px 0 12px;
}
.event-row__body p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-700);
  margin: 0 0 18px; flex: 1;
}
.event-row__body .link-gold {
  align-self: flex-start;
  background: none; border: 0; cursor: pointer;
  border-bottom: 1.5px solid var(--brand-gold-400);
  padding: 0 0 2px;
}
.events-foot {
  max-width: 640px; margin: clamp(44px, 5vw, 64px) auto 0;
  text-align: center;
}
.events-foot p {
  font-size: 16px; line-height: 1.6; color: var(--ink-700);
  margin: 0 0 22px;
}


/* ===================================================================
   Weekly special — photo, "this week" feature card + popup
   =================================================================== */
.weekly-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.weekly-flag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 7px 14px;
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--brand-gold-500); color: var(--brand-forest-900);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(14,34,24,0.25);
}
.weekly-special {
  appearance: none; -webkit-appearance: none;
  width: 100%; text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 6px; padding: 18px 20px;
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-left: 3px solid var(--brand-gold-500);
  border-radius: 4px;
  font: inherit; color: inherit;
  transition: box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.2s;
}
.weekly-special:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); border-color: var(--brand-gold-400); border-left-color: var(--brand-gold-500); }
.weekly-special__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.weekly-special__name {
  font-family: var(--font-serif); font-weight: 700; font-size: 22px;
  color: var(--brand-forest-900);
}
.weekly-special__price {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 22px; color: var(--brand-gold-700); white-space: nowrap;
}
.weekly-special__sub { font-size: 13px; color: var(--brand-forest-700); letter-spacing: 0.02em; }
.weekly-special__short { font-size: 14.5px; line-height: 1.6; color: var(--ink-700); margin-top: 4px; }
.weekly-special__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-gold-700);
}
.weekly-special__more svg { transition: transform 0.2s var(--ease-out); }
.weekly-special:hover .weekly-special__more svg { transform: translateX(3px); }

.weekly-modal {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(14,34,24,0.55);
  backdrop-filter: blur(3px);
  animation: weeklyFade 0.2s var(--ease-out);
}
@keyframes weeklyFade { from { opacity: 0; } to { opacity: 1; } }
.weekly-modal__panel {
  position: relative;
  width: min(880px, 100%); max-height: calc(100vh - 40px); overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream-50); border-radius: 6px;
  box-shadow: 0 40px 100px rgba(14,34,24,0.4);
  animation: weeklyRise 0.25s var(--ease-out);
}
@keyframes weeklyRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (max-width: 680px) { .weekly-modal__panel { grid-template-columns: 1fr; } }
.weekly-modal__media { position: relative; min-height: 320px; background: var(--cream-200); }
@media (max-width: 680px) { .weekly-modal__media { min-height: 0; aspect-ratio: 4/3; } }
.weekly-modal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.weekly-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--brand-forest-800);
  box-shadow: 0 4px 14px rgba(14,34,24,0.2);
  transition: background 0.18s, transform 0.18s;
}
.weekly-modal__close:hover { background: #fff; transform: scale(1.05); }
.weekly-modal__body { padding: 38px 40px 36px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 560px) { .weekly-modal__body { padding: 28px 24px; } }
.weekly-modal__body .eb { color: var(--brand-gold-700); }
.weekly-modal__titlerow { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.weekly-modal__body h3 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(24px, 3vw, 30px); line-height: 1.15;
  color: var(--brand-forest-900); margin: 0;
}
.weekly-modal__price {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 26px; color: var(--brand-gold-700); white-space: nowrap;
}
.weekly-modal__body p { font-size: 15px; line-height: 1.7; color: var(--ink-700); margin: 0; }
.weekly-modal__body .btn { margin-top: 10px; align-self: flex-start; }

/* ===================================================================
   Abend offers — buffet price line
   =================================================================== */
.abend-info {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 18px; margin-top: 18px;
}
.abend-info .abend-buffet { margin-top: 0; }
.abend-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 9px 18px; flex-wrap: nowrap;
  background: var(--brand-forest-800); border-radius: 999px;
}
.abend-price__num {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 19px; color: var(--brand-gold-300); white-space: nowrap;
}
.abend-price__per {
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(240,232,216,0.85); white-space: nowrap;
}
.abend-note {
  margin: 14px auto 0; max-width: 580px;
  font-size: 13.5px; line-height: 1.55; color: var(--ink-500); font-style: italic;
}

/* ===================================================================
   Unser Heimateckchen — two corners (home) + detail page
   =================================================================== */
.heimat-corners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 720px) { .heimat-corners { grid-template-columns: 1fr; } }
.heimat-corner {
  display: flex; flex-direction: column;
  background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: 6px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.heimat-corner:hover { box-shadow: var(--shadow-3); transform: translateY(-3px); }
.heimat-corner__media { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-200); }
.heimat-corner__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.heimat-corner:hover .heimat-corner__media img { transform: scale(1.04); }
.heimat-corner__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 12px; }
.heimat-corner__body h3 {
  font-family: var(--font-serif); font-weight: 700; font-size: 26px;
  color: var(--brand-forest-900); margin: 0;
}
.heimat-corner__body p { font-size: 15px; line-height: 1.65; color: var(--ink-700); margin: 0; flex: 1; }
.heimat-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-gold-700);
}
.heimat-more svg { transition: transform 0.2s var(--ease-out); }
.heimat-corner:hover .heimat-more svg { transform: translateX(3px); }

.heimat-cta {
  margin-top: 28px; padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--brand-forest-800); border-radius: 6px;
}
.heimat-cta__text { display: flex; align-items: center; gap: 16px; }
.heimat-cta__text svg { color: var(--brand-gold-300); flex-shrink: 0; }
.heimat-cta__text h3 {
  font-family: var(--font-serif); font-weight: 700; font-size: clamp(20px, 2.4vw, 26px);
  color: var(--cream-50); margin: 0;
}
.heimat-cta .btn-primary { background: var(--brand-gold-500); color: var(--brand-forest-900); }
.heimat-cta .btn-primary:hover { background: var(--brand-gold-400); }

.heimat-detail .heimat-corner-full {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--cream-300);
}
.heimat-detail .heimat-corner-full:first-of-type { padding-top: 0; }
.heimat-corner-full.reverse .heimat-corner-full__gallery { order: 2; }
@media (max-width: 820px) {
  .heimat-detail .heimat-corner-full { grid-template-columns: 1fr; gap: 26px; }
  .heimat-corner-full.reverse .heimat-corner-full__gallery { order: 0; }
}
.heimat-corner-full__gallery { display: flex; flex-direction: column; gap: 14px; }
.hc-photo { margin: 0; overflow: hidden; border-radius: 6px; background: var(--cream-200); }
.hc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hc-photo--lead { aspect-ratio: 4/3; }
.hc-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hc-photo-row .hc-photo { aspect-ratio: 3/2; }
.heimat-corner-full__text .eb { display: inline-block; color: var(--brand-gold-700); margin-bottom: 12px; }
.heimat-corner-full__text h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15;
  color: var(--brand-forest-900); margin: 0 0 18px;
}
.heimat-corner-full__text p { font-size: 16px; line-height: 1.7; color: var(--ink-700); margin: 0 0 14px; }
