/* =============================================================
   Alpengasthaus Jausenstation Wechner – Mitteregg
   Gemeinsames Stylesheet (style.css)
   Warm, alpin, traditionell – aber modern & edel.
   ============================================================= */

/* ---------- Schriften (selbst gehostet, kein externer CDN) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/fraunces-latin-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fraunces-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/fraunces-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/fraunces-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fraunces-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/hanken-grotesk-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/hanken-grotesk-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/hanken-grotesk-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/hanken-grotesk-latin-700-normal.woff2") format("woff2");
}

/* ---------- Design-Token ---------- */
:root {
  /* Farben */
  --paper:        #f3ebdc;   /* warmes Creme */
  --paper-soft:   #f9f3e8;   /* helleres Creme für Karten */
  --paper-deep:   #ece1cf;   /* etwas tieferes Creme */
  --ink:          #2a1d14;   /* dunkles Nussbraun, fast schwarz */
  --ink-soft:     #4c3a2b;   /* weicheres Braun für Fließtext */
  --ink-mute:     #6d5944;   /* gedämpftes Braun */
  --walnut:       #38271b;
  --forest:       #2d4133;   /* tiefes Tannengrün */
  --forest-deep:  #1f2f24;
  --forest-soft:  #3a5343;
  --brass:        #b5894e;   /* Messing-Akzent */
  --brass-bright: #cda063;   /* helles Messing (auf dunklem Grund) */
  --brass-deep:   #7c5a2b;   /* dunkles Messing für Text auf Creme */
  --rust:         #7e3b2c;   /* tiefes Rot / Terrakotta */
  --rust-bright:  #9c4a37;

  --line:         rgba(42, 29, 20, 0.14);
  --line-strong:  rgba(42, 29, 20, 0.26);
  --line-light:   rgba(249, 243, 232, 0.22);

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

  /* Maße */
  --container: 1180px;
  --measure: 64ch;
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(42, 29, 20, 0.06), 0 4px 14px rgba(42, 29, 20, 0.06);
  --shadow-md: 0 6px 18px rgba(42, 29, 20, 0.10), 0 18px 48px rgba(42, 29, 20, 0.10);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink-soft);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Feine Papier-/Körnungstextur als Atmosphäre */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 1; }

img { max-width: 100%; display: block; height: auto; }

a {
  color: var(--rust);
  text-decoration-color: var(--line-strong);
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--rust-bright); }

::selection {
  background: var(--brass);
  color: #fff;
}

:focus-visible {
  outline: 2.5px solid var(--brass-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 1.7rem + 4vw, 4.7rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 1.45rem + 2.2vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.28rem); }

p { text-wrap: pretty; }

strong { font-weight: 600; color: var(--ink); }

/* ---------- Layout-Hilfen ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.container--narrow { max-width: 820px; }

.section {
  padding-block: clamp(3.75rem, 8vw, 7rem);
  position: relative;
}
.section + .section { padding-top: 0; }

.section--tint {
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}
.section--forest {
  background:
    radial-gradient(120% 120% at 80% -10%, var(--forest-soft) 0%, transparent 55%),
    var(--forest);
  color: var(--paper-soft);
  border-block: 1px solid var(--forest-deep);
}
.section--forest h1,
.section--forest h2,
.section--forest h3,
.section--forest h4 { color: var(--paper-soft); }
.section--forest a { color: var(--brass-bright); }

.measure { max-width: var(--measure); }

/* Abschnitts-Köpfe + „Eyebrow"-Label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: var(--brass);
}
.section--forest .eyebrow { color: var(--brass-bright); }
.section--forest .eyebrow::before { background: var(--brass-bright); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: var(--brass);
}
.section--forest .eyebrow--center::after { background: var(--brass-bright); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p.lead {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--ink-mute);
  max-width: 60ch;
}
.section-head.center p.lead { margin-inline: auto; }
.section--forest .section-head p.lead { color: rgba(249, 243, 232, 0.78); }

.lead { font-size: 1.12rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--forest);
  color: var(--paper-soft);
  box-shadow: var(--shadow-sm);
}
.btn--solid:hover { background: var(--forest-deep); color: var(--paper-soft); }

.btn--brass {
  background: var(--brass);
  color: #2a1d14;
  box-shadow: var(--shadow-sm);
}
.btn--brass:hover { background: var(--brass-bright); color: #2a1d14; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(42, 29, 20, 0.04); }
.section--forest .btn--ghost {
  color: var(--paper-soft);
  border-color: var(--line-light);
}
.section--forest .btn--ghost:hover { background: rgba(249, 243, 232, 0.08); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Kopfzeile / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 235, 220, 0.86);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding-block: 0.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { color: var(--forest); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-top: 0.36rem;
  font-weight: 600;
}

/* Navigation */
.nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
}
.nav-list a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.34rem;
  height: 1.5px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-list a:hover { color: var(--ink); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a[aria-current="page"] { color: var(--ink); }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); background: var(--brass); }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
  background:
    radial-gradient(130% 90% at 78% -20%, #f9f3e8 0%, transparent 60%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
/* dezente Höhenlinien-Grafik */
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: var(--brass);
  opacity: 0.16;
}
.hero .container { position: relative; z-index: 1; }

