/* ============ Schrift ============ */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/fraunces-5.woff2) format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/fraunces-2.woff2) format('woff2');
}

/* ============ Token ============ */
:root {
  --bg: #171210;
  --bg-raised: #211913;
  --panel: #281e15;
  --ink: #f2e8d8;
  --ink-dim: #cbbb9f;
  --muted: #97866c;
  --brass: #c9974a;
  --brass-bright: #e3b56c;
  --paper: #efe4cd;
  --paper-shade: #e5d7ba;
  --paper-ink: #2c2114;
  --paper-muted: #7a6a4f;
  --line: rgba(242, 232, 216, 0.13);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: ui-sans-serif, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif;
  --w: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 340;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--brass); color: #1b130a; }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 24px; }

/* Typografische Rollen */
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
h1, h2, h3 { font-weight: 420; text-wrap: balance; line-height: 1.06; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); letter-spacing: -0.01em; }
.lede { color: var(--ink-dim); max-width: 62ch; }

/* ============ Motion – nur aktiv, wenn JS läuft (html.js), sonst alles sichtbar ============ */
.js .rv {
  opacity: 0; transform: translateY(34px); filter: blur(6px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
}
.js .rv.in { opacity: 1; transform: none; filter: none; }
.js .kueche-grid .kcard:nth-child(2) { transition-delay: 0.1s; }
.js .kueche-grid .kcard:nth-child(3) { transition-delay: 0.2s; }
.js .kueche-grid .kcard:nth-child(4) { transition-delay: 0.3s; }

/* Hero-Auftritt */
.js .hero-inner > * { opacity: 0; transform: translateY(34px); animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.js .hero-inner > .eyebrow { animation-delay: 0.2s; }
.js .hero-inner > h1 { animation-delay: 0.32s; }
.js .hero-inner > .spruch { animation-delay: 0.5s; }
.js .hero-inner > .lede { animation-delay: 0.64s; }
.js .hero-inner > .hero-ctas { animation-delay: 0.78s; }
.js .hero-inner > .hero-facts { animation-delay: 0.95s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Ken-Burns auf dem Hero-Foto */
.js .hero-bg { animation: kenburns 16s ease-out forwards; will-change: transform; }
@keyframes kenburns { from { transform: scale(1.09); } to { transform: scale(1); } }

/* Parallax-Elemente */
[data-par] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rv, .js .hero-inner > * { opacity: 1; transform: none; filter: none; transition: none; animation: none; }
  .js .hero-bg { animation: none; }
  .marquee-track, .drift { animation: none !important; }
  .galerie { overflow-x: auto; }
}

/* ============ Navigation ============ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(rgba(18, 13, 10, 0.92), rgba(18, 13, 10, 0.82));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 232, 216, 0.08);
  transition: box-shadow 0.3s ease;
}
header.scrolled { box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4); }
.nav {
  max-width: var(--w); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
  transition: height 0.3s ease;
}
header.scrolled .nav { height: 56px; }
header.scrolled .nav-links { top: 56px; }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { font-family: var(--serif); font-weight: 560; font-size: 21px; letter-spacing: 0.01em; }
.brand span { font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-top: 3px; }
.nav-links { display: flex; gap: 18px; margin-left: auto; align-items: center; }
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--ink-dim); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }
.nav-links a.btn-brass, .nav-links a.btn-brass:hover { color: #1c1409; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: 2px; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer; border: 1px solid transparent;
}
.btn-brass { background: var(--brass); color: #1c1409; }
.btn-brass:hover { background: var(--brass-bright); }
.btn-ghost { border-color: rgba(242, 232, 216, 0.3); color: var(--ink); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-bright); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.nav-toggle { display: none; }
.nav-burger { display: none; }

@media (max-width: 1240px) {
  .nav { gap: 16px; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .nav-burger span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(18, 13, 10, 0.97); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 10px 24px 24px; margin: 0; display: none;
  }
  .nav-links a { padding: 13px 0; font-size: 16px; width: 100%; }
  .nav-links .btn { margin-top: 10px; width: 100%; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============ Hero ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: url(hero.jpg);
  background-size: cover; background-position: center 35%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 18, 16, 0.6) 0%, rgba(23, 18, 16, 0.15) 55%, transparent 75%),
    linear-gradient(180deg, rgba(23, 18, 16, 0.55) 0%, rgba(23, 18, 16, 0.25) 40%, rgba(23, 18, 16, 0.94) 88%, var(--bg) 100%),
    radial-gradient(ellipse at 30% 80%, rgba(201, 151, 74, 0.14), transparent 60%);
}
.hero-inner { width: 100%; max-width: var(--w); margin: 0 auto; padding: 140px 24px 0; }
.hero .eyebrow, .hero h1, .hero .spruch, .hero p.lede { text-shadow: 0 2px 18px rgba(10, 6, 4, 0.75); }
.hero .eyebrow { margin-bottom: 22px; color: var(--brass-bright); }
.hero h1 {
  font-size: clamp(3.4rem, 10vw, 8.2rem);
  font-weight: 480;
  letter-spacing: -0.015em;
  line-height: 0.98;
}
.hero .spruch {
  font-style: italic; font-weight: 350;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--brass-bright);
  margin-top: 18px;
}
.hero p.lede { margin-top: 22px; font-size: 18px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  margin-top: 64px;
}
.hero-facts div { background: rgba(23, 18, 16, 0.6); padding: 20px 24px 26px; }
.hero-facts .k { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.hero-facts .v { font-size: 15.5px; color: var(--ink-dim); }
.hero-facts .v a { text-decoration: none; }
.hero-facts .v a:hover { color: var(--brass-bright); }
@media (max-width: 700px) {
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div { padding: 14px 18px; }
}

/* ============ Sprüche-Band ============ */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; background: var(--bg);
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: roll 46s linear infinite; }
.marquee-track span {
  font-style: italic; font-weight: 350; white-space: nowrap;
  font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--muted);
  padding-right: 28px;
}
.marquee-track span::after { content: '✳'; color: var(--brass); font-style: normal; font-size: 0.7em; margin-left: 28px; vertical-align: 0.15em; }
@keyframes roll { to { transform: translateX(-50%); } }

