/* ════════════════════════════════════════════════════════════════════════
   Steverbett Hotel Lüdinghausen — Hauptstylesheet
   ════════════════════════════════════════════════════════════════════════ */

/* ── Fonts (selbst gehostet, DSGVO-konform) ─────────────────────────────── */
/* Dateinamen: outfit-variable.woff2 | inter-variable.woff2 | fraunces-variable.woff2 */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: local('Outfit'),
       url('../fonts/outfit-variable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: local('Inter'),
       url('../fonts/inter-variable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('Fraunces'),
       url('../fonts/fraunces-variable.woff2') format('woff2-variations');
}

/* ── Design-Tokens ──────────────────────────────────────────────────────── */
:root {
  /* CI-Farben (aus Logo extrahiert) */
  --pine:        #16554D;   /* Tannengrün, dunkel  – Welle 3, Buttons */
  --pine-deep:   #0E3F39;   /* hover/active        */
  --leaf:        #528139;   /* Mittelgrün – Welle 2 */
  --water:       #84BAC4;   /* Hellblau Stever – Welle 1 */
  --water-soft:  #C5DDE3;
  --signal:      #CBA423;   /* Senfgelb – Akzent */
  --signal-deep: #A38416;
  --ink:         #324241;   /* Schriftfarbe */
  --ink-soft:    #5A6968;
  --paper:       #F5F0EA;   /* Cream Hintergrund */
  --sand:        #ECE4D5;
  --sand-deep:   #DCD2BE;
  --white:       #FFFFFF;
  --black:       #16201F;

  /* Funktionale Aliase */
  --bg:          var(--paper);
  --fg:          var(--ink);
  --primary:     var(--pine);
  --accent:      var(--signal);
  --border:      rgba(50, 66, 65, 0.14);
  --border-strong: rgba(50, 66, 65, 0.28);
  --shadow-sm:   0 1px 2px rgba(22, 32, 31, .05), 0 1px 1px rgba(22, 32, 31, .04);
  --shadow-md:   0 8px 24px -8px rgba(22, 32, 31, .15), 0 4px 8px -4px rgba(22, 32, 31, .08);
  --shadow-lg:   0 24px 48px -12px rgba(22, 32, 31, .18), 0 12px 24px -12px rgba(22, 32, 31, .10);

  /* Typografie */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing-Scale */
  --space-1:  .25rem;
  --space-2:  .5rem;
  --space-3:  .75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  3rem;
  --space-8:  4rem;
  --space-9:  6rem;
  --space-10: 8rem;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --header-h: 100px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 16px/1.65 var(--font-body);
  font-feature-settings: 'ss01' on, 'cv11' on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }
a { color: var(--pine); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--signal-deep); }
ul, ol { padding: 0; }
hr { border: 0; height: 1px; background: var(--border); margin: var(--space-6) 0; }

/* ── Typografie ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.12;
  color: var(--ink);
  /* ss01 aus: vermeidet die geschwungene „f“-Alternative von Fraunces in Überschriften */
  font-feature-settings: 'ss01' off;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 400; letter-spacing: -.025em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.875rem); font-weight: 400; letter-spacing: -.02em; }
h3 { font-size: clamp(1.375rem, 2.4vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: .01em; }
h6 { font-size: .85rem; font-family: var(--font-sans); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); }

p { line-height: 1.7; }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pine);
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--signal);
}

.lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}

.script-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* Frühstück – Buffet-Angebot als zweispaltige Liste */
.bf-offer {
  margin-top: .6rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.65;
  columns: 2;
  column-gap: 2.5rem;
}
.bf-offer li { break-inside: avoid; margin-bottom: .5rem; }
@media (max-width: 640px) { .bf-offer { columns: 1; } }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-5); }

section { padding: var(--space-9) 0; }
section.tight { padding: var(--space-7) 0; }

