/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'AlfaSlabOne';
  src: url('fonts/AlfaSlabOne-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-latin-ext.woff2') format('woff2');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
  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: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-latin.woff2') format('woff2');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
  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: 'Oswald';
  src: url('fonts/Oswald-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('fonts/Oswald-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VARIABLEN
   ============================================================ */
:root {
  --bg:          #cda95e;
  --bg-alt:      #c09d54;
  --bg-card:     #b49048;
  --bg-dark:     #1a1209;
  --bg-dark2:    #261a0e;
  --red:         #9B0C0C;
  --red-dark:    #6A0808;
  --red-light:   #C01818;
  --ink:         #1a1209;
  --ink-mid:     #3a2a18;
  --ink-muted:   #6a5040;
  --sepia:       #8B6422;
  --sepia-light: #C9A84C;
  --sepia-pale:  #d4b878;
  --border:      #7a5c28;
  --border-light:#c4a060;
  --stamp-bg:    #7B2010;
  --nav-h:       72px;
  --white:       #fff;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  /* echtes altes Papier als fixierter Hintergrund */
  background-color: #c9a05a;
  background-image:
    radial-gradient(ellipse at 50% 50%, transparent 28%, rgba(35,18,5,0.22) 100%),
    url('bg-paper.jpg');
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  color: var(--ink);
  font-family: 'Lato', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Impact, sans-serif;
  line-height: 1.1;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

/* Doppellinie (Vintage-Zeitungsdruckstil) */
.double-rule {
  border: none;
  display: block;
  width: 100%;
  height: 7px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: transparent;
  margin: 0;
}

.double-rule--red {
  border-color: var(--red);
}

/* Sternen-Ornament-Zeile */
.star-row {
  text-align: center;
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.7em;
  padding-left: 0.7em;
  margin: 0.75rem 0;
  font-family: 'Oswald', sans-serif;
}

/* Mittellinie mit Ornament */
.ornament-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  color: var(--sepia);
  max-width: 500px;
}
.ornament-rule::before,
.ornament-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  box-shadow: 0 2px 0 var(--border-light);
}

/* Abschnitts-Header im Plakat-Stil */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 0.45rem 2.5rem;
  margin: 0.5rem 0;
  position: relative;
}
/* innere Doppellinie */
.section-title::before {
  content: '';
  position: absolute;
  top: 4px; left: 0; right: 0;
  border-top: 1px solid rgba(26,18,9,0.3);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  border-bottom: 1px solid rgba(26,18,9,0.3);
}

.section-title--red { color: var(--red); border-color: var(--red); }
.section-title--red::before { border-color: rgba(155,12,12,0.3); }
.section-title--red::after  { border-color: rgba(155,12,12,0.3); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  text-align: center;
}

.btn--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--bg);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--bg);
}

.btn--ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.btn--ink:hover {
  background: transparent;
  color: var(--ink);
}

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn--sepia {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.btn--sepia:hover {
  background: var(--ink-mid);
  border-color: var(--ink-mid);
  color: var(--bg);
}

.btn--whatsapp {
  background: #1a6e38;
  border-color: #1a6e38;
  color: var(--bg);
}
.btn--whatsapp:hover {
  background: #0f4a24;
  border-color: #0f4a24;
}

.btn--small { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

/* ============================================================
   NAVIGATION (dunkel, Kontrast zur hellen Seite)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 3px solid var(--red);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--bg);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__logo:hover { color: var(--bg); }

.nav__logo-sub {
  font-weight: 400;
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  color: var(--sepia-pale);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  color: var(--sepia-pale);
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover {
  color: var(--bg);
  border-bottom-color: var(--red);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

/* ============================================================
   HERO – RETRO-POSTER
   ============================================================ */
.hero {
  padding: 3rem 1.5rem 4rem;
  background-color: transparent;
  position: relative;
}

/* Äußerer Posterrahmen */
.hero__poster {
  max-width: 960px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  box-shadow:
    inset 0 0 0 5px var(--bg),
    inset 0 0 0 7px var(--ink);
  padding: 2rem 2.5rem 2.5rem;
  position: relative;
  background-color: transparent;
}

/* Oberes Banner mit TESSEN / AM BISMARCKSTEIN */
.hero__banner {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 14vw, 8.5rem);
  line-height: 0.9;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  /* leichte Textur für verwitterten Look */
  text-shadow: 2px 3px 0 rgba(155,12,12,0.15);
  flex-shrink: 0;
}

.hero__title-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0.6rem;
}

.hero__am {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  letter-spacing: 0.35em;
  color: var(--ink-mid);
  text-transform: uppercase;
}

.hero__bismarck {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
}

/* Trennlinie unter dem Banner */
.hero__banner-rule {
  margin: 0.75rem 0 1.5rem;
}

