/* =========================================================
   Ludwig Heer – design cuisine
   Tannengrün + Gold auf warmem Creme. Fraunces für Überschriften
   (mit kursiven Akzenten), Source Sans 3 für gut lesbaren Fließtext.
   ========================================================= */

:root {
  --bg: #F7F3EA;
  --bg-tint: #EFE8DA;
  --surface: #FFFDF8;
  --ink: #1D2320;
  --muted: #4F5752;
  --line: #E0D7C5;

  --green: #24463A;
  --green-deep: #16302A;
  --green-soft: #E3EADF;

  --gold: #C29A5B;          /* Flächen, Linien, auf Dunkel */
  --gold-light: #DDBD86;    /* Text auf Dunkel */
  --gold-text: #82622C;     /* Text auf Hell (Kontrast ≥ 4.5:1) */

  --cacao: #22150F;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --wrap: min(1160px, 100% - 2 * clamp(1rem, 4vw, 2.5rem));
  --top-h: 76px;
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --shadow: 0 1px 2px rgba(29,35,32,.04), 0 12px 32px -12px rgba(29,35,32,.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.125rem;       /* 18 px */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-underline-offset: .18em; }
a:hover { color: var(--green-deep); }
p { margin: 0 0 1em; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .55em;
  color: inherit;
}
h1 em, h2 em, h3 em, .footer__title em, .gate__ask em {
  font-style: italic; font-weight: 400; color: var(--gold-text);
}
h1 { font-size: clamp(2.6rem, 1.6rem + 4.4vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.4rem); }
h3 { font-size: 1.4rem; }

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

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: #fff; padding: .6rem 1rem;
}
.skip:focus { top: 1rem; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1rem;
}
.eyebrow::after { content: ""; width: 48px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow .num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  letter-spacing: 0; text-transform: none; font-size: 1.15rem;
}
.eyebrow--light { color: var(--gold-light); }

.lead { font-size: 1.25rem; color: var(--muted); max-width: 60ch; }
.small { font-size: 1rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.btns--center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 50px; padding: .7rem 1.5rem;
  border: 1.5px solid var(--green); border-radius: 999px;
  background: transparent; color: var(--green);
  font: 700 1rem/1.2 var(--sans); letter-spacing: .01em; text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}
.btn:hover { background: var(--green-soft); color: var(--green-deep); transform: translateY(-1px); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); color: #fff; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--green-deep); }
.btn--light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* =========================================================
   GATEWAY – Split-Screen (index.html)
   ========================================================= */