.section-head { max-width: 60ch; margin-bottom: var(--space-7); }
.section-head .eyebrow { margin-bottom: var(--space-3); }
.section-head h2 { margin-bottom: var(--space-4); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .85rem 1.6rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .015em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 1em; height: 1em; }
.btn--primary {
  background: var(--pine); color: var(--paper);
  border-color: var(--pine);
}
.btn--primary:hover { background: var(--pine-deep); border-color: var(--pine-deep); color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--accent {
  background: var(--signal); color: var(--pine-deep);
  border-color: var(--signal);
}
.btn--accent:hover { background: var(--signal); border-color: var(--signal); color: var(--pine-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent; color: var(--pine);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--pine); color: var(--paper); border-color: var(--pine); }
.btn--light {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}
.btn--light:hover { background: var(--white); }
.btn--sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ── Header / Navigation ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 240, 234, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(245, 240, 234, .94); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__logo img { height: 48px; width: auto; display: block; }
/* Horizontales Menü wird generell ausgeblendet – Navigation läuft auf allen
   Breiten über den Burger + Off-Canvas-Menü (.mobile-menu). */
.nav__menu { display: none; align-items: center; gap: var(--space-6); list-style: none; margin: 0; }
.nav__menu a {
  font-family: var(--font-sans);
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: .25rem 0;
  letter-spacing: .005em;
}
.nav__menu a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--signal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__menu a:hover, .nav__menu a.active { color: var(--pine); }
.nav__menu a.active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: var(--space-3); }
.cta-label-short { display: none; }

.nav__toggle {
  display: flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--ink);
}
.nav__toggle svg { width: 30px; height: 30px; }

