/* =====================================================================
   Restaurant & Hotel Vergissmeinnicht – Relaunch Mockup
   Design-System · Petrol + Gold · dunkel-elegant
   Diese Datei wird später zur style.css des WordPress-Themes.
   ===================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  /* Petrol (Grundfarbe) – blaubetont ("dark petrol") */
  --petrol-900: #0b2333;
  --petrol-850: #0e2a3c;
  --petrol-800: #123245;
  --petrol-700: #1a4459;
  --petrol-600: #245570;
  --petrol-500: #2f6c8a;

  /* Gold (Kontrast) */
  --gold: #c8a24c;
  --gold-300: #ddc07e;
  --gold-100: #f0e2bf;

  /* Neutrale */
  --cream: #f4efe6;
  --muted: #aebbbe;
  --line: rgba(200, 162, 76, 0.28);
  --line-soft: rgba(244, 239, 230, 0.12);

  /* Typo */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Titillium Web", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Maße */
  --wrap: 1200px;
  --wrap-narrow: 860px;
  --radius: 4px;
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--petrol-900);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  /* Titillium Web läuft schmaler als Montserrat – 400 statt 300 hält den
     Fließtext auf dem dunklen Untergrund gut lesbar */
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  color: var(--cream);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { margin: 0 0 1.1em; }
::selection { background: var(--gold); color: var(--petrol-900); }

/* ---------- Utilities ---------- */
.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 3rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow--line::before {
  content: ""; display: inline-block; width: 34px; height: 1px;
  background: var(--gold); vertical-align: middle; margin-right: 0.8rem;
  transform: translateY(-3px);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); font-weight: 300; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.divider { width: 60px; height: 2px; background: var(--gold); border: 0; margin: 1.6rem auto; }
.divider--left { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--petrol-900);
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2rem; border: 1px solid var(--gold); border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s var(--ease); background: var(--gold); color: var(--btn-fg);
}
.btn:hover { background: var(--gold-300); border-color: var(--gold-300); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--petrol-900); }
.btn--light { background: transparent; color: var(--cream); border-color: var(--line-soft); }
.btn--light:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 1.1rem 0;
}
.site-header.is-scrolled {
  background: rgba(11, 35, 51, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding: 0.5rem 0;
}
/* Header nutzt die volle Fensterbreite (nicht auf --wrap begrenzt) */
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  width: 100%; max-width: none; padding-inline: clamp(1.25rem, 3.5vw, 3.5rem); }
.brand { display: flex; flex-direction: column; line-height: 1; flex: 0 0 auto; }
.brand__logo { height: 104px; width: auto; flex: none; display: block; transition: height 0.4s var(--ease); }
.site-header.is-scrolled .brand__logo { height: 72px; }
.brand__name { font-family: var(--font-display); font-size: 1.75rem; color: var(--cream); letter-spacing: 0.02em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 0.35rem; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  /* Titillium Web kennt kein 500 – 600 hält die Navigation klar lesbar */
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  color: var(--cream); position: relative; padding: 0.3rem 0; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__cta { display: flex; gap: 0.7rem; }
.nav__cta .btn { padding: 0.7rem 1.2rem; font-size: 0.7rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-soft);
  background: transparent; border-radius: var(--radius); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--cream); text-align: center; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(11,35,51,0.15), rgba(11,35,51,0.75) 70%),
    linear-gradient(180deg, rgba(11,35,51,0.55) 0%, rgba(11,35,51,0.35) 40%, rgba(11,35,51,0.9) 100%);
}
.hero__inner { width: min(100% - 3rem, 900px); margin-inline: auto; padding-top: 5rem; }
.hero h1 { margin-bottom: 0.3em; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.hero__slogan { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.7rem); color: var(--gold-100); }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.hero--sub { min-height: 62vh; }

