/* =================================================================
   Zum Silbertalerwirt — zentrale Stylesheet
   Farben & Stil abgeleitet aus dem Logo (rustikal / gemütlich)
   ================================================================= */

/* ---------- 1. Design-Tokens ---------- */
:root {
  --cream:      #f5f2ea;   /* Seitenhintergrund (Logo-Papierton) */
  --cream-2:    #ece5d6;   /* abwechselnde Sektionen */
  --paper:      #fbfaf4;   /* Karten / Flächen */
  --ink:        #36383b;   /* Logo-Anthrazit – Überschriften & Text */
  --ink-soft:   #53575b;
  --muted:      #695f52;   /* gedämpfter Text – kontraststark (WCAG AA) */
  --wood:       #9c5a2c;   /* warmes Kastanienbraun – Akzent / Links */
  --wood-d:     #7c4520;
  --green:      #4e6140;   /* Waldgrün – zweiter Akzent (Blattwerk) */
  --green-d:    #3b4a31;
  --line:       rgba(54,56,59,.13);
  --line-soft:  rgba(54,56,59,.07);
  --shadow-sm:  0 1px 3px rgba(40,30,15,.08);
  --shadow-md:  0 10px 30px -12px rgba(40,30,15,.28);
  --shadow-lg:  0 24px 60px -20px rgba(40,30,15,.4);

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);

  --ff-head: "Bitter", Georgia, "Times New Roman", serif;
  --ff-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-hand: "Caveat", "Comic Sans MS", cursive;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  /* Helles Erscheinungsbild erzwingen – die Seite sieht im Dark Mode genauso aus wie jetzt */
  color-scheme: light;
  /* Sehr dezente Korn-/Papierstruktur für helle Flächen (bleibt optisch weiß) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='5'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 2. Reset / Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  background-image: linear-gradient(rgba(245,242,234,.96), rgba(245,242,234,.96)), var(--grain);
  background-size: auto, 200px;
  background-attachment: fixed, fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--wood); text-decoration: none; }
a:hover { color: var(--wood-d); }
h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--wood); outline-offset: 3px; border-radius: 3px; }

/* ---------- 3. Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section {
  padding-block: clamp(56px, 9vw, 120px);
  background-color: var(--cream);
  background-image: linear-gradient(rgba(245,242,234,.955), rgba(245,242,234,.955)), var(--grain);
  background-size: auto, 200px;
}
.section--alt {
  background-color: var(--cream-2);
  background-image: linear-gradient(rgba(236,229,214,.955), rgba(236,229,214,.955)), var(--grain);
  background-size: auto, 200px;
}
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--ff-hand);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--wood);
  line-height: 1;
  display: inline-block;
  margin-bottom: .35em;
}
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); margin-top: .8em; }

.divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--green); margin: 0 0 .2em;
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: clamp(28px, 8vw, 64px);
  background: linear-gradient(90deg, transparent, var(--green));
}
.divider::after { background: linear-gradient(90deg, var(--green), transparent); }

/* ---------- 4. Buttons ---------- */
.btn {
  --bg: var(--wood); --fg: #fff;
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--bg); color: var(--fg);
  padding: .75em 1.4em; border: 1px solid var(--bg); border-radius: 99px;
  font-weight: 600; font-size: 1rem; letter-spacing: .01em; line-height:1.1;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--wood-d); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(54,56,59,.35); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--lg { padding: 1.05em 2em; font-size: 1.08rem; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,242,234,.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: auto; height: 56px; transition: height .25s ease; }
.brand .brand-name { display: none; }
.main-nav ul { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 21px); }
.main-nav a {
  color: var(--ink); font-weight: 600; font-size: 1.02rem; padding: 3px 9px; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--wood); transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* Mobile-Navigation */