/* Animiertes Burger-Icon (asymmetrisch im Ruhezustand, X beim Öffnen) */
.burger {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 16px;
}
.burger span {
  position: absolute;
  left: 0;
  height: 2.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1),
              width .3s cubic-bezier(.4, 0, .2, 1),
              opacity .2s ease;
  transform-origin: center;
}
.burger span:nth-child(1) { top: 0;    width: 100%; }
.burger span:nth-child(2) { top: 50%;  width: 60%; transform: translateY(-50%); transition-delay: .04s; }
.burger span:nth-child(3) { bottom: 0; width: 82%; transition-delay: .08s; }
/* Hover: Balken laufen bündig auf volle Breite */
.nav__toggle:hover .burger span { width: 100%; }
/* Geöffnet: Verwandlung in ein X */
.nav__toggle.is-active .burger span:nth-child(1) { top: 50%; width: 100%; transform: translateY(-50%) rotate(45deg); }
.nav__toggle.is-active .burger span:nth-child(2) { opacity: 0; width: 0; }
.nav__toggle.is-active .burger span:nth-child(3) { bottom: auto; top: 50%; width: 100%; transform: translateY(-50%) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__cta .btn--ghost { display: none; }
  :root { --header-h: 80px; }
  .nav__logo img { height: 44px; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .site-header .container { padding: 0 var(--space-4); }
  .nav__logo img { height: 34px; }
  .nav__cta { gap: var(--space-2); }
  .nav__cta .btn--accent { padding: .45rem .8rem; font-size: .82rem; }
  .cta-label-full { display: none; }
  .cta-label-short { display: inline; }
}

@media (max-width: 400px) {
  .site-header .container { padding: 0 var(--space-3); }
  .nav__logo img { height: 32px; }
  .nav__cta { gap: .35rem; }
  .nav__cta .btn--accent { padding: .42rem .65rem; font-size: .78rem; }
  .nav__toggle { width: 40px; height: 40px; }
  .nav__toggle svg { width: 26px; height: 26px; }
}

/* Off-Canvas-Menü als schlanke Seitenleiste (Drawer) */
.menu-backdrop {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(20, 28, 26, .5);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.menu-backdrop.is-visible { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--paper);
  z-index: 200;
  padding: var(--space-4) var(--space-6) var(--space-6);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -18px 0 50px rgba(0, 0, 0, .18);
}
.mobile-menu.is-open { transform: translateX(0); }
/* Kopfzeile ausblenden, solange das Menü offen ist (kein doppeltes Logo/X/Button) */
body.menu-open .site-header { opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  min-height: 56px;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(50, 66, 65, .08);
}
.mobile-menu__head .nav__logo img { height: 44px !important; width: auto; }
.mobile-menu__close {
  width: 44px; height: 44px; margin-right: -.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); color: var(--ink);
  transition: color .2s ease, background .2s ease;
}
.mobile-menu__close:hover { color: var(--pine); background: var(--sand); }
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-menu__list li { border-bottom: 1px solid rgba(50, 66, 65, .07); }
.mobile-menu__list li:last-child { border-bottom: none; }
.mobile-menu__list a {
  display: block;
  padding: .62rem 0;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-menu__list a:hover { color: var(--pine); padding-left: .4rem; }
.mobile-menu__cta { margin-top: var(--space-6); padding-top: var(--space-5); border-top: 1px solid rgba(50, 66, 65, .08); }

/* Sprachumschalter */
.lang-switch { display: flex; gap: .4rem; margin-top: var(--space-5); }
.lang-switch a {
  flex: 1; text-align: center; padding: .5rem 0;
  border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink); transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.lang-switch a:hover { border-color: var(--pine); color: var(--pine); }
.lang-switch a.is-active { background: var(--pine); border-color: var(--pine); color: var(--paper); }

/* Sprachumschalter im Header */
.nav__lang { display: flex; align-items: center; gap: .1rem; margin-right: .25rem; }
.nav__lang a {
  padding: .3rem .45rem; font-family: var(--font-sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .03em; color: var(--ink-soft); border-radius: var(--r-sm); line-height: 1;
  transition: color .2s ease, background .2s ease;
}
.nav__lang a:hover { color: var(--pine); }
.nav__lang a.is-active { color: var(--pine); background: var(--sand); }

/* Mobiler Sprach-Dropdown (kompakt, damit das Logo nicht gestaucht wird) */
.lang-dd { display: none; position: relative; }
.lang-dd > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .15rem;
  font-family: var(--font-sans); font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  color: var(--ink); line-height: 1; padding: .4rem .5rem;
  border: 1px solid var(--border); border-radius: var(--r-sm);
}
.lang-dd > summary::-webkit-details-marker { display: none; }
.lang-dd > summary svg { width: 14px; height: 14px; transition: transform .2s ease; }
.lang-dd[open] > summary svg { transform: rotate(180deg); }
.lang-dd__menu {
  position: absolute; right: 0; top: calc(100% + .4rem);
  display: flex; flex-direction: column; gap: .1rem;
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: .3rem; min-width: 58px; box-shadow: var(--shadow-md); z-index: 60;
}
.lang-dd__menu a {
  font-family: var(--font-sans); font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  color: var(--ink-soft); text-align: center; text-decoration: none;
  padding: .4rem .6rem; border-radius: var(--r-sm); line-height: 1;
}
.lang-dd__menu a:hover { color: var(--pine); }
.lang-dd__menu a.is-active { color: var(--pine); background: var(--sand); }

@media (max-width: 640px) {
  .nav__lang { display: none; }
  .lang-dd { display: block; }
}

/* Aktions-Popup */
.promo-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; background: rgba(20, 28, 26, .55);
}
.promo-overlay[hidden] { display: none; }
.promo-modal {
  position: relative; background: var(--paper);
  max-width: 460px; width: 100%;
  border-radius: var(--r-lg); padding: 2.75rem 2rem 2rem;
  box-shadow: var(--shadow-lg); text-align: center;
  animation: promoIn .3s cubic-bezier(.4, 0, .2, 1);
}
.promo-modal__close {
  position: absolute; top: .65rem; right: .65rem;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); color: var(--ink); transition: color .2s ease, background .2s ease;
}
.promo-modal__close:hover { background: var(--sand); color: var(--pine); }
.promo-modal__eyebrow { display: inline-block; font-family: var(--font-sans); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pine); margin-bottom: .6rem; }
.promo-modal__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--pine); margin-bottom: 1rem; line-height: 1.2; }
.promo-modal__body { color: var(--ink); line-height: 1.5; }
.promo-modal__body p { margin: .12rem 0; }
.promo-modal__body p:first-child { margin-top: 0; }
.promo-modal__body p:last-child { margin-bottom: 0; }
/* Fett gesetzte „Überschriften"-Zeilen gruppieren die Blöcke optisch */
.promo-modal__body p:has(> strong) { margin-top: .95rem; }
.promo-modal__body p:first-child:has(> strong) { margin-top: 0; }
.promo-modal__body ul { margin: .3rem 0; padding-left: 1.2rem; }
.promo-modal .btn { margin-top: 1.5rem; }
@keyframes promoIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .promo-modal { animation: none; } }

