/* =========================================================
   Zabrezno – Stylesheet
   Ruhiger, natürlicher Look. Warme Serifen-Überschriften +
   klare serifenlose Fließschrift, alles als System-Fonts
   (keine externen Dienste, kein Tracking, kein Cookie-Banner).
   ========================================================= */

:root {
  --bg:        #f6f2ec;   /* warmes Papier */
  --surface:   #ffffff;
  --alt:       #efe9df;   /* leicht abgesetzte Abschnitte */
  --ink:       #2c2a26;   /* Haupttext */
  --muted:     #6f6a61;   /* Nebentext */
  --line:      #e2dccf;   /* feine Linien */
  --green:     #3d5a4c;   /* Primärfarbe */
  --green-dk:  #2c4438;
  --accent:    #b2865c;   /* warmer Akzent */
  --ok:        #4c7a5b;   /* verfügbar */
  --off:       #9a948a;   /* nicht verfügbar */
  --shadow:    0 18px 40px -24px rgba(44, 40, 33, .45);
  --radius:    14px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  "Avenir Next", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Über Fließtext bleibt der normale Pfeil stehen – kein Textcursor.
   Eingabefelder behalten den Schreibcursor, Bedienelemente die Hand.
   (Markieren und Kopieren funktioniert weiterhin überall.) */
body { cursor: default; }
input, textarea, select { cursor: auto; }
a[href], button, summary, [role="button"] { cursor: pointer; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .2px; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--green-dk); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--green-dk); }

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

.wrap { width: min(1120px, 92vw); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font: inherit;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .72rem 1.5rem;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
  text-decoration: none;
  letter-spacing: .2px;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dk); }
.btn--primary:disabled { background: #cdc7bb; color: #f3f0ea; cursor: not-allowed; }
.btn--ghost { background: transparent; color: var(--green-dk); border-color: var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff; }
.btn:active { transform: translateY(1px); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s, box-shadow .3s;
}
.nav__inner {
  width: min(1120px, 92vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__brand {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: #fff; text-decoration: none; letter-spacing: .5px;
  transition: color .3s;
}
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  color: rgba(255,255,255,.92); text-decoration: none; font-size: .96rem;
  font-weight: 500; letter-spacing: .3px; position: relative; padding: .3rem 0;
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: currentColor; transition: right .25s;
}
.nav__links a:hover::after { right: 0; }

/* Zustand nach dem Scrollen: heller Balken */
.nav.is-solid { background: rgba(246,242,236,.95); box-shadow: 0 1px 0 var(--line); backdrop-filter: saturate(1.1) blur(6px); }
.nav.is-solid .nav__brand { color: var(--green-dk); }
.nav.is-solid .nav__links a { color: var(--ink); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: #fff; transition: background .3s, transform .3s, opacity .3s; }
.nav.is-solid .nav__toggle span { background: var(--ink); }

/* =========================================================
   BANNER (Parallax)
   ========================================================= */
.banner {
  position: relative; height: 100vh; min-height: 560px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.banner__media { position: absolute; inset: -10% 0 0 0; will-change: transform; }
.banner__media img { width: 100%; height: 115%; object-fit: cover; }
.banner__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,25,22,.42) 0%, rgba(20,25,22,.18) 40%, rgba(20,25,22,.5) 100%);
}
.banner__caption {
  position: relative; z-index: 2; text-align: center; color: #fff;
  padding: 0 1rem; will-change: transform, opacity;
}
.banner__eyebrow {
  text-transform: uppercase; letter-spacing: .32em; font-size: .8rem;
  font-weight: 600; margin: 0 0 1rem; opacity: .9;
}
.banner__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(3.2rem, 11vw, 7.5rem); margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.banner__sub { margin: 1rem auto 0; max-width: 30ch; font-size: 1.1rem; opacity: .95; }
.banner__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; z-index: 2;
}
.banner__scroll::before {
  content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 7px;
  background: #fff; border-radius: 2px; transform: translateX(-50%);
  animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform:translate(-50%,10px)} }

/* =========================================================
   SECTIONS allgemein
   ========================================================= */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
/* Anker nicht unter der fixierten Navigation verstecken */
#intro, #wohnungen, #ueber-uns, #bewertungen, #umgebung, #kontakt { scroll-margin-top: 84px; }
.section--alt { background: var(--alt); }
.section__head { max-width: 42rem; margin-bottom: 2.5rem; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Intro ---------- */
.intro { padding: clamp(3rem, 6vw, 5rem) 0 1rem; }
.intro__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; align-items: start; }
.intro__text h2 { margin-top: 0; }
.intro__text p { color: var(--muted); font-size: 1.08rem; }
.rules {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow);
}
.rules h3 { margin-top: 0; color: var(--green-dk); }
.rules ul { margin: 0; padding-left: 1.1rem; }
.rules li { margin-bottom: .7rem; color: var(--muted); }
.rules strong { color: var(--ink); }

