/* =========================================================
   Landhotel & Restaurant Adler, Deggenhausertal-Wittenhofen (Demo)
   Familiäres Landhotel im grünen Deggenhausertal, 3. Generation
   Familie Steuer, Haus seit 1923. Wild aus eigener Jagd, Fisch aus
   eigenem Teich, schwäbische Klassiker, Lavendelgarten an der Aach.
   Stimmung: warm, gediegen, vertrauenswürdig, ruhige Eleganz.
   Leitakzent Aubergine/Lavendel (aus dem Logo) als Brücke zwischen
   Marke und Story (Lavendelgarten), Salbei-/Olivgrün fuer Natur/Wild,
   warmes Creme als Grund, Anthrazit fuer Typo.
   Fonts lokal (DSGVO): Eczar (Display), Libre Franklin (Body/UI).
   Bewusst foto-frei: Typografie, Farbflaechen, Verlaeufe, Grain,
   selbstgezeichnete SVG-Motive (Adlerschwinge, Lavendel, Forelle,
   Geweih, Aach-Welle). Keine Platzhalter-Bildkaesten.
   Schreibstil: keine Gedankenstriche in sichtbaren Texten.
   ========================================================= */

/* ---------- Fonts (lokal gehostet, DSGVO) ---------- */
/* Eczar: latin-Datei deckt den Weight-Bereich 500-700 ab (Display/Headlines) */
@font-face {
  font-family: "Eczar";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/eczar-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Libre Franklin: latin-Datei deckt 400-700 ab (Body/UI) */
@font-face {
  font-family: "Libre Franklin";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/libre-franklin-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Palette + Tokens ---------- */
:root {
  /* Aubergine / Lavendel (Markenakzent aus dem Logo, hat Vorrang) */
  --aub:        #84689e;   /* Markenviolett, Akzent */
  --aub-tief:   #6a5081;   /* dunkler: Text auf hell, Hover */
  --aub-dunkel: #3a2c49;   /* tiefes Aubergine, dunkler Grund */
  --aub-nacht:  #28203a;   /* tiefster Grund (Hero/Footer-Panels) */
  --aub-hell:   #c4b1d6;   /* helles Lavendel auf dunklem Grund */
  --aub-luft:   #efe8f4;   /* zarter Lavendel-Schleier (kleine Flaechen) */
  --aub-tint:   rgba(132, 104, 158, 0.10);

  /* Salbei / Olivgruen (Natur, Wild, Wald, Teich) sparsam */
  --salbei:      #7C7A52;   /* gedaempftes Oliv */
  --salbei-tief: #5f5d3d;   /* dunkler fuer Text auf hell */
  --salbei-tint: rgba(124, 122, 82, 0.12);

  /* Anthrazit (Text, dominant aus Logo) */
  --tinte:       #222222;   /* Primaer/Text/Footer */
  --tinte-soft:  #2e2a2a;

  /* warme Naturgruende */
  --creme:       #F7F3EC;   /* warmes Naturweiss, Grundflaeche */
  --creme-soft:  #efe7da;   /* zweite warme Sandflaeche */
  --surface:     #fffdf8;   /* helle Karte */
  --sand:        #e8ddc8;   /* warmer Sandakzent */

  --text:        #2a2622;   /* dunkler Fliesstext (warmer Anthrazit) */
  --muted:       #615a52;   /* gedaempfter Text */
  --hairline:    rgba(34, 34, 34, 0.14);
  --hairline-2:  rgba(34, 34, 34, 0.07);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --r:    18px;
  --r-sm: 12px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-soft: 0 26px 60px -30px rgba(40, 32, 58, 0.40);
  --shadow-card: 0 18px 44px -28px rgba(40, 32, 58, 0.28);
}

/* ---------- Reset / Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Libre Franklin", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.07rem);
  line-height: 1.72;
  color: var(--text);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* dezenter Grain auf dem ganzen Grund, fest und ohne Performance-Last */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  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.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Eczar", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--tinte);
  margin: 0 0 0.6rem;
  hyphens: manual;
}
h1 { font-size: clamp(2.45rem, 1.85rem + 3.1vw, 4.25rem); font-weight: 700; }
h2 { font-size: clamp(1.95rem, 1.5rem + 2vw, 2.95rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + 0.6vw, 1.6rem); }
p  { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.wrap-narrow { max-width: 920px; }
main { position: relative; z-index: 1; }

/* ---------- Eyebrow / Section-Heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aub-tief);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--aub);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--aub-hell); }
.eyebrow.on-dark::before { background: var(--aub-hell); }
.eyebrow.salbei { color: var(--salbei-tief); }
.eyebrow.salbei::before { background: var(--salbei); }
.eyebrow.center { justify-content: center; }

.section { padding: clamp(3.6rem, 2.4rem + 5vw, 7rem) 0; position: relative; }
.section-head { max-width: 50rem; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 40rem; }

/* dekorativer Trenner: Lavendelzweig zwischen zwei Linien */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--aub);
  opacity: 0.9;
  margin: 0 auto;
  max-width: 360px;
}
.divider::before, .divider::after {
  content: "";
  height: 1.5px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--aub));
  border-radius: 2px;
}
.divider::after { background: linear-gradient(90deg, var(--aub), transparent); }
.divider svg { width: 30px; height: 30px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    box-shadow 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn svg { width: 17px; height: 17px; }
.btn .pin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.35s var(--ease);
}
.btn:hover .pin { transform: translateX(2px); }