.hero-leitmotiv {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.4rem);
  color: var(--rust);
  margin-bottom: 1.4rem;
}
.hero h1 { max-width: 16ch; }
.hero h1 .soft { color: var(--forest); font-weight: 400; }

.hero-claims {
  list-style: none;
  padding: 0;
  margin-top: 2.4rem;
  display: grid;
  gap: 0;
  max-width: 760px;
  border-top: 1px solid var(--line);
}
.hero-claims li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  color: var(--ink);
}
.hero-claims .num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brass-deep);
  min-width: 2.2rem;
}
.hero-claims svg { color: var(--forest); flex: none; }

/* Eintritts-Animation (nur ohne reduzierte Bewegung) */
.reveal { opacity: 0; transform: translateY(18px); animation: fadeUp 0.9s var(--ease) forwards; }
.reveal.d1 { animation-delay: 0.08s; }
.reveal.d2 { animation-delay: 0.18s; }
.reveal.d3 { animation-delay: 0.28s; }
.reveal.d4 { animation-delay: 0.4s; }
.reveal.d5 { animation-delay: 0.52s; }
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ---------- Karten-Gitter ---------- */
.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-mute); }

/* Teaser-Karten verlinkt */
a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass);
}
.card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-deep);
}
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--rust);
}
a.card:hover .card-more .arrow { transform: translateX(3px); }

/* ---------- Hinweis-Box ---------- */
.notice {
  position: relative;
  background: var(--paper-soft);
  border: 1px solid var(--brass);
  border-left: 5px solid var(--rust);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.notice .notice-icon { color: var(--rust); flex: none; margin-top: 0.15rem; }
.notice h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--rust);
}
.notice p { color: var(--ink-soft); margin: 0; }
.notice p + p { margin-top: 0.7rem; }

/* ---------- Info / Öffnungszeiten ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.info-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.info-block h3 svg { color: var(--brass); flex: none; }
.section--forest .info-block h3 svg { color: var(--brass-bright); }

.hours-list { list-style: none; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
}
.section--forest .hours-list li { border-bottom-color: var(--line-light); }
.hours-list .day { font-weight: 500; }
.hours-list .time { color: var(--ink-mute); }
.section--forest .hours-list .time { color: rgba(249, 243, 232, 0.78); }
.hours-list .closed { color: var(--rust); font-weight: 500; }
.section--forest .hours-list .closed { color: var(--brass-bright); }
.hours-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--ink-mute);
}
.section--forest .hours-note { color: rgba(249, 243, 232, 0.7); }

.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.62rem 0;
}
.contact-list svg { color: var(--brass); flex: none; margin-top: 0.18rem; }
.section--forest .contact-list svg { color: var(--brass-bright); }
.contact-list a { color: inherit; text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--rust); }
.section--forest .contact-list a:hover { color: var(--brass-bright); }
.contact-list .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.section--forest .contact-list .label { color: var(--brass-bright); }

/* ---------- Bild-Platzhalter ---------- */
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  flex-direction: column;
  min-height: 220px;
  padding: 1.5rem;
  color: var(--ink-mute);
  background:
    repeating-linear-gradient(135deg, rgba(181,137,78,0.06) 0 14px, transparent 14px 28px),
    var(--paper-deep);
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  line-height: 1.5;
}
.image-placeholder svg { color: var(--brass); opacity: 0.7; }
.image-placeholder .ph-label { font-weight: 600; color: var(--ink-soft); }
.image-placeholder.ph-wide { min-height: 300px; }
.image-placeholder.ph-tall { min-height: 340px; }

