/* ==========================================================================
   Manes am Bösch, gutbürgerliche Gaststätte seit 1860
   Design system: "Zur Waidmannsruh" heritage Wirtshaus
   Hand-authored, vanilla CSS. No build step.
   ========================================================================== */

/* ---------- Self-hosted fonts (DSGVO, keine externen Requests) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/source-sans-3-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/cinzel-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/cinzel-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  /* palette */
  --bg: #F4F5F6;             /* very light neutral grey */
  --surface: #FFFFFF;        /* white surface */
  --anthracite: #2E3136;     /* dark primary (sections, panels) */
  --anthracite-dark: #24262A;/* darker panel anthracite */
  --anthracite-deep: #191B1E;/* deepest, footer + overlays */
  --gold: #AA873F;           /* gold accent, hairlines + large accents */
  --gold-ink: #8A6C2E;       /* darker gold for small text on light (AA safe) */
  --gold-light: #C6A25A;     /* hover gold */
  --gold-soft: #D8C08C;      /* faint gold on dark */
  --ink: #24262A;            /* dark anthracite ink */
  --ink-soft: #4F5257;       /* muted body text */
  --light-on-dark: #ECEDEF;  /* light neutral text on dark surfaces */
  --line: rgba(36, 38, 42, 0.14);
  --line-gold: rgba(170, 135, 63, 0.5);

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-title: "Cinzel", "Fraunces", "Palatino Linotype", Georgia, serif; /* Logo + Hauptueberschriften, rendert als Kapitalis */
  --font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* rhythm */
  --wrap: 1180px;
  --wrap-narrow: 880px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(3.5rem, 7vw, 5.5rem);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(24, 26, 30, 0.08);
  --shadow-md: 0 18px 44px rgba(25, 27, 30, 0.16);
  --shadow-lg: 0 30px 70px rgba(25, 27, 30, 0.28);

  --header-h: 78px;
  --ticker-h: 40px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, iframe { max-width: 100%; display: block; }
h1, h2, h3, .hero-title, .section-title, .legal-title { overflow-wrap: break-word; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
address { font-style: normal; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--anthracite);
  color: var(--light-on-dark);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold-soft); }

.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.55rem, 1rem + 2vw, 2.6rem); /* Cinzel-Kapitalis laeuft breiter als Fraunces */
  line-height: 1.14;
  letter-spacing: 0.01em;
  color: var(--anthracite);
}
.section-title-light { color: var(--light-on-dark); }
/* Haelt Wortgruppen in Ueberschriften zusammen, damit der Umbruch an der gewuenschten Stelle passiert */
.zeile-zusammen { white-space: nowrap; }

/* Drop-Cap-Anklang: erster Buchstabe der Hauptueberschriften etwas groesser */
.hero-title::first-letter,
.section-title::first-letter,
.legal-title::first-letter {
  font-size: 1.3em;
  line-height: 1;
}

.section-intro {
  margin-top: 1.1rem;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section {
  padding-block: var(--section-y);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-head { max-width: var(--wrap-narrow); margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-speisekarte .section-intro { max-width: none; }
/* Sektionen abwechselnd leicht absetzen: helles Weiss vs. helles Grau */
#aktuelles, #steak-freitag, #geschichte, #reservierung { background: var(--surface); }

/* keep anchored section titles clear of the fixed header */
.section, .panel-steak, .hero, #oeffnungszeiten { scroll-margin-top: calc(var(--header-h) + 8px); }

/* Messing-Trennlinie mit Ornament-Mitte zwischen Sektionen */
.zier-trenner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  height: 20px;
  margin-inline: auto;
  margin-block: -10px;
  position: relative;
  z-index: 1;
  color: var(--gold);
}
.zier-trenner::before,
.zier-trenner::after {
  content: "";
  flex: 1;
  height: 3px;
  background: var(--line-gold);
}
.zier-trenner svg { display: block; flex: none; width: 120px; height: auto; }

/* ---------- Buttons: eckig, Doppellinien-Border, Fuellung laeuft von unten ein ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fill: transparent;
  --btn-fg: #fff;
  --btn-line: rgba(255, 255, 255, 0.3);
  --btn-border: currentColor;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  background-color: var(--btn-bg);
  background-image: linear-gradient(var(--btn-fill), var(--btn-fill));
  background-repeat: no-repeat;
  background-size: 100% 0%;
  background-position: bottom;
  transition: background-size 0.28s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}
.btn:hover { background-size: 100% 100%; }
.btn::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--btn-line);
  pointer-events: none;
  transition: border-color 0.18s ease;
}
.btn-label { display: block; width: 100%; }
.btn-sub { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; opacity: 0.85; }

.btn-primary {
  --btn-bg: var(--gold);
  --btn-fill: var(--gold-light);
  --btn-fg: #2a1e0a;
  --btn-border: var(--gold-ink);
  --btn-line: rgba(42, 30, 10, 0.3);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  --btn-bg: transparent;
  --btn-fill: var(--anthracite);
  --btn-fg: var(--anthracite);
  --btn-border: var(--anthracite);
  --btn-line: rgba(44, 74, 50, 0.3);
}
.btn-secondary:hover { --btn-fg: var(--light-on-dark); --btn-line: rgba(236, 237, 239, 0.35); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fill: rgba(236, 237, 239, 0.14);
  --btn-fg: var(--light-on-dark);
  --btn-border: rgba(236, 237, 239, 0.55);
  --btn-line: rgba(236, 237, 239, 0.22);
}
.btn-ghost:hover { --btn-border: var(--gold-soft); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.nowrap { white-space: nowrap; }

/* ==========================================================================
   Header, einzeilig: Logo links, gruppierte Navigation (Dropdowns) rechts.
   Ganz oben transparent über dem Hero, beim Scrollen solide dunkel wie der Footer.
   ========================================================================== */
.site-header {
  --logo-h: 76px;
  position: fixed;
  inset: var(--ticker-h) 0 auto 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, top 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0.85rem var(--gutter);
}
.wordmark { display: flex; flex-direction: column; line-height: 1; flex: none; }
.wordmark-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.wordmark-tag {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--light-on-dark);
  margin-top: 0.35rem;
  opacity: 0.9;
}

/* gruppierte Navigation mit Dropdowns, rechts ausgerichtet */
.site-nav { margin-left: auto; display: flex; }
.site-nav .nav-list { display: flex; align-items: center; gap: clamp(0.15rem, 0.9vw, 1rem); }
.nav-item { position: relative; }
.nav-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--light-on-dark);
  background: none;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0.6rem 0.7rem;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-caret { width: 11px; height: 8px; opacity: 0.7; transition: transform 0.25s ease; }
.nav-item:hover .nav-top,
.nav-top:focus-visible,
.nav-top[aria-expanded="true"] { color: var(--gold-soft); }
.nav-item:hover .nav-caret,
.nav-top[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 222px;
  padding: 0.3rem;
  background: rgba(20, 22, 25, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-gold);
  border-top: 2px solid var(--gold);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 20;
}
/* unsichtbare Brücke, damit der Hover zwischen Button und Menü nicht abreißt */
.nav-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -0.5rem;
  height: 0.5rem;
}
.nav-item:hover .nav-menu,
.nav-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-menu a {
  display: block;
  padding: 0.6rem 1rem 0.6rem 0.8rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--light-on-dark);
  white-space: nowrap;
  border-left: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.nav-menu a + a { border-top: 1px solid rgba(236, 237, 239, 0.08); }