/* ============ Sektionen ============ */
section { padding: 110px 0; }
.sec-head { max-width: 720px; }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.sec-head p { margin-top: 20px; color: var(--ink-dim); }

/* Presse- / Bewertungsband */
.presse { padding: 34px 0; border-bottom: 1px solid var(--line); }
.presse-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 38px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  text-align: center;
}
.presse-row a { color: var(--ink-dim); text-decoration: none; border-bottom: 1px solid rgba(201, 151, 74, 0.5); }
.presse-row a:hover { color: var(--brass-bright); }
.presse-row .stern { color: var(--brass); letter-spacing: 0.1em; }

/* Historie */
.historie-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.historie-fotos { position: relative; }
.historie-fotos .f1 { width: 82%; border: 1px solid var(--line); }
.historie-fotos .f2 {
  position: absolute; right: 0; bottom: -56px; width: 52%;
  border: 6px solid var(--bg); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.historie-txt h2 { margin-bottom: 22px; }
.historie-txt p { color: var(--ink-dim); margin-bottom: 18px; }
.historie-txt p strong { color: var(--ink); font-weight: 560; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid rgba(201, 151, 74, 0.45); color: var(--brass-bright);
  padding: 8px 16px; border-radius: 999px;
}
@media (max-width: 880px) {
  .historie-grid { grid-template-columns: 1fr; gap: 40px; }
  .historie-fotos { margin-bottom: 56px; }
}

/* Küche */
.kueche { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kueche-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.kcard { background: var(--panel); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s; }
.kcard:hover { transform: translateY(-6px); border-color: rgba(201, 151, 74, 0.5); }
.kcard .pic { aspect-ratio: 4 / 3; overflow: hidden; }
.kcard .pic img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); transition: transform 0.6s ease; }
.kcard:hover .pic img { transform: scale(1.045); }
.kcard .txt { padding: 22px 22px 26px; }
.kcard h3 { font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.kcard p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.55; }
@media (max-width: 1000px) { .kueche-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .kueche-grid { grid-template-columns: 1fr; } }