/* Mittlerer Bereich: Slideshow full-width, Stempel darüber */
.hero__content {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Slideshow – volle Posterbreite */
.hero__slideshow {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink-mid);
  background: #3a2510;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero__slide.active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.35) contrast(1.05) brightness(0.88);
}

/* Punkte-Navigation */
.hero__slide-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(240,232,213,0.45);
  transition: background 0.3s;
  cursor: pointer;
}
.hero__dot.active { background: rgba(240,232,213,0.95); }

/* Kronkorken "EIN STÜCK BERLIN" */
.hero__stamp-wrap {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  filter: drop-shadow(2px 5px 14px rgba(0,0,0,0.5));
}

.hero__stamp {
  width: 152px;
  height: 152px;
  opacity: 0.82;
  background: radial-gradient(circle at 40% 38%, #c8391a 0%, #9B0C0C 48%, #6a0808 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem 0.8rem;
  color: var(--bg);
  position: relative;
  /* 18 Zähne – geometrisch exakt berechnet (outer r=50%, inner r=43%) */
  clip-path: polygon(
    50.0% 0.0%,  57.5% 7.7%,  67.1% 3.0%,  71.5% 12.8%,
    82.1% 11.7%, 82.9% 22.4%, 93.3% 25.0%, 90.4% 35.3%,
    99.2% 41.3%, 93.0% 50.0%, 99.2% 58.7%, 90.4% 64.7%,
    93.3% 75.0%, 82.9% 77.6%, 82.1% 88.3%, 71.5% 87.2%,
    67.1% 97.0%, 57.5% 92.3%, 50.0% 100%,  42.5% 92.3%,
    32.9% 97.0%, 28.5% 87.2%, 17.9% 88.3%, 17.1% 77.6%,
     6.7% 75.0%,  9.6% 64.7%,  0.8% 58.7%,  7.0% 50.0%,
     0.8% 41.3%,  9.6% 35.3%,  6.7% 25.0%, 17.1% 22.4%,
    17.9% 11.7%, 28.5% 12.8%, 32.9% 3.0%,  42.5% 7.7%
  );
}

/* innerer Goldring */
.hero__stamp::before {
  content: '';
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 2px solid rgba(205,169,94,0.55);
}

.hero__stamp .stamp-top {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.88;
}
.hero__stamp .stamp-main {
  font-family: 'AlfaSlabOne', serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0.15rem 0;
}
.hero__stamp .stamp-stars {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  opacity: 0.8;
  padding-left: 0.3em;
}

/* CTA Button */
.hero__cta {
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Unterer Postertext */
.hero__footer {
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
  text-align: center;
}
.hero__footer .headline-row {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.hero__footer .tagline-row {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.section--about {
  background: transparent;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about__lead {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--red);
  padding-left: 1rem;
}

.about__text p {
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text strong { color: var(--ink); }
.about__text em { color: var(--red); font-style: normal; font-weight: 700; }

.about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.feature-badge {
  border: 2px solid var(--border);
  padding: 1rem 0.75rem;
  text-align: center;
  background: transparent;
  position: relative;
}
.feature-badge::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(122,92,40,0.2);
}

.feature-badge__icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  display: block;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.feature-badge__text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.4;
}
.feature-badge__sub {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-family: 'Lato', sans-serif;
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* ============================================================
   ÖFFNUNGSZEITEN
   ============================================================ */
.section--hours {
  background: transparent;
}

.hours-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 2px solid var(--ink);
}
.hours-table thead tr {
  background: var(--ink);
}
.hours-table thead td {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--bg);
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
}

.hours-table tbody tr {
  border-bottom: 1px solid rgba(122,92,40,0.25);
  transition: background 0.15s;
}
.hours-table tbody tr:last-child { border-bottom: none; }
.hours-table tbody tr:hover { background: rgba(122,92,40,0.05); }

.hours-table tbody td {
  padding: 0.8rem 1.2rem;
  font-size: 0.98rem;
}
.hours-table tbody td:first-child {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-size: 0.9rem;
}
.hours-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--ink);
}
.hours-table tbody tr.closed td {
  color: var(--ink-muted);
  opacity: 0.6;
}
.hours-table tbody tr.closed td:last-child {
  font-weight: 400;
  font-style: italic;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.section--contact {
  background: transparent;
  border-top: 1px solid var(--border-light);
}

/* Zentrierter Poster-Rahmen */
.contact__poster {
  max-width: 620px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  box-shadow:
    inset 0 0 0 4px var(--bg-alt),
    inset 0 0 0 7px var(--ink);
  padding: 3rem 3.5rem;
  text-align: center;
  background: transparent;
  position: relative;
}

/* Eckenornamente */
.contact__poster::after {
  content: '◆';
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  color: var(--sepia);
  font-size: 0.55rem;
  opacity: 0.6;
}
.contact__poster::before {
  content: '◆';
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  color: var(--sepia);
  font-size: 0.55rem;
  opacity: 0.6;
}

.contact__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--sepia);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact__address {
  font-style: normal;
  color: var(--ink-mid);
  line-height: 2.1;
  font-size: 1.05rem;
}