.is-gate { background: var(--green-deep); }
.gate {
  position: relative; height: 100vh; height: 100svh; min-height: 560px;
  display: flex; flex-direction: column; color: #fff; overflow: hidden;
}
.gate__bar {
  position: absolute; inset: 0 0 auto; z-index: 3;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 1.4rem clamp(1rem, 3vw, 2.5rem) 5rem;
  background: linear-gradient(to bottom, rgba(10,22,18,.8), rgba(10,22,18,0));
  pointer-events: none;
}
.gate__bar a { pointer-events: auto; }
.gate__places { margin: 0; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.gate__brand { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #fff; line-height: 1; }
.gate__brand:hover { color: #fff; }
.gate__logo { height: clamp(2.6rem, 2.1rem + 1.4vw, 3.5rem); }
.gate__sub { font-family: var(--serif); font-style: italic; color: var(--gold-light); font-size: 1.05rem; margin-top: .3rem; }
.gate__tel {
  justify-self: end; color: #fff; text-decoration: none; font-weight: 700;
  padding: .55rem 1.2rem; border: 1.5px solid rgba(255,255,255,.5); border-radius: 999px;
  transition: background .25s, border-color .25s;
}
.gate__tel:hover { color: var(--green-deep); background: var(--gold); border-color: var(--gold); }

.gate__ask {
  position: absolute; z-index: 3; left: 50%; top: clamp(6.5rem, 15vh, 9rem); transform: translateX(-50%);
  margin: 0; width: max-content; max-width: 92vw; text-align: center;
  font-size: clamp(1.3rem, 1rem + 1vw, 1.9rem); font-weight: 400; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.45); pointer-events: none;
}
.gate__ask em { color: var(--gold-light); }

.panels { list-style: none; margin: 0; padding: 0; display: flex; flex: 1; min-height: 0; }
.panel {
  position: relative; flex: 1 1 0; min-width: 0; overflow: hidden;
  background: var(--green-deep);
  transition: flex-grow .8s var(--ease);
  animation: panel-in 1.1s var(--ease) both;
}
.panel + .panel { border-left: 1px solid rgba(221,189,134,.35); }
.panel:nth-child(2) { animation-delay: .12s; }
.panel:nth-child(3) { animation-delay: .24s; }
.panel:nth-child(4) { animation-delay: .36s; }
@keyframes panel-in { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }

.panel__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); transition: transform 1.2s var(--ease), filter .8s;
  filter: saturate(.9) brightness(.85);
}
.panel::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(10,22,18,.95) 0%, rgba(10,22,18,.55) 45%, rgba(10,22,18,.15) 100%);
  transition: opacity .6s;
}
.panel__content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  padding-bottom: calc(clamp(1.25rem, 2.5vw, 2.5rem) + 2.5rem);
}
.panel__num { display: block; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-light); margin-bottom: .4rem; }
.panel__where { display: block; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-bottom: .6rem; }
.panel__title { font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.9rem); line-height: 1.02; margin: 0 0 .75rem; }
.panel__title em { color: var(--gold-light); }
.panel__link { color: #fff; text-decoration: none; }
.panel__link:hover { color: #fff; }
.panel__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }   /* ganze Fläche klickbar */
.panel__link:focus-visible { outline: none; }
.panel:has(.panel__link:focus-visible) { outline: 3px solid var(--gold); outline-offset: -3px; }
.panel__text { margin: 0; max-width: 30ch; font-size: 1.05rem; line-height: 1.5; color: rgba(255,255,255,.88); }
.panel__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.panel__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 700; color: var(--gold-light);
}
.panel__cta::after {
  content: ""; width: 28px; height: 1.5px; background: currentColor;
  transition: width .6s var(--ease);
}
.panel__extra {
  position: relative; z-index: 2;            /* liegt über dem Flächen-Link */
  color: #fff; font-weight: 600; font-size: .98rem;
  padding: .35rem .9rem; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; text-decoration: none;
}
.panel__extra:hover { color: var(--green-deep); background: var(--gold-light); border-color: var(--gold-light); }

.gate__foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; justify-content: center; flex-wrap: wrap; gap: .25rem 1.75rem;
  padding: .9rem 1rem; font-size: .95rem;
  background: linear-gradient(to top, rgba(10,22,18,.7), rgba(10,22,18,0));
}
.gate__foot a { color: rgba(255,255,255,.85); text-decoration: none; }
.gate__foot a:hover { color: var(--gold-light); }

@media (hover: hover) and (min-width: 901px) {
  .panels:hover .panel { flex-grow: .8; }
  .panels .panel:hover { flex-grow: 1.7; }
  .panel:hover .panel__img { transform: scale(1.1); filter: saturate(1.05) brightness(.95); }
  .panel:hover .panel__cta::after { width: 56px; }
  .panel__text { opacity: .85; transition: opacity .5s; }
  .panel:hover .panel__text { opacity: 1; }
}

/* =========================================================
   KOPFZEILE (start.html) – transparent über dem Hero,
   beim Scrollen solide
   ========================================================= */
.top {
  position: fixed; inset: 0 0 auto; z-index: 50;
  color: #fff;
  transition: background .35s, color .35s, box-shadow .35s;
}
.top.is-solid, .top.is-open {
  background: rgba(247, 243, 234, .97); color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: saturate(1.2) blur(8px);
}
/* Logo-PNG ist schwarz: auf dunklem Grund per Filter weiß, im hellen Header dunkel */
.logo { display: block; width: auto; filter: brightness(0) invert(1); transition: filter .35s; }
.top.is-solid .logo, .top.is-open .logo { filter: brightness(0); }
.top__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--top-h); }
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; color: inherit; }
.brand:hover { color: inherit; }
.brand__logo { height: 2.35rem; }
.brand__sub { font-family: var(--serif); font-style: italic; font-size: .95rem; margin-top: .2rem; color: var(--gold-light); }
.top.is-solid .brand__sub, .top.is-open .brand__sub { color: var(--gold-text); }