.nav-menu a:hover {
  color: var(--gold-soft);
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.header-cta-btn { flex: none; padding: 0.62rem 1.5rem; }

/* scrolled: solide dunkel wie der Footer + Schatten */
.site-header.is-scrolled {
  --logo-h: 52px;
  background: var(--anthracite-deep);
  border-bottom-color: var(--line-gold);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  top: 0;
}
/* offenes Mobil-Menue: Header-Streifen wird solide, damit kein Hero durchblitzt */
.site-header.nav-open { background: var(--anthracite-deep); }

/* mobile nav toggle */
.nav-toggle {
  display: none;
  flex: none;
  width: 46px; height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--light-on-dark);
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* mobile nav: gruppiertes Akkordeon */
.mobile-nav {
  background: var(--anthracite-deep);
  border-top: 1px solid var(--line-gold);
  padding: 1.25rem var(--gutter) 2rem;
  height: calc(100dvh - var(--ticker-h) - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav-list { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.m-group { border-bottom: 1px solid rgba(236, 237, 239, 0.14); }
.m-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.95rem 0.25rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--light-on-dark);
}
.m-top .nav-caret { width: 13px; height: 9px; }
.m-top[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
.m-sub { display: flex; flex-direction: column; padding: 0 0 0.7rem 0.6rem; }
.m-sub[hidden] { display: none; }
.m-sub a {
  padding: 0.6rem 0.25rem;
  font-family: var(--font-display);
  color: rgba(236, 237, 239, 0.82);
  font-weight: 600;
  font-size: 1.05rem;
}
.m-sub a:hover { color: var(--gold-soft); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + var(--ticker-h) + clamp(2rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(25, 27, 30, 0.55) 0%, rgba(25, 27, 30, 0.82) 55%, rgba(16, 17, 19, 0.94) 100%),
    linear-gradient(180deg, rgba(25, 27, 30, 0.35), rgba(16, 17, 19, 0.7));
}

.hero-inner {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
  color: var(--light-on-dark);
}

/* signature: hanging swaying brass sign */
.hero-sign {
  width: min(420px, 74vw);
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}
.hero-sign-img {
  width: 100%;
  border-radius: 6px;
  border: 2px solid rgba(170, 135, 63, 0.55);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,0,0,0.3);
}

.hero-eyebrow {
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 1rem + 2.6vw, 2.75rem); /* Cinzel-Kapitalis laeuft breiter als Fraunces */
  line-height: 1.14;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero-ornament {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
  color: var(--gold-soft);
}
.hero-ornament svg { display: block; }
.hero-lead {
  margin: 1.2rem auto 0;
  max-width: 56ch;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: rgba(236, 237, 239, 0.92);
}
.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* trust badge with star fill + count-up */
.trust-badge {
  margin-top: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.3rem;
  background: rgba(16, 17, 19, 0.5);
  border: 1px solid var(--line-gold);
  box-shadow: inset 0 0 0 3px rgba(16, 17, 19, 0.5), inset 0 0 0 4px rgba(170, 135, 63, 0.35);
  backdrop-filter: blur(3px);
}
.trust-stars {
  position: relative;
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
.trust-stars-base { color: rgba(236, 237, 239, 0.28); }
.trust-stars-fill {
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  color: var(--gold);
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.trust-text { font-size: 0.95rem; color: var(--light-on-dark); }
.trust-rating, .trust-count { color: #fff; font-weight: 700; }

/* ==========================================================================
   USP strip
   ========================================================================== */
.usp-strip {
  background: var(--anthracite);
  color: var(--light-on-dark);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
}
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  padding: 0.4rem 1rem;
  position: relative;
}
.usp-item + .usp-item::before {
  content: "";
  position: absolute;
  left: 0; top: 12%;
  height: 76%;
  width: 1px;
  background: var(--line-gold);
}
.usp-key {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--gold-soft);
}
.usp-val { font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(236, 237, 239, 0.82); }

/* ==========================================================================
   Geschichte / timeline
   ========================================================================== */
.section-geschichte { background: var(--bg); }
.timeline {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  padding-left: clamp(2.5rem, 8vw, 4rem);
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: clamp(0.75rem, 3vw, 1.25rem);
  top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(170, 135, 63, 0.25));
}
.timeline-item {
  position: relative;
  padding-bottom: clamp(1.4rem, 2.8vw, 2rem);
}
.timeline-nav { display: none; }
.tl-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.tl-btn:hover { background: var(--gold); border-color: var(--gold); color: #2a1e0a; }
.tl-btn:disabled { opacity: 0.3; cursor: default; background: transparent; color: var(--gold-ink); border-color: var(--line-gold); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(2.5rem, 8vw, 4rem) + clamp(0.75rem, 3vw, 1.25rem) - 6px);
  top: 4px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--gold);
}
.timeline-item-now::before { background: var(--gold); box-shadow: 0 0 0 5px rgba(170, 135, 63, 0.2); }
.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--gold-ink);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--anthracite);
  margin-bottom: 0.4rem;
}
.timeline-body p { color: var(--ink-soft); max-width: 60ch; }

@media (min-width: 760px) {
  .timeline { display: flex; flex-direction: row; align-items: flex-start; gap: clamp(1.5rem, 4vw, 2.5rem); max-width: none; padding-left: 0; padding-bottom: 0.4rem; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .timeline::-webkit-scrollbar { display: none; }
  .timeline-nav { display: flex; justify-content: center; gap: 0.7rem; margin-top: 1rem; }
  .timeline::before { display: none; }
  .timeline-item { flex: 0 0 clamp(238px, 31%, 300px); padding: 2.6rem 0 0 0; scroll-snap-align: start; }
  .timeline-item::before { left: 0; top: 4px; }
  .timeline-item::after { content: ""; position: absolute; top: 11px; left: 22px; right: calc(-1 * clamp(1.5rem, 4vw, 2.5rem)); height: 2px; background: linear-gradient(90deg, var(--gold), rgba(170, 135, 63, 0.55)); }
  .timeline-item:last-child::after { display: none; }
  .timeline-body p { max-width: none; }
  /* kein Einblende-Versatz in der horizontalen Leiste: verhindert kurz aufblitzende Verbindungslinien */
  .timeline .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* ==========================================================================
   Aktuelles: Aushänge wie am schwarzen Brett
   ========================================================================== */
.section-aktuelles { background: var(--bg); }
.aushang-brett {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3.5vw, 2.4rem);
  align-items: start;
  padding-block: 0.6rem;
}
.aushang {
  position: relative;
  background: #FCFAF3;
  border: 1px solid var(--line);
  padding: 2rem 1.6rem 1.6rem;
  box-shadow: 0 12px 28px rgba(24, 26, 30, 0.16);
  rotate: var(--au-rot, 0deg);
  transition: rotate 0.3s ease, translate 0.3s ease, box-shadow 0.3s ease;
}
.aushang:nth-child(3n + 1) { --au-rot: -1.2deg; }
.aushang:nth-child(3n + 2) { --au-rot: 0.9deg; translate: 0 0.6rem; }
.aushang:nth-child(3n)     { --au-rot: -0.6deg; }
.aushang:hover { rotate: 0deg; translate: 0 -0.3rem; box-shadow: var(--shadow-md); }
/* Messing-Reißnagel oben mittig */
.aushang::before {
  content: "";
  position: absolute;
  top: 0.7rem; left: 50%;
  width: 13px; height: 13px;
  margin-left: -6.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold-ink) 75%);
  box-shadow: 0 2px 4px rgba(24, 26, 30, 0.35);
}
.aushang-datum {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.6rem;
}
.aushang-titel {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--anthracite);
  margin-bottom: 0.5rem;
}
.aushang-text { color: var(--ink-soft); font-size: 0.98rem; }
.aushang-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--anthracite);
  font-weight: 700;
  border-bottom: 2px solid var(--line-gold);
  transition: color 0.2s, border-color 0.2s;
}
.aushang-link:hover { color: var(--gold); border-color: var(--gold); }

