/* MiMino Kitchen – Design-System.
   Farb- und Typo-Tokens stammen aus dem Design-Mockup; Layout ist mobile-first
   neu aufgebaut (das Mockup hatte keine Breakpoints). */

/* ---------- Fonts (selbst gehostet, kein Google-CDN → keine IP-Übertragung) ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/archivo-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: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/archivo-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: 'Noto Sans Georgian';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/noto-georgian.woff2') format('woff2');
  unicode-range: U+0589, U+10A0-10FF, U+1C90-1CBA, U+1CBD-1CBF, U+205A, U+2D00-2D2F, U+2E31;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #f5f0e8;
  --bg-alt: #efe8dc;
  --bg-mute: #e7dfd2;
  --ink: #22190f;
  --ink-70: rgba(34, 25, 15, 0.7);
  --ink-60: rgba(34, 25, 15, 0.6);
  --ink-45: rgba(34, 25, 15, 0.45);
  --ink-20: rgba(34, 25, 15, 0.2);
  --ink-10: rgba(34, 25, 15, 0.1);
  --accent: #b5522e;
  --accent-dark: #8f3f22;
  --cream: #f7f1e7;
  --pad: clamp(20px, 5vw, 40px);
  --section-y: clamp(56px, 9vw, 96px);
  --radius: 2px;
  --maxw: 1360px;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Archivo, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* Sicherheitsnetz gegen versehentliches Querscrollen */
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 12px 18px; background: var(--ink); color: var(--bg);
}
.skip-link:focus { left: 8px; top: 8px; color: var(--bg); }

.wrap { max-width: var(--maxw); margin-inline: auto; }

/* Wiederkehrende Bausteine */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; flex: none; }
.eyebrow--plain { display: block; }
.eyebrow--plain::before { display: none; }

.section-label {
  margin: 0; font-size: 13px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(34, 25, 15, 0.55);
}

.ka { font-family: 'Noto Sans Georgian', Archivo, sans-serif; }

.btn {
  display: inline-block; padding: 15px 26px; border-radius: var(--radius);
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent); color: var(--bg); }
.btn--ghost { border-color: var(--ink-20); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--cream { background: var(--cream); color: var(--accent); font-weight: 700; }
.btn--cream:hover { background: var(--ink); color: var(--cream); }
.btn--outline-cream { border-color: rgba(247, 241, 231, 0.5); color: var(--cream); }
.btn--outline-cream:hover { border-color: var(--cream); color: var(--cream); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--pad);
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-10);
}
.brand { display: flex; align-items: baseline; gap: 9px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__name { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.brand__sub {
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(34, 25, 15, 0.55);
}

.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.nav a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-70); white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.nav .btn { color: var(--bg); background: var(--accent); letter-spacing: 0.16em; padding: 11px 20px; }
.nav .btn:hover { background: var(--accent-dark); color: var(--bg); }

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--ink-20); border-radius: var(--radius);
  cursor: pointer; color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 1.5px; background: currentColor; margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded='true'] span { background: transparent; }
.nav-toggle[aria-expanded='true'] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 61px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--pad) 22px;
    background: var(--bg); border-bottom: 1px solid var(--ink-10);
    max-height: calc(100dvh - 61px); overflow-y: auto;
  }
  /* Zustand steckt in aria-expanded, nicht in JS-gesetzten Styles: dadurch kein
     Aufblitzen der offenen Navigation beim Laden. Ohne JavaScript fehlt die
     .js-Klasse – dann bleibt die Navigation ausgeklappt und damit bedienbar. */
  .js .nav { display: none; }
  .js .nav-toggle[aria-expanded='true'] + .nav { display: flex; }
  .nav a { padding: 15px 2px; border-bottom: 1px solid var(--ink-10); letter-spacing: 0.16em; }
  .nav .btn { margin-top: 16px; text-align: center; border-bottom: 0; padding: 16px 20px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; display: grid; grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(34, 25, 15, 0.12); overflow: hidden;
}
.hero__body {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(52px, 8vw, 88px) var(--pad);
}
.hero__watermark {
  position: absolute; left: -0.18em; bottom: -0.28em;
  font-size: clamp(110px, 22vw, 210px); line-height: 0.8; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px rgba(34, 25, 15, 0.13);
  pointer-events: none; user-select: none;
}
.hero h1 {
  position: relative; margin: 0;
  font-size: clamp(38px, 7.2vw, 76px); line-height: 0.98; font-weight: 800;
  letter-spacing: -0.035em; text-wrap: balance;
}
.hero__lead {
  position: relative; margin: 0; max-width: 44ch;
  font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6; color: var(--ink-70); text-wrap: pretty;
}
.hero__actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }
.hero__media { position: relative; background: var(--bg-mute); min-height: 58vw; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__caption {
  position: absolute; left: 0; bottom: 0; padding: 12px 16px; background: var(--bg);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 1fr; align-items: stretch; min-height: 640px; }
  .hero__media { min-height: 0; }
}