.metzger {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  margin-top: 26px; padding: 30px 34px;
  border: 1px solid rgba(201, 151, 74, 0.35); background: rgba(201, 151, 74, 0.06);
}
.metzger p { color: var(--ink-dim); font-size: 15.5px; max-width: 62ch; }
.metzger p strong { color: var(--ink); font-weight: 560; }
.karten-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============ Mittagstisch – Papierkarte ============ */
.mittag { background: var(--paper); color: var(--paper-ink); position: relative; }
.mittag::before, .mittag::after {
  content: ''; position: absolute; left: 0; right: 0; height: 10px;
  background-image: linear-gradient(135deg, var(--bg) 25%, transparent 25%), linear-gradient(225deg, var(--bg) 25%, transparent 25%);
  background-size: 20px 10px; background-repeat: repeat-x;
}
.mittag::before { top: 0; }
.mittag::after { bottom: 0; transform: rotate(180deg); }
.mittag .eyebrow { color: #9a6f2c; }
.mittag .karte {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.mittag .karte > .zeiten {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--paper-muted); margin-top: 14px;
}
.mittag h2 { margin-top: 14px; }
.mittag .karte-intro { color: #574a33; margin: 22px auto 0; max-width: 54ch; }
.ornament { color: #9a6f2c; font-size: 20px; letter-spacing: 0.6em; margin: 40px 0 8px; }
.gericht { padding: 22px 0; border-bottom: 1px dotted rgba(44, 33, 20, 0.35); }
.gericht:last-of-type { border-bottom: 0; }
.gericht .tag {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: #9a6f2c; margin-bottom: 8px;
}
.gericht .name { font-size: clamp(1.15rem, 2.2vw, 1.45rem); font-weight: 440; line-height: 1.3; }
.mittag .hinweis { font-style: italic; color: var(--paper-muted); margin-top: 36px; font-size: 15.5px; }

/* ============ Feiern ============ */
.feiern-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.feiern-fotos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feiern-fotos img { border: 1px solid var(--line); height: 100%; object-fit: cover; }
.feiern-fotos img:first-child { margin-top: 36px; }
.feiern-txt h2 { margin-bottom: 22px; }
.feiern-txt p { color: var(--ink-dim); margin-bottom: 18px; }
.feiern-txt .btn { margin-top: 10px; }
@media (max-width: 880px) { .feiern-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ Driftende Fotogalerie ============ */
.galerie { overflow: hidden; padding: 0 0 110px; }
.drift { display: flex; width: max-content; animation: roll 70s linear infinite; }
.drift img {
  height: clamp(200px, 32vw, 340px); width: auto;
  margin-right: 16px; border: 1px solid var(--line);
  filter: saturate(0.92);
}
.galerie:hover .drift { animation-play-state: paused; }

/* Mitbringsel */
.mitbringsel { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tri { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 52px; }
.tri a {
  background: var(--bg-raised); padding: 38px 34px 42px; text-decoration: none;
  transition: background 0.25s;
}
.tri a:hover { background: var(--panel); }
.tri .num { font-style: italic; color: var(--brass); font-size: 15px; }
.tri h3 { font-size: 23px; font-weight: 480; margin: 12px 0 10px; }
.tri p { font-size: 14.5px; color: var(--ink-dim); }
.tri .mehr { display: inline-block; margin-top: 18px; font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--brass-bright); }
@media (max-width: 800px) { .tri { grid-template-columns: 1fr; } }

/* ============ Reservieren ============ */
.reservieren { text-align: center; padding: 130px 0; position: relative; overflow: hidden; }
.reservieren::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201, 151, 74, 0.16), transparent 60%);
  pointer-events: none;
}
.reservieren .spruch { font-style: italic; color: var(--brass-bright); font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin-bottom: 18px; }
.reservieren h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
.reservieren .tel {
  display: inline-block; margin-top: 34px; text-decoration: none;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 460;
  color: var(--ink); border-bottom: 2px solid var(--brass);
  transition: color 0.2s;
  font-variant-numeric: tabular-nums;
}
.reservieren .tel:hover { color: var(--brass-bright); }
.reservieren .oder { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 30px 0 22px; }
.reservieren .note { margin-top: 34px; color: var(--muted); font-size: 15px; }

/* ============ Anfahrt ============ */
.anfahrt { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.anfahrt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.acard { border: 1px solid var(--line); background: var(--panel); padding: 30px 28px; }
.acard .pikto { font-size: 26px; color: var(--brass); font-style: normal; }
.acard h3 { font-size: 19px; font-weight: 500; margin: 14px 0 10px; }
.acard p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.6; }
.anfahrt-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
@media (max-width: 800px) { .anfahrt-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin-top: 48px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0; font-size: 19px; font-weight: 460; line-height: 1.35;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; flex: none;
  font-family: var(--sans); font-weight: 400; font-size: 26px; color: var(--brass);
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--brass-bright); }
.faq-list details p { padding: 0 40px 26px 0; color: var(--ink-dim); max-width: 68ch; }