/* Flash-Meldungen (Formular-Erfolg/-Fehler) */
.flash-banner { padding: .9rem 0; font-family: var(--font-sans); font-size: .95rem; font-weight: 500; }
.flash-banner .container { display: flex; align-items: center; gap: .6rem; }
.flash-banner__icon { flex-shrink: 0; display: inline-flex; }
.flash-banner--success { background: #e6f1ec; color: #1c5a43; }
.flash-banner--error { background: #fdecec; color: #a32b2b; }

/* Lightbox (Galerien) */
.lightbox { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 2rem; background: rgba(15, 22, 20, .92); }
.lightbox[hidden] { display: none; }
.lightbox__fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.lightbox__img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: var(--r-sm); box-shadow: 0 20px 60px rgba(0, 0, 0, .5); animation: lbIn .25s ease; }
.lightbox__cap { color: rgba(245, 240, 234, .85); font-family: var(--font-sans); font-size: .9rem; text-align: center; max-width: 80vw; }
.lightbox__btn { position: absolute; background: rgba(255, 255, 255, .12); color: #fff; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.lightbox__btn:hover { background: rgba(255, 255, 255, .25); }
.lightbox__btn[hidden] { display: none; }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lightbox__img { animation: none; } }
@media (max-width: 600px) { .lightbox__btn { width: 42px; height: 42px; } .lightbox__prev { left: .5rem; } .lightbox__next { right: .5rem; } .lightbox__close { top: .6rem; right: .6rem; } }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  padding: 0 0 var(--space-8);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(22, 32, 31, .08)  0%,
    rgba(22, 32, 31, .08) 30%,
    rgba(22, 32, 31, .55) 65%,
    rgba(22, 32, 31, .82) 100%
  );
}
/* Hero-Bild bleibt beim Scrollen dezent stehen (Parallax). In sich geschlossen
   über background-attachment – wirkt sich NICHT auf andere Abschnitte aus.
   Nur ab Desktop (auf Mobil scrollt das Bild normal mit). */
.hero__bg--fixed {
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
@media (min-width: 900px) {
  .hero__bg--fixed { background-attachment: fixed; }
}
.hero__content { position: relative; z-index: 2; color: var(--paper); max-width: 760px; padding-bottom: var(--space-7); }
.hero__content .eyebrow {
  color: var(--signal);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  opacity: 1;
}
.hero__content .eyebrow::before { background: var(--signal); }
.hero__title {
  color: var(--paper);
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  font-weight: 300;
  line-height: 1.05;
  margin: var(--space-4) 0 var(--space-5);
  letter-spacing: -.025em;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero__title em {
  font-style: italic; color: var(--water);
  font-weight: 400;
}
.hero__sub {
  font-size: 1.18rem;
  color: rgba(245, 240, 234, .92);
  max-width: 56ch;
  margin-bottom: var(--space-6);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* Wave-Akzent (CI-Element aus Logo) im Hero */
.hero__waves {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 3; pointer-events: none;
  height: 6px;
  background: var(--signal);
}

/* ── Booking Bar ───────────────────────────────────────────────────────── */
.booking-bar {
  position: relative;
  margin-top: -40px;
  margin-bottom: var(--space-8);
  z-index: 5;
}
.booking-bar__inner {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: var(--space-4);
  align-items: end;
}
.booking-bar label {
  display: block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--space-2);
}
.booking-bar input, .booking-bar select {
  width: 100%;
  padding: .65rem 0;
  border: 0; border-bottom: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-sans); font-size: 1rem;
  color: var(--ink);
}
.booking-bar input:focus, .booking-bar select:focus {
  outline: none; border-bottom-color: var(--pine);
}
@media (max-width: 768px) {
  .booking-bar__inner { grid-template-columns: 1fr 1fr; }
  .booking-bar__inner > .booking-bar__submit { grid-column: 1 / -1; }
}

/* ── Cards ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.card__media { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__badge {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: var(--paper); color: var(--ink);
  padding: .35rem .8rem; border-radius: var(--r-pill);
  font-family: var(--font-sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.card__body { padding: var(--space-5); }
.card__meta {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  font-family: var(--font-sans); font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}
.card__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.card__title { margin-bottom: var(--space-2); font-size: 1.5rem; font-weight: 400; }
.card__excerpt { color: var(--ink-soft); margin-bottom: var(--space-4); }
.card__price {
  display: flex; align-items: baseline; gap: .35rem;
  margin-bottom: var(--space-4);
  color: var(--ink);
}
.card__price small { font-family: var(--font-sans); font-size: .75rem; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; }
.card__price strong { font-family: var(--font-display); font-size: 2rem; font-weight: 500; line-height: 1; }
.card__price em { font-style: normal; font-family: var(--font-sans); font-size: .85rem; color: var(--ink-soft); }

/* Grid */
.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ── Feature Strip (mit Icons) ─────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  padding: var(--space-7) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature { display: flex; flex-direction: column; gap: var(--space-3); }
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--pine);
  display: flex; align-items: center; justify-content: center;
}
.feature__icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.feature h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; }