/* ---------- Über uns: Zitat & Geschichte ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.1rem);
  line-height: 1.32;
  color: var(--ink);
  max-width: 22ch;
}
.pull-quote .q-mark {
  display: block;
  font-size: 2.4em;
  line-height: 0.4;
  color: var(--brass);
  margin-bottom: 0.2em;
}
.pull-quote cite {
  display: block;
  margin-top: 1.3rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
}

.prose p { margin-bottom: 1.25rem; max-width: var(--measure); }
.prose p:last-child { margin-bottom: 0; }
.prose .dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  line-height: 0.78;
  font-weight: 500;
  float: left;
  padding: 0.06em 0.12em 0 0;
  color: var(--forest);
}
.prose .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--rust);
  margin-top: 1.6rem;
}

.year-rule {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}
.year-rule .yr {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brass-deep);
  letter-spacing: 0.02em;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.team-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .image-placeholder {
  min-height: 0;
  aspect-ratio: 4 / 5;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}
.team-info { padding: 1.05rem 1.2rem 1.25rem; }
.team-info .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
}
.team-info .role {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--brass-deep);
  font-weight: 600;
}

/* ---------- Speisekarte ---------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}
.highlight {
  position: relative;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(181,137,78,0.10) 0%, transparent 55%),
    var(--paper-soft);
  border: 1px solid var(--brass);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.highlight:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.highlight .star {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  color: var(--brass);
}
.highlight .h-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.18;
  max-width: 90%;
}
.highlight .h-desc {
  margin-top: 0.6rem;
  color: var(--ink-mute);
  font-size: 0.96rem;
  flex: 1;
}
.highlight .h-foot {
  margin-top: 1.15rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.highlight .h-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--forest);
}
.allergen-chips {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  font-weight: 600;
}

/* Menü-Listen */
.menu-section { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.menu-section:last-child { margin-bottom: 0; }
.menu-section > h3 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--forest);
}
.menu-section > h3 .when {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.menu-section > h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  align-self: center;
}

.dish {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.dish:last-child { border-bottom: none; }
.dish-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.dish-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 1.04rem;
}
.dish-name .variant { font-weight: 400; color: var(--ink-mute); font-size: 0.94em; }
.dish-dots {
  flex: 1;
  border-bottom: 1.5px dotted var(--line-strong);
  transform: translateY(-0.28em);
  min-width: 1.5rem;
}
.dish-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--forest);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.dish-desc {
  margin-top: 0.3rem;
  color: var(--ink-mute);
  font-size: 0.95rem;
  max-width: 70ch;
}
.dish-meta {
  margin-top: 0.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 600;
}
.dish-meta .sep { opacity: 0.5; margin-inline: 0.15em; }

.menu-cols {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
}
.menu-cols .menu-section { break-inside: avoid; }

/* Allergen-Legende + Hinweise */
.menu-legend {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.menu-legend h3 { margin-bottom: 1rem; }
.legend-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  list-style: none;
  padding: 0;
}
.legend-items li { display: flex; align-items: baseline; gap: 0.5rem; }
.legend-items .code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  background: var(--forest);
  color: var(--paper-soft);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  flex: none;
}
.menu-notes {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.6rem;
}
.menu-notes p { color: var(--ink-soft); }
.menu-notes p::before {
  content: "→";
  color: var(--brass);
  margin-right: 0.6em;
  font-weight: 600;
}

/* ---------- Naturerlebnisweg ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
.feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.2rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--ink);
}
.feature svg { color: var(--forest); flex: none; }

.highlight-banner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background:
    radial-gradient(120% 140% at 0% 0%, var(--forest-soft) 0%, transparent 60%),
    var(--forest);
  color: var(--paper-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.highlight-banner .hb-icon { color: var(--brass-bright); flex: none; }
.highlight-banner h3 { color: var(--paper-soft); margin-bottom: 0.3rem; }
.highlight-banner p { color: rgba(249, 243, 232, 0.82); margin: 0; }

.facts-list { list-style: none; padding: 0; display: grid; gap: 0; }
.facts-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.facts-list li:last-child { border-bottom: none; }
.facts-list svg { color: var(--brass); flex: none; margin-top: 0.18rem; }
.facts-list strong { color: var(--ink); }

.route-box {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-left: 5px solid var(--forest);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.route-box h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.route-box h3 svg { color: var(--forest); }

/* ---------- Feiern ---------- */
.feiern-quotes { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.warm-quote {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.2vw, 2.3rem);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.warm-quote .q-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.5;
  color: var(--brass);
  display: block;
  margin-bottom: 0.4rem;
}
.warm-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  line-height: 1.4;
  color: var(--ink);
}

.reserve-card {
  text-align: center;
  background:
    radial-gradient(120% 120% at 50% -20%, var(--forest-soft) 0%, transparent 55%),
    var(--forest);
  color: var(--paper-soft);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}
.reserve-card h2 { color: var(--paper-soft); }
.reserve-card p { color: rgba(249, 243, 232, 0.84); max-width: 52ch; margin-inline: auto; }
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.8rem;
}
.reserve-actions .btn { font-size: 1.02rem; padding: 0.95em 1.7em; }
.phone-big {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 2vw, 2.6rem);
  font-weight: 500;
  color: var(--paper-soft);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.4rem;
}
.phone-big:hover { color: var(--brass-bright); }