/* ============ Footer ============ */
footer { border-top: 1px solid var(--line); padding: 72px 0 40px; background: #120d0a; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; }
.foot-brand strong { font-size: 26px; font-weight: 540; display: block; }
.foot-brand em { color: var(--brass-bright); font-size: 15px; }
.foot-brand p { color: var(--muted); font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
.foot-col .k { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.foot-col p, .foot-col a { font-size: 15px; color: var(--ink-dim); text-decoration: none; }
.foot-col a { display: block; padding: 3.5px 0; }
.foot-col a:hover { color: var(--brass-bright); }
.foot-legal {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center;
  margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line);
  font-family: var(--sans); font-size: 12.5px; color: var(--muted);
}
.foot-legal nav { display: flex; gap: 22px; }
.foot-legal a { text-decoration: none; color: var(--muted); }
.foot-legal a:hover { color: var(--ink-dim); }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============ Unterseiten ============ */
.page-hero { padding: 150px 0 64px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 18% -40%, rgba(201, 151, 74, 0.13), transparent 55%);
  pointer-events: none;
}
.page-hero .crumbs { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.page-hero .crumbs a { text-decoration: none; color: var(--muted); }
.page-hero .crumbs a:hover { color: var(--brass-bright); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 460; letter-spacing: -0.012em; }
.page-hero .lede { margin-top: 20px; font-size: 18px; }

/* Speisekarte auf Papier */
.karte-blatt { max-width: 1000px; }
.mgroup { margin-top: 76px; }
.mgroup:first-child { margin-top: 0; }
.mgroup > h2 { text-align: center; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.mgroup > .msub, .special-box .msub {
  text-align: center; font-family: var(--sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: #9a6f2c; margin-bottom: 10px;
}
.mgroup .items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-top: 26px; }
@media (max-width: 820px) { .mgroup .items { grid-template-columns: 1fr; } }
.mitem { padding: 16px 0; border-bottom: 1px dotted rgba(44, 33, 20, 0.3); }
.mitem .row { display: flex; align-items: baseline; gap: 10px; margin: 0; }
.mitem .n { font-weight: 500; font-size: 18px; line-height: 1.3; }
.mitem .dots { flex: 1; min-width: 22px; border-bottom: 2px dotted rgba(44, 33, 20, 0.35); transform: translateY(-4px); }
.mitem .p { white-space: nowrap; font-weight: 500; font-variant-numeric: tabular-nums; }
.mitem .d { color: #574a33; font-size: 14.5px; margin-top: 5px; line-height: 1.5; }
.veg {
  display: inline-block; font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #46662f;
  border: 1px solid rgba(70, 102, 47, 0.45); border-radius: 999px;
  padding: 1px 8px 2px; vertical-align: 2px; margin-left: 8px;
}
.karte-note { text-align: center; font-style: italic; color: var(--paper-muted); margin-top: 60px; font-size: 15px; }
.special-box { margin-top: 76px; border: 2px solid rgba(44, 33, 20, 0.45); padding: 40px 34px; text-align: center; }
.special-box h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }

/* Text-/Rechtsseiten */
.prose { max-width: 780px; padding-top: 90px; padding-bottom: 110px; }
section > .wrap.prose { padding-top: 0; padding-bottom: 0; }
.prose h2 { font-size: 26px; margin: 46px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; font-weight: 500; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--ink-dim); }
.prose p { margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose li { padding: 3px 0; }
.prose a { color: var(--brass-bright); }

/* Produktkarten */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
@media (max-width: 960px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }
.prod { background: var(--panel); border: 1px solid var(--line); padding: 30px 28px; display: flex; flex-direction: column; transition: border-color 0.3s; }
.prod:hover { border-color: rgba(201, 151, 74, 0.5); }
.prod h3 { font-size: 20px; font-weight: 500; }
.prod p { font-size: 14.5px; color: var(--ink-dim); margin-top: 8px; flex: 1; }
.prod .preis { margin-top: 20px; color: var(--brass-bright); font-size: 19px; font-weight: 500; font-variant-numeric: tabular-nums; }

/* Brennerei-Listen */
.spirit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 54px; }
@media (max-width: 820px) { .spirit-grid { grid-template-columns: 1fr; } }
.spirit { border: 1px solid var(--line); background: var(--panel); padding: 36px 34px; }
.spirit h2 { font-size: 27px; }
.spirit ul { columns: 2; column-gap: 32px; list-style: none; padding: 0; margin: 22px 0 0; }
.spirit li { padding: 6px 0; color: var(--ink-dim); border-bottom: 1px dotted var(--line); break-inside: avoid; }
.spirit .preise { margin-top: 24px; font-family: var(--sans); font-size: 13.5px; color: var(--brass-bright); }

/* Sektionen auf Unterseiten */
.page-hero + section, .page-hero ~ section { padding: 90px 0 110px; }

/* ============ Footer 5-spaltig ============ */
.foot-grid5 { grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr 1fr; }
@media (max-width: 1000px) { .foot-grid5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid5 { grid-template-columns: 1fr; } }

/* ============ Galerie-Seite ============ */
.galerie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.galerie-grid figure { margin: 0; border: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.galerie-grid img { width: 100%; height: 280px; object-fit: cover; filter: saturate(0.92); transition: transform 0.5s ease; display: block; }
.galerie-grid figure:hover img { transform: scale(1.03); }
.galerie-grid figcaption { padding: 12px 16px; font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.06em; color: var(--muted); }
.gal-wide { grid-column: span 2; }
@media (max-width: 900px) { .galerie-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .galerie-grid { grid-template-columns: 1fr; } .gal-wide { grid-column: auto; } }

/* ============ Formular (Gutschein) ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 20px; margin-top: 48px; max-width: 880px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field > label { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field > label.check-row, .radio-card {
  font-family: var(--serif); font-size: 15px; font-weight: 340;
  letter-spacing: 0; text-transform: none; color: var(--ink-dim);
}
.radio-card > span { min-width: 0; flex: 1; }
.field input, .field select, .field textarea {
  background: var(--panel); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--serif); font-size: 16px; padding: 13px 14px; border-radius: 2px; width: 100%;
}
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field select option { background: #211913; color: var(--ink); }
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0473d; }
.field .fehler { display: none; font-family: var(--sans); font-size: 12px; color: #df6f60; }
.field.invalid .fehler { display: block; }
.radio-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .radio-row { grid-template-columns: 1fr; } }
.radio-card { border: 1px solid var(--line); background: var(--panel); padding: 15px 16px; cursor: pointer; display: grid; grid-template-columns: 16px 1fr; gap: 11px; align-items: start; border-radius: 2px; transition: border-color 0.2s, background 0.2s; }
.radio-card input { accent-color: var(--brass); margin-top: 4px; width: 16px; }
.radio-card:hover { border-color: rgba(201, 151, 74, 0.5); }
.radio-card:has(input:checked) { border-color: var(--brass); background: rgba(201, 151, 74, 0.08); }
.radio-card strong { display: block; font-size: 16px; font-weight: 500; }
.radio-card span { font-family: var(--sans); font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.check-row { display: grid; grid-template-columns: 16px 1fr; gap: 11px; align-items: start; font-size: 15px; color: var(--ink-dim); cursor: pointer; text-align: left; }
.check-row input { accent-color: var(--brass); margin-top: 4px; width: 16px; }
.form-note { font-family: var(--sans); font-size: 13px; color: var(--muted); line-height: 1.6; }
.mail-fallback { display: none; margin-top: 24px; border: 1px solid var(--line); background: var(--panel); padding: 20px 22px; font-family: ui-monospace, Consolas, monospace; font-size: 13px; white-space: pre-wrap; color: var(--ink-dim); line-height: 1.6; }
.mail-fallback.sichtbar { display: block; }

/* ============ Barrierefreiheit ============ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brass); color: #1c1409;
  padding: 12px 22px; font-family: var(--sans); font-weight: 600; font-size: 14px;
  text-decoration: none; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }
