/* ============================================================
   KÄRNTNER ECK — Wirtshaus in Klagenfurt
   Warm-traditionell: Creme · Espresso · Loden-Grün · Messing
   Fraunces (Display) + Hanken Grotesk (Body), self-hosted, cookie-frei
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family:'Fraunces'; src:url('../fonts/fraunces-v38-latin_latin-ext-regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Fraunces'; src:url('../fonts/fraunces-v38-latin_latin-ext-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Fraunces'; src:url('../fonts/fraunces-v38-latin_latin-ext-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Fraunces'; src:url('../fonts/fraunces-v38-latin_latin-ext-italic.woff2') format('woff2'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'Fraunces'; src:url('../fonts/fraunces-v38-latin_latin-ext-500italic.woff2') format('woff2'); font-weight:500; font-style:italic; font-display:swap; }
@font-face { font-family:'Hanken Grotesk'; src:url('../fonts/hanken-grotesk-400.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'Hanken Grotesk'; src:url('../fonts/hanken-grotesk-600.woff2') format('woff2'); font-weight:600; font-display:swap; }

/* ---------- Tokens ---------- */
:root {
  --ground: #F6F1E6;
  --surface: #EEE6D4;
  --card: #FBF8F0;
  --ink: #221A12;          /* 14.8:1 auf ground */
  --muted: #6A5B47;        /* 5.4:1 auf ground */
  --line: rgba(34, 26, 18, .14);
  --line-soft: rgba(34, 26, 18, .08);

  --accent: #2F5135;       /* Loden-Grün — 7.6:1 auf ground, text-/button-sicher */
  --accent-deep: #25422B;
  --on-accent: #F6F1E6;
  --accent-soft: rgba(47, 81, 53, .10);

  --brass: #9A7B2A;        /* Messing — Zierde (Linien, Eyebrows), nicht für Kleintext */
  --brass-deep: #7E6420;   /* 5.2:1 auf ground — falls Messing als Text nötig */

  --dark: #20180F;         /* Espresso — Hero-Scrim, Footer, dunkle Bänder */
  --dark-2: #2A2014;
  --dark-ink: #F3EBDB;
  --dark-muted: #B6A88E;   /* 6.6:1 auf dark */
  --dark-accent: #9BBF92;  /* helles Grün auf dunkel */
  --dark-brass: #CBA968;   /* Messing auf dunkel, text-sicher */

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', 'Segoe UI', system-ui, sans-serif;

  --fs-hero: clamp(2.6rem, 1.6rem + 4.4vw, 5rem);
  --fs-h2: clamp(2rem, 1.5rem + 2.2vw, 3.2rem);
  --fs-h3: clamp(1.35rem, 1.2rem + .6vw, 1.7rem);
  --fs-body: clamp(1rem, .96rem + .2vw, 1.125rem);
  --fs-small: .9rem;
  --fs-eyebrow: .8rem;

  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 26px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --header-h: 76px;
  --subnav-h: 66px; /* sticky Kategorie-Nav auf der Speisekarte-Seite */
  --shadow: 0 18px 44px -22px rgba(34, 26, 18, .4), 0 4px 12px -8px rgba(34, 26, 18, .25);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  /* Einziger Anker-Offset: Höhe des fixen Headers + etwas Luft (kein scroll-margin an den Zielen → kein Doppel-Offset) */
  scroll-padding-top: calc(var(--header-h) + 16px);
}
/* Speisekarte-Seite: zusätzlich die sticky Kategorie-Nav berücksichtigen */
html.has-subnav { scroll-padding-top: calc(var(--header-h) + var(--subnav-h) + 14px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
html.no-scroll { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ground);
  overflow-x: clip;
  -webkit-tap-highlight-color: rgba(47, 81, 53, .12);
}
/* feines Papierkorn */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 1rem;
  hyphens: manual;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
em, .it { font-style: italic; }

p { margin: 0 0 1rem; max-width: 64ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
p, li {
  hyphens: auto; -webkit-hyphens: auto;
  hyphenate-limit-chars: 10 5 4;
  overflow-wrap: break-word;
}
a { color: var(--accent); text-underline-offset: 3px; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }

::selection { background: var(--accent); color: var(--on-accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--ground);
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 600; text-decoration: none;
}
.skip-link:focus-visible { top: 0; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.4rem); }
.container-narrow { max-width: 860px; }
section { padding-block: clamp(4rem, 6vw + 1.2rem, 7.5rem); position: relative; }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.6rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { color: var(--muted); font-size: 1.14rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow.flank::after {
  content: ''; width: 26px; height: 1px; background: var(--brass);
}
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .85rem 1.7rem;
  border: 1px solid transparent; border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 1.04rem; font-weight: 600; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: scale(.98); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn-accent:hover { background: var(--accent-deep); box-shadow: 0 12px 28px -12px rgba(47,81,53,.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-cream { background: var(--ground); color: var(--ink); }
.btn-cream:hover { background: #fff; }
.btn-ghost-dark { background: transparent; color: var(--dark-ink); border-color: rgba(243,235,219,.32); }
.btn-ghost-dark:hover { border-color: var(--dark-brass); color: var(--dark-brass); }
.btn-sm { min-height: 44px; padding: .5rem 1.15rem; font-size: .95rem; }
.microline { font-size: var(--fs-small); color: var(--muted); margin-top: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(246, 241, 230, .9);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom-color: var(--line-soft);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }

.wordmark { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; color: var(--ink); white-space: nowrap; }
.wordmark b { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; letter-spacing: .01em; }
.wordmark span { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--brass-deep); margin-top: 3px; }
.site-header:not(.scrolled) .wordmark.on-hero b { color: var(--dark-ink); }
.site-header:not(.scrolled) .wordmark.on-hero span { color: var(--dark-brass); }

.main-nav { display: none; align-items: center; gap: 1.9rem; }
.main-nav a { position: relative; font-size: .98rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.site-header:not(.scrolled) .main-nav a { color: var(--dark-ink); }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; opacity: .6; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-right { display: flex; align-items: center; gap: .9rem; }
.header-tel { display: none; font-weight: 600; color: var(--ink); text-decoration: none; }
.site-header:not(.scrolled) .header-tel { color: var(--dark-ink); }
.header-cta { display: none; }
@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-tel { display: inline-flex; align-items: center; gap: .4rem; }
  .header-cta { display: inline-flex; }
  .burger { display: none !important; }
}

.burger {
  display: grid; place-items: center; width: 46px; height: 46px;
  background: rgba(246,241,230,.14); border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer;
}
.site-header:not(.scrolled) .burger { background: rgba(243,235,219,.12); border-color: rgba(243,235,219,.3); }
.burger span { display: block; width: 19px; height: 2px; background: var(--ink); margin-block: 2.5px; border-radius: 2px; }
.site-header:not(.scrolled) .burger span { background: var(--dark-ink); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column;
  padding: 1.1rem clamp(1.25rem, 4vw, 2rem) 2rem;
  background: var(--dark); color: var(--dark-ink); overflow-y: auto;
}
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.mobile-menu-top .wordmark b, .mobile-menu-top .wordmark { color: var(--dark-ink); }
.mobile-menu-top .wordmark span { color: var(--dark-brass); }
.menu-close { display: grid; place-items: center; width: 46px; height: 46px; background: transparent; border: 1px solid rgba(243,235,219,.3); border-radius: 50%; color: var(--dark-ink); cursor: pointer; font-size: 1.2rem; }
.mobile-nav { display: flex; flex-direction: column; margin-top: 5vh; }
.mobile-nav a { padding: .95rem 0; font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; color: var(--dark-ink); text-decoration: none; border-bottom: 1px solid rgba(243,235,219,.12); }
.mobile-menu-bottom { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: .8rem; }
.mobile-menu-bottom .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(580px, 92svh, 880px);
  display: grid; align-items: end;
  padding-block: calc(var(--header-h) + 3rem) clamp(3rem, 6vw, 5rem);
  color: var(--dark-ink);
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,15,9,.92) 0%, rgba(20,15,9,.55) 42%, rgba(20,15,9,.30) 70%, rgba(20,15,9,.5) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--dark-brass); }
.hero .eyebrow::before { background: var(--dark-brass); }
.hero h1 { font-size: var(--fs-hero); font-weight: 500; max-width: 16ch; margin-bottom: 1.2rem; color: var(--dark-ink); }
.hero h1 em { color: var(--dark-brass); font-weight: 400; }
.hero-sub { max-width: 50ch; font-size: clamp(1.06rem, 1rem + .35vw, 1.3rem); color: var(--dark-ink); opacity: .92; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-meta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .5rem 1.8rem; font-size: .95rem; color: var(--dark-muted); }
.hero-meta b { color: var(--dark-ink); font-weight: 600; }
.hero-meta .sep { color: var(--dark-brass); }

/* ---------- Info-Strip ---------- */
.infostrip { background: var(--dark); color: var(--dark-ink); padding-block: 0; }
.infostrip .container { display: grid; gap: 1px; grid-template-columns: 1fr; background: rgba(243,235,219,.1); }
@media (min-width: 720px) { .infostrip .container { grid-template-columns: repeat(3, 1fr); } }
.info-item { background: var(--dark); padding: 1.5rem clamp(1rem, 3vw, 2rem); display: flex; gap: .9rem; align-items: flex-start; }
.info-item svg { width: 24px; height: 24px; flex: none; stroke: var(--dark-brass); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.info-item .k { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dark-muted); }
.info-item .v { font-weight: 600; }
.info-item .v small { display: block; font-weight: 400; color: var(--dark-muted); font-size: .85rem; margin-top: 2px; }
.info-item a { color: inherit; text-decoration: none; }

/* ---------- Mittagsmenü ---------- */
.lunch { background: var(--surface); }
.lunch-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.lunch-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--brass));
}
.lunch-top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .6rem 1.4rem; margin-bottom: 1.8rem; }
.lunch-top h2 { margin: 0; }
.lunch-date { font-family: var(--font-body); font-weight: 600; color: var(--brass-deep); font-size: 1rem; }
.lunch-live { display: inline-flex; align-items: center; gap: .45rem; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--accent); background: var(--accent-soft); padding: .3rem .7rem; border-radius: 999px; }
.lunch-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.lunch-grid { display: grid; gap: 1.4rem; }
@media (min-width: 700px) { .lunch-grid { grid-template-columns: 1fr 1fr; } }
.lunch-menu { border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; background: var(--ground); }
.lunch-menu h3 { font-style: italic; color: var(--accent); margin-bottom: 1rem; font-size: 1.4rem; }
.lunch-course { padding: .55rem 0; color: var(--ink); }
.lunch-course + .lunch-course { border-top: 1px dashed var(--line); }
.lunch-course .al { font-size: .7rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.lunch-price { margin-top: 1.1rem; padding-top: 1rem; border-top: 2px solid var(--brass); font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.lunch-note { margin-top: 1.6rem; font-size: .92rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }

/* ---------- Speisekarte ---------- */
/* ---------- Saison / Wochenempfehlung ---------- */
.saison-items.menu-items { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; column-gap: 0; }
.saison-sub { max-width: 640px; margin-inline: auto; margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- Speisekarte ---------- */
.menu-wrap { position: relative; }
.menu-nav { position: sticky; top: var(--header-h); z-index: 40; background: rgba(246,241,230,.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-soft); }
.menu-nav-inner { display: flex; gap: clamp(.3rem, 1.5vw, 1.4rem); overflow-x: auto; padding: .85rem clamp(1.25rem, 4vw, 2.4rem); scrollbar-width: none; max-width: 980px; margin-inline: auto; justify-content: center; }
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: none; padding: .35rem .2rem;
  font-size: .92rem; font-weight: 600; color: var(--muted); text-decoration: none;
  white-space: nowrap; border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.menu-nav a:hover { color: var(--ink); }
.menu-nav a.active { color: var(--ink); border-bottom-color: var(--brass); }
@media (max-width: 820px) { .menu-nav-inner { justify-content: flex-start; } }

.menu-cat { margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.menu-cat-head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.6rem; }
.menu-cat-head h3 { margin: 0; font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem); }
@media (min-width: 620px) { .menu-cat-head h3 { white-space: nowrap; } }
.menu-cat-head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-cat-head .ico { width: 30px; height: 30px; stroke: var(--brass); fill: none; stroke-width: 1.5; }
.menu-items { display: grid; gap: 1.5rem; }
@media (min-width: 860px) { .menu-items { grid-template-columns: 1fr 1fr; column-gap: clamp(2.5rem, 5vw, 4.5rem); } }
.dish { break-inside: avoid; }
.dish-row { display: flex; align-items: baseline; gap: .4rem; }
.dish-name { font-weight: 600; color: var(--ink); font-size: 1.06rem; }
.dish-name .al { font-size: .68rem; font-weight: 600; letter-spacing: .04em; color: var(--brass-deep); text-transform: uppercase; margin-left: .3rem; vertical-align: .08em; }
.dish-lead { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-.28em); min-width: 1.2rem; }
.dish-price { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; white-space: nowrap; }
.dish-price .alt { color: var(--muted); font-weight: 500; }
.dish-desc { color: var(--muted); font-size: .92rem; margin-top: .25rem; max-width: 48ch; }

/* Samstags-Special */
.special {
  margin: clamp(2.4rem, 5vw, 4rem) 0;
  background: var(--dark); color: var(--dark-ink);
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid; gap: 1rem; text-align: center;
  position: relative; overflow: hidden;
}
.special .eyebrow { color: var(--dark-brass); justify-content: center; }
.special .eyebrow::before, .special .eyebrow.flank::after { background: var(--dark-brass); }
.special h3 { color: var(--dark-ink); font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.4rem); max-width: 22ch; margin-inline: auto; }
.special p { color: var(--dark-muted); margin-inline: auto; }
.special .price { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--dark-brass); }