@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; padding: 10px; margin-right: -10px;
  }
  .nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .nav-wrap {
    position: fixed; inset: 78px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding: 18px var(--gutter) 30px;
    display: flex; flex-direction: column; gap: 18px;
  }
  body.nav-open .nav-wrap { transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 13px 4px; font-size: 1.18rem; }
  .main-nav a::after { display: none; }
  .nav-cta { flex-direction: column; align-items: stretch; }
  .nav-cta .btn { justify-content: center; }
}
@media (min-width: 921px) {
  .nav-wrap { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; min-height: min(88vh, 760px);
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(270deg, rgba(30,22,12,.34) 0%, rgba(30,22,12,.22) 40%, rgba(28,20,10,.74) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(30,22,12,.15), rgba(30,22,12,.55));
}
.hero__inner { padding-block: clamp(80px, 14vh, 150px); }
.hero .eyebrow { color: #f1d8b8; }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 1.02;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero p.lead { color: rgba(255,255,255,.92); max-width: 39em;
text-wrap: balance;}
@media(max-width:490px) {
    .hero__badges {flex-wrap: nowrap;    flex-direction: column;}
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(24px, 4vw, 38px); }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: clamp(28px, 5vw, 44px);
  font-size: .98rem; color: rgba(255,255,255,.9);
}
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.hero__badges li::before { content: "✦"; color: #e8c79c; }

/* ---------- 7. Über uns ---------- */
.about__grid {
  display: grid; gap: clamp(36px, 6vw, 84px);
  grid-template-columns: 1.02fr .98fr; align-items: center;
}
.about__text p + p { margin-top: 1.1em; }
.about__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(24px, 3vw, 36px); }

.about__media { position: relative; padding: 30px 0 46px 46px; }
.about__photo { display: block; object-fit: cover; }
.about__photo--main {
  width: 86%; margin-left: auto; aspect-ratio: 1;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.about__photo--accent {
  position: absolute; left: 0; bottom: 0; width: 50%; aspect-ratio: 1;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  border: 8px solid var(--cream);
}
.about__stamp {
  position: absolute; top: 12px; left: 0;
  background: var(--green); color: #fff; padding: 15px 20px;
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  max-width: 210px; line-height: 1.25;
}
.about__stamp strong { font-family: var(--ff-head); display: block; font-size: 1.35rem; margin-bottom: 2px; }
.about__stamp span { font-size: .9rem; opacity: .92; }
.feature-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: clamp(52px, 7vw, 88px);
}
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(156,90,44,.3); }
.feature .ico {
  font-size: 1.5rem; line-height: 1; color: var(--wood);
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(156,90,44,.1); margin-bottom: 16px;
}
.feature h3 { font-size: 1.22rem; margin-bottom: .35em; }
.feature p { color: var(--muted); font-size: .98rem; }

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; padding: 0 0 30px; margin-bottom: 6px; }
  .about__photo--main { width: 100%; aspect-ratio: 16 / 11; }
  .about__photo--accent { width: 32%; left: auto; right: 14px; bottom: -22px; border-width: 6px; }
  .about__stamp { top: 14px; left: 14px; max-width: 100%; }
  .feature-row { grid-template-columns: 1fr; }
}

/* ---------- 8. Speisekarte / Accordion ---------- */
.menu-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 30px;
}
.menu-note { color: var(--muted); font-size: .96rem; max-width: 46em; }
.accordion { max-width: 880px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.acc-item.is-open { box-shadow: var(--shadow-md); border-color: rgba(156,90,44,.4); }
.acc-trigger {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; gap: 16px;
  padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 30px);
  color: var(--ink);
}
.acc-trigger:hover { color: var(--wood-d); }
.acc-num {
  font-family: var(--ff-hand); font-size: 1.6rem; color: var(--wood);
  line-height: 1; flex-shrink: 0; width: 1.4em;
}
/* Die Kategorie-Ueberschrift umschliesst jetzt den Button (gueltiges HTML),
   statt in ihm zu stecken. Damit sich optisch nichts aendert, wird das h3
   hier vollstaendig neutralisiert — es verhaelt sich wie der frueher
   umschliessende Container — und die Ueberschriften-Optik wandert auf
   .acc-title, wo vorher das h3 sass. */
.acc-head { font: inherit; letter-spacing: normal; color: inherit; }
.acc-title {
  flex: 1;
  font-family: var(--ff-head); font-weight: 700; line-height: 1.12;
  letter-spacing: -.01em; color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}