/* ---------- Highlights ---------- */
.highlights { padding: var(--section-y) var(--pad); }
.highlights__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(28px, 4vw, 44px);
}
.card-grid { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 28px); }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card { display: flex; flex-direction: column; gap: 16px; }
.card__media { aspect-ratio: 4 / 3; background: var(--bg-mute); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__media img { transform: scale(1.03); }
.card__head { display: flex; align-items: baseline; gap: 12px; }
.card__head h3 { margin: 0; font-size: clamp(19px, 2.2vw, 22px); font-weight: 700; letter-spacing: -0.02em; }
.card__rule { flex: 1; height: 1px; background: rgba(34, 25, 15, 0.18); }
.card__price { font-size: 16px; font-weight: 600; white-space: nowrap; }
.card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(34, 25, 15, 0.65); }

/* ---------- Speisekarte ---------- */
.menu {
  padding: var(--section-y) var(--pad);
  background: var(--bg-alt);
  border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10);
}
.menu__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; margin-bottom: clamp(32px, 5vw, 52px);
}
.menu__head h2 {
  margin: 0; font-size: clamp(32px, 5.4vw, 52px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1;
}
.menu__note { margin: 0; max-width: 34ch; font-size: 13.5px; line-height: 1.6; color: var(--ink-60); }

.menu__cols { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px) 72px; }
@media (min-width: 900px) { .menu__cols { grid-template-columns: 1fr 1fr; } }

.menu__col { display: flex; flex-direction: column; gap: 24px; }
.menu__cat { display: flex; align-items: center; gap: 14px; }
.menu__cat h3 {
  margin: 0; font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
}
.menu__cat::after { content: ''; flex: 1; height: 1px; background: var(--ink-20); }
.menu__list { display: flex; flex-direction: column; gap: 18px; }

/* Gericht mit Foto: Bild links, Text rechts – auf Mobil kleiner */
.dish { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: start; }
.dish--nopic { grid-template-columns: 1fr; }
@media (min-width: 480px) { .dish { grid-template-columns: 96px 1fr; gap: 16px; } }
/* Runde Fassung wie in der gedruckten Karte – der Bildhintergrund fällt dadurch
   deutlich weniger auf als bei einem eckigen Ausschnitt. */
.dish__media {
  aspect-ratio: 1 / 1; background: var(--bg-mute); overflow: hidden;
  border-radius: 50%; box-shadow: 0 0 0 1px rgba(34, 25, 15, 0.08);
}
.dish__media img { width: 100%; height: 100%; object-fit: cover; }
.dish__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.dish__line { display: flex; align-items: baseline; gap: 10px; }
.dish__name { font-size: 16.5px; font-weight: 600; }
.dish__alg { font-size: 11px; font-weight: 500; color: var(--ink-45); }
.dish__dots { flex: 1; border-bottom: 1px dotted rgba(34, 25, 15, 0.28); min-width: 12px; }
.dish__price { font-size: 15px; font-weight: 600; white-space: nowrap; }
.dish p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-60); }

/* Kompakte Zeilen (Beilagen, Getränke) */
.rows { display: flex; flex-direction: column; gap: 11px; }
.rows--2col { display: grid; grid-template-columns: 1fr; gap: 11px 32px; }
@media (min-width: 560px) { .rows--2col { grid-template-columns: 1fr 1fr; } }
.row { display: flex; align-items: baseline; gap: 8px; }
.row__name { font-size: 15px; font-weight: 500; }
.row__dots { flex: 1; border-bottom: 1px dotted rgba(34, 25, 15, 0.28); min-width: 12px; }
.row__price { font-size: 14.5px; font-weight: 600; white-space: nowrap; }