.btn-primary {
  background: var(--aub);
  color: #fff;
  box-shadow: 0 16px 32px -18px rgba(132, 104, 158, 0.85);
}
.btn-primary:hover { background: var(--aub-tief); transform: translateY(-2px); }
.btn-primary .pin { background: rgba(255, 255, 255, 0.2); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.btn-ghost {
  border-color: var(--hairline);
  color: var(--tinte);
  background: var(--surface);
}
.btn-ghost:hover { border-color: var(--aub); color: var(--aub-tief); transform: translateY(-2px); }

.btn-on-dark { background: var(--aub-hell); color: var(--aub-dunkel); }
.btn-on-dark:hover { background: #fff; transform: translateY(-2px); }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  position: relative;
  z-index: 60;
  background: var(--tinte);
  color: #d9d2cc;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.demo-bar strong { color: var(--aub-hell); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 0.8rem; }
.brand .emblem { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-word {
  font-family: "Eczar", serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--tinte);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 500;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--text);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-links a:hover { color: var(--aub-tief); background: var(--aub-tint); }
.nav-links a.active { color: var(--aub-tief); }
.nav-links a.active::after {
  content: ""; width: 5px; height: 5px; border-radius: 999px;
  background: var(--aub); margin-left: 2px;
}
.nav-cta {
  background: var(--aub);
  color: #fff !important;
  box-shadow: 0 12px 24px -16px rgba(132, 104, 158, 0.85);
}
.nav-cta:hover { background: var(--aub-tief) !important; }
.nav-cta svg { width: 15px; height: 15px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--tinte);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
.nav-backdrop { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 82% -10%, rgba(132, 104, 158, 0.5), transparent 55%),
    radial-gradient(90% 90% at 0% 110%, rgba(124, 122, 82, 0.34), transparent 60%),
    linear-gradient(158deg, var(--aub-nacht) 0%, var(--aub-dunkel) 52%, #443354 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(3.5rem, 2.5rem + 5vw, 6.5rem) 0 clamp(4rem, 3rem + 5vw, 7rem);
}
.hero::after {
  /* zarter Lavendel-Lichtschein oben rechts */
  content: "";
  position: absolute;
  top: -22%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(196, 177, 214, 0.18), transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.88fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 1.3rem; }
.hero h1 .accent {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--aub-hell);
}
.hero-lead {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 33rem;
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--aub-hell);
  background: rgba(132, 104, 158, 0.16);
  border: 1px solid rgba(196, 177, 214, 0.32);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.8rem;
}
.hero-note svg { width: 16px; height: 16px; flex: none; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.5rem;
  max-width: 38rem;
}
.hero-meta .item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-meta .k {
  font-family: "Eczar", serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--aub-hell);
}
.hero-meta .l { font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); line-height: 1.4; }

/* Hero-Karte mit grossem Adler/Lavendel-Emblem */
.hero-card {
  position: relative;
  border-radius: var(--r);
  padding: 2.4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  overflow: hidden;
}
.hero-card .crest { width: 100%; max-width: 230px; margin: 0 auto 1.3rem; height: auto; }
.hero-card .cap {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
.hero-card .cap b { color: var(--aub-hell); font-weight: 600; }

/* ---------- Surface-Band (warme zweite Flaeche) ---------- */
.surface-band { background: var(--creme-soft); }
.surface-band::before, .surface-band::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--hairline-2);
}

/* ---------- Bento-Uebersicht ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}
.tile {
  grid-column: span 4;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.tile:hover { transform: translateY(-4px); border-color: rgba(132, 104, 158, 0.4); box-shadow: var(--shadow-soft); }
.tile.span-7 { grid-column: span 7; }
.tile.span-5 { grid-column: span 5; }
.tile.feature {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(132, 104, 158, 0.5), transparent 60%),
    linear-gradient(150deg, var(--aub-dunkel) 0%, var(--aub-nacht) 100%);
  color: #fff;
  border-color: transparent;
  justify-content: space-between;
}
.tile.feature h3 { color: #fff; }
.tile.feature p { color: rgba(255, 255, 255, 0.82); }
.tile.salbei-tile { border-top: 3px solid var(--salbei); }
.tile .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--aub-tint);
  color: var(--aub-tief);
  margin-bottom: 1.1rem;
}
.tile.salbei-tile .ic { background: var(--salbei-tint); color: var(--salbei-tief); }
.tile.feature .ic { background: rgba(255, 255, 255, 0.14); color: var(--aub-hell); }
.tile .ic svg { width: 26px; height: 26px; }
.tile h3 { margin-bottom: 0.5rem; }
.tile p { color: var(--muted); margin-bottom: 0; }
.tile .more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.3rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--aub-tief);
}
.tile.feature .more { color: var(--aub-hell); }
.tile .more svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.tile .more:hover svg { transform: translateX(4px); }

/* ---------- Split (Text + dunkles Panel) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.feature-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text); }
.feature-list .chk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; flex: none;
  border-radius: 999px;
  background: var(--aub-tint);
  color: var(--aub-tief);
  margin-top: 2px;
}
.feature-list .chk svg { width: 15px; height: 15px; }

.panel-dark {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(132, 104, 158, 0.45), transparent 60%),
    radial-gradient(90% 90% at 0% 100%, rgba(124, 122, 82, 0.3), transparent 62%),
    linear-gradient(155deg, var(--aub-nacht), var(--aub-dunkel));
  color: #fff;
  border-radius: var(--r);
  padding: 2.5rem 2.3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.panel-dark h3 { color: #fff; }
.panel-dark p { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }
.panel-dark .ptag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--aub-hell);
  margin-bottom: 0.9rem;
}
.panel-dark .panel-emblem {
  position: absolute;
  right: -28px; bottom: -34px;
  width: 180px; height: 180px;
  opacity: 0.13;
  pointer-events: none;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.pill {
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Feature-Karten (3er) ---------- */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.fcard {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.fcard:hover { transform: translateY(-4px); border-color: rgba(132, 104, 158, 0.4); }
.fcard .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--aub-tint); color: var(--aub-tief);
  margin-bottom: 1rem;
}
.fcard.salbei .ic { background: var(--salbei-tint); color: var(--salbei-tief); }
.fcard .ic svg { width: 25px; height: 25px; }
.fcard h3 { margin-bottom: 0.4rem; }
.fcard p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Speise-Kategorien (Menu-Liste, ohne Preise) ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.5rem; }
.menu-block {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r);
  padding: 1.7rem 1.8rem;
  box-shadow: var(--shadow-card);
}
.menu-block .mhead {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed var(--hairline);
}
.menu-block .mhead svg { width: 26px; height: 26px; color: var(--aub-tief); flex: none; }
.menu-block.salbei .mhead svg { color: var(--salbei-tief); }
.menu-block h3 { margin: 0; font-size: 1.3rem; }
.menu-block ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.menu-block li { color: var(--text); font-size: 0.98rem; padding-left: 1.1rem; position: relative; }
.menu-block li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 999px; background: var(--aub);
}
.menu-block.salbei li::before { background: var(--salbei); }
.menu-block li span { color: var(--muted); display: block; font-size: 0.86rem; }

/* ---------- Info-/Hinweis-Box ---------- */
.note-box {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--aub);
  border-radius: var(--r-sm);
  padding: 1.4rem 1.5rem;
}
.note-box.salbei { border-left-color: var(--salbei); }
.note-box h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.note-box p { color: var(--muted); margin-bottom: 0; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background:
    radial-gradient(110% 130% at 0% 0%, rgba(132, 104, 158, 0.5), transparent 55%),
    radial-gradient(90% 120% at 100% 100%, rgba(124, 122, 82, 0.32), transparent 60%),
    linear-gradient(140deg, var(--aub-nacht), var(--aub-dunkel));
  color: #fff;
  border-radius: var(--r);
  padding: clamp(2.2rem, 1.5rem + 3vw, 3.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; max-width: 34rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.cta-band .watermark {
  position: absolute;
  right: -30px; bottom: -50px;
  width: 240px; height: 240px;
  opacity: 0.1;
  pointer-events: none;
}

/* ---------- Kontakt + Formular ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: start;
}
.contact-info p { color: var(--muted); }
.phone-cta-box {
  margin-top: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  padding: 1.5rem 1.6rem;
}
.phone-cta-box .lbl {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--aub-tief); font-weight: 600;
}
.phone-cta-box .num {
  display: block;
  font-family: "Eczar", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--tinte);
  margin: 0.3rem 0 0.4rem;
}
.phone-cta-box p { margin: 0; font-size: 0.92rem; color: var(--muted); }

.contact-meta { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.contact-meta li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text); }
.contact-meta .mi {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex: none; border-radius: 10px;
  background: var(--aub-tint); color: var(--aub-tief);
}
.contact-meta .mi svg { width: 16px; height: 16px; }
.contact-meta a:hover { color: var(--aub-tief); }

/* Oeffnungszeiten-Tabelle */
.hours {
  margin-top: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-card);
}
.hours h3 { font-size: 1.2rem; margin-bottom: 0.9rem; }
.hours dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; }
.hours dt { font-weight: 600; color: var(--text); }
.hours dd { margin: 0; color: var(--muted); text-align: right; }
.hours .ruhe { color: var(--aub-tief); font-weight: 600; }
.hours .confirm {
  margin: 1rem 0 0; font-size: 0.86rem; color: var(--muted);
  border-top: 1px dashed var(--hairline); padding-top: 0.9rem;
}

/* Formular (in Demo integriert, dunkles Panel) */
.form-card {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(132, 104, 158, 0.4), transparent 60%),
    linear-gradient(155deg, var(--aub-nacht), var(--aub-dunkel));
  color: #fff;
  border-radius: var(--r);
  padding: clamp(1.8rem, 1.3rem + 2vw, 2.6rem);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.form-card h3 { color: #fff; margin-bottom: 0.4rem; }
.form-card .hint { color: rgba(255, 255, 255, 0.7); font-size: 0.88rem; margin-bottom: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--aub-hell); letter-spacing: 0.02em; }
.field input, .field textarea {
  font-family: inherit;
  font-size: 0.98rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--aub-hell);
  background: rgba(255, 255, 255, 0.11);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: rgba(255, 255, 255, 0.62); margin: 1rem 0 0; line-height: 1.55; }
.form-card .btn { margin-top: 0.3rem; }

/* ---------- Innere Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(120% 130% at 85% -20%, rgba(132, 104, 158, 0.48), transparent 55%),
    radial-gradient(90% 90% at 0% 110%, rgba(124, 122, 82, 0.3), transparent 60%),
    linear-gradient(155deg, var(--aub-nacht) 0%, var(--aub-dunkel) 62%, #443354 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(3rem, 2.2rem + 4vw, 5rem) 0 clamp(3rem, 2.2rem + 4vw, 4.5rem);
}
.page-hero::after {
  content: "";
  position: absolute; top: -25%; right: -8%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(196, 177, 214, 0.16), transparent 62%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; max-width: 52rem; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.14rem; max-width: 38rem; margin-bottom: 0; }
.crumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}
.crumb a:hover { color: var(--aub-hell); }
.crumb svg { width: 14px; height: 14px; opacity: 0.6; }

/* ---------- Zwei-Spalten Inhalt ---------- */
.prose-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: start;
}
.prose-split h2 { margin-bottom: 1rem; }
.prose-split p { color: var(--muted); }