/* ---------- 404 ---------- */
.hero--404 { min-height: 82vh; }
.hero--404 .hero__inner { padding-top: 6rem; }
.error-code {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(5rem, 17vw, 11rem); line-height: 0.85;
  color: var(--gold); opacity: 0.3; letter-spacing: 0.04em;
  margin: 0 0 0.1em;
}
.hero--404 h1 { margin-bottom: 0.35em; }
.hero--404 .hero__slogan { min-height: 2.6em; }
.hero--sub .hero__inner { padding-top: 6rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue::after { content: ""; width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Split-Sektion (Text + Bild) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
/* Vereinheitlicht auf ein kompaktes Querformat, damit die Abschnitte nicht zu hoch werden. */
.split__media--tall img { aspect-ratio: 3 / 2; }
.split__media::after {
  content: ""; position: absolute; inset: 0; border: 1px solid var(--line);
  border-radius: var(--radius); transform: translate(18px, 18px); z-index: -1; pointer-events: none;
}
.split__body p:last-child { margin-bottom: 0; }

/* ---------- Karten-Grid ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; background: var(--petrol-800); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line); }
.card__media { overflow: hidden; aspect-ratio: 3 / 2; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__title { margin-bottom: 0.4rem; }
.card__body p { color: var(--muted); font-size: 0.96rem; }
.card__link {
  margin-top: auto; padding-top: 1rem; font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--gold); display: inline-flex; gap: 0.5rem;
}
.card__link span { transition: transform 0.3s var(--ease); }
.card:hover .card__link span { transform: translateX(5px); }

/* ---------- Preis- / Menülisten ---------- */
.menu-group { margin-bottom: 3rem; }
.menu-group__title { color: var(--gold); font-size: 1.6rem; margin-bottom: 0.3rem; }
.menu-group__hint { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-item { display: flex; align-items: baseline; justify-content: space-between; gap: 1.2rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.price-item:last-child { border-bottom: 0; }
/* Name + Zusatztext auf max. 80 % begrenzt, damit langer Text nicht bis zum Preis läuft */
.price-item__name { flex: 0 1 auto; max-width: 80%; font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.price-item__desc { color: var(--muted); font-size: 0.9rem; display: block; font-family: var(--font-body); line-height: 1.55; }
/* Gepunktete Führungslinie entfernt – die Trennung übernimmt die goldene Zeilenlinie */
.price-item__dots { display: none; }
.price-item__price { flex: 0 0 auto; color: var(--gold); font-weight: 600; white-space: nowrap; letter-spacing: 0.02em; }

/* Info-/Fakten-Boxen */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.fact { background: var(--petrol-800); padding: 1.8rem 1.4rem; text-align: center; }
.fact__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.fact__label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }
/* Auf dem Handy die Fakten-Kacheln untereinander (statt unschoenem 2+1) */
@media (max-width: 620px) { .facts { grid-template-columns: 1fr; } .fact { padding: 1.3rem 1.4rem; } }

/* Feature-Liste (Ausstattung) */
.features { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1.5rem; }
.features li { position: relative; padding-left: 1.6rem; color: var(--muted); font-size: 0.96rem; }
.features li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
/* Nebeneinander nur ab Tablet/Desktop; auf dem Handy untereinander (Basis .features = 1 Spalte @620) */
@media (min-width: 621px) { .features--row { grid-template-columns: repeat(3, 1fr); } }
/* Animiert unterstrichenes Schlusswort (schlafen / aufwachen / geniessen):
   der Gold-Strich laeuft von links ein, sobald die Sektion ins Bild scrollt. */
.feat-uline { position: relative; display: inline-block; color: var(--cream); font-weight: 500; }
.feat-uline::after { content: ""; position: absolute; left: 0; right: 0; bottom: -0.15em; height: 2px; background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left center; transition: transform 0.7s var(--ease); }
.reveal.is-visible .feat-uline::after { transform: scaleX(1); }
.reveal.is-visible .feat-uline--2::after { transition-delay: 0.2s; }
.reveal.is-visible .feat-uline--3::after { transition-delay: 0.4s; }

/* ---------- Sektions-Hintergründe ---------- */
.bg-800 { background: var(--petrol-850); }
.bg-parallax { position: relative; background-size: cover; background-position: center; }
.bg-parallax::before { content: ""; position: absolute; inset: 0; background: rgba(11,35,51,0.82); }
.bg-parallax > * { position: relative; }

/* ---------- Zitat / Testimonials ---------- */
.quote { max-width: 780px; margin-inline: auto; text-align: center; }
.quote__mark { font-family: var(--font-display); font-size: 5rem; color: var(--gold); line-height: 0.5; display: block; height: 2rem; }
.quote blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 1.2rem; color: var(--cream); }
.quote cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testimonial { background: var(--petrol-800); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2rem; }
.testimonial p { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--cream); }
.stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.testimonial cite { font-style: normal; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Galerie / Lightbox ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.gallery__item { position: relative; overflow: hidden; border: 0; padding: 0; width: 100%; border-radius: var(--radius);
  aspect-ratio: 3 / 2; cursor: pointer; background: var(--petrol-800); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.08); }
.gallery__item:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gallery__cap { position: absolute; left: 0; bottom: 0; width: 100%; padding: 1.6rem 0.9rem 0.65rem; text-align: left;
  font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  background: linear-gradient(transparent, rgba(11,35,51,.82)); pointer-events: none; }
.gallery__item--wide { grid-column: span 2; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6, 18, 22, 0.95); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.8rem; background: none; border: 0; color: var(--cream); font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ---------- Modal / Buchungs-Popup (Consent-gated) ---------- */
.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6, 18, 22, 0.86); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal__dialog {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  width: 100%; max-width: 92vw; max-height: 90vh; overflow: hidden;
  background: var(--petrol-850); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  animation: modal-in 0.35s var(--ease);
}
.modal--compact .modal__dialog { max-width: 360px; }
.modal--resmio .modal__dialog { max-width: 462px; }
.modal--wide .modal__dialog { max-width: 980px; }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.4rem; border-bottom: 1px solid var(--line-soft); flex: 0 0 auto; }
.modal__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin: 0; line-height: 1.1; }
.modal__close { background: none; border: 0; color: var(--muted); font-size: 2rem; line-height: 1; cursor: pointer; padding: 0 0.2rem; transition: color 0.25s var(--ease); }
.modal__close:hover { color: var(--gold); }
.modal__body { position: relative; overflow: auto; -webkit-overflow-scrolling: touch; flex: 1 1 auto; }
.modal__consent { padding: 2rem 1.7rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.modal__consent p { color: var(--cream); font-size: 0.92rem; margin: 0; max-width: 42ch; }
.modal__consent .btn { padding: 0.85rem 1.9rem; }
.modal__frame { display: block; border: 0; width: 100%; }
.modal--compact .modal__frame { width: 275px; max-width: 100%; height: 400px; margin: 0.6rem auto; }
.modal--wide .modal__frame { height: min(78vh, 760px); }
/* Resmio-Skript-Widget: mittig, auf schmalen Displays auf volle Breite begrenzt */
.modal__resmio { display: flex; justify-content: center; padding: 0.6rem; }
.modal__resmio iframe { max-width: 100% !important; border: 0; display: block; }
body.modal-open { overflow: hidden; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.info-list li { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.info-list .label { display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.info-list a:hover { color: var(--gold); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
/* Karte auf der Kontaktseite füllt die Spalte (statt 16:10-Teaser) */
/* .map.map--contact (hoehere Spezifitaet), damit aspect-ratio:auto die
   Basisregel .map{aspect-ratio:16/10} sicher schlaegt. Sonst ergibt
   aspect-ratio 16/10 + feste Hoehe eine Wunschbreite (z. B. 512px), die die
   Grid-Spalte auf Mobil ueberlaufen laesst. */
.map.map--contact { aspect-ratio: auto; height: 460px; margin-top: 1.6rem; }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--petrol-800); border: 1px solid var(--line-soft); border-radius: var(--radius);
  color: var(--cream); font-family: var(--font-body); font-size: 0.95rem; padding: 0.85rem 1rem; width: 100%;
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 130px; resize: vertical; }
/* Consent-Karte: lokales, statisches OSM-Kachelmosaik; interaktiv erst nach Zustimmung */
.map { position: relative; width: 100%; aspect-ratio: 16 / 10; margin-top: 2rem; overflow: clip;
  border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--petrol-800);
  /* overflow:clip + contain:paint klippen das 1024px-Kachelmosaik zuverlässig auch auf iOS Safari.
     Dort klippt overflow:hidden + border-radius absolut positionierte Kinder NICHT → sonst
     ragt die Karte heraus und die Seite lässt sich horizontal scrollen (nur auf /kontakt). */
  contain: paint; }
.map-static { position: absolute; left: 50%; top: 50%; width: 1024px; height: 768px; }
.map-tiles { display: grid; grid-template-columns: repeat(4, 256px); grid-template-rows: repeat(3, 256px);
  width: 1024px; height: 768px; }
.map-tiles img { width: 256px; height: 256px; display: block; }
.map-marker { position: absolute; width: 22px; height: 22px; transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--gold); border: 3px solid var(--petrol-900);
  box-shadow: 0 0 0 4px rgba(200,162,76,.35), 0 2px 6px rgba(0,0,0,.5); }
.map-overlay { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 1.5rem;
  background: linear-gradient(rgba(11,35,51,.74), rgba(11,35,51,.84)); }
.map-overlay p { max-width: 440px; color: var(--cream); font-size: 0.9rem; margin: 0; }
.map-overlay .btn { padding: 0.8rem 1.7rem; }
.map-remember { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; color: var(--muted); cursor: pointer; }
.map-remember input { accent-color: var(--gold); }

/* ---------- Bilder-Slider (Zimmer) ---------- */
.slider { position: relative; }
.slider:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.slider__viewport { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.slider__track { display: flex; margin: 0; padding: 0; list-style: none; transition: transform 0.55s var(--ease); will-change: transform; }
.slider__slide { position: relative; min-width: 100%; }
.slider__slide img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.slider__caption { position: absolute; left: 0; bottom: 0; margin: 0; padding: 2rem 1.5rem 1rem; width: 100%;
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  background: linear-gradient(transparent, rgba(11,35,51,.82)); }
.slider__btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold); background: rgba(11,35,51,.5);
  color: var(--gold); font-family: var(--font-display); font-size: 1.9rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.slider__btn:hover { background: var(--gold); color: var(--petrol-900); }
.slider__btn--prev { left: 0.9rem; }
.slider__btn--next { right: 0.9rem; }
.slider__dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.1rem; }
.slider__dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--line); cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.slider__dot[aria-selected="true"] { background: var(--gold); transform: scale(1.3); }
@media (max-width: 620px) {
  .slider__btn { width: 38px; height: 38px; font-size: 1.5rem; }
  .slider__slide img { aspect-ratio: 4 / 3; }
}