/* ---------- Rechtsseiten ---------- */
.legal { padding-block: clamp(3rem, 7vw, 5.5rem); }
.legal h2 { margin: 2.4rem 0 1rem; font-size: clamp(1.4rem, 1.2rem + 1vw, 1.8rem); }
.legal h2:first-of-type { margin-top: 1.5rem; }
.legal p { margin-bottom: 1rem; max-width: var(--measure); }
.legal ul { margin: 0 0 1rem 1.2rem; }
.legal li { margin-bottom: 0.4rem; }

.def-list { display: grid; gap: 0; margin-bottom: 1rem; }
.def-list .row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.def-list .row dt { font-weight: 600; color: var(--ink); }
.def-list .row dd { margin: 0; color: var(--ink-soft); }
.def-list a { color: var(--rust); text-decoration: none; }
.def-list a:hover { text-decoration: underline; }

.flag {
  display: inline-block;
  background: rgba(126, 59, 44, 0.1);
  border: 1px dashed var(--rust);
  color: var(--rust);
  border-radius: var(--radius);
  padding: 0.1em 0.55em;
  font-size: 0.86em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.legal-alert {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--paper-soft);
  border: 1px solid var(--brass);
  border-left: 5px solid var(--rust);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.6rem;
  margin: 1.8rem 0 0.5rem;
  box-shadow: var(--shadow-sm);
}
.legal-alert svg { color: var(--rust); flex: none; margin-top: 0.15rem; }
.legal-alert p { margin: 0; color: var(--ink-soft); }
.legal-alert strong { color: var(--rust); }

/* ---------- Fußzeile ---------- */
.site-footer {
  background:
    radial-gradient(120% 120% at 85% -20%, var(--forest-soft) 0%, transparent 50%),
    var(--forest-deep);
  color: rgba(249, 243, 232, 0.82);
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  border-top: 4px solid var(--brass);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.footer-brand .brand-name { color: var(--paper-soft); font-size: 1.5rem; }
.footer-brand .brand-mark { color: var(--brass-bright); }
.footer-leit {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--brass-bright);
  margin-top: 1.1rem;
  max-width: 30ch;
}
.footer-col h4 {
  color: var(--paper-soft);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { padding: 0.32rem 0; }
.footer-col a { color: rgba(249, 243, 232, 0.82); text-decoration: none; }
.footer-col a:hover { color: var(--brass-bright); }

.footer-contact li { display: flex; gap: 0.65rem; align-items: flex-start; padding: 0.45rem 0; }
.footer-contact svg { color: var(--brass-bright); flex: none; margin-top: 0.18rem; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-hours .closed { color: var(--brass-bright); }

.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--paper-soft);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.footer-social a:hover { background: var(--brass); border-color: var(--brass); color: var(--forest-deep); }

.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  font-size: 0.86rem;
  color: rgba(249, 243, 232, 0.62);
}
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(249, 243, 232, 0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--brass-bright); }

/* Agentur-Badge */
.footer-credit { display: flex; justify-content: center; margin-top: clamp(1rem, 2.5vw, 1.4rem); }
.wd-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.32rem 0.8rem;
  border: 1px solid var(--line-light); border-radius: 999px;
  font-size: 0.76rem; letter-spacing: 0.02em;
  color: rgba(249, 243, 232, 0.5); text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.wd-badge svg { opacity: 0.7; transition: opacity 0.2s var(--ease); }
.wd-badge strong { font-weight: 600; color: rgba(249, 243, 232, 0.72); }
.wd-badge:hover { color: var(--brass-bright); border-color: var(--brass); }
.wd-badge:hover strong { color: var(--brass-bright); }
.wd-badge:hover svg { opacity: 1; }

/* ---------- Skip-Link (Barrierefreiheit) ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  background: var(--forest);
  color: var(--paper-soft);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 1rem; }
.mt-m { margin-top: 2rem; }
.mt-l { margin-top: 3rem; }
.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin-block: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- Responsiv ---------- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  /* Mobile Navigation */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--paper-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s var(--ease);
  }
  .nav.open { max-height: 80vh; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem clamp(1.25rem, 5vw, 3rem) 1.5rem;
  }
  .nav-list a {
    padding: 0.95rem 0.4rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-list a::after { display: none; }
  .nav-list a[aria-current="page"] { color: var(--rust); }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .menu-cols { columns: 1; }
}

@media (max-width: 620px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .def-list .row { grid-template-columns: 1fr; gap: 0.2rem; }
  .footer-bottom { flex-direction: column; }
  .hero-claims li { font-size: 1.15rem; }
}

@media (max-width: 420px) {
  .team-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}

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

/* ---------- Druck ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-deco, body::before { display: none !important; }
  body { background: #fff; color: #000; }
  .dish, .menu-section { break-inside: avoid; }
}