/* ==========================================================================
   Speisekarte als gedruckte Wirtshaus-Karte
   ========================================================================== */
.menukarte {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  background:
    linear-gradient(175deg, rgba(170, 135, 63, 0.05), transparent 30%),
    var(--surface);
  border: 4px double var(--gold);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 5vw, 3.4rem) clamp(1.2rem, 4vw, 3rem);
}
.menukarte::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line-gold);
  pointer-events: none;
}

.menukarte-kopf { text-align: center; margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.menukarte-marke {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.menukarte-geweih { display: block; margin: 0.9rem auto 0.7rem; color: var(--gold); }
.menukarte-untertitel {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.menukarte-gaenge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 4vw, 3rem) clamp(2.2rem, 5vw, 3.6rem);
  align-items: start;
}

.gang-kopf { text-align: center; margin-bottom: 1.3rem; }
.gang-zier { display: block; margin: 0 auto 0.5rem; color: var(--gold); }
.gang-titel {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--anthracite);
}

.gang-liste { display: flex; flex-direction: column; gap: 1.15rem; }
.gericht { display: block; }
.gericht-zeile {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.gericht-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
}
.gericht-punkte {
  flex: 1;
  border-bottom: 2px dotted rgba(24, 26, 30, 0.32);
  transform: translateY(-4px);
  min-width: 1.5rem;
}
.gericht-preis {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--gold-ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.gericht-note { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.1rem; }

/* Steak-Freitag: eingelegte Sonderkarte, leicht gedreht */
.steak-einlage {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 560px;
  background: #FFFDF6;
  border: 1px solid var(--gold);
  box-shadow: 0 10px 26px rgba(24, 26, 30, 0.18);
  padding: 1.7rem 1.8rem 1.5rem;
  rotate: -1.4deg;
  position: relative;
}
.steak-einlage::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(110, 42, 42, 0.45);
  pointer-events: none;
}
.einlage-tag {
  text-align: center;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.einlage-titel {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1.05;
  color: var(--gold);
  margin-top: 0.3rem;
}
.einlage-sub {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0.35rem 0 1.2rem;
}
.steak-einlage .gericht-preis { color: var(--gold); }
.einlage-note {
  margin-top: 1.2rem;
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.menukarte-schluss {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-gold);
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
}

/* Vegetarisch + Nachtisch teilen sich die rechte Spalte, damit unten keine Luecke bleibt */
.gang-stapel {
  display: flex;
  flex-direction: column;
  gap: clamp(2.2rem, 4vw, 3rem);
}

.menukarte-download {
  margin-top: 1.6rem;
  text-align: center;
}
.menukarte-download .btn svg { margin-right: 0.15em; }

/* ==========================================================================
   Steak-Freitag panel (heller Look, dezent warm)
   ========================================================================== */
.panel-steak {
  background: var(--bg);
  color: var(--ink);
  padding-block: var(--section-y);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.panel-steak-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}
.panel-steak-text { display: flex; flex-direction: column; align-items: flex-start; }
.panel-steak-lead { margin-top: 1.3rem; max-width: 54ch; color: var(--ink-soft); font-size: 1.1rem; }
.steak-facts {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 52ch;
}
.steak-facts li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}
.steak-facts li::before {
  content: "\25C6";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--gold);
  font-size: 0.8rem;
}
.panel-steak-hint {
  margin-top: 1.8rem;
  font-style: italic;
  color: var(--gold-ink);
}
.steak-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  color: var(--gold-ink);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.steak-badge svg { flex: none; color: var(--gold); }
.panel-steak-text > .btn { margin-top: auto; }

.panel-steak-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.steak-karte-vorschau {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--line-gold);
  box-shadow: 0 18px 45px rgba(36, 38, 42, 0.18);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.steak-karte-vorschau:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(36, 38, 42, 0.24); }
.steak-karte-vorschau img { display: block; width: 100%; height: auto; }
.steak-karte-hint {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.steak-karte-vorschau:hover .steak-karte-hint,
.steak-karte-vorschau:focus-visible .steak-karte-hint { opacity: 1; }
.steak-karte-dl { margin-top: auto; max-width: 400px; }

/* ==========================================================================
   Biergarten / Galerie als Postkarten-Sammlung
   ========================================================================== */
.postkarten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3.5vw, 2.6rem);
  align-items: start;
  padding-block: 0.6rem;
}
.postkarte {
  margin: 0;
  background: #FCFAF3;
  border: 1px solid var(--line);
  padding: 0.8rem 0.8rem 0.9rem;
  box-shadow: 0 12px 28px rgba(24, 26, 30, 0.16);
  rotate: var(--pk-rot, 0deg);
  transition: rotate 0.3s ease, translate 0.3s ease, box-shadow 0.3s ease;
}
.postkarte:nth-child(3n + 1) { --pk-rot: -1.7deg; }
.postkarte:nth-child(3n + 2) { --pk-rot: 1.2deg; translate: 0 0.7rem; }
.postkarte:nth-child(3n)     { --pk-rot: -0.7deg; }
.postkarte:hover {
  rotate: 0deg;
  translate: 0 -0.3rem;
  box-shadow: var(--shadow-md);
}
.postkarte-bild { position: relative; overflow: hidden; }
.postkarte-bild img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.poststempel {
  position: absolute;
  top: 10px;
  right: 8px;
  color: rgba(244, 238, 226, 0.85);
  rotate: -11deg;
  pointer-events: none;
  font-family: var(--font-body);
  font-weight: 600;
}
.postkarte figcaption {
  padding: 0.85rem 0.4rem 0.15rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Räumlichkeiten: Saal-Karten und Feier-CTA (nach der Postkarten-Galerie)
   ========================================================================== */
.section-raeumlichkeiten { background: var(--bg); }
.section-raeumlichkeiten .feiern-grid { margin-top: clamp(2.8rem, 6vw, 4.5rem); }
.feiern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.feiern-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feiern-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.feiern-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--anthracite);
  margin-bottom: 0.5rem;
}
.feiern-card p { color: var(--ink-soft); font-size: 0.98rem; }