/* ---------- Arrangements-Übersicht (Sprungmarken) ---------- */
.arr-overview { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; max-width: 860px; margin-inline: auto; }
.arr-overview a { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold); border-radius: 999px; padding: 0.55rem 1.15rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.arr-overview a:hover, .arr-overview a:focus-visible { background: var(--gold); color: var(--petrol-900); }
/* Auflockerndes Bild je Arrangement – Hoehe gedeckelt, damit die Seite nicht zu lang wird */
.arr-media { max-width: 960px; margin: 0 auto 2.5rem; }
.arr-media img { display: block; width: 100%; height: clamp(190px, 28vw, 320px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
/* "Optional dazu" als aufklappbarer Toggle mit +/- */
.arr-toggle { display: inline-flex; align-items: center; gap: 0.55rem; width: fit-content; cursor: pointer; user-select: none;
  margin: 1.8rem 0 0 !important; padding: 0.5rem 1.05rem; font-size: 1rem !important; color: var(--cream);
  border: 1px solid var(--line); border-radius: 999px; transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.arr-toggle:hover, .arr-toggle:focus-visible { border-color: var(--gold); color: var(--gold); }
.arr-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.arr-toggle::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--gold); }
.arr-toggle[aria-expanded="true"]::after { content: "\2212"; }
/* "Buchbar:" deutlich als eigene Info abgesetzt (Trennlinie + Gold-Label) */
.arr-buchbar { margin-top: 1.6rem !important; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.arr-buchbar strong { color: var(--gold); letter-spacing: 0.04em; }
/* Sticky-Header nicht über angesprungene Abschnitte legen */
main section[id] { scroll-margin-top: 5.5rem; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }
.map-attribution { position: absolute; right: 6px; bottom: 4px; z-index: 2; font-size: 0.62rem;
  color: var(--muted); background: rgba(11,35,51,.6); padding: 1px 6px; border-radius: 3px; }
.map-attribution a { color: inherit; text-decoration: underline; }
.map.is-loaded .map-overlay { display: none; }
.form-note { font-size: 0.82rem; color: var(--muted); }

/* ---------- Notice / Callout ---------- */
.notice { background: var(--petrol-800); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 1.4rem 1.6rem; color: var(--muted); font-size: 0.95rem; }
.notice strong { color: var(--cream); }

/* ---------- CTA-Band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 1.6rem; }

/* ---------- Wortwechsel (Ort im CTA-Band) ---------- */
.rotator {
  display: inline-block; color: var(--gold-300); white-space: nowrap;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.rotator.is-swapping { opacity: 0; transform: translateY(-0.3em); }
.rotator__ort {
  text-decoration: underline; text-decoration-color: var(--gold);
  text-underline-offset: 5px; text-decoration-thickness: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .rotator { transition: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--petrol-850); border-top: 1px solid var(--line-soft); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-grid h4 { font-family: var(--font-body); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.6rem; color: var(--muted); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer__brand .brand__name { font-size: 2rem; }
.footer__logo { height: 92px; width: auto; display: block; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin-top: 1rem; }
.social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social a { width: 40px; height: 40px; border: 1px solid var(--line-soft); border-radius: 50%; display: grid; place-items: center; color: var(--cream); transition: all 0.3s var(--ease); }
.social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
/* Kleiner Tooltip – unterscheidet u. a. die beiden Instagram-Kanäle */
.social a[data-tip] { position: relative; }
.social a[data-tip]::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--petrol-800); color: var(--cream); border: 1px solid var(--line);
  font-size: 0.72rem; letter-spacing: 0.02em; line-height: 1; white-space: nowrap;
  padding: 0.45rem 0.6rem; border-radius: var(--radius);
  opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.social a[data-tip]::before {
  content: ""; position: absolute; bottom: calc(100% + 3px); left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--line);
  opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease);
}
.social a[data-tip]:hover::after, .social a[data-tip]:focus-visible::after {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.social a[data-tip]:hover::before, .social a[data-tip]:focus-visible::before { opacity: 1; }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }
/* Agentur-Credit: bewusst zurückhaltend, aber als Link erkennbar */
.footer-credit { opacity: 0.75; }
.footer-credit a { border-bottom: 1px solid var(--line-soft); transition: border-color 0.25s var(--ease), color 0.25s var(--ease); }
.footer-credit a:hover { border-bottom-color: var(--gold); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- Prose (Rechtsseiten) ---------- */
.prose { max-width: var(--wrap-narrow); }
.prose h2 { margin-top: 2.4rem; font-size: 1.9rem; }
.prose h3 { margin-top: 1.8rem; color: var(--gold); }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  /* backdrop-filter erzeugt sonst einen containing block → das fixed Mobil-Menü
     würde am Header statt am Viewport hängen (Darstellungsfehler nach Scrollen) */
  .site-header.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(11, 35, 51, 0.97); }
  .nav__list, .nav__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    background: var(--petrol-850); flex-direction: column; align-items: stretch; justify-content: center;
    gap: 2rem; padding: 3rem 2.4rem; transform: translateX(100%); transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow); z-index: 90;
  }
  body.nav-open .nav { transform: none; }
  body.nav-open .nav__list, body.nav-open .nav__cta { display: flex; }
  .nav__list { flex-direction: column; gap: 1.3rem; }
  .nav__cta { flex-direction: column; }
  .nav__cta .btn { justify-content: center; padding: 0.9rem 1.2rem; font-size: 0.72rem; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(6,18,22,0.6); opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); z-index: 80; }
  body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media::after { display: none; }
  /* Einspaltig: Bild vollbreit -> feste, kompakte Hoehe statt Seitenverhaeltnis,
     damit die Abschnitte (v. a. auf dem Handy) nicht zu hoch werden. */
  .split__media img, .split__media--tall img { aspect-ratio: auto; height: clamp(200px, 46vw, 380px); }
  .grid--3, .testimonials { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--3, .grid--2, .testimonials, .footer-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .header-inner .brand__name { font-size: 1.4rem; }
  .map--contact { height: 320px; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { justify-content: center; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .feat-uline::after { transform: scaleX(1); transition: none; }
}