/* Allergen-Legende */
.allergens { margin-top: 2.4rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); overflow: hidden; }
.allergens summary { cursor: pointer; list-style: none; padding: 1.1rem 1.4rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.allergens summary::-webkit-details-marker { display: none; }
.allergens summary::after { content: '+'; color: var(--brass-deep); font-size: 1.5rem; transition: transform .2s ease; }
.allergens[open] summary::after { transform: rotate(45deg); }
.allergens-body { padding: 0 1.4rem 1.4rem; columns: 2; column-gap: 2rem; font-size: .88rem; color: var(--muted); }
@media (max-width: 560px) { .allergens-body { columns: 1; } }
.allergens-body li { padding: .2rem 0; break-inside: avoid; }
.allergens-body b { color: var(--ink); }
.allergens-note { padding: 0 1.4rem 1.4rem; font-size: .82rem; color: var(--muted); border-top: 1px solid var(--line-soft); padding-top: 1rem; }

/* ---------- Ambiente / Galerie ---------- */
.ambiente { background: var(--dark); color: var(--dark-ink); }
.ambiente .eyebrow { color: var(--dark-brass); }
.ambiente .eyebrow::before { background: var(--dark-brass); }
.ambiente h2 { color: var(--dark-ink); }
.ambiente h2 em { color: var(--dark-brass); }
.ambiente .lead { color: var(--dark-muted); }
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); margin-top: 1rem; }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; } }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; position: relative; background: var(--dark-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.03); transition: transform .5s var(--ease); }
@media (hover: hover) { .gallery figure:hover img { transform: scale(1.05); } }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
@media (max-width: 759px) { .gallery img { aspect-ratio: 4/3; } .gallery .g-tall img, .gallery .g-wide img { aspect-ratio: 4/3; } }
.tour-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; padding: 1.4rem clamp(1.4rem, 3vw, 2rem); border: 1px solid rgba(243,235,219,.18); border-radius: var(--r-lg); background: rgba(243,235,219,.04); }
.tour-cta .ico { width: 40px; height: 40px; flex: none; stroke: var(--dark-brass); fill: none; stroke-width: 1.4; }
.tour-cta b { display: block; color: var(--dark-ink); font-size: 1.1rem; }
.tour-cta span { color: var(--dark-muted); font-size: .92rem; }
.tour-cta .btn { margin-left: auto; }