.top__nav { margin-left: auto; }
.top__nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .15rem; }
.top__nav a {
  position: relative; display: block; padding: .5rem .7rem;
  color: inherit; text-decoration: none; font-weight: 600; font-size: 1rem;
}
.top__nav a::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .25rem; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.top__nav a:hover::after, .top__nav a[aria-current="true"]::after { transform: scaleX(1); }
.top__cta { min-height: 44px; padding: .5rem 1.2rem; }
.top__toggle {
  display: none; margin-left: auto;
  min-height: 44px; padding: .4rem 1.1rem;
  border: 1.5px solid currentColor; border-radius: 999px; background: none;
  font: 700 1rem var(--sans); color: inherit; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; background: var(--green-deep); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%;
  animation: hero-zoom 14s ease-out both;
}
@keyframes hero-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(12,26,21,.96) 0%, rgba(12,26,21,.7) 40%, rgba(12,26,21,.25) 75%, rgba(12,26,21,.55) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: calc(var(--top-h) + 3rem) 0 clamp(2.5rem, 6vh, 4rem); }
.hero h1 { max-width: 14ch; margin-bottom: .4em; }
.hero h1 em { color: var(--gold-light); }
.hero__lead { font-size: clamp(1.15rem, 1rem + .4vw, 1.35rem); max-width: 48ch; color: rgba(255,255,255,.9); }
.hero__strip { position: relative; z-index: 2; border-top: 1px solid rgba(221,189,134,.35); background: rgba(10,22,18,.45); backdrop-filter: blur(6px); }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__facts > span { padding: 1.1rem 0; font-size: 1.05rem; color: rgba(255,255,255,.92); }
.hero__facts > span + span { padding-left: 1.5rem; border-left: 1px solid rgba(221,189,134,.3); }
.hero__facts b { display: block; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .1rem; }

.hero .eyebrow, .hero h1, .hero__lead, .hero .btns { animation: rise 1s var(--ease) both; }
.hero h1 { animation-delay: .1s; }
.hero__lead { animation-delay: .2s; }
.hero .btns { animation-delay: .3s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Zitat ---------- */
.quote { padding: clamp(4rem, 9vw, 7rem) 0; text-align: center; background: var(--bg); }
.quote blockquote { margin: 0; }
.quote p {
  margin: 0 auto; max-width: 22ch;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.3rem); line-height: 1.2; color: var(--green);
}
.ornament { display: block; width: 120px; height: 14px; margin: 0 auto 1.75rem; position: relative; }
.ornament::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--gold);
}
.ornament::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 10px;
  background: var(--bg); border: 1px solid var(--gold); transform: translate(-50%, -50%) rotate(45deg);
}