.feiern-cta {
  margin-top: 2.4rem;
  text-align: center;
}
.feiern-cta p { font-family: var(--font-display); font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem); margin-bottom: 1.6rem; }
.feiern-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Stimmen der Gäste als aufgeschlagenes Gästebuch
   ========================================================================== */
.gaestebuch {
  position: relative;
  max-width: 1020px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 4px double var(--gold);
  box-shadow: var(--shadow-md);
}
/* Falz der Doppelseite */
.gaestebuch::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 56px;
  margin-left: -28px;
  background: linear-gradient(90deg, transparent, rgba(24, 26, 30, 0.1) 50%, transparent);
  pointer-events: none;
}
.gaestebuch-seite {
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 4vw, 2.8rem) clamp(1.4rem, 4vw, 2.6rem);
}
.gb-eintrag {
  margin: 0;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--line-gold);
}
.gaestebuch-seite .gb-eintrag:first-child { padding-top: 0.2rem; }
.gb-zeile {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}
.gb-quelle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.gb-sterne { color: var(--gold); letter-spacing: 0.1em; font-size: 1rem; white-space: nowrap; }
.gb-eintrag blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}
.gb-eintrag figcaption {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-ink);
}
.gb-eintrag figcaption::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.6rem;
}
.gb-cta {
  margin-top: auto;
  padding-top: 1.8rem;
  text-align: center;
}
.gb-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

/* ==========================================================================
   Reservierung + Öffnungszeiten
   ========================================================================== */
.section-reservierung {
  background: var(--bg);
  color: var(--ink);
}
.reservierung-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.reservierung-lead { margin-top: 1.3rem; max-width: 48ch; font-size: 1.1rem; color: var(--ink-soft); }
.reservierung-note { margin-top: 1.3rem; font-size: 0.92rem; color: var(--ink); max-width: 62ch; }

/* Standard-Box (Druckerei-Stil): nur Optik, keine Groessen. Wiederverwendbar via .karte */
.karte {
  position: relative;
  background:
    linear-gradient(175deg, rgba(170, 135, 63, 0.05), transparent 30%),
    var(--surface);
  color: var(--ink);
  border: 4px double var(--gold);
  box-shadow: var(--shadow-md);
}
.karte::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line-gold);
  pointer-events: none;
}
.hours-card {
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.hours-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--anthracite);
  margin-bottom: 1.2rem;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  white-space: nowrap;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.hours-table th { font-weight: 700; color: var(--anthracite); padding-right: 1rem; }
.hours-table td { color: var(--ink-soft); text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-hint { margin-top: 1.2rem; font-size: 0.9rem; color: var(--ink-soft); font-style: italic; }

/* ==========================================================================
   Newsletter: Anmeldekarte im Druckerei-Stil
   ========================================================================== */
.section-newsletter { background: var(--bg); }
.newsletter-karte {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  background:
    linear-gradient(175deg, rgba(170, 135, 63, 0.05), transparent 30%),
    var(--surface);
  border: 4px double var(--gold);
  box-shadow: var(--shadow-md);
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.4rem, 4vw, 3rem);
}
.newsletter-karte::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line-gold);
  pointer-events: none;
}
.newsletter-intro {
  margin: 1.1rem auto 0;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  text-wrap: balance;
}
.newsletter-form {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-input {
  font: inherit;
  color: var(--ink);
  background: #FFFDF6;
  border: 1px solid var(--gold-ink);
  border-radius: 0;
  padding: 0.85rem 1.1rem;
  min-width: min(320px, 100%);
}
.newsletter-input::placeholder { color: var(--ink-soft); opacity: 0.7; }
.newsletter-input:focus-visible { outline-offset: 1px; }
.newsletter-hint {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--ink-soft);
}
.newsletter-hint a {
  color: var(--gold-ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line-gold);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.newsletter-hint a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* visually hidden, aber fuer Screenreader vorhanden */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Anfahrt und Kontakt
   ========================================================================== */
.section-anfahrt { background: var(--bg); }
.anfahrt-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}
/* Kontakt als kompakte Zeilenliste mit Messing-Haarlinien, keine Loecher neben der Karte */
.anfahrt-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  border-top: 1px solid var(--line-gold);
}
.contact-block {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.4rem 1.4rem;
  align-items: baseline;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--line-gold);
}
.contact-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--gold-ink);
  margin: 0;
  letter-spacing: 0.02em;
}
.contact-block address, .contact-block p { color: var(--ink-soft); margin: 0; }
.tel-hinweis {
  margin-top: 0.4rem;
  max-width: 38ch;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.45;
}
.contact-link { color: var(--anthracite); font-weight: 700; border-bottom: 2px solid var(--line-gold); transition: color 0.2s, border-color 0.2s; }
.contact-link:hover { color: var(--gold); border-color: var(--gold); }