.acc-title .count { display: block; font-family: var(--ff-body); font-weight: 400; font-size: .92rem; color: var(--muted); margin-top: 2px; }
.acc-icon { flex-shrink: 0; width: 30px; height: 30px; position: relative; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--wood); border-radius: 2px; transition: transform .3s ease;
}
.acc-icon::before { width: 16px; height: 2.5px; }
.acc-icon::after { width: 2.5px; height: 16px; }
.acc-item.is-open .acc-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.acc-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4,0,.2,1);
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel-inner { padding: 4px clamp(20px, 3vw, 30px) clamp(20px, 3vw, 28px); }
.dish {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: 6px 14px; padding: 10px 0; border-top: 1px dashed var(--line);
}
.dish:first-child { border-top: 0; }
.dish__main { min-width: 0; }
.dish__name { font-weight: 600; color: var(--ink); line-height: 1.2; }
.dish__name .alg { font-weight: 400; font-size: .78em; color: var(--muted); letter-spacing: .04em; }
.dish__desc { color: var(--muted); font-size: .96rem; margin-top: 1px; }
.dish__price { font-family: var(--ff-body); font-weight: 400; color: var(--ink); white-space: nowrap; font-size: 1rem; }
.dish__price::before { content: "€ "; font-weight: 400; color: var(--muted); }
.menu-foot { text-align: center; margin-top: 34px; color: var(--muted); font-size: .92rem; }
.menu-foot .alg-key { margin-top: 8px; }

/* ---------- 9. Galerie (Masonry – zeigt jedes Bild vollständig, ohne Beschnitt) ---------- */
.gallery {
  column-count: 3; column-gap: 14px;
}
.gallery a {
  display: block; position: relative; overflow: hidden; border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); background: var(--cream-2);
  margin-bottom: 14px; break-inside: avoid;
}
.gallery img { width: 100%; height: auto; display: block; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.gallery a:hover img { transform: scale(1.06); }
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30,22,12,.5));
  opacity: 0; transition: opacity .3s ease;
}
.gallery a:hover::after { opacity: 1; }
@media (max-width: 820px) { .gallery { column-count: 2; } }
@media (max-width: 480px) { .gallery { column-count: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vw;
  background: rgba(24,18,10,.9); backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; background: none; border: 0;
  color: #fff; font-size: 2.4rem; line-height: 1; opacity: .85;
}
.lightbox__close:hover { opacity: 1; }

/* ---------- 10. Öffnungszeiten & Anfahrt ---------- */
.info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; }
.info-card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm);
}
.info-card .flex-con { flex-grow: 1; }
.info-card h3 { font-size: 1.5rem; margin-bottom: .8em; display: flex; align-items: center; gap: 10px; }
.info-card h3 .ico { color: var(--wood); }
.hours { width: 100%; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.02rem;
}
.hours li:last-child { border-bottom: 0; }
.hours .day { font-weight: 600; }
.hours .time { color: var(--ink-soft); text-align: right; }
.hours li.closed .time { color: var(--wood-d); font-weight: 600; }
.hours li.today { background: rgba(156,90,44,.08); margin-inline: -14px; padding-inline: 14px; border-radius: 8px; }
.contact-lines { margin-top: 4px; }
.contact-lines li { display: flex; gap: 12px; padding: 9px 0; align-items: flex-start; }
.contact-lines .ico { color: var(--wood); flex-shrink: 0; width: 1.4em; text-align: center; }
.info-card .btn { margin-top: 22px; }
@media (max-width: 820px) { .info__grid { grid-template-columns: 1fr; } }

/* ---------- 11. Kontaktformular ---------- */
.contact {
  position: relative;
  background-color: var(--cream-2);
  background-image: linear-gradient(rgba(236,229,214,.955), rgba(236,229,214,.955)), var(--grain);
  background-size: auto, 200px;
}
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.contact__intro p { color: var(--ink-soft); margin-top: 1em; }
.contact__intro .reasons { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact__intro .reasons li {
  display: flex; gap: 14px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact__intro .reasons li:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(156,90,44,.32); }
.contact__intro .reasons .ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; background: rgba(78,97,64,.13); color: var(--green-d); font-size: 1.3rem;
}
.contact__intro .reasons strong { display: block; font-family: var(--ff-head); font-size: 1.05rem; color: var(--ink); margin-bottom: 2px; }
.contact__intro .reasons span { color: var(--muted); font-size: .95rem; line-height: 1.4; }
.contact__intro .reasons li > span { display: flex; flex-direction: column; }
.contact__intro .reasons br { display: none; }

.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* Spamschutz-Feld: fuer Menschen unsichtbar, fuer Bots ausfuellbar.
   Bewusst "position:absolute" statt "display:none" — so belegt das Feld
   KEINE Zelle im Formular-Raster und die Abstaende bleiben exakt gleich.
   (display:none wird von manchen Bots ausserdem erkannt und uebersprungen.) */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .95rem; }
.field label .req { color: var(--wood); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: 6px 12px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--wood); background: #fff;
  box-shadow: 0 0 0 4px rgba(156,90,44,.12);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #b4452f; }