/* Aufzaehlung in eleganten Spalten */
.check-cols { columns: 2; column-gap: 2.5rem; list-style: none; padding: 0; margin: 1.4rem 0 0; }
.check-cols li {
  break-inside: avoid;
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.85rem; color: var(--text);
}
.check-cols .chk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex: none; border-radius: 999px;
  background: var(--aub-tint); color: var(--aub-tief); margin-top: 3px;
}
.check-cols .chk svg { width: 13px; height: 13px; }

/* Zahl-Stat Karten */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 1.6rem; }
.stat {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-sm);
  padding: 1.3rem 1.4rem;
}
.stat .n { font-family: "Eczar", serif; font-weight: 700; font-size: 1.7rem; color: var(--aub-tief); }
.stat .t { font-size: 0.88rem; color: var(--muted); margin-top: 0.2rem; }

/* Ausflugsziele-Liste (Lage) */
.place-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.6rem; }
.place {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.2rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.place:hover { transform: translateY(-3px); border-color: rgba(124, 122, 82, 0.45); }
.place .mi {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex: none; border-radius: 9px;
  background: var(--salbei-tint); color: var(--salbei-tief); margin-top: 2px;
}
.place .mi svg { width: 16px; height: 16px; }
.place strong { display: block; color: var(--tinte); font-size: 1rem; }
.place span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Rechtsseiten (Legal) ---------- */
.legal { padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) 0; }
.legal .wrap { max-width: 820px; }
.legal h2 { font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem); margin: 2.4rem 0 0.8rem; }
.legal h2:first-of-type { margin-top: 1.5rem; }
.legal h3 { font-size: 1.15rem; margin: 1.6rem 0 0.5rem; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--aub-tief); text-decoration: underline; text-underline-offset: 2px; }
.legal ul { padding-left: 1.2rem; }
.demo-callout {
  background: var(--aub-luft);
  border: 1px solid rgba(132, 104, 158, 0.4);
  border-radius: var(--r);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
}
.demo-callout strong { color: var(--aub-tief); }
.demo-callout p { color: var(--text); margin-bottom: 0; }
.legal-title { overflow-wrap: break-word; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--tinte);
  color: #c9c2bb;
  padding: clamp(3rem, 2.2rem + 3vw, 4.5rem) 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: inline-flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand .emblem { width: 44px; height: 44px; }
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-sub { color: #968f88; }
.footer-about { color: #968f88; font-size: 0.95rem; max-width: 26rem; }
.footer-col h4 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--aub-hell); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col span { color: #c9c2bb; font-size: 0.95rem; }
.footer-col a:hover { color: var(--aub-hell); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.84rem;
  color: #8d877f;
}
.legal-links { display: flex; gap: 1.2rem; }
.legal-links a:hover { color: var(--aub-hell); }

/* ---------- Reveal-Animationen ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    animation: reveal-in 0.85s var(--ease) forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 26%;
    animation-delay: var(--d, 0s);
  }
  .no-vt .reveal { animation: none; }
  .no-vt .reveal.is-in { animation: reveal-in 0.85s var(--ease) forwards; animation-delay: var(--d, 0s); }
}
@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; max-width: 380px; }
  .split, .contact-grid, .prose-split { grid-template-columns: 1fr; }
  .tile.span-7, .tile.span-5, .tile.feature { grid-column: span 12; }
  .tile { grid-column: span 6; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.4rem;
    background: var(--creme);
    padding: 5.5rem 1.5rem 2rem;
    box-shadow: -20px 0 50px -20px rgba(40, 32, 58, 0.4);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
    z-index: 55;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform 0.4s var(--ease); }
  .nav-links a { font-size: 1.05rem; padding: 0.7rem 0.9rem; }
  .nav-cta { justify-content: center; margin-top: 0.5rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; z-index: 56; }
  .nav-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(40, 32, 58, 0.5);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease);
    z-index: 54;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }

  .hero-meta { grid-template-columns: 1fr; gap: 1rem; }
  .bento .tile, .tile.span-7, .tile.span-5, .tile.feature { grid-column: span 12; }
  .feature-cards, .stat-row, .check-cols, .place-list { grid-template-columns: 1fr; columns: 1; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
}