/* Getränke-Tabelle mit zwei Größen */
.drinks { display: flex; flex-direction: column; gap: 9px; }
.drinks__head, .drink {
  display: grid; grid-template-columns: 1fr 64px 64px; gap: 10px; align-items: baseline;
}
@media (min-width: 480px) { .drinks__head, .drink { grid-template-columns: 1fr 76px 76px; } }
.drinks__head {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-45); padding-bottom: 4px;
}
.drinks__head span + span, .drink span + span { text-align: right; }
.drink { font-size: 15px; }
.drink__name { font-weight: 500; }
.drink span:not(.drink__name) { font-weight: 600; }
.drink__note { font-weight: 500 !important; color: rgba(34, 25, 15, 0.5); }

.menu__split {
  margin-top: clamp(40px, 6vw, 64px); padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(34, 25, 15, 0.15);
  display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px) 72px;
}
@media (min-width: 900px) { .menu__split { grid-template-columns: 1fr 1fr; } }

/* ---------- To Go ---------- */
.togo {
  position: relative; display: grid; grid-template-columns: 1fr;
  background: var(--accent); color: var(--cream); overflow: hidden;
}
@media (min-width: 900px) { .togo { grid-template-columns: 1fr 1fr; } }
.togo__body {
  position: relative; display: flex; flex-direction: column; gap: clamp(18px, 2.6vw, 26px);
  padding: clamp(52px, 8vw, 84px) var(--pad);
}
.togo__watermark {
  position: absolute; right: -0.2em; top: -0.26em;
  font-size: clamp(90px, 16vw, 150px); line-height: 1;
  color: rgba(247, 241, 231, 0.12); user-select: none; pointer-events: none;
}
.togo .eyebrow { color: rgba(247, 241, 231, 0.75); position: relative; }
.togo h2 {
  position: relative; margin: 0; font-size: clamp(30px, 5vw, 46px); line-height: 1.04;
  font-weight: 800; letter-spacing: -0.035em; max-width: 22ch;
}
.togo p {
  position: relative; margin: 0; max-width: 42ch; font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.6; color: rgba(247, 241, 231, 0.85);
}
.togo__actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }
.togo__facts {
  position: relative; display: flex; flex-wrap: wrap; gap: 28px 36px; margin-top: 16px;
  padding-top: 24px; border-top: 1px solid rgba(247, 241, 231, 0.28);
}
.fact { display: flex; flex-direction: column; gap: 5px; }
.fact__value { font-size: clamp(20px, 2.6vw, 26px); font-weight: 700; letter-spacing: -0.02em; }
.fact__label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247, 241, 231, 0.7);
}
.togo__media { position: relative; min-height: 62vw; background: var(--accent-dark); }
@media (min-width: 900px) { .togo__media { min-height: 440px; } }
.togo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Bewertungen ---------- */
.reviews { padding: var(--section-y) var(--pad); }
.reviews__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px 24px; background: var(--bg-alt); border: 1px solid var(--ink-10);
  border-radius: var(--radius);
}
.review__stars { color: var(--accent); font-size: 14px; letter-spacing: 0.14em; }
.review__text { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-70); }
.review__meta {
  margin: 0; margin-top: auto; padding-top: 6px; font-size: 12px;
  letter-spacing: 0.06em; color: var(--ink-45);
}
.reviews__source { font-size: 12.5px; color: var(--ink-45); }

/* ---------- Galerie ---------- */
.gallery { padding: var(--section-y) var(--pad); }
.gallery__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(24px, 3.4vw, 40px);
}
.gallery__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(120px, 26vw, 200px); gap: 12px;
}
@media (min-width: 760px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.gallery__grid figure { margin: 0; background: var(--bg-mute); overflow: hidden; }
.gallery__grid img { width: 100%; height: 100%; object-fit: cover; }
.g-wide { grid-column: span 2; }
.g-big { grid-column: span 2; grid-row: span 2; }

/* ---------- Besuch / Footer ---------- */
.visit { padding: var(--section-y) var(--pad); background: var(--ink); color: var(--bg); }
.visit__grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); }
@media (min-width: 760px) { .visit__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .visit__grid { grid-template-columns: 1fr 1fr 1.1fr; } }
.visit__block { display: flex; flex-direction: column; gap: 20px; }
.visit__label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}
.hours { display: flex; flex-direction: column; gap: 12px; }
.hours__row { display: flex; align-items: baseline; gap: 10px; }
.hours__day { font-size: 15px; font-weight: 500; }
.hours__dots { flex: 1; border-bottom: 1px dotted rgba(245, 240, 232, 0.28); min-width: 10px; }
.hours__time { font-size: 14.5px; font-weight: 600; text-align: right; white-space: nowrap; }
.hours__row--closed .hours__time { color: rgba(245, 240, 232, 0.55); font-weight: 500; }
.hours__today { font-weight: 700; }
.hours__today .hours__day::after {
  content: 'heute'; margin-left: 8px; padding: 2px 7px; border-radius: 2px;
  background: var(--accent); color: var(--cream);
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  vertical-align: middle;
}
.address { display: flex; flex-direction: column; gap: 6px; font-size: 16px; line-height: 1.6; }
.address strong { font-weight: 600; }
.address span, .address a { color: rgba(245, 240, 232, 0.75); }
.address a:hover { color: var(--bg); }
.visit__contact { display: flex; flex-direction: column; gap: 6px; font-size: 14.5px; }
/* Klick-zum-Laden: bis zum Klick keine Verbindung zu Google, siehe
   datenschutz.html#maps. Erst script.js hängt das iframe ein. */