.field .hint { font-size: .85rem; color: var(--muted); }
.field-error { color: #b4452f; font-size: .85rem; display: none; }
.field.has-error .field-error { display: block; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b4452f; }
.reservation-extra { display: none; gap: 18px; }
.reservation-extra.show { display: grid; grid-template-columns: 1fr 1fr; grid-column: 1/-1; }
.form-actions { grid-column: 1/-1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-actions .btn { min-width: 200px; justify-content: center; }
.consent { grid-column: 1/-1; display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--wood); flex-shrink: 0; }
.form-consent-note { grid-column: 1/-1; font-size: .85rem; color: var(--muted); line-height: 1.5; margin: -2px 0 0; }
.form-consent-note a { font-weight: 600; }
.form-status { grid-column: 1/-1; border-radius: var(--r-sm); padding: 14px 16px; font-size: .96rem; display: none; }
.form-status.ok { display: block; background: rgba(78,97,64,.14); color: var(--green-d); border: 1px solid rgba(78,97,64,.35); }
.form-status.err { display: block; background: rgba(180,69,47,.12); color: #8f2f1d; border: 1px solid rgba(180,69,47,.35); }
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid, .reservation-extra.show { grid-template-columns: 1fr; } }

/* ---------- 12. Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.82); padding-block: clamp(48px, 7vw, 76px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 60px); }
.site-footer .f-brand img { height: 92px; width: auto; margin-bottom: 16px; }
.site-footer .f-brand p { color: rgba(255,255,255,.72); font-size: .96rem; }
.site-footer h4 { color: #fff; font-size: 1.12rem; margin-bottom: 16px; }
.site-footer ul li { padding: 1px 0; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.f-contact { display: flex; flex-direction: column; font-style: normal; }
.f-contact > span { display: flex; gap: 10px; padding: 6px 0; }
.f-contact .ico { color: #e8c79c; flex-shrink: 0; }
.footer__bottom {
  margin-top: clamp(36px, 5vw, 56px); border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 24px; display: flex; flex-wrap: wrap; gap: 8px 24px;
  justify-content: space-between; font-size: .88rem; color: rgba(255,255,255,.7);
}
.footer__bottom a { color: rgba(255,255,255,.7); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- 13. Subpage (Impressum/Datenschutz) ---------- */
.page-hero {
  background-color: var(--cream-2); border-bottom: 1px solid var(--line);
  background-image: linear-gradient(rgba(236,229,214,.955), rgba(236,229,214,.955)), var(--grain);
  background-size: auto, 200px;
  padding-block: clamp(48px, 8vw, 90px);
}
.page-hero .eyebrow { color: var(--wood); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.crumb { font-size: .9rem; color: var(--muted); padding-top: 22px; }
.crumb a { color: var(--wood); font-weight: 600; }
.crumb a:hover { color: var(--wood-d); }
.crumb span[aria-current] { color: var(--ink-soft); }
.legal { max-width: 960px; }
.legal h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 1.8em 0 .5em; padding-top: .4em; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.2rem; margin: 1.4em 0 .3em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin-bottom: 1em; }
.legal ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1em; }
.legal ul li { margin-bottom: .4em; }
.legal .toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 26px; margin-bottom: 40px; }
.legal .toc h2 { margin: 0 0 .5em; font-size: 1.15rem; padding: 0; }
.legal .toc a { display: inline-block; padding: 3px 0; }
.placeholder { background: rgba(156,90,44,.1); border-left: 3px solid var(--wood); padding: 2px 8px; border-radius: 3px; font-weight: 600; color: var(--wood-d); }

/* ---------- 14. Utilities & Motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; z-index: 300; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color:#fff; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 15. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: rgba(156,90,44,.4); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: clamp(15px,2.3vw,21px) clamp(18px,3vw,28px);
  font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.05rem,1.8vw,1.25rem);
  line-height: 1.25; color: var(--ink); display: flex; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--wood-d); }
.faq-item summary:focus-visible { outline: 3px solid var(--wood); outline-offset: -3px; }
.faq-item summary::after {
  content: ""; margin-left: auto; flex-shrink: 0; width: 11px; height: 11px;
  border-right: 2.5px solid var(--wood); border-bottom: 2.5px solid var(--wood);
  transform: rotate(45deg); transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 clamp(18px,3vw,28px) clamp(18px,2.6vw,24px); }
.faq-answer p { color: var(--ink-soft); margin: 0; }