/* ---------- Abschnitte ---------- */
.section { position: relative; padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section--menu { background: var(--bg-tint); }
.section--dark { background: radial-gradient(120% 80% at 80% 20%, #3A2419 0%, var(--cacao) 60%); color: #F4ECE1; }
.section--dark p { color: rgba(244,236,225,.88); }
.section--dark h2 em { color: var(--gold-light); }
.section--dark .small { color: rgba(244,236,225,.7); margin-top: 1.25rem; }

.sec-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .eyebrow::before { content: ""; width: 48px; height: 1px; background: currentColor; opacity: .6; }
.sec-head--center .lead { margin-inline: auto; }

.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow);
}
.card::before {
  content: ""; position: absolute; left: 1.75rem; top: 0; width: 40px; height: 3px; background: var(--gold); border-radius: 0 0 3px 3px;
}
.card h3 { margin-bottom: .8rem; }
.card p:last-child { margin-bottom: 0; }

.hours { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.hours th, .hours td { padding: .5rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.hours th { text-align: left; font-weight: 400; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 700; color: var(--green); }
.hours tr.is-today th::before { content: "● "; color: var(--gold); }

.links { list-style: none; margin: 1rem 0 0; padding: 0; }
.links li + li { margin-top: .4rem; }
.links a { font-weight: 700; text-decoration: none; border-bottom: 1.5px solid var(--gold); }

/* Degustation */
.degu {
  display: grid; grid-template-columns: 1.5fr 1fr; overflow: hidden;
  margin-top: 1.5rem; border-radius: var(--radius); color: #EEF2EC;
  background: radial-gradient(120% 120% at 0% 0%, #2F5A4A 0%, var(--green-deep) 60%);
  box-shadow: var(--shadow);
}
.degu__main { padding: clamp(1.75rem, 4vw, 3rem); }
.degu h3 { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.8rem); }
.degu h3 em { color: var(--gold-light); }
.degu p { color: rgba(238,242,236,.9); max-width: 52ch; }
.degu__dots { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.degu__dots li { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--gold-light); }
.degu__dots li:nth-child(-n+4) { background: var(--gold-light); }
.degu__side {
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 3rem); border-left: 1px solid rgba(221,189,134,.3); background: rgba(0,0,0,.12);
}
.prices { margin: 0; }
.prices div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid rgba(221,189,134,.3); }
.prices dd { margin: 0; font-family: var(--serif); font-size: 1.6rem; color: var(--gold-light); white-space: nowrap; }
.degu .btn { align-self: flex-start; }

/* Bild + Text */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split--rev .frame { order: 2; }
.frame { position: relative; margin: 0 1.25rem 1.25rem 0; }
.frame img { position: relative; z-index: 1; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.frame::before {
  content: ""; position: absolute; inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1.5px solid var(--gold); border-radius: var(--radius);
}
.frame--gold::before { border-color: rgba(221,189,134,.6); }

.ticks { list-style: none; margin: 0 0 1em; padding: 0; }
.ticks li { position: relative; padding: .4rem 0 .4rem 1.75rem; border-bottom: 1px solid var(--line); }
.ticks li::before {
  content: ""; position: absolute; left: .2rem; top: 50%; width: 8px; height: 8px;
  border: 1.5px solid var(--gold); transform: translateY(-50%) rotate(45deg);
}

.swatches { list-style: none; margin: .5rem 0 1.5rem; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.swatches li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem .35rem .45rem; border-radius: 999px;
  border: 1px solid rgba(244,236,225,.25); font-size: 1rem;
}
.swatches li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.7), transparent 45%), var(--c);
}

/* Produkte */
.product { padding: 0 0 1.75rem; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.product::before { display: none; }
.product:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(29,35,32,.3); }
.product__img { background: #fff; border-bottom: 1px solid var(--line); aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 1.25rem; }
.product__img img { width: 100%; height: 100%; object-fit: contain; padding: 1.25rem; transition: transform .6s var(--ease); }
.product:hover .product__img img { transform: scale(1.05); }
.product__tag {
  display: inline-block; margin: 0 1.75rem .5rem; font-size: .85rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-text);
}
.product h3, .product p { padding-inline: 1.75rem; }

/* Über Ludwig – Porträt vollflächig */
.about { position: relative; background: #0E0F10; color: #F1F1EE; overflow: hidden; }
.about__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% 30%;
}
.about::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(14,15,16,0) 20%, rgba(14,15,16,.85) 55%, rgba(14,15,16,.97) 100%);
}
.about__inner { position: relative; z-index: 2; display: flex; justify-content: flex-end; padding: clamp(5rem, 12vw, 9rem) 0; }
.about__text { max-width: 540px; }
.about p { color: rgba(241,241,238,.88); }
.about h2 em { color: var(--gold-light); }
.awards { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.awards li { padding-top: .8rem; border-top: 1px solid var(--gold); font-size: .98rem; color: rgba(241,241,238,.75); }
.awards strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.15rem; color: #fff; line-height: 1.2; margin-bottom: .2rem; }

/* Einblenden beim Scrollen (nur mit JS) */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

img.is-missing { visibility: hidden; }

/* ---------- Fußzeile ---------- */
.footer { background: var(--green-deep); color: #E6ECE5; padding: clamp(4rem, 8vw, 6rem) 0 2rem; }
.footer__title { font-family: var(--serif); font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.6rem); line-height: 1.1; color: #fff; margin-bottom: 2.5rem; }
.footer__title em { color: var(--gold-light); }
.footer h3 { color: var(--gold-light); font-family: var(--sans); font-weight: 700; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem; }
.footer a { color: #fff; }
.footer a:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(221,189,134,.3);
  font-size: 1rem;
}
.footer__bottom ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__bottom a { text-decoration: none; }

/* =========================================================
   SPEISEKARTE (live aus visito)
   ========================================================= */
.menu { margin-top: 1rem; }
.menu [hidden] { display: none !important; }

.menu-toolbar { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-bottom: 1rem; }
.menu-search { flex: 1 1 320px; position: relative; }
.menu-search::before {
  content: ""; position: absolute; left: 1.1rem; top: 50%; width: 20px; height: 20px; transform: translateY(-50%);
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2382622C' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
}
.menu-search input,
.menu-lang select {
  width: 100%; min-height: 56px;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--surface);
  font: 400 1.1rem var(--sans); color: var(--ink); box-shadow: var(--shadow);
}
.menu-search input { padding: .6rem 1.3rem .6rem 3rem; }
.menu-search input:focus, .menu-lang select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(194,154,91,.2); }
.menu-lang select { width: auto; padding: .6rem 1.3rem; cursor: pointer; }