.anfahrt-map {
  overflow: hidden;
  min-height: 360px;
}
.anfahrt-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--anthracite-deep); color: rgba(236, 237, 239, 0.82); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.15fr 1.05fr;
  gap: 1.6rem 4rem;
  padding-block: clamp(1.8rem, 3.5vw, 2.8rem);
  align-items: start;
}
.footer-logo { width: 112px; max-width: 55%; height: auto; margin-bottom: 0.75rem; }
.footer-tag { max-width: 38ch; font-size: 0.9rem; }
.footer-stars { margin-top: 0.7rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }
.footer-stars span[aria-hidden] { color: var(--gold); letter-spacing: 0.08em; }
.footer-col { text-align: left; }
.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}
.footer-col address { line-height: 1.65; font-size: 0.92rem; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-hours { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.92rem; width: 100%; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1.5rem; border-bottom: 1px solid rgba(170, 135, 63, 0.16); padding-bottom: 0.45rem; }
.footer-hours li span:first-child { white-space: nowrap; }
.footer-hours li span:last-child { color: rgba(236, 237, 239, 0.7); white-space: nowrap; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.96rem; }
.footer-social-text { max-width: 26ch; font-size: 0.88rem; line-height: 1.5; color: rgba(236, 237, 239, 0.62); margin-bottom: 1rem; }
.footer-social { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.7rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(236, 237, 239, 0.2);
  color: rgba(236, 237, 239, 0.82);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { color: var(--anthracite-deep); background: var(--gold-soft); border-color: var(--gold-soft); }
.footer-social svg { width: 18px; height: 18px; flex: none; fill: currentColor; }
.footer-social a span { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.footer-base { border-top: 1px solid rgba(236, 237, 239, 0.14); }
.footer-base-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.4rem;
  font-size: 0.85rem;
  color: rgba(236, 237, 239, 0.6);
}
.footer-legal-links a { color: rgba(236, 237, 239, 0.75); }
.footer-legal-links a:hover { color: var(--gold-soft); }
/* Login dezent (Admin-Zugang unauffaellig) */
.footer-legal-links .footer-login { color: rgba(236, 237, 239, 0.3); font-size: 0.92em; }
.footer-legal-links .footer-login:hover { color: var(--gold-soft); }
/* Sterne im Footer als Link zu Google-Bewertungen */
.footer-stars { text-decoration: none; color: inherit; width: max-content; transition: color 0.2s ease; }
.footer-stars:hover { color: var(--gold-soft); }
/* Route-planen-Link im Kontaktblock */
.footer-route { display: inline-block; margin-top: 0.7rem; font-size: 0.9rem; font-weight: 700; color: var(--gold-soft); transition: color 0.2s ease; }
.footer-route:hover { color: #fff; }
/* Ornament oben am Footer */
.footer-zier { margin-top: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--gold); }

/* ==========================================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================================== */
.legal-main {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: var(--section-y);
  min-height: 70vh;
}
.legal-wrap { max-width: 820px; margin-inline: auto; padding-inline: var(--gutter); }
.legal-header { margin-bottom: 2.5rem; }
.legal-header .eyebrow { margin-bottom: 0.8rem; }
.legal-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.6rem);
  color: var(--anthracite);
  line-height: 1.14;
}
.legal-stand { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.95rem; }
.legal-section { margin-bottom: 2.4rem; }
.legal-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--anthracite);
  margin-bottom: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line-gold);
}
.legal-section h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 1.2rem 0 0.4rem;
}
.legal-section p, .legal-section li { color: var(--ink-soft); margin-bottom: 0.7rem; }
.legal-section ul { list-style: disc; padding-left: 1.4rem; }
.legal-section a { color: var(--anthracite); font-weight: 600; text-decoration: underline; text-decoration-color: var(--line-gold); }
.legal-section a:hover { color: var(--gold); }
.legal-todo {
  background: rgba(170, 135, 63, 0.12);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.legal-back { margin-top: 2rem; text-align: center; }

.legal-header-bar {
  --logo-h: 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line-gold);
}
.legal-header-bar .header-inner { min-height: 64px; }
.legal-header-bar .wordmark-tag { color: var(--ink-soft); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
.mobile-fab {
  display: none; position: fixed; z-index: 1000; right: 16px; bottom: 16px;
  align-items: center; gap: 0.5rem; padding: 0.85rem 1.15rem; border-radius: 999px;
  font-family: 'Source Sans 3', system-ui, sans-serif; font-weight: 700; font-size: 1rem; text-decoration: none;
  background: #2E3136; color: #F4F5F6; border: 1px solid #AA873F;
  box-shadow: 0 10px 26px rgba(24, 26, 30, 0.32);
}
.mobile-fab svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .site-header, .site-header.is-scrolled { --logo-h: 46px; }
  .wordmark { margin-right: auto; }
  .site-nav { display: none; }
  .header-cta-btn { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 1024px) {
  .mobile-fab { display: inline-flex; }
  .aushang-brett { grid-template-columns: repeat(2, 1fr); }
  .feiern-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-steak-inner { grid-template-columns: 1fr; }
  .panel-steak-text > .btn { margin-top: 2rem; }
  .steak-karte-dl { margin-top: 1.6rem; }
  .panel-steak-media { margin-top: 0.5rem; }
  .reservierung-grid { grid-template-columns: 1fr; }
  .anfahrt-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .gaestebuch { grid-template-columns: 1fr; }
  .gaestebuch::before { display: none; }
  .gaestebuch-seite + .gaestebuch-seite { padding-top: 0; }
}

@media (max-width: 768px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 0; }
  .usp-item:nth-child(3)::before, .usp-item:nth-child(odd)::before { display: none; }
  .usp-item:nth-child(even)::before { display: block; }
  .postkarten { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .postkarte:nth-child(3n + 2) { translate: 0 0; }
  .menukarte-gaenge { grid-template-columns: 1fr; }
  .steak-einlage { max-width: none; }
}

@media (max-width: 560px) {
  .aushang-brett { grid-template-columns: 1fr; }
  .aushang:nth-child(3n + 2) { translate: 0 0; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .feiern-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item + .usp-item::before { display: none; }
  .usp-item { padding-block: 0.7rem; border-bottom: 1px solid rgba(236, 237, 239, 0.12); }
  .usp-grid .usp-item:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gericht-zeile { flex-wrap: wrap; }
  .gericht-punkte { display: none; }
  .gericht-preis { margin-left: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-col { text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-logo { margin-inline: auto; }
  .footer-tag { max-width: 42ch; }
  .footer-stars { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-social-text { max-width: 42ch; margin-inline: auto; }
  .footer-tel-hinweis { max-width: 42ch; margin-inline: auto; }
  .footer-base-inner { flex-direction: column; align-items: center; text-align: center; }
  .trust-badge { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-sign { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .trust-stars-fill { transition: none; }
  .btn, .btn::after, .aushang, .feiern-card, .postkarte, .site-nav a::after { transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ==========================================================================
   Hero minimal: großes Schild, zwei Reservierungs-Buttons, dezente Bewertung
   ========================================================================== */
.hero-sign-lg { width: min(560px, 88vw); }
.hero-sign-lg .hero-sign-img { box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(170, 135, 63, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.3); }

.hero-actions-stack {
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(3rem, 6.5vw, 5rem);
}
.hero-actions-stack .btn { width: min(440px, 100%); }

.hero-reserv-note {
  margin: clamp(3rem, 6.5vw, 5rem) auto 0;
  max-width: 46ch;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(236, 237, 239, 0.78);
}
.hero-reserv-note + .hero-actions-stack { margin-top: 1.1rem; }

.hero-rating {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-rating .trust-stars { font-size: 1.05rem; }
.hero-rating-text { font-size: 0.9rem; color: var(--light-on-dark); }
.hero-rating-text strong { color: #fff; font-weight: 700; }
.hero-rating:hover .hero-rating-text { text-decoration: underline; text-decoration-color: var(--line-gold); text-underline-offset: 3px; }
.hero-rating:hover .trust-stars-fill { color: var(--gold-light); }

/* Reservierungs-Buttons in der Landing-Sektion */
.reservierung-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}
.reservierung-actions .btn { width: min(440px, 100%); }

/* ==========================================================================
   Reservierungs-Formular (Unterseiten reservierung-*.html)
   ========================================================================== */
.reserv-hinweis {
  background: rgba(170, 135, 63, 0.10);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 2.2rem;
  font-size: 0.96rem;
  color: var(--ink);
}
.reserv-hinweis strong { color: var(--gold-ink); }
.reserv-hinweis ul { margin: 0.5rem 0 0; padding-left: 1.2rem; list-style: disc; }
.reserv-hinweis li { margin-bottom: 0.2rem; }

.reserv-intro { margin-bottom: 1.8rem; color: var(--ink-soft); max-width: 60ch; }
/* Links in Hinweiskasten und Vorspann müssen als Links erkennbar sein,
   sonst klickt niemand auf das andere Formular oder die Telefonnummer. */
.reserv-hinweis a, .reserv-intro a {
  color: var(--gold-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reserv-hinweis a:hover, .reserv-intro a:hover { color: var(--gold); }

.reserv-form { display: grid; gap: 1.25rem; max-width: 660px; }
.reserv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field > label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--anthracite);
  letter-spacing: 0.01em;
}
.field .req { color: var(--gold-ink); }
.field input,
.field textarea,
.field select {
  font: inherit;
  color: var(--ink);
  background: #FFFDF6;
  border: 1px solid var(--gold-ink);
  border-radius: 0;
  padding: 0.75rem 0.9rem;
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); opacity: 0.7; }
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible { outline-offset: 1px; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #B23A2E; background: #FFF6F4; }
.field-error { color: #B23A2E; font-size: 0.85rem; font-weight: 600; }

.field-consent > label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.field-consent input { width: auto; margin-top: 0.25rem; flex: none; accent-color: var(--gold); }
.field-consent a { color: var(--anthracite); font-weight: 600; text-decoration: underline; text-decoration-color: var(--line-gold); }
.field-consent a:hover { color: var(--gold); }

.reserv-submit { margin-top: 0.3rem; justify-self: start; }
.form-status { margin-top: 0.4rem; font-weight: 600; font-size: 0.96rem; }
.form-status[data-state="error"] { color: #B23A2E; }
.form-status[data-state="success"] { color: #2F6B34; }

/* Honeypot: für Menschen unsichtbar, für Bots ein Köder */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 560px) {
  .reserv-row { grid-template-columns: 1fr; }
  .reservierung-actions .btn { width: 100%; }
}

/* ==========================================================================
   Veranstaltungen: Feature-Karten, Übersicht, Detail
   ========================================================================== */
.vk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2rem);
  align-items: stretch;
  max-width: 1000px;
  margin-inline: auto;
}
.vk {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.6s ease;
}
.vk.reveal { opacity: 0; transform: none; }
.vk.reveal.is-visible { opacity: 1; }
.vk:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.vk-bild { position: relative; aspect-ratio: 1 / 1; background: #16171a; overflow: hidden; }
/* unscharfer Hintergrund in den Plakat-Farben statt schwarzer Balken */
.vk-bild::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--vk-poster);
  background-size: cover;
  background-position: center;
  transform: scale(1.25);
  filter: blur(22px) brightness(0.6) saturate(1.15);
}
.vk-bild img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; transition: transform 0.45s ease; }
.vk:hover .vk-bild img { transform: scale(1.04); }
.vk-body {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 3px solid var(--gold);
  flex: 1 1 auto;
}
.vk-kat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.vk-titel { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; line-height: 1.15; color: var(--anthracite); }
.vk-datum { font-size: 0.9rem; font-weight: 700; color: var(--ink-soft); }
.vk-teaser {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vk-mehr {
  margin-top: auto;
  padding-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--anthracite);
}
.vk-mehr svg { transition: transform 0.25s ease; }
.vk:hover .vk-mehr { color: var(--gold); }
.vk:hover .vk-mehr svg { transform: translateX(4px); }
.vk-leer { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); font-style: italic; padding: 2rem 0; }
/* Platzhalter-Karte (gleiches Format wie eine Veranstaltung), signalisiert "bald mehr" */
.vk-ph { background: var(--surface); border: 1.5px dashed var(--line); box-shadow: none; }
.vk-ph:hover { transform: none; box-shadow: none; border-color: var(--line); }
.vk-ph-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  min-height: 240px;
}
.vk-ph-orn { width: 38px; height: 38px; color: var(--ink-soft); opacity: 0.55; margin-bottom: 0.6rem; }
.vk-ph-titel {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.35rem, 1rem + 1.1vw, 1.55rem);
  letter-spacing: 0.02em;
  color: var(--anthracite);
}
.vk-ph-text { font-size: 0.92rem; color: var(--ink-soft); max-width: 28ch; margin-top: 0.15rem; }

.aktuelles-cta { text-align: center; margin-top: clamp(1.6rem, 3vw, 2.4rem); }

/* Detailseite */
.vd { display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.vd-plakat {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #16171a;
  box-shadow: var(--shadow-md);
}
.vd-plakat img { width: 100%; height: auto; display: block; }
.vd-text .vk-kat { display: block; margin-bottom: 0.4rem; }
.vd-titel {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.6rem);
  line-height: 1.14;
  color: var(--anthracite);
  margin-bottom: 0.4rem;
}
.vd-datum { color: var(--gold-ink); font-weight: 700; margin-bottom: 1.5rem; }
.vd-infos { margin: 0 0 1.7rem; border-top: 1px solid var(--line-gold); }
.vd-info {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 0.3rem 1.2rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-gold);
}
.vd-info dt { font-family: var(--font-display); font-weight: 600; color: var(--gold-ink); margin: 0; }
.vd-info dd { margin: 0; color: var(--ink); }
.vd-body p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 62ch; }
.vd-pdf { margin-top: 0.6rem; }
.vd-zurueck { margin-bottom: 1.4rem; }
.vd-zurueck a { color: var(--gold-ink); font-weight: 700; border-bottom: 2px solid var(--line-gold); }
.vd-zurueck a:hover { color: var(--gold); border-color: var(--gold); }
.vd-fehlt { text-align: center; padding: 2rem 0; }
.vd-fehlt .btn { margin-top: 1.2rem; }

@media (max-width: 900px) {
  .vk-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .vd { grid-template-columns: 1fr; }
  .vd-plakat { max-width: 440px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .vk-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .vd-info { grid-template-columns: 1fr; gap: 0.1rem; padding: 0.6rem 0; }
}

/* ==========================================================================
   Bier-Profis-Banner (Partner, klickbar zu diebierprofis.de)
   ========================================================================== */
.bierprofis-strip {
  /* Hintergrund exakt in der Farbe des Original-Banners, damit er nahtlos durchläuft */
  background: #333333;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.bp-banner {
  display: block;
  max-width: 1212px;
  margin-inline: auto;
}
.bp-original { display: block; width: 100%; height: auto; }

/* ==========================================================================
   Speisekarte als PDF-Karten
   ========================================================================== */
.karten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 2.6rem);
  max-width: 1020px;
  margin-inline: auto;
}
.pdf-karte {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(175deg, rgba(170, 135, 63, 0.06), transparent 32%), var(--surface);
  border: 4px double var(--gold);
  box-shadow: var(--shadow-md);
  padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1.2rem, 2.4vw, 1.8rem);
  text-align: center;
}
.pdf-karte::before { content: ""; position: absolute; inset: 9px; border: 1px solid var(--line-gold); pointer-events: none; }
.pdf-karte-badge {
  align-self: center;
  background: var(--anthracite);
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  margin-bottom: 1rem;
}
.pdf-karte-marke { font-weight: 700; font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-ink); }
.pdf-karte .menukarte-geweih { display: block; margin: 0.9rem auto 0.7rem; color: var(--gold); }
.pdf-karte-titel { font-family: var(--font-title); font-weight: 700; font-size: clamp(1.4rem, 1rem + 1.4vw, 1.9rem); letter-spacing: 0.01em; color: var(--anthracite); }
.pdf-karte-sub { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--ink-soft); margin-top: 0.4rem; }
.pdf-karte-badge-plain { background: transparent; color: var(--gold-ink); border: 1px solid var(--line-gold); }
.pdf-karte-links { margin-top: auto; padding-top: 1.4rem; display: flex; gap: 0.7rem; }
.pdf-karte-links .btn { flex: 1; }
.pdf-btn { flex-direction: row; gap: 0.5rem; }
.pdf-btn svg { flex: none; }

/* Innen + Außen als zwei Vorschauen */
.pdf-doppel { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1.2rem; margin-bottom: 1.3rem; }
.pdf-vorschau-fig { margin: 0; }
.pdf-vorschau-fig figcaption {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.pdf-download { margin-top: auto; width: 100%; display: flex; }

/* Eingebettete PDF-Vorschau */
.pdf-vorschau {
  position: relative;
  display: block;
  aspect-ratio: 841.92 / 595.2;
  border: 1px solid var(--line);
  background: #FCFAF3;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.pdf-vorschau::before {
  content: "Zum Ansehen anklicken";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
}
.pdf-vorschau:hover { box-shadow: var(--shadow-md); }
.pdf-vorschau-canvas { position: absolute; top: 0; left: 0; z-index: 1; width: 100%; height: auto; display: block; }
.pdf-vorschau-hint {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem;
  background: linear-gradient(to top, rgba(20, 21, 24, 0.92), rgba(20, 21, 24, 0));
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.pdf-vorschau:hover .pdf-vorschau-hint,
.pdf-vorschau:focus-visible .pdf-vorschau-hint { opacity: 1; }

@media (max-width: 700px) {
  .karten-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ==========================================================================
   Räumlichkeiten-Galerie + Lightbox
   ========================================================================== */
.raeume-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.8vw, 1.4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.raum-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.raum-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  margin: 0;
  cursor: pointer;
  background: #e5e2db;
  overflow: hidden;
}
.raum-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.raum-card-media:hover img { transform: scale(1.05); }
.raum-card-badge {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  background: rgba(20, 21, 24, 0.8);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.24rem 0.55rem;
}
.raum-card-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(20, 21, 24, 0.3);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.raum-card-media:hover .raum-card-zoom,
.raum-card-media:focus-visible .raum-card-zoom { opacity: 1; }
.raum-card-zoom svg { width: 42px; height: 42px; }
.raum-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  text-align: left;
}
.raum-card-body h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.1rem; color: var(--anthracite); }
.raum-card-body p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.4; flex: 1; }
.raum-galerie-btn { margin-top: 0.7rem; align-self: flex-start; flex-direction: row; padding: 0.55rem 1rem; font-size: 0.85rem; }