/* Nur für Screenreader sichtbar (semantische Überschriften ohne visuelle Wirkung) */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.feature p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 768px) { .features { grid-template-columns: repeat(2, 1fr); } }

/* ── Image-Text Split ──────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.split--reverse { grid-template-columns: 1fr 1.1fr; }
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split__media picture { display: block; width: 100%; height: 100%; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--secondary {
  position: absolute; bottom: -40px; right: -40px;
  width: 45%; aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-lg);
}
.split__media--secondary img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: var(--space-6); }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 4/3; }
  .split__media--secondary { display: none; }
}

/* ── Wave Divider (CI-Element) ─────────────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%; height: 64px;
  margin: var(--space-7) 0;
}
.wave-divider svg { width: 100%; height: 100%; }

.wave-mini {
  display: inline-flex; gap: 3px;
  margin-bottom: var(--space-4);
}
.wave-mini span {
  display: block; width: 36px; height: 5px; border-radius: 3px;
}
.wave-mini span:nth-child(1) { background: var(--water); }
.wave-mini span:nth-child(2) { background: var(--leaf); }
.wave-mini span:nth-child(3) { background: var(--pine); }
.wave-mini span:nth-child(4) { background: var(--signal); }

/* ── Testimonials ──────────────────────────────────────────────────────── */
.testimonial {
  padding: var(--space-6);
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.2rem; right: 1.4rem;
  z-index: 0;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--signal);
  opacity: .14;
  pointer-events: none;
}
.testimonial__stars { position: relative; z-index: 1; }
.testimonial__author { position: relative; z-index: 1; }
.testimonial__text { position: relative; z-index: 1; font-size: 1.05rem; line-height: 1.7; color: var(--ink); margin-bottom: var(--space-4); }
.testimonial__author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial__author strong { display: block; font-family: var(--font-sans); font-weight: 600; font-size: .95rem; }
.testimonial__author small { color: var(--ink-soft); font-size: .82rem; }
.testimonial__stars { color: var(--signal); margin-bottom: var(--space-3); }

/* Gästestimmen-Slider (swipebar) */
.testi-slider { position: relative; }
.testi-slider__track {
  display: flex; gap: var(--space-5);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: .25rem .25rem 1.25rem;
  scrollbar-width: none;
}
.testi-slider__track::-webkit-scrollbar { display: none; }
.testi-slider__track { cursor: grab; }
.testi-slider__track.is-grabbing { cursor: grabbing; user-select: none; scroll-snap-type: none; }
.testi-slider__track.is-grabbing .testimonial { pointer-events: none; }
.testi-slider__track > .testimonial {
  flex: 0 0 auto; scroll-snap-align: start;
  width: calc((100% - 2 * var(--space-5)) / 3);
}
@media (max-width: 900px) { .testi-slider__track > .testimonial { width: calc((100% - var(--space-5)) / 2); } }
@media (max-width: 640px) { .testi-slider__track > .testimonial { width: 86%; } }
.testi-slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--border-strong); color: var(--pine);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-md); transition: background .2s ease, color .2s ease;
}
.testi-slider__nav:hover { background: var(--pine); color: var(--paper); }
.testi-slider__nav svg { width: 20px; height: 20px; }
.testi-slider__nav--prev { left: -12px; }
.testi-slider__nav--next { right: -12px; }
.testi-slider__nav[hidden] { display: none; }
@media (max-width: 1100px) { .testi-slider__nav { display: none; } }