.contact__sep {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--sepia);
}
.contact__sep::before,
.contact__sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.contact__btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.contact__maps-link {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.contact__maps-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  border-top: 3px solid var(--sepia);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.cookie-banner.visible { display: block; }

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 220px;
  font-size: 0.88rem;
  color: var(--sepia-pale);
  line-height: 1.6;
}
.cookie-banner__text strong {
  color: var(--bg);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.cookie-banner__text a {
  color: var(--sepia-light);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.5);
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 6px solid var(--ink);
  border-top-color: var(--red);
  padding: 0;
}

.footer__top {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 2rem 1.5rem;
}

.footer__top-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--bg);
  letter-spacing: 0.05em;
}

.footer__logo-sub {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  color: var(--sepia-pale);
  margin-top: 2px;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer__links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--sepia-pale);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--bg); }

.footer__bottom {
  padding: 1rem 1.5rem;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: var(--ink-muted);
  color: rgba(201,168,76,0.4);
}
.footer__bottom a {
  color: rgba(201,168,76,0.5);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.2s;
}
.footer__bottom a:hover {
  color: var(--sepia-pale);
  text-decoration-color: rgba(201,168,76,0.4);
}

/* ============================================================
   GETRÄNKEKARTE – MENÜSEITE
   ============================================================ */
.menu-page { padding-bottom: 5rem; }

.menu-page-hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  background: transparent;
  border-bottom: 1px solid var(--border-light);
}
.menu-page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.menu-page-hero .sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--sepia);
  text-transform: uppercase;
}

.menu-block { padding: 3.5rem 0 0; }

.menu-block-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.menu-block-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  letter-spacing: 0.2em;
  color: var(--ink);
  text-transform: uppercase;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  display: inline-block;
  padding: 0.4rem 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.5rem;
  align-items: start;
}

.menu-category { margin-bottom: 2.5rem; }

.menu-category__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.menu-category__title::before {
  content: '◆';
  color: var(--red);
  font-size: 0.5rem;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.menu-list { list-style: none; padding: 0; }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.28rem 0;
  border-bottom: 1px dotted rgba(122,92,40,0.3);
}
.menu-item:last-child { border-bottom: none; }

.menu-item__name {
  flex: 1;
  color: var(--ink-mid);
  font-size: 0.88rem;
  line-height: 1.4;
}
.menu-item__price {
  flex-shrink: 0;
  color: var(--red);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.menu-divider {
  border: none;
  border-top: 1px solid rgba(122,92,40,0.2);
  margin: 0.4rem 0 1rem;
}

.menu-footnote {
  margin-top: 3rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-light);
  background: transparent;
}
.menu-footnote p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.menu-footnote strong {
  color: var(--ink-mid);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
}

/* ============================================================
   IMPRESSUM / DATENSCHUTZ
   ============================================================ */
.legal-page {
  padding: 5rem 0 4rem;
  min-height: calc(100vh - var(--nav-h));
}

.legal-page__header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}
.legal-page__header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
}

.legal-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-light);
}
.legal-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p, .legal-content li {
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 0.9rem; }
.legal-content a { color: var(--red); text-decoration: underline; }
.legal-content .placeholder {
  color: var(--red);
  font-weight: 700;
  background: rgba(155,12,12,0.08);
  padding: 0.1em 0.4em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about__features { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll, scroll;
    background-image:
      radial-gradient(ellipse at 50% 50%, transparent 28%, rgba(35,18,5,0.22) 100%),
      url('bg-paper-mobile.jpg');
  }

  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-dark2);
    border-bottom: 2px solid var(--red);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.3rem;
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }

  .hero__banner { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero__poster { padding: 1.25rem 1.25rem 1.75rem; }
  .hero__slideshow { height: 260px; }
  .hero__stamp-wrap { top: 0.5rem; right: 0.5rem; }

  .about__features { grid-template-columns: repeat(3, 1fr); }

  .footer__top-inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__buttons { width: 100%; }
  .cookie-banner__buttons .btn { flex: 1; }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 560px) {
  .about__features { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-block-title { padding: 0.4rem 1rem; font-size: 1.1rem; }
  .hero__stamp { width: 110px; height: 110px; }
  .hero__stamp .stamp-main { font-size: 1.0rem; }
  .hero__stamp .stamp-top { font-size: 0.55rem; }

  /* Buttons gleichbreit wenn untereinander */
  .hero__cta { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero__cta .btn { text-align: center; }
  .contact__btn-row { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .contact__btn-row .btn { text-align: center; }
}
