/* =========================================================
   Landhaus Monika, Meckenbeuren-Buch (Demo)
   Pension & Ferienwohnung am Bodensee, zwischen Ravensburg
   und Friedrichshafen. Warm, ruhig, ländlich-wertig.
   Leitfarbe: Markenrot (1:1 vom Original-Logo). Sparsam und
   scharf gesetzt. Grundfläche warmes Cremeweiß, Naturtöne
   (Holzbraun, Salbeigrün) als ruhige Ergänzung.
   Fonts lokal (DSGVO): Spectral (Display/Serif), Instrument
   Sans (Body/UI). Keine Fotos, nur Farbflächen, Verläufe,
   Grain, selbst gezeichnete SVG. Wiedererkennung: rote
   Schreibschrift-Wortmarke "Landhaus Monika".
   ========================================================= */

/* ---------- Fonts (lokal gehostet, DSGVO) ---------- */
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/spectral-400-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;
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/spectral-600-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;
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/spectral-700-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;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/instrument-sans-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 {
  /* Markenrot (Anker, sparsam und scharf) + Abstufungen */
  --rot:        #ad2626;   /* Marken-Akzent (1:1 Original-Logo) */
  --rot-tief:   #7d1f1f;   /* Bordeaux: Hover/Tiefe */
  --rot-nacht:  #4a1414;   /* tiefstes Weinrot, dunkler Grund */
  --rot-900:    #5e1818;   /* dunkler Footer-/Karten-Grund */
  --rot-700:    #8a2020;   /* dunkler Verlaufston */
  --rot-hell:   #e4a8a8;   /* helles Rosé auf dunklem Grund */
  --rot-tint:   rgba(173, 38, 38, 0.08);
  --rot-tint-2: rgba(173, 38, 38, 0.14);

  /* Naturtöne (ruhige Ergänzung) */
  --holz:       #8b6f52;   /* warmes Sand-/Holzbraun, sekundär */
  --holz-tief:  #6e573e;
  --holz-tint:  rgba(139, 111, 82, 0.12);
  --gruen:      #6f7d5a;   /* dezentes Salbei-/Naturgrün, Gegenpol */
  --gruen-tief: #5a6747;
  --gruen-tint: rgba(111, 125, 90, 0.13);

  /* Grundflächen, warmes Cremeweiß */
  --creme:      #faf6f0;   /* warmes Cremeweiß, Grundfläche */
  --creme-soft: #f1e9dd;   /* zweite warme Fläche */
  --surface:    #fffefb;   /* helle Karte */

  --text:       #3a322e;   /* dunkler Fließtext */
  --muted:      #6c615a;   /* gedämpfter Text */
  --hairline:   rgba(58, 50, 46, 0.16);
  --hairline-2: rgba(58, 50, 46, 0.08);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 24px 60px -28px rgba(74, 20, 20, 0.42);
  --shadow-card: 0 1px 2px rgba(74, 20, 20, 0.05), 0 18px 44px -32px rgba(74, 20, 20, 0.5);

  --font-display: "Spectral", "Times New Roman", Georgia, serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--creme);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.004em;
  color: var(--rot-nacht);
  margin: 0;
  hyphens: manual;
}
p { margin: 0; }
strong { font-weight: 600; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* feine Papier-/Grain-Textur, fix, performant */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--rot-nacht);
  color: #f3ddd9;
  font-size: 0.74rem;
  letter-spacing: 0.015em;
  text-align: center;
  padding: 0.5rem var(--pad);
  position: relative;
  z-index: 60;
}
.demo-bar strong { color: var(--rot-hell); font-weight: 600; }

/* ---------- Streuobst-/Ranken-Zierband (Wiedererkennung) ---------- */
.leaf-band {
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='10' viewBox='0 0 60 10'%3E%3Cpath d='M0 6 Q15 -1 30 6 T60 6' fill='none' stroke='%236f7d5a' stroke-width='1.2'/%3E%3Ccircle cx='30' cy='6' r='1.6' fill='%23ad2626'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 10px;
  opacity: 0.6;
}

/* ---------- Wortmarke (rote Schreibschrift-Anmutung) ---------- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--rot);
  line-height: 0.96;
  letter-spacing: 0.005em;
}
.wordmark .l1 { display: block; font-size: 0.62em; font-weight: 600; }
.wordmark .l2 { display: block; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 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: 1rem;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand .emblem { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.005em;
  color: var(--rot);
  line-height: 0.95;
}
.brand-sub {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--holz);
  font-weight: 600;
  margin-top: 5px;
}
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.74rem;
  border-radius: 9px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--rot); background: var(--rot-tint); }
.nav-links a.active { color: var(--rot); }
.nav-cta {
  margin-left: 0.5rem;
  background: var(--rot);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.58rem 1.15rem !important;
  font-weight: 600 !important;
  display: inline-flex; align-items: center; gap: 0.45rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease) !important;
}
.nav-cta:hover { background: var(--rot-tief) !important; transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: transparent;
  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(--rot-nacht);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(0) scale(0.985); }
/* Telefon-CTA: Markenrot, Hauptkanal */
.btn-primary { background: var(--rot); color: #fff; }
.btn-primary:hover { background: var(--rot-tief); transform: translateY(-2px); }
.btn-primary .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-primary:hover .pin { transform: translateX(2px); background: rgba(255, 255, 255, 0.3); }
.btn-ghost { background: transparent; color: var(--rot); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--rot); background: var(--rot-tint); }
.btn-outline-light { background: transparent; color: var(--creme); border-color: rgba(250, 246, 240, 0.42); }
.btn-outline-light:hover { border-color: var(--creme); background: rgba(250, 246, 240, 0.1); }
.btn-on-dark { background: var(--creme); color: var(--rot-nacht); }
.btn-on-dark:hover { background: #fff; transform: translateY(-2px); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--rot);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--rot);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--rot-hell); }
.eyebrow.on-dark::before { background: var(--rot-hell); }
.eyebrow.center { justify-content: center; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.95rem); }
.section-head p { color: var(--muted); margin-top: 1.1rem; font-size: 1.07rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.surface-band { background: var(--creme-soft); border-block: 1px solid var(--hairline-2); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 85% at 84% -10%, rgba(138, 32, 32, 0.55), transparent 60%),
    radial-gradient(95% 80% at -5% 110%, rgba(111, 125, 90, 0.22), transparent 55%),
    linear-gradient(158deg, var(--rot-nacht) 0%, var(--rot-700) 100%);
  color: #f6e7e3;
  overflow: hidden;
}
/* dezente Streuobst-/Hügel-Linie, selbst gezeichnet */
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='140' viewBox='0 0 1200 140' preserveAspectRatio='none'%3E%3Cpath d='M0 96 Q160 56 320 96 T640 96 T960 96 T1280 96' fill='none' stroke='%23e4a8a8' stroke-width='1' opacity='0.4'/%3E%3Cpath d='M0 118 Q160 84 320 118 T640 118 T960 118 T1280 118' fill='none' stroke='%23b8c79e' stroke-width='1' opacity='0.34'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.6rem, 9vw, 6.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 4.1rem);
  letter-spacing: 0.004em;
  font-weight: 700;
  line-height: 1.08;
}
.hero h1 .accent { color: var(--rot-hell); display: block; font-style: italic; font-weight: 600; }
.hero-lead {
  color: #ecd7d2;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  margin-top: 1.5rem;
  max-width: 50ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; align-items: center; }
.hero-phone-note { font-size: 0.85rem; color: var(--rot-hell); margin-top: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.hero-phone-note svg { width: 15px; height: 15px; flex: none; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.3rem 2.4rem;
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(246, 231, 227, 0.16);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-meta .k { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.01em; color: #fff; }
.hero-meta .l { font-size: 0.78rem; color: #d9b8b1; letter-spacing: 0.01em; }

/* Hero-Karte: Wortmarken-Tafel */
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(246, 231, 227, 0.1), rgba(246, 231, 227, 0.02));
  border: 1px solid rgba(246, 231, 227, 0.16);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.4rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), var(--shadow-soft);
  text-align: center;
}
.hero-card .crest { width: 100%; max-width: 250px; height: auto; margin: 0 auto 0.4rem; }
.hero-card .card-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-card .card-wordmark .cw1 { display: block; font-size: 1.05rem; font-weight: 600; color: var(--rot-hell); letter-spacing: 0.02em; }
.hero-card .card-wordmark .cw2 { display: block; font-size: 2.4rem; margin-top: 0.15rem; }
.hero-card .cap {
  margin-top: 1.3rem;
  font-size: 0.92rem; color: #ecd7d2;
}
.hero-card .cap b { color: #fff; font-weight: 600; }

/* ---------- Stärken-Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}
.tile {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.4vw, 2.1rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(74, 20, 20, 0.06), 0 26px 52px -30px rgba(74, 20, 20, 0.5);
}
.tile h3 { font-size: 1.24rem; letter-spacing: 0.005em; margin-bottom: 0.5rem; }
.tile p { color: var(--muted); font-size: 0.98rem; }
.tile .ic {
  width: 48px; height: 48px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rot-tint);
  color: var(--rot);
  margin-bottom: 1.1rem;
}
.tile.span-7 { grid-column: span 7; }
.tile.span-5 { grid-column: span 5; }
.tile.span-6 { grid-column: span 6; }
.tile.span-4 { grid-column: span 4; }
.tile.span-8 { grid-column: span 8; }
.tile.span-12 { grid-column: span 12; }
.tile.holz .ic { background: var(--holz-tint); color: var(--holz-tief); }
.tile.gruen .ic { background: var(--gruen-tint); color: var(--gruen-tief); }

/* Feature-Kachel auf dunklem Grund */
.tile.feature {
  background:
    radial-gradient(95% 130% at 100% 0%, rgba(138, 32, 32, 0.72), transparent 58%),
    linear-gradient(155deg, var(--rot-700) 0%, var(--rot-900) 100%);
  color: #f6e7e3;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tile.feature h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.tile.feature p { color: #ecd7d2; }
.tile.feature .ic { background: rgba(246, 231, 227, 0.14); color: #fff; }
.tile.feature .more {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--rot-hell); font-weight: 600; font-size: 0.95rem;
}
.tile.feature .more svg { transition: transform 0.25s var(--ease); width: 18px; height: 18px; }
.tile.feature:hover .more svg { transform: translateX(4px); }

/* ---------- Split (Story + dunkle Tafel) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.split.flip > :first-child { order: 2; }
.lede { color: var(--muted); font-size: 1.1rem; }
.feature-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text); }
.feature-list .chk {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  background: var(--rot-tint); color: var(--rot);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-list .chk svg { width: 13px; height: 13px; }

.panel-dark {
  background:
    radial-gradient(85% 95% at 0% 0%, rgba(111, 125, 90, 0.3), transparent 60%),
    linear-gradient(155deg, var(--rot-700) 0%, var(--rot-900) 100%);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem);
  color: #f6e7e3; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.panel-dark::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 230px; height: 230px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 231, 227, 0.1), transparent 65%);
}
.panel-dark .ptag {
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 0.8rem;
  color: var(--rot-hell); display: block; margin-bottom: 0.7rem;
}
.panel-dark h3 { color: #fff; font-size: clamp(1.4rem, 2.5vw, 1.9rem); letter-spacing: 0.005em; margin-bottom: 0.8rem; }
.panel-dark p { color: #ecd7d2; position: relative; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; position: relative; }
.pill {
  font-size: 0.82rem; font-weight: 500; color: #fff;
  border: 1px solid rgba(246, 231, 227, 0.3); border-radius: 999px;
  padding: 0.42rem 0.95rem;
}

/* ---------- Foto-Platzhalter (gestaltet, Markenfarben) ---------- */
.photo-ph {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 280px;
  background:
    repeating-linear-gradient(135deg, rgba(173, 38, 38, 0.045) 0 14px, rgba(173, 38, 38, 0.015) 14px 28px),
    linear-gradient(150deg, var(--rot-tint), var(--gruen-tint));
  border: 1px dashed rgba(173, 38, 38, 0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.6rem; gap: 0.6rem;
  color: var(--rot);
}
.photo-ph .frame-ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--rot);
}
.photo-ph .ph-label {
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em;
  font-size: 1.05rem; color: var(--rot-nacht);
}
.photo-ph .ph-sub { font-size: 0.86rem; color: var(--muted); max-width: 34ch; }
.photo-ph.tall { min-height: 380px; }

/* ---------- Karten / Kategorien ---------- */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.menu-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(74, 20, 20, 0.06), 0 26px 52px -30px rgba(74, 20, 20, 0.5); }
.menu-card .num {
  font-family: var(--font-display); font-weight: 700;
  color: var(--rot); font-size: 1.5rem; line-height: 1; letter-spacing: 0.01em;
}
.menu-card h3 { font-size: 1.22rem; letter-spacing: 0.005em; margin: 0.7rem 0 0.5rem; }
.menu-card p { color: var(--muted); font-size: 0.95rem; }
.menu-card .ic {
  position: absolute; top: clamp(1.5rem,2.4vw,1.9rem); right: clamp(1.5rem,2.4vw,1.9rem);
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--rot-tint); color: var(--rot);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ehrlicher Hinweis */
.menu-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--creme-soft);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border-left: 4px solid var(--rot);
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}
.menu-note .ic { color: var(--rot); flex: none; margin-top: 2px; }
.menu-note p { color: var(--text); }
.menu-note strong { color: var(--rot-nacht); }

/* ---------- Zimmer-Karten (Bild oben) ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.room-card {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(74, 20, 20, 0.06), 0 26px 52px -30px rgba(74, 20, 20, 0.5); }
.room-card .photo-ph { border-radius: 0; min-height: 180px; border: 0; border-bottom: 1px solid var(--hairline-2); }
.room-card .body { padding: clamp(1.4rem, 2.4vw, 1.85rem); display: flex; flex-direction: column; flex: 1; }
.room-card .body .topline { display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; }
.room-card h3 { font-size: 1.22rem; letter-spacing: 0.005em; }
.room-card .cap-badge {
  font-size: 0.72rem; font-weight: 600; color: var(--holz-tief);
  background: var(--holz-tint); border-radius: 999px; padding: 0.24rem 0.7rem; white-space: nowrap;
}
.room-card p { color: var(--muted); font-size: 0.96rem; margin-top: 0.55rem; }
.room-feats { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem 0.5rem; }
.room-feats li {
  font-size: 0.78rem; color: var(--text);
  background: var(--creme-soft); border-radius: 8px; padding: 0.3rem 0.6rem;
}
.room-card .price-row {
  margin-top: auto; padding-top: 1.2rem; display: flex; align-items: baseline; gap: 0.5rem;
  border-top: 1px dashed var(--hairline); margin-top: 1.2rem;
}
.room-card .price-row .from { font-size: 0.78rem; color: var(--muted); }
.room-card .price-row .val { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--rot); }
.room-card .price-row .per { font-size: 0.8rem; color: var(--muted); }

/* ---------- Preis-Tabelle ---------- */
.price-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--rot);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.price-card h3 { font-size: 1.3rem; letter-spacing: 0.005em; margin-bottom: 0.3rem; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.price-table caption { text-align: left; color: var(--muted); font-size: 0.9rem; margin-bottom: 0.8rem; }
.price-table th, .price-table td {
  text-align: left; padding: 0.72rem 0.6rem; border-bottom: 1px dashed var(--hairline);
  font-size: 0.97rem;
}
.price-table thead th {
  font-family: var(--font-body); font-weight: 600; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.price-table td.zimmer { font-weight: 600; color: var(--rot-nacht); }
.price-table .preis { color: var(--rot); font-weight: 600; white-space: nowrap; }
.price-table td.muted { color: var(--muted); }
.price-disclaimer {
  margin-top: 1.2rem; font-size: 0.85rem; color: var(--muted);
  background: var(--rot-tint); border-radius: 12px; padding: 0.85rem 1.05rem;
  border-left: 3px solid var(--rot);
}

/* ---------- Konditionen-Liste ---------- */
.cond-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.cond-list li { display: flex; gap: 0.85rem; align-items: flex-start; color: var(--text); }
.cond-list .dot {
  width: 24px; height: 24px; flex: none; border-radius: 999px;
  background: var(--gruen-tint); color: var(--gruen-tief);
  display: inline-flex; align-items: center; justify-content: center; margin-top: 2px;
}
.cond-list .dot svg { width: 13px; height: 13px; }
.cond-list strong { color: var(--rot-nacht); }

/* ---------- Ausflugsziele-Chips ---------- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.chip {
  font-size: 0.88rem; font-weight: 500; color: var(--rot-nacht);
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 0.5rem 1rem; box-shadow: var(--shadow-card);
}

/* ---------- Entfernungs-Liste (Lage) ---------- */
.dist-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--holz);
  padding: clamp(1.8rem, 3vw, 2.4rem);
}
.dist-card h3 { font-size: 1.3rem; letter-spacing: 0.005em; }
.dist-list { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.dist-list li {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: 0.72rem 0; border-bottom: 1px dashed var(--hairline);
}
.dist-list li:last-child { border-bottom: 0; }
.dist-list .ziel { font-weight: 500; color: var(--rot-nacht); }
.dist-list .km { color: var(--holz-tief); font-weight: 600; font-family: var(--font-display); white-space: nowrap; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(111, 125, 90, 0.3), transparent 58%),
    linear-gradient(155deg, var(--rot-700), var(--rot-900));
  color: #f6e7e3; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(2.4rem, 5vw, 3.6rem);
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-soft);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 24ch; }
.cta-band p { color: #ecd7d2; margin-top: 0.7rem; max-width: 50ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.phone-cta-box {
  margin-top: 1.6rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.7rem);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--rot);
}
.phone-cta-box .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--rot); font-weight: 600; }
.phone-cta-box .num {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.005em;
  font-size: clamp(1.5rem, 3.2vw, 2rem); color: var(--rot); display: block; margin: 0.3rem 0 0.2rem;
}
.phone-cta-box .num:hover { color: var(--rot-tief); }
.phone-cta-box p { color: var(--muted); font-size: 0.9rem; }
.info-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list .ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--rot-tint); color: var(--rot);
  display: inline-flex; align-items: center; justify-content: center;
}
.info-list .l1 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 600; }
.info-list a, .info-list span.val { font-weight: 500; color: var(--text); font-size: 1.02rem; }
.info-list a:hover { color: var(--rot); }

/* Formular: integriert in dunkle Marken-Karte */
.form-card {
  background:
    radial-gradient(80% 95% at 100% 0%, rgba(138, 32, 32, 0.6), transparent 58%),
    linear-gradient(160deg, var(--rot-700) 0%, var(--rot-900) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #f6e7e3;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), var(--shadow-soft);
}
.form-card h3 { color: #fff; font-size: 1.45rem; letter-spacing: 0.005em; margin-bottom: 0.4rem; }
.form-card .hint { color: #e0c6c0; font-size: 0.9rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.05rem; }
.field label {
  display: block; font-size: 0.76rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: #e0c6c0; font-weight: 600; margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(246, 231, 227, 0.08);
  border: 1px solid rgba(246, 231, 227, 0.22);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #c79a92; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rot-hell);
  background: rgba(246, 231, 227, 0.13);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-card .btn-on-dark .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--rot-tint-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.form-note { font-size: 0.78rem; color: #c79a92; margin-top: 1rem; line-height: 1.55; }

/* ---------- Map-Link ---------- */
.map-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.6rem; color: var(--rot); font-weight: 600; font-size: 0.96rem;
  padding: 0.7rem 1.1rem; border: 1px solid var(--hairline); border-radius: 999px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.map-link:hover { border-color: var(--rot); background: var(--rot-tint); }

/* ---------- Inhaltsseiten-Hero ---------- */
.page-hero {
  background:
    radial-gradient(95% 120% at 88% -25%, rgba(138, 32, 32, 0.62), transparent 60%),
    radial-gradient(60% 80% at 0% 120%, rgba(111, 125, 90, 0.2), transparent 55%),
    linear-gradient(158deg, var(--rot-nacht), var(--rot-700));
  color: #f6e7e3;
  overflow: hidden;
}
.page-hero .wrap { padding-block: clamp(3.4rem, 8vw, 5.5rem); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: 0.005em; max-width: 24ch; }
.page-hero h1 .accent { color: var(--rot-hell); font-style: italic; font-weight: 600; }
.page-hero p { color: #ecd7d2; margin-top: 1.1rem; max-width: 60ch; font-size: 1.07rem; }
.breadcrumb { font-size: 0.82rem; color: #d9b8b1; margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Prosa ---------- */
.prose { max-width: 720px; }
.prose p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.05rem; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.005em; margin: 2.4rem 0 1rem; }

/* ---------- Note-Box ---------- */
.note-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--rot);
}
.note-box h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.note-box p { color: var(--muted); font-size: 0.99rem; }
.note-box strong { color: var(--text); }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); letter-spacing: 0.005em; }
.legal h2 { font-size: 1.4rem; letter-spacing: 0.005em; margin-top: 2.6rem; margin-bottom: 0.7rem; }
.legal h3 { font-size: 1.1rem; letter-spacing: 0.005em; margin-top: 1.6rem; margin-bottom: 0.4rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--rot); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.datenschutz-title { overflow-wrap: break-word; }
.callout {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--rot);
  margin: 1.6rem 0;
}
.callout p { color: var(--text); margin-bottom: 0.5rem; }
.callout .tag {
  display: inline-block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 600; color: var(--rot); margin-bottom: 0.6rem;
}
.placeholder-pill {
  display: inline-block;
  background: var(--rot-tint-2);
  color: var(--rot);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--rot-900);
  color: #d9bdb8;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246, 231, 227, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand .emblem { width: 46px; height: 46px; }
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-sub { color: var(--rot-hell); }
.footer-about { color: #c7a39d; font-size: 0.95rem; max-width: 44ch; }
.footer-col h4 {
  font-family: var(--font-display); color: #fff; font-size: 1.05rem;
  letter-spacing: 0.005em; margin: 0 0 1rem; font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col span { color: #d9bdb8; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--rot-hell); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: 0.82rem; color: #ad8a84;
}
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--rot-hell); }

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

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .tile.span-7, .tile.span-5, .tile.span-6, .tile.span-4, .tile.span-8 { grid-column: span 12; }
  .lage-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 760px) {
  /* Auf mobil kein backdrop-filter am Header: sonst blendet dessen
     Filter-Kontext das opake Menü-Panel falsch (Panel wirkt durchsichtig). */
  .site-header {
    background: var(--creme);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 350px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.2rem;
    background: var(--creme);
    padding: 6rem 1.4rem 2rem;
    box-shadow: -22px 0 60px rgba(74, 20, 20, 0.2);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
    border-left: 1px solid var(--hairline);
    z-index: 52;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a { padding: 0.9rem 1rem; font-size: 1.05rem; border-radius: 10px; }
  .nav-links a.active { background: var(--rot-tint); }
  .nav-cta { margin: 0.6rem 0 0; text-align: center; justify-content: center; display: flex; }
  .nav-toggle { display: block; z-index: 55; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(74, 20, 20, 0.42);
    opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
    z-index: 40;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .brand-word { font-size: 1.4rem; }
  .hero-meta { gap: 1.1rem 1.6rem; }
}