/* ---------- Über uns ---------- */
.about-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-figure { position: relative; }
.about-figure img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 58%; border-radius: var(--r-xl); box-shadow: var(--shadow); filter: saturate(1.02) contrast(1.03); }
.about-figure::after { content: ''; position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--brass); border-radius: var(--r-xl); z-index: -1; }
.about-facts { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.about-facts span { font-size: .85rem; font-weight: 600; padding: .45rem .95rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-soft); }
.about blockquote { margin: 1.8rem 0 0; padding-left: 1.2rem; border-left: 3px solid var(--brass); font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--ink); max-width: 40ch; }

/* ---------- Gäste-Stimmen / Bewertungen ---------- */
.reviews-badge { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.6rem; padding: .55rem 1.15rem; border: 1px solid var(--line); border-radius: 999px; background: var(--card); text-decoration: none; color: var(--ink); font-weight: 600; transition: border-color .2s ease; }
.reviews-badge:hover { border-color: var(--brass); }
.reviews-badge .stars { color: var(--brass); letter-spacing: .08em; }
.reviews-badge .score { font-family: var(--font-display); font-size: 1.1rem; }
.reviews-badge .src { color: var(--muted); font-weight: 500; }
.reviews-badge .arr { color: var(--brass-deep); }

.reviews-grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); margin-top: clamp(2.4rem, 5vw, 3.6rem); }
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow); }
.review-stars { color: var(--brass); letter-spacing: .14em; font-size: .95rem; }
.review-text { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 1.12rem; line-height: 1.55; color: var(--ink); }
.review-author { margin-top: auto; display: flex; align-items: center; gap: .75rem; }
.review-author .avatar { width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.review-author .who { font-weight: 600; font-size: .96rem; }
.review-author .where { display: block; color: var(--muted); font-size: .82rem; }

/* ---------- Reservierung ---------- */
.reserve { background: var(--surface); }
.reserve-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .reserve-grid { grid-template-columns: 1fr 1.05fr; align-items: start; } }
.reserve-call { }
.reserve-call .bigtel { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-size: clamp(1.8rem, 1.4rem + 2vw, 2.8rem); font-weight: 600; color: var(--ink); text-decoration: none; margin-block: .6rem 1.2rem; }
.reserve-call .bigtel svg { width: 1em; height: 1em; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.reserve-hours { margin-top: 1.6rem; display: grid; gap: .5rem; max-width: 360px; }
.reserve-hours .row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.reserve-hours .row.closed { color: var(--muted); }
.reserve-hours .row b { font-weight: 600; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .92rem; font-weight: 600; margin-bottom: .4rem; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field input, .field textarea, .field select {
  width: 100%; min-height: 52px; padding: .8rem 1rem;
  font: inherit; font-size: 16px; color: var(--ink);
  background: var(--ground); border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--muted); margin-block: 1.1rem; }
.consent input { width: 19px; height: 19px; margin-top: .15rem; accent-color: var(--accent); flex: none; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--r-md); font-size: .95rem; }
.form-status.ok { background: var(--accent-soft); color: var(--accent-deep); border: 1px solid rgba(47,81,53,.3); }
.form-status.err { background: rgba(140,40,30,.08); color: #8C281E; border: 1px solid rgba(140,40,30,.3); }

/* ---------- Kontakt / Anfahrt ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { }
.contact-card h3 { font-size: 1.3rem; margin-bottom: .8rem; }
.contact-card svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.6; margin-bottom: .6rem; }
.contact-card a { color: var(--ink); text-decoration: none; }
.contact-card a:hover { color: var(--accent); }
.contact-card .muted { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--dark-muted); padding-block: 3rem 2rem; }
.site-footer .wordmark b { color: var(--dark-ink); }
.site-footer .wordmark span { color: var(--dark-brass); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 1.6rem 3rem; align-items: center; justify-content: space-between; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.3rem; font-size: .95rem; }
.footer-links a { color: var(--dark-muted); text-decoration: none; }
.footer-links a:hover { color: var(--dark-ink); }
.legal-row { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(243,235,219,.12); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; }
.legal-row a { color: inherit; }

/* ---------- Legal-Seiten ---------- */
.legal-page { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; max-width: 800px; }
.legal-page h1 { font-size: clamp(2rem, 1.6rem + 2vw, 3rem); }
.legal-page h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page li { list-style: disc; margin-left: 1.2rem; }
.legal-page strong { color: var(--ink); }

/* ---------- Utilities ---------- */
.surface { background: var(--surface); }

/* ---------- Willkommen / Fakten ---------- */
#willkommen .lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); color: var(--muted); max-width: 62ch; }
.facts { display: grid; gap: 1.6rem; margin-top: clamp(2.6rem, 5vw, 4rem); text-align: center; }
@media (min-width: 720px) { .facts { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.fact { position: relative; padding: .4rem clamp(1rem, 3vw, 2.4rem); }
@media (min-width: 720px) { .fact + .fact::before { content: ''; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line); } }
.fact-k { display: block; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: .55rem; }
.fact-v { display: block; font-family: var(--font-display); font-size: 1.32rem; color: var(--ink); line-height: 1.3; }
.fact-s { display: block; color: var(--muted); font-size: .96rem; margin-top: .28rem; }
.fact-s a { color: var(--accent); text-decoration: none; font-weight: 600; }
.fact-s a:hover { text-decoration: underline; }

/* ---------- Speisekarte-Highlights ---------- */
/* Aus unserer Küche: Foto-Galerie der Gerichte */
.kueche-galerie { display: grid; gap: clamp(1rem, 2.4vw, 1.7rem); grid-template-columns: repeat(2, 1fr); margin-bottom: clamp(2.6rem, 5vw, 4rem); }
@media (min-width: 760px) { .kueche-galerie { grid-template-columns: repeat(4, 1fr); } }
.kueche-card { margin: 0; }
.kueche-card img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); display: block; }
.kueche-card figcaption { margin-top: .85rem; text-align: center; }
.kc-name { display: block; font-family: var(--font-display); font-size: clamp(1.1rem, 1rem + .4vw, 1.25rem); color: var(--ink); line-height: 1.25; }
.kc-desc { display: block; color: var(--muted); font-size: .9rem; line-height: 1.45; margin-top: .3rem; }