/* ── Forms ─────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-4); }
.form-group label { display: block; font-family: var(--font-sans); font-size: .85rem; font-weight: 500; margin-bottom: var(--space-2); color: var(--ink); }
.form-group .req { color: var(--signal); }

.input, .textarea, .select {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--pine);
  box-shadow: 0 0 0 4px rgba(22, 85, 77, .12);
}
.textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-help { font-size: .82rem; color: var(--ink-soft); margin-top: var(--space-2); }
.form-error {
  background: #FCE9E5; color: #9C2A1A;
  padding: var(--space-3) var(--space-4); border-radius: var(--r-sm); border-left: 3px solid #C44A37;
  margin-bottom: var(--space-4);
}
.form-success {
  background: #E5F0E0; color: #2D5121;
  padding: var(--space-3) var(--space-4); border-radius: var(--r-sm); border-left: 3px solid var(--leaf);
  margin-bottom: var(--space-4);
}

/* Honeypot Feld */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Checkbox */
.checkbox { display: flex; align-items: flex-start; gap: var(--space-3); cursor: pointer; }
.checkbox input { margin-top: .25rem; accent-color: var(--pine); }
.checkbox span { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }

/* File-Upload */
.file-input {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4);
  border: 2px dashed var(--border-strong);
  border-radius: var(--r-md);
  background: var(--sand);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-input:hover { border-color: var(--pine); background: var(--paper); }
.file-input.is-dragover { border-color: var(--pine); background: var(--paper); box-shadow: 0 0 0 3px rgba(22,85,77,.12); }
.file-input input { display: none; }
.file-input__label { font-family: var(--font-sans); font-size: .9rem; color: var(--ink-soft); }

/* ── CTA-Block ─────────────────────────────────────────────────────────── */
.cta-block {
  background: var(--pine);
  color: var(--paper);
  padding: var(--space-9) var(--space-6);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-block::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(132, 186, 196, .14) 0%, transparent 60%);
  z-index: -1;
}
.cta-block h2 { color: var(--paper); max-width: 18ch; }
.cta-block .lead { color: rgba(245, 240, 234, .82); }
.cta-block .eyebrow { color: var(--signal); }
.cta-block .eyebrow::before { background: var(--signal); }
/* Ghost-Button auf dunklem CTA-Block hell darstellen (sonst unsichtbar) */
.cta-block .btn--ghost { color: var(--paper); border-color: rgba(245, 240, 234, .45); }
.cta-block .btn--ghost:hover { background: rgba(245, 240, 234, .14); border-color: var(--paper); color: var(--paper); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(245, 240, 234, .8);
  padding: var(--space-9) 0 var(--space-5);
  margin-top: var(--space-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .footer__title {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.site-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.site-footer a { color: rgba(245, 240, 234, .8); }
.site-footer a:hover { color: var(--signal); }

.footer-logo__img { height: 52px; width: auto; margin-bottom: var(--space-4); display: block; filter: brightness(0) invert(1); }
.footer-logo p { color: rgba(245, 240, 234, .82); font-size: .9rem; max-width: 32ch; }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 234, .12);
  padding-top: var(--space-5);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-3);
  font-size: .82rem; color: rgba(245, 240, 234, .82);
}
.footer-bottom ul {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: var(--space-5);
  list-style: none; padding: 0; margin: 0;
}
/* Inline-Links im Footer-Bereich nicht nur über Farbe erkennbar */
.footer-credit a, .footer-bottom a { text-decoration: underline; text-underline-offset: .15em; }

/* ── Page-Headers (für Unterseiten) ────────────────────────────────────── */
.page-header {
  position: relative;
  background: var(--sand);
  padding: var(--space-9) 0 var(--space-8);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-header.with-image {
  color: var(--paper);
  background: var(--ink);
  min-height: 460px;
  display: flex; align-items: center;
}
.page-header.with-image::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(22, 32, 31, .35) 0%, rgba(22, 32, 31, .65) 100%);
}
.page-header.with-image img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.page-header.with-image h1, .page-header.with-image .eyebrow { color: var(--paper); }
.page-header.with-image .eyebrow { color: var(--signal); }
.page-header.with-image .lead { color: rgba(245, 240, 234, .9); margin: 0 auto; }
.page-header__inner { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-5); position: relative; }
.page-header h1 { margin: var(--space-3) 0 var(--space-4); }
.page-header .lead { margin: 0 auto; }

/* ── Breadcrumbs ───────────────────────────────────────────────────────── */
.breadcrumbs {
  font-family: var(--font-sans); font-size: .82rem; color: var(--ink-soft);
  display: flex; gap: .5rem; align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--pine); }