/* =========================================================
   FILTERBAR
   ========================================================= */
.filter { position: relative; background: var(--surface);
  border-block: 1px solid var(--line); box-shadow: 0 8px 24px -20px rgba(0,0,0,.4); }
.filter__inner { display: flex; flex-wrap: wrap; align-items: end; gap: 1rem; padding: 1.1rem 0; }
.filter__field { display: flex; flex-direction: column; gap: .35rem; }
.filter__field label { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.filter__field input {
  font: inherit; padding: .6rem .8rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); color: var(--ink); min-width: 160px;
}
.filter__field--guests input { min-width: 90px; width: 100px; }
.filter__field input:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green); }
.filter__submit { margin-left: auto; }
.filter__reset { background: none; border: 0; color: var(--muted); font: inherit; cursor: pointer; text-decoration: underline; padding: .5rem; }
/* margin-block statt margin: sonst überschreibt die Kurzform das
   margin-inline:auto aus .wrap und der Hinweis klebt am linken Rand. */
.filter__hint { color: var(--muted); font-size: .9rem; padding-bottom: 1rem; margin-block: 0; }
.filter__hint.is-error { color: #a8412f; }

/* =========================================================
   UNTERKUNFTS-KARTEN
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -26px rgba(44,40,33,.5); }

/* Bild-Slider auf der Karte */
.slider { position: relative; aspect-ratio: 4 / 3; background: #ded7c9; overflow: hidden; }
.slider__track { display: flex; height: 100%; transition: transform .4s ease; touch-action: pan-y; }
.slider__track img { min-width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.slider__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--ink); cursor: pointer;
  display: grid; place-items: center; font-size: 1.1rem; line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.18); transition: background .2s; opacity: 0;
}
.slider:hover .slider__btn { opacity: 1; }
.slider__btn:hover { background: #fff; }
.slider__btn--prev { left: 10px; }
.slider__btn--next { right: 10px; }
.slider__dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.slider__dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); transition: background .2s; }
.slider__dots span.is-active { background: #fff; }
.slider__count {
  position: absolute; top: 10px; right: 10px; background: rgba(20,25,22,.55); color: #fff;
  font-size: .78rem; padding: .2rem .55rem; border-radius: 999px; letter-spacing: .04em;
}

.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__title { margin: 0 0 .2rem; font-size: 1.45rem; color: var(--green-dk); }
.card__meta { color: var(--muted); font-size: .95rem; margin: 0 0 .9rem; }
.card__desc { color: var(--muted); font-size: .97rem; margin: 0 0 1rem; }

.card__features { list-style: none; margin: 0 0 1.1rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.card__features li { font-size: .82rem; color: var(--ink); background: var(--alt); border: 1px solid var(--line); padding: .25rem .6rem; border-radius: 999px; }

.card__price { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin: 0 0 1rem; }
.card__price span { font-family: var(--sans); font-size: .9rem; color: var(--muted); font-weight: 500; }

.card__footer { margin-top: auto; display: flex; flex-direction: column; gap: .7rem; }

/* Verfügbarkeits-Anzeige */
.status { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 600; padding: .35rem 0; }
.status::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--off); }
.status--neutral { color: var(--muted); }
.status--ok { color: var(--ok); }
.status--ok::before { background: var(--ok); }
.status--off { color: var(--off); }
.status__price { display: block; font-weight: 600; color: var(--ink); font-size: .9rem; margin-top: .15rem; }

/* =========================================================
   ÜBER UNS
   ========================================================= */
.about { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: center; }
.about__text p { color: var(--muted); font-size: 1.08rem; }
.about__note { border-left: 3px solid var(--accent); padding-left: 1.4rem; }
.about__note p { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--green-dk); margin: 0; }

/* =========================================================
   BEWERTUNGEN
   ========================================================= */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; margin: 0; box-shadow: var(--shadow);
}
.review__stars { color: var(--accent); letter-spacing: 3px; margin-bottom: .8rem; }
.review blockquote { margin: 0 0 1rem; font-size: 1.02rem; color: var(--ink); }
.review figcaption { color: var(--muted); font-size: .92rem; font-weight: 600; }
.review__date { color: var(--muted); font-weight: 400; margin-left: .5rem; opacity: .8; }
.reviews__cta { text-align: center; margin-top: 2.4rem; }

/* =========================================================
   UMGEBUNG
   ========================================================= */