.raeume-lightbox { position: fixed; inset: 0; z-index: 2000; display: flex; }
.raeume-lightbox[hidden] { display: none; }
.rlb-backdrop { position: absolute; inset: 0; background: rgba(12, 13, 15, 0.95); }
.rlb-inner {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(0.8rem, 2vw, 1.4rem);
  gap: 0.8rem;
}
.rlb-top { display: flex; align-items: center; gap: 1rem; color: #fff; z-index: 1; }
.rlb-title { font-family: var(--font-title); font-size: 1.15rem; letter-spacing: 0.02em; }
.rlb-counter { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; }
.rlb-close { margin-left: auto; background: none; border: 0; color: #fff; font-size: 2.1rem; line-height: 1; cursor: pointer; width: 2.6rem; height: 2.6rem; }
.rlb-stage { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; }
.rlb-img { width: 100%; height: 100%; object-fit: contain; cursor: zoom-in; transition: transform 0.25s ease; }
.rlb-img.is-zoomed { cursor: zoom-out; }
.rlb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 3rem; height: 3rem;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.rlb-nav:hover { background: var(--gold); border-color: var(--gold); color: #2a1e0a; }
.rlb-prev { left: 0.3rem; }
.rlb-next { right: 0.3rem; }
.rlb-thumbs { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.3rem 0.1rem; scrollbar-width: thin; }
.rlb-thumb {
  flex: 0 0 auto;
  width: 88px; height: 62px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.rlb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rlb-thumb:hover { opacity: 0.85; }
.rlb-thumb[aria-current="true"] { opacity: 1; border-color: var(--gold); }

@media (max-width: 1080px) {
  .raeume-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; }
}
@media (max-width: 760px) {
  .rlb-thumbs { display: none; }
  .rlb-nav { width: 2.6rem; height: 2.6rem; }
}
@media (max-width: 540px) {
  .raeume-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* ==========================================================================
   Galerie-Seite (galerie.html)
   ========================================================================== */
.galerie-kopf { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.galerie-titel {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
  color: var(--anthracite);
  line-height: 1.12;
}
.galerie-titel::first-letter { font-size: 1.3em; line-height: 1; }
.galerie-desc { margin-top: 1.1rem; color: var(--ink-soft); font-size: 1.1rem; max-width: 60ch; }
.galerie-count {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.galerie-grid { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 14px; }
.galerie-leer { color: var(--ink-soft); }
.galerie-tile {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: #e5e2db;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.galerie-tile img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.5s ease, opacity 0.2s ease; }
.galerie-tile:hover img { transform: scale(1.05); }
.galerie-tile:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.galerie-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  text-align: center;
}
.galerie-cta p { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ink); margin-bottom: 1.3rem; }

@media (max-width: 900px) { .galerie-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .galerie-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Geschichte-Bildergalerie
   ========================================================================== */
.geschichte-galerie { margin-top: clamp(2.2rem, 4vw, 3rem); }
.geschichte-galerie-titel {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  color: var(--anthracite);
  text-align: center;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.gg-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(0.6rem, 1vw, 0.85rem);
}
@media (max-width: 900px) { .gg-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .gg-grid { grid-template-columns: repeat(2, 1fr); } }
.gg-tile {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  margin: 0;
  background: #e5e2db;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gg-tile > img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.55s ease; }
.gg-tile:hover > img { transform: scale(1.06); }
.gg-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 0.55rem 0.45rem;
  background: linear-gradient(to top, rgba(20, 21, 24, 0.88), rgba(20, 21, 24, 0));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.25;
}
.gg-tile:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.rlb-caption { margin: 0; padding: 0.2rem 0.5rem; color: rgba(255, 255, 255, 0.88); text-align: center; font-size: 0.98rem; }

/* ==========================================================================
   Ferienbetrieb-Hinweis (kein Event, bewusst abgesetzt)
   ========================================================================== */
.ferien-hinweis {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 2.8vw, 2.2rem) clamp(1.4rem, 3vw, 2.6rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}
.fh-body { min-width: 0; }
.fh-media {
  width: clamp(160px, 16vw, 210px);
  margin-right: clamp(1rem, 5vw, 4.5rem);
  display: block;
  text-align: center;
  text-decoration: none;
  transform: rotate(1.8deg);
  transition: transform 0.25s ease;
}
.fh-media img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  padding: 4px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.fh-media:hover { transform: rotate(0deg) translateY(-3px); }
/* Platzhalter fuer den Ferien-Aushang, bis der neue Banner geliefert wird */
.fh-aushang-platzhalter {
  width: clamp(160px, 16vw, 210px);
  margin-right: clamp(1rem, 5vw, 4.5rem);
  aspect-ratio: 709 / 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: rgba(170, 135, 63, 0.06);
  border: 1.5px dashed var(--line-gold);
  border-radius: var(--radius);
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
}
.fh-media-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.fh-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.fh-titel {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1.3vw, 1.75rem);
  letter-spacing: 0.02em;
  color: var(--anthracite);
  margin-top: 0.35rem;
}
.fh-text { margin-top: 0.7rem; color: var(--ink); max-width: 64ch; }
.fh-text strong { color: var(--anthracite); font-weight: 700; }
.fh-zeiten { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 1.2rem; max-width: 480px; }
.fh-zeiten li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.45rem;
  font-size: 0.95rem;
}
.fh-zeiten li:last-child { border-bottom: none; padding-bottom: 0; }
.fh-zeiten li span:first-child { color: var(--ink-soft); }
.fh-zeiten li span:last-child { font-weight: 700; color: var(--anthracite); white-space: nowrap; }
@media (max-width: 700px) {
  .ferien-hinweis { grid-template-columns: 1fr; }
  .fh-media, .fh-aushang-platzhalter { justify-self: center; }
}

/* Vergangene Veranstaltung */
.vk-vorbei-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  z-index: 2;
  background: rgba(20, 21, 24, 0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}
.vk--vorbei .vk-bild img { filter: grayscale(0.45) brightness(0.92); }
.vd-vorbei {
  display: inline-block;
  margin-top: 0.7rem;
  background: rgba(20, 21, 24, 0.06);
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0.85rem;
  font-style: italic;
}

/* ==========================================================================
   Info-Leiste (statisch, ganz oben über dem Header)
   ========================================================================== */
.news-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1rem;
  background: var(--anthracite-deep);
  border-bottom: 1px solid var(--line-gold);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.news-bar.is-hidden { transform: translateY(-100%); }
.no-newsbar { --ticker-h: 0px; }
.no-newsbar .news-bar { display: none; }
.news-tag {
  flex: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.news-text {
  margin: 0;
  color: var(--light-on-dark);
  font-size: 0.84rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.news-bar:hover .news-text { color: #fff; }
@media (max-width: 720px) {
  :root { --ticker-h: 62px; }
  .news-bar { padding: 0.3rem 0.9rem; }
  .news-tag { font-size: 0.64rem; }
  .news-text { white-space: normal; font-size: 0.73rem; line-height: 1.3; }
}

.footer-tel-hinweis {
  margin-top: 0.7rem;
  max-width: 34ch;
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.4;
  color: rgba(236, 237, 239, 0.6);
}
.footer-login { opacity: 0.55; }
.footer-login:hover { opacity: 1; }

/* Newsletter: Einwilligung (Double-Opt-In) */
.nl-consent {
  flex-basis: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
}
.nl-consent input { margin-top: 0.22rem; accent-color: var(--gold); flex: none; }

/* ==========================================================================
   Google-Maps-Consent (Zwei-Klick)
   ========================================================================== */
.map-consent {
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}
.map-consent p { max-width: 46ch; color: var(--ink-soft); font-size: 0.92rem; }
.anfahrt-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ==========================================================================
   Stimmen der Gäste (3 Karten)
   ========================================================================== */
.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  align-items: stretch;
}
.stimme {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 2.8vw, 2.1rem);
  text-align: center;
}
.stimme-sterne { color: var(--gold); letter-spacing: 0.28em; font-size: 0.95rem; margin-bottom: 1rem; }
.stimme blockquote {
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
}
.stimme figcaption {
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.stimmen-fuss { margin-top: clamp(1.8rem, 3.5vw, 2.6rem); text-align: center; }
.stimmen-fuss p { font-family: var(--font-display); font-style: italic; color: var(--ink-soft); margin-bottom: 1rem; }
@media (max-width: 900px) { .stimmen-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* ==========================================================================
   Datenschutz-Hinweis-Popup
   ========================================================================== */
.consent-popup {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1900;
  width: min(400px, calc(100vw - 32px));
  background: var(--anthracite-deep);
  color: var(--light-on-dark);
  border: 1px solid var(--line-gold);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  padding: 1.2rem 1.3rem 1.3rem;
}
.consent-titel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.consent-text { font-size: 0.88rem; line-height: 1.5; color: rgba(236, 237, 239, 0.85); margin-bottom: 1rem; }
.consent-text a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.consent-text a:hover { color: #fff; }
.consent-btn { width: 100%; }

/* Der Hinweis darf keine Bedienelemente verdecken: Platz am Seitenende
   reservieren und den mobilen Reservieren-Knopf pausieren, bis bestätigt ist. */
body.consent-offen .site-footer { padding-bottom: calc(var(--consent-h, 0px) + 1rem); }
body.consent-offen .mobile-fab { display: none; }

/* ==========================================================================
   Mobile Verdichtung: seitliches Wischen statt Endlos-Scrollen
   (nur <= 760px, Desktop bleibt unverändert)
   ========================================================================== */
@media (max-width: 760px) {
  :root { --section-y: 2.75rem; }
  .section-head { margin-bottom: 1.4rem; }

  /* -- gemeinsames Wisch-Muster: volle Breite, Snap, ohne Scrollbalken -- */
  .vk-grid, .stimmen-grid, .gg-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.9rem;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 0.4rem;
    scrollbar-width: none;
    max-width: none;
  }
  .vk-grid::-webkit-scrollbar, .stimmen-grid::-webkit-scrollbar, .gg-grid::-webkit-scrollbar { display: none; }

  /* Veranstaltungen: eine Karte pro Blick, Rest anwischbar */
  .vk { flex: 0 0 80%; scroll-snap-align: center; }

  /* Bewertungen: eine Stimme pro Blick */
  .stimme { flex: 0 0 82%; scroll-snap-align: center; }

  /* Geschichte-Bilder: einreihiger Filmstreifen */
  .gg-tile { flex: 0 0 132px; scroll-snap-align: start; }

  /* Zeitleiste: horizontal wischen wie am Desktop statt 11 Einträge untereinander */
  .timeline {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.3rem;
    max-width: none;
    padding: 0 var(--gutter) 0.4rem;
    margin-inline: calc(-1 * var(--gutter));
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .timeline::-webkit-scrollbar { display: none; }
  .timeline::before { display: none; }
  .timeline-item { flex: 0 0 76vw; padding: 2.2rem 0 0 0; scroll-snap-align: start; }
  .timeline-item::before { left: 0; top: 4px; }
  .timeline-item::after {
    content: "";
    position: absolute;
    top: 11px; left: 22px; right: -1.3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(170, 135, 63, 0.55));
  }
  .timeline-item:last-child::after { display: none; }
  .timeline .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .timeline-nav { display: flex; }
  .timeline-body p { max-width: none; }

  /* Ferien-Karte: Aushang kleiner */
  .fh-media, .fh-aushang-platzhalter { width: 120px; margin-right: 0; }
}

@media (max-width: 560px) {
  /* Räume: 2x2-Raster statt 4 großer Karten untereinander */
  .raeume-grid { grid-template-columns: 1fr 1fr; max-width: none; margin-inline: 0; gap: 0.8rem; }
  .raum-card-body { padding: 0.75rem 0.75rem 0.9rem; gap: 0.3rem; }
  .raum-card-body h3 { font-size: 0.98rem; }
  .raum-card-body p { display: none; }
  .raum-galerie-btn { align-self: stretch; padding: 0.5rem 0.3rem; font-size: 0.78rem; margin-top: 0.4rem; }
  .raum-card-badge { font-size: 0.6rem; padding: 0.2rem 0.45rem; top: 0.45rem; right: 0.45rem; }
}