.breadcrumbs .sep { opacity: .5; }
.breadcrumbs strong { color: var(--ink); font-weight: 500; }

/* ── Cookie Banner ─────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; left: var(--space-4); right: var(--space-4); bottom: var(--space-4);
  background: var(--ink); color: var(--paper);
  padding: var(--space-5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-width: 540px;
  display: none;
}
.cookie-banner.is-visible { display: block; animation: cookie-in .4s ease; }
@keyframes cookie-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner h2 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 600; color: var(--paper); margin-bottom: var(--space-2); letter-spacing: 0; line-height: 1.2; }
.cookie-banner p { font-size: .88rem; color: rgba(245, 240, 234, .8); margin-bottom: var(--space-4); }
.cookie-banner .actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* ── Misc ──────────────────────────────────────────────────────────────── */
.bg-paper { background: var(--paper); }
.bg-sand  { background: var(--sand); }
.bg-pine  { background: var(--pine); color: var(--paper); }
.bg-pine h2, .bg-pine h3 { color: var(--paper); }

.text-center { text-align: center; }
.mx-auto    { margin-left: auto; margin-right: auto; }

.divider-dot { color: var(--signal); margin: 0 .35rem; }

/* Fließtext-Seiten (Rechtstexte & Inhaltsseiten): ruhige Lese-Typografie */
.quill-content { color: var(--ink); }
.quill-content > :first-child { margin-top: 0; }
.quill-content h2 { margin: 2.4rem 0 .6rem; }
.quill-content h3 { margin: 2rem 0 .4rem; }
.quill-content h4 { margin: 1.5rem 0 .4rem; }
.quill-content p { margin: 0 0 1.1rem; }
.quill-content ul, .quill-content ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }
.quill-content li { margin-bottom: .35rem; }
.quill-content a { color: var(--pine); text-decoration: underline; text-underline-offset: .15em; }
.quill-content table { width: 100%; border-collapse: collapse; margin: 0 0 1.5rem; font-size: .95rem; }
.quill-content th, .quill-content td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.quill-content thead th { background: var(--sand); font-family: var(--font-sans); font-weight: 600; border-bottom: 2px solid var(--border-strong); }
.quill-content tbody tr:last-child td { border-bottom: none; }
.quill-content table td:last-child, .quill-content table th:last-child { text-align: right; white-space: nowrap; }
.quill-content a:hover { color: var(--pine-deep); }

/* Mehrspaltig ab Desktop (ausgenommen mobil) – bessere Abstände & Lesefluss.
   Überschriften bleiben mit ihrem Folgeabsatz zusammen, Blöcke werden nicht getrennt. */
.content-columns { max-width: 1040px; margin: 0 auto; }
@media (min-width: 900px) {
  .content-columns { column-count: 2; column-gap: var(--space-8); }
  .content-columns > * { break-inside: avoid; }
  .content-columns h2, .content-columns h3, .content-columns h4 { break-after: avoid-column; }
}

/* Social-Media-Icons im Footer (nur sichtbar, wenn Links im Backend hinterlegt) */
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(245, 240, 234, .25); color: var(--paper);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; }

/* FAQ-Akkordeon (native <details>, auch ohne JS bedienbar) */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--pine); transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item__answer { padding: 0 0 1.25rem; color: var(--ink-soft); line-height: 1.75; }

/* Skip-Link */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--ink); color: var(--paper);
  padding: var(--space-3) var(--space-4);
  z-index: 999;
}
.skip-link:focus { top: 0; }

/* Sichtbarer Tastatur-Fokus (Barrierefreiheit, WCAG 2.4.7) */
:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Reiner Maus-/Touch-Fokus erzeugt keinen Ring – nur Tastatur */
:focus:not(:focus-visible) { outline: none; }
.skip-link:focus-visible { outline-offset: -3px; }

/* Reveal-on-Scroll (JS-getriggert). Nur aktiv, wenn JS verfügbar ist –
   sonst (kein JS) bleiben die Inhalte sichtbar (WCAG / Robustheit). */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Print */
@media print {
  .site-header, .site-footer, .booking-bar, .nav__cta, .cookie-banner { display: none !important; }
  body { color: #000; background: #fff; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Eingeblendete Inhalte sofort sichtbar, keine Bewegung */
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