.places { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.place {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .2s;
}
.place:hover { transform: translateY(-3px); }
.place__dist { font-size: .82rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.place h3 { margin: 0 0 .5rem; color: var(--green-dk); }
.place p { color: var(--muted); font-size: .96rem; margin: 0 0 1.1rem; }
.place a { margin-top: auto; font-weight: 600; text-decoration: none; font-size: .92rem; color: var(--green-dk); }
.place a:hover { text-decoration: underline; }
.place a::after { content: " ›"; }

.season { margin-top: 2.8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.8rem; box-shadow: var(--shadow); }
.season h3 { margin: 0 0 .3rem; color: var(--green-dk); }
.season__hint { color: var(--muted); font-size: .92rem; margin: 0 0 1rem; }
.season__list { list-style: none; margin: 0; padding: 0; }
.season__list li { padding: .8rem 0; border-top: 1px solid var(--line); display: flex; gap: 1rem; align-items: baseline; }
.season__list li:first-child { border-top: 0; }
.season__date { font-weight: 600; color: var(--accent); white-space: nowrap; min-width: 8rem; }

/* =========================================================
   KONTAKT / STANDORT
   ========================================================= */
.kontakt { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }
.kontakt__info h2 { margin-top: 0; }
.kontakt__address { font-size: 1.15rem; color: var(--ink); margin-bottom: 1.2rem; }
.kontakt__info p { color: var(--muted); }
.kontakt__mail a { color: var(--green-dk); font-weight: 600; }

.mapcard {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); min-height: 320px;
  display: flex; flex-direction: column;   /* damit der Maps-Link unter der Karte Platz hat */
}
.mapcard__preview {
  width: 100%; flex: 1; min-height: 320px; border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  color: #fff; text-align: center; font: inherit; position: relative;
  background:
    linear-gradient(160deg, rgba(44,68,56,.82), rgba(61,90,76,.72)),
    repeating-linear-gradient(45deg, #cfd8cf 0 22px, #c6d0c6 22px 44px);
  transition: filter .25s;
}
.mapcard__preview:hover { filter: brightness(1.06); }
.mapcard__pin { width: 26px; height: 26px; border-radius: 50% 50% 50% 0; background: var(--accent); transform: rotate(-45deg); box-shadow: 0 6px 14px rgba(0,0,0,.3); position: relative; }
.mapcard__pin::after { content: ""; position: absolute; inset: 7px; background: #fff; border-radius: 50%; }
.mapcard__label { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; }
.mapcard__label small { font-family: var(--sans); font-size: .85rem; opacity: .9; font-weight: 400; }

/* Eingebettete Karte nach der Einwilligung */
.mapcard iframe { display: block; width: 100%; flex: 1; min-height: 280px; border: 0; }
.mapcard__link {
  flex: none;
  display: block; padding: .7rem 1rem; background: var(--surface); border-top: 1px solid var(--line);
  font-size: .92rem; font-weight: 600; text-align: center; text-decoration: none; color: var(--green-dk);
}
.mapcard__link:hover { background: var(--alt); }
.mapcard__link::after { content: " ›"; }


/* =========================================================
   EINWILLIGUNG (Google Maps)
   ========================================================= */
.consent { position: fixed; inset: auto 0 0 0; z-index: 120; padding: 1rem; }
.consent[hidden] { display: none; }
.consent__box {
  width: min(720px, 100%); margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px rgba(44, 40, 33, .55);
  padding: 1.1rem 1.3rem;
  animation: consentAuf .25s ease-out;
}
@keyframes consentAuf { from { opacity: 0; transform: translateY(14px); } }
.consent__text { flex: 1 1 20rem; }
.consent__titel { font-size: 1.1rem; margin: 0 0 .25rem; color: var(--green-dk); }
.consent__text p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.consent__aktionen { display: flex; gap: .6rem; flex: 0 0 auto; margin-left: auto; }
.consent__aktionen .btn { padding: .55rem 1.2rem; font-size: .93rem; }

@media (max-width: 560px) {
  .consent__aktionen { width: 100%; margin-left: 0; }
  .consent__aktionen .btn { flex: 1; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { .consent__box { animation: none; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--green-dk); color: rgba(255,255,255,.85); padding: 2.2rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__brand { font-family: var(--serif); font-size: 1.3rem; color: #fff; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .95rem; }
.footer__links a:hover { color: #fff; text-decoration: underline; }
.footer__karte {
  font: inherit; font-size: .95rem; background: none; border: 0; padding: 0; cursor: pointer;
  color: rgba(255,255,255,.85);
}
.footer__karte:hover { color: #fff; text-decoration: underline; }
.footer__copy { font-size: .88rem; opacity: .75; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(18,20,17,.94); display: grid; place-items: center; }
.lightbox[hidden] { display: none; }
.lightbox__stage { margin: 0; max-width: 90vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lightbox__stage img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__stage figcaption { color: rgba(255,255,255,.8); font-size: .92rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: 0; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__close::before, .lightbox__close::after { content: ""; position: absolute; left: 16px; top: 25px; width: 20px; height: 2px; background: #fff; }
.lightbox__close::before { transform: rotate(45deg); }
.lightbox__close::after { transform: rotate(-45deg); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav::before { content: ""; position: absolute; left: 20px; top: 18px; width: 14px; height: 14px; border-top: 2px solid #fff; border-left: 2px solid #fff; }
.lightbox__nav--prev::before { transform: rotate(-45deg); left: 21px; }
.lightbox__nav--next::before { transform: rotate(135deg); left: 15px; }

/* =========================================================
   MODAL (Buchungsformular)
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 1.2rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,22,18,.6); }
.modal__dialog {
  position: relative; background: var(--surface); border-radius: var(--radius);
  width: min(560px, 100%); max-height: 90vh; overflow-y: auto; padding: 2rem 2rem 2.2rem;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6);
}
.modal__dialog h2 { margin-top: 0; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 0; background: var(--alt); border-radius: 50%; cursor: pointer; }
.modal__close::before, .modal__close::after { content: ""; position: absolute; left: 11px; top: 18px; width: 16px; height: 2px; background: var(--ink); }
.modal__close::before { transform: rotate(45deg); }
.modal__close::after { transform: rotate(-45deg); }

.booking__summary { background: var(--alt); border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 1.4rem; }
.booking__summary dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem; }
.booking__summary dt { color: var(--muted); font-size: .92rem; }
.booking__summary dd { margin: 0; font-weight: 600; text-align: right; }
.booking__summary .total { border-top: 1px solid var(--line); padding-top: .5rem; margin-top: .3rem; }
.booking__summary .total dd, .booking__summary .total dt { font-family: var(--serif); font-size: 1.15rem; }

.booking__form label { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
.booking__form .opt { color: var(--muted); font-weight: 400; }
.booking__form input, .booking__form textarea {
  display: block; width: 100%; font: inherit; margin-top: .35rem;
  padding: .65rem .8rem; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink);
}
.booking__form input:focus, .booking__form textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green); }
.booking__form input:invalid:not(:placeholder-shown) { border-color: #c98a7d; }
.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking__send { width: 100%; margin-top: .4rem; }
.booking__legal { font-size: .82rem; color: var(--muted); margin: .8rem 0 0; text-align: center; }
.booking__fehler { background: #fbecea; border: 1px solid #e7c4bd; color: #8d3728;
  padding: .7rem .9rem; border-radius: 8px; font-size: .9rem; margin: 0 0 .8rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.booking__done { text-align: center; padding: 1rem 0; }
.booking__done h3 { color: var(--green-dk); }
.booking__done p { color: var(--muted); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .cards, .reviews, .places { grid-template-columns: repeat(2, 1fr); }
  .intro__grid, .about, .kontakt { grid-template-columns: 1fr; }
  .about__note { border-left: 0; border-top: 3px solid var(--accent); padding: 1.2rem 0 0; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(246,242,236,.98); backdrop-filter: blur(6px); padding: .5rem 0;
    box-shadow: 0 12px 24px -16px rgba(0,0,0,.4); transform: translateY(-8px);
    opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links a { color: var(--ink); padding: .9rem 8vw; }
  .nav__links a::after { display: none; }

  .cards, .reviews, .places { grid-template-columns: 1fr; }
  .filter__inner { flex-direction: column; align-items: stretch; }
  .filter__field input, .filter__field--guests input { width: 100%; min-width: 0; }
  .filter__submit { margin-left: 0; }
  .booking__row { grid-template-columns: 1fr; }
  .banner { height: 78vh; min-height: 460px; }

  /* Kompaktere Darstellung auf dem Handy: mindestens eine Karte passt aufs Bild */
  .section { padding: 3rem 0; }
  .cards { gap: 1.2rem; }
  .slider { aspect-ratio: 16 / 10; }
  .card__body { padding: 1.1rem 1.2rem 1.3rem; }
  .card__title { font-size: 1.3rem; }
  .card__meta { margin-bottom: .6rem; }
  .card__desc { font-size: .95rem; margin-bottom: .8rem; }
  .card__features { gap: .35rem; margin-bottom: .8rem; }
  .card__features li { font-size: .78rem; padding: .2rem .55rem; }
  .card__price { font-size: 1.2rem; margin-bottom: .7rem; }
  .card__footer { gap: .5rem; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .banner__media, .banner__caption { transform: none !important; }
  .banner__scroll::before { animation: none; }
}