.map-embed {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius);
  border: 1px solid rgba(245, 240, 232, 0.22);
  background: repeating-linear-gradient(135deg, rgba(245, 240, 232, 0.09) 0 6px, transparent 6px 12px);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-embed__btn {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; color: rgba(245, 240, 232, 0.85);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.map-embed__btn:hover { color: var(--bg); }
.map-embed__hint {
  margin: 10px 0 0; font-size: 11.5px; line-height: 1.6; color: rgba(245, 240, 232, 0.5);
}
.map-embed__hint a { color: rgba(245, 240, 232, 0.75); text-decoration: underline; margin-left: 4px; }

.footer {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: clamp(46px, 7vw, 76px); padding-top: 26px;
  border-top: 1px solid rgba(245, 240, 232, 0.18);
}
.footer .brand__name, .footer .brand__sub { color: var(--bg); }
.footer .brand__sub { color: rgba(245, 240, 232, 0.5); }
.footer__ka { color: rgba(245, 240, 232, 0.35); font-size: 14px; margin-left: 10px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 24px; }
.footer__links a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}
.footer__links a:hover { color: var(--bg); }

/* ---------- Cookie-Banner ---------- */
.cookie {
  position: fixed; z-index: 60; left: 12px; right: 12px; bottom: 12px;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 620px; margin-inline: auto; padding: 22px 22px 20px;
  background: var(--ink); color: var(--bg);
  border-radius: var(--radius); box-shadow: 0 12px 40px rgba(34, 25, 15, 0.3);
}
.cookie[hidden] { display: none; }
.cookie h2 { margin: 0; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.cookie p { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgba(245, 240, 232, 0.75); }
.cookie p a { color: var(--bg); text-decoration: underline; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie .btn { flex: 1 1 auto; text-align: center; }
.cookie .btn--solid { background: var(--cream); color: var(--ink); }
.cookie .btn--solid:hover { background: var(--accent); color: var(--cream); }
.cookie .btn--ghost { border-color: rgba(245, 240, 232, 0.35); color: var(--bg); }
.cookie .btn--ghost:hover { border-color: var(--bg); color: var(--bg); }

/* ---------- Rechtstexte ---------- */
.legal { padding: clamp(40px, 7vw, 80px) var(--pad) var(--section-y); }
.legal__inner { max-width: 68ch; margin-inline: auto; }
.legal h1 {
  margin: 0 0 8px; font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -0.035em;
}
.legal h2 {
  margin: 40px 0 10px; font-size: clamp(17px, 2.2vw, 20px); font-weight: 700; letter-spacing: -0.015em;
}
.legal h3 { margin: 26px 0 6px; font-size: 15px; font-weight: 700; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--ink-70); }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { text-decoration: underline; }
.legal__back {
  display: inline-block; margin-bottom: 26px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}
.legal__updated { font-size: 13px; color: var(--ink-45); }
.legal dl { display: grid; grid-template-columns: 1fr; gap: 2px 20px; margin: 0; }
@media (min-width: 560px) { .legal dl { grid-template-columns: 200px 1fr; } }
.legal dt { font-weight: 600; font-size: 15px; }
.legal dd { margin: 0 0 10px; font-size: 15px; color: var(--ink-70); }

/* Sichtbare Markierung für noch fehlende Rechtsangaben – vor dem Livegang zu leeren */
.todo {
  background: rgba(181, 82, 46, 0.12); border-left: 3px solid var(--accent);
  padding: 2px 8px; font-weight: 600; color: var(--accent-dark);
}

/* Allergen-Tabelle */
.alg-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 14.5px; }
.alg-table th, .alg-table td {
  text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--ink-10);
}
.alg-table th { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-45); }
.alg-table td:first-child { font-weight: 700; width: 68px; }