.highlights { max-width: 760px; margin-inline: auto; }
.hl { padding: 1.35rem 0; border-bottom: 1px solid var(--line-soft); }
.hl:first-child { border-top: 1px solid var(--line-soft); }
.hl-row { display: flex; align-items: baseline; gap: 1rem; justify-content: space-between; }
.hl-name { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.3rem, 1.1rem + .8vw, 1.6rem); color: var(--ink); line-height: 1.25; }
.hl-price { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--brass-deep); white-space: nowrap; }
.hl-desc { color: var(--muted); margin-top: .35rem; font-size: .98rem; }

/* ---------- Mittagsmenü-Meta ---------- */
.lunch-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .55rem; text-align: right; }
@media (max-width: 520px) { .lunch-meta { align-items: flex-start; text-align: left; } }

/* ---------- Subpage: Speisekarte-Hero ---------- */
.page-hero { background: var(--dark); color: var(--dark-ink); padding-block: calc(var(--header-h) + clamp(2.6rem, 5vw, 4.2rem)) clamp(2.6rem, 5vw, 4.2rem); text-align: center; }
.page-hero .eyebrow { color: var(--dark-brass); }
.page-hero .eyebrow::before, .page-hero .eyebrow.flank::after { background: var(--dark-brass); }
.page-hero h1 { color: var(--dark-ink); font-size: clamp(2.6rem, 1.9rem + 3vw, 4.2rem); font-weight: 500; margin-bottom: .7rem; }
.page-hero-sub { color: var(--dark-muted); max-width: 50ch; margin-inline: auto; font-size: 1.08rem; }
.menu-page { padding-block: clamp(2.6rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem); }

/* ---------- Reveals ---------- */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Sticky Mobile-CTA ---------- */
.mobile-bar { display: none; }
@media (max-width: 1023px) {
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(246,241,230,.95);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  }
  .mobile-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 60px; font-weight: 600; text-decoration: none; color: var(--ink); }
  .mobile-bar a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
  .mobile-bar .res { background: var(--accent); color: var(--on-accent); }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