.menu-sticky {
  position: sticky; top: var(--top-h); z-index: 10;
  background: var(--bg-tint); padding: .75rem 0; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.menu-tabs, .menu-jump {
  display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 901px) {
  .menu-tabs { flex-wrap: wrap; overflow: visible; }
}
.menu-tabs::-webkit-scrollbar, .menu-jump::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: none; min-height: 44px; padding: .5rem 1.15rem;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--surface);
  font: 600 1rem var(--sans); color: var(--ink); cursor: pointer; white-space: nowrap;
  transition: border-color .2s, background .2s, color .2s;
}
.menu-tab:hover { border-color: var(--gold); }
.menu-tab.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.menu-jump { margin-top: .6rem; }
.menu-jump a {
  flex: none; padding: .3rem .2rem; margin-right: .9rem;
  font-size: 1rem; color: var(--muted); text-decoration: none; white-space: nowrap;
}
.menu-jump a:hover { color: var(--gold-text); text-decoration: underline; }

.menu-group-label {
  font-family: var(--serif); font-style: italic; font-size: 1.8rem;
  margin: 2.75rem 0 .25rem; color: var(--gold-text);
}
.menu-group-label:first-child { margin-top: 1rem; }
.menu-category { margin-top: 2.25rem; scroll-margin-top: calc(var(--top-h) + 130px); }
.menu-category-title { font-size: 1.7rem; margin-bottom: .3rem; display: flex; align-items: center; gap: 1rem; }
.menu-level-1 > .menu-category-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-level-2 > .menu-category-title,
.menu-level-3 > .menu-category-title {
  font-family: var(--sans); font-weight: 700; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text);
}
.menu-category-desc { color: var(--muted); max-width: 70ch; font-style: italic; }

.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: .9rem; }
.menu-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; transition: border-color .2s, box-shadow .2s;
}
.menu-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.menu-item-title { margin: 0; font-weight: 700; font-size: 1.1rem; line-height: 1.4; }
.menu-item-price { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; white-space: nowrap; color: var(--green); font-variant-numeric: tabular-nums; }
.menu-item-desc { margin: .3rem 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.5; }
.menu-marks { font-size: .75rem; font-weight: 400; color: var(--muted); }
.menu-item-variants, .menu-item-options { list-style: none; margin: .6rem 0 0; padding: 0; font-size: 1rem; }
.menu-item-variants li, .menu-item-options li {
  display: flex; justify-content: space-between; gap: 1rem; padding: .2rem 0;
  border-top: 1px dashed var(--line);
}
.menu-item-variants span { font-family: var(--serif); font-weight: 500; color: var(--green); font-variant-numeric: tabular-nums; }
.menu-item-options { color: var(--muted); }

.menu-empty { padding: 2rem 0; color: var(--muted); }
.menu-legend { margin-top: 2.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.3rem; }
.menu-legend summary { cursor: pointer; font-weight: 700; }
.menu-legend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; font-size: 1rem; }
.menu-legend-title { font-weight: 700; margin-bottom: .4rem; }
.menu-legend ul { list-style: none; margin: 0; padding: 0; }
.menu-legend b { display: inline-block; min-width: 1.6rem; }
.menu-note { margin-top: 1.25rem; font-size: 1rem; color: var(--muted); text-align: center; }
.menu-error { padding: 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }

.menu-skeleton { display: grid; gap: .75rem; }
.menu-skeleton span {
  display: block; height: 84px; border-radius: var(--radius);
  background: linear-gradient(90deg, #E6DECD 0%, #F3EEE3 50%, #E6DECD 100%) 0 0 / 200% 100%;
  animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* =========================================================
   Rechtliche Seiten (Impressum, Datenschutz)
   ========================================================= */
.legal-head {
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: var(--green-deep); color: #fff;
}
.legal-head .mark { display: flex; flex-direction: column; line-height: 1; text-decoration: none; color: #fff; }
.legal-head .mark__logo { height: 2.3rem; }
.legal-head .mark__sub { font-family: var(--serif); font-style: italic; font-size: .95rem; margin-top: .2rem; color: var(--gold-light); }
.legal-head nav a { color: #fff; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.legal { width: min(760px, 100% - 2rem); margin: clamp(2.5rem, 7vw, 5rem) auto; }
.legal h1 { font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.6rem); margin-bottom: .5rem; }
.legal .stand { color: var(--muted); margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.7rem; margin: 2.5rem 0 .75rem; }
.legal h3 { font-size: 1.2rem; margin: 1.75rem 0 .5rem; }
.legal ul { padding-left: 1.2rem; }
.legal address { font-style: normal; line-height: 1.7; }
.legal .toc { background: var(--bg-tint); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.legal .toc ol { margin: 0; padding-left: 1.2rem; }
.legal .todo { background: #FFF3C4; padding: .1rem .35rem; }
.legal-foot {
  background: var(--green-deep); color: #E6ECE5;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem); font-size: 1rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.legal-foot a { color: #fff; text-decoration: none; margin-left: 1.25rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .top__cta { display: none; }
}

@media (max-width: 900px) {
  /* Gateway: Panels untereinander */
  .gate { height: auto; min-height: 100svh; overflow: visible; }
  .gate__bar { position: relative; grid-template-columns: 1fr auto; padding: 1.1rem 1rem 1rem; background: var(--green-deep); }
  .gate__places { display: none; }
  .gate__brand { align-items: flex-start; }
  .gate__ask { position: relative; left: auto; top: auto; transform: none; width: auto; padding: .25rem 1rem 1.25rem; text-align: left; background: var(--green-deep); text-shadow: none; }
  .panels { flex-direction: column; }
  .panel { flex: none; min-height: 250px; }
  .panel + .panel { border-left: 0; border-top: 1px solid rgba(221,189,134,.35); }
  .panel__content { padding: 1.5rem 1.25rem; }
  .gate__foot { position: relative; background: var(--green-deep); padding: 1.25rem 1rem 1.5rem; }

  .top__toggle { display: inline-flex; }
  .top__nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg); color: var(--ink); border-bottom: 1px solid var(--line);
    padding: .5rem 0 1rem;
  }
  .top.is-open .top__nav { display: block; }
  .top__nav ul { flex-direction: column; width: var(--wrap); margin-inline: auto; }
  .top__nav a { padding: .85rem .25rem; font-size: 1.2rem; border-bottom: 1px solid var(--line); }
  .top__nav a::after { display: none; }

  .hero::before { background: linear-gradient(to top, rgba(12,26,21,.96) 0%, rgba(12,26,21,.78) 45%, rgba(12,26,21,.55) 100%); }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__facts > span { padding: .7rem 0; }
  .hero__facts > span + span { padding-left: 0; border-left: 0; border-top: 1px solid rgba(221,189,134,.25); }
  .hero__facts > span:nth-child(3) { display: none; }

  .split, .degu { grid-template-columns: 1fr; }
  .split--rev .frame { order: 0; }
  .degu__side { border-left: 0; border-top: 1px solid rgba(221,189,134,.3); }
  .cols { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }

  .about__img { position: relative; height: 340px; object-position: 30% 20%; }
  .about::before { background: linear-gradient(to bottom, rgba(14,15,16,0) 0, rgba(14,15,16,0) 260px, #0E0F10 340px); }
  .about__inner { padding-top: 0; }
}

@media (max-width: 560px) {
  body { font-size: 1.0625rem; }   /* 17 px */
  .lead { font-size: 1.15rem; }
  .menu-lang select { width: 100%; }
  .menu-lang { flex: 1 1 100%; }
  .menu-legend-grid { grid-template-columns: 1fr; }
  .btns .btn { flex: 1 1 auto; }
  .awards { grid-template-columns: 1fr; }
  .frame { margin: 0 .75rem .75rem 0; }
  .frame::before { inset: .75rem -.75rem -.75rem .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
