/* ==========================================================================
   mosselbay.info: Stylesheet, übernommen von kolmanskop.de. Farbwelt „Leuchtturm“:
   Kalkweiß, Indischer Ozean, Ziegelrot vom Dach des Cape-St-Blaize-Leuchtturms, Nachtblau.
   Eine Datei für die ganze Seite. Neues Projekt: zuerst die Farbwerte in
   :root anpassen, die Rollen bleiben gleich:
     --putz*   Hintergrund und getönte Flächen (hell)
     --gruen*  Zweitfarbe für Links, Hervorhebungen, Preis-Knöpfe
     --ocker*  Akzent für Knöpfe, Kicker, Marker
     --nacht*  dunkle Abschnitte und Fußzeile
   Die Klassennamen erwartet der Generator (lib/render.php, templates/).
   ========================================================================== */

:root {
  --putz: #f4f1ea;
  --putz-2: #eae5da;
  --putz-3: #d6cebd;
  --ink: #14202a;
  --ink-2: #3b4852;
  --ink-3: #56636d;
  --gruen: #1b6b7c;
  --gruen-d: #124f5c;
  --gruen-l: #cfe5ea;
  --ocker: #b8432f;
  --ocker-d: #86291b;
  --ocker-l: #f2d6cf;
  --nacht: #0c1a25;
  --nacht-2: #172a38;
  --nacht-ink: #e6ecf0;
  --nacht-ink-2: #aab8c4;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 74rem;
  --measure: 43rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --sec: clamp(3.5rem, 8vw, 7rem);
  --radius: 4px;
  --shadow: 0 1px 2px rgb(23 28 33 / .08), 0 12px 32px -12px rgb(23 28 33 / .25);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--putz);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
[hidden] { display: none !important; }
img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: block; }
/* Bilder in Hero, Karten und Unterkunftskarten sind per height:100% an ihren
   Rahmen gebunden. Steht ein <picture> dazwischen (WebP-Quelle plus JPEG),
   muss es die Höhe durchreichen, sonst fällt der Rahmen zusammen. */
.hero__media picture, .karte__img picture, .hk-bild picture { width: 100%; height: 100%; }
a { color: var(--gruen-d); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--gruen); }
:focus-visible { outline: 3px solid var(--ocker); outline-offset: 3px; border-radius: 2px; }
hr { border: 0; border-top: 1px solid var(--putz-3); margin: 2.5rem auto; }
::selection { background: var(--ocker-l); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--ink);
  letter-spacing: -.01em;
  text-wrap: balance;
  font-variation-settings: "opsz" 96, "SOFT" 30, "WONK" 1;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.9rem); font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.85rem, 3.3vw, 2.75rem); margin-top: 1.6em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-top: 1.5em; font-variation-settings: "opsz" 48, "SOFT" 20, "WONK" 0; }
h4 { font-size: 1.15rem; font-family: var(--body); font-weight: 700; margin-top: 1.4em; letter-spacing: 0; }
h2 + h3, h1 + h2 { margin-top: .6em; }
p { margin: 0 0 1.1em; }
strong { font-weight: 650; }
em { font-style: italic; }
small, .small { font-size: .9rem; }
ul, ol { padding-left: 1.3em; margin: 0 0 1.2em; }
li { margin-bottom: .35em; }
li::marker { color: var(--ocker-d); }
table { border-collapse: collapse; width: 100%; font-variant-numeric: tabular-nums; }
th, td { text-align: left; padding: .55em .7em; border-bottom: 1px solid var(--putz-3); vertical-align: top; }
th { font-weight: 650; font-size: .92rem; letter-spacing: .02em; }

.eyebrow {
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gruen);
  margin: 0 0 1rem;
}
.eyebrow--ocker { color: var(--ocker-d); }
.lede {
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: var(--measure);
  text-wrap: pretty;
}
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: .5rem; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: .5rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Kopfzeile (fixiert, über dem Hero transparent) ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  color: var(--ink);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), color .35s;
}
.site-header__inner {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 4.5rem;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgb(242 237 228 / .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgb(23 28 33 / .08);
  opacity: 0; transition: opacity .35s var(--ease);
}
.site-header.is-scrolled::before, body:not(.has-hero) .site-header::before { opacity: 1; }
.has-hero .site-header:not(.is-scrolled) { color: #fff; }
.wortmarke {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-size: 1.45rem; font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 40, "WONK" 1;
  letter-spacing: -.01em; color: inherit; text-decoration: none;
}
.wortmarke__mark { width: 1.7rem; height: 1.7rem; flex: none; }
.wortmarke__tld { opacity: .55; font-weight: 300; }
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(.6rem, 2vw, 1.8rem); }
.site-nav li { margin: 0; }
.site-nav a {
  color: inherit; text-decoration: none; font-weight: 600; font-size: .98rem;
  padding: .35rem 0; letter-spacing: .01em; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.site-nav a:hover::after, .site-nav a[aria-current]::after { transform: scaleX(1); }
.nav-toggle {
  display: none; align-items: center; gap: .6rem;
  background: none; border: 0; color: inherit; font: inherit; font-weight: 600; cursor: pointer; padding: .5rem 0;
}
.nav-toggle__bar { position: relative; width: 1.5rem; height: 2px; background: currentColor; }
.nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform .25s; }
.nav-toggle__bar::before { top: -7px; } .nav-toggle__bar::after { top: 7px; }
.nav-open .nav-toggle__bar { background: transparent; }
.nav-open .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 56rem) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: fixed; inset: 4.5rem 0 0 0; background: var(--putz); padding: 1.5rem var(--gutter); transform: translateY(-110%); visibility: hidden; transition: transform .35s var(--ease), visibility 0s .35s; overflow: auto; }
  .nav-open .site-nav { transform: none; visibility: visible; transition-delay: 0s; }
  .nav-open .site-header, .has-hero.nav-open .site-header:not(.is-scrolled) { background: var(--putz); color: var(--ink); }
  .site-nav__list { flex-direction: column; gap: 0; }
  .site-nav a { display: block; font-family: var(--display); font-size: 1.9rem; font-weight: 400; padding: .55rem 0; border-bottom: 1px solid var(--putz-3); font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 1; }
  .site-nav a::after { display: none; }
  .nav-open { overflow: hidden; }
}

/* ---------- Hero (Foto mit Verlauf) ---------- */
.hero {
  position: relative; display: grid; align-items: end;
  min-height: 72vh; color: #fff; overflow: hidden; isolation: isolate;
  background: var(--nacht);
}
.hero--full { min-height: 100svh; }
.hero--short { min-height: 52vh; }
.hero__media { position: absolute; inset: -12% 0 0 0; z-index: -1; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(15 23 30 / .82) 0%, rgb(15 23 30 / .35) 40%, rgb(15 23 30 / 0) 70%),
              linear-gradient(to bottom, rgb(15 23 30 / .35), transparent 30%);
}
.hero__body {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto; padding: 7rem 0 clamp(2.5rem, 6vw, 5rem);
}
.hero__title { color: #fff; margin-bottom: .35em; max-width: 20ch; text-shadow: 0 2px 30px rgb(0 0 0 / .25); overflow-wrap: anywhere; }
.hero--full .hero__title { font-size: clamp(2.6rem, 6vw, 5.6rem); line-height: .98; }
.hero__lede { font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.45; max-width: 36rem; color: rgb(255 255 255 / .9); margin: 0; text-wrap: pretty; }
.hero .eyebrow { color: var(--ocker-l); }
.hero .crumbs a { color: rgb(255 255 255 / .8); }
.hero__credit {
  position: absolute; right: var(--gutter); bottom: .6rem; margin: 0;
  font-size: .72rem; letter-spacing: .04em; color: rgb(255 255 255 / .55);
}
.hero__cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.2rem; translate: -50% 0; width: 1px; height: 3rem; background: linear-gradient(to bottom, transparent, rgb(255 255 255 / .8)); animation: dip 2.4s var(--ease) infinite; }
@keyframes dip { 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; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll { animation: none; } }

/* Seitenkopf ohne Foto */
.pagehead { padding: 7.5rem 0 2.5rem; }
.pagehead h1 { max-width: 20ch; }
.crumbs ol { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; letter-spacing: .02em; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "›"; margin-right: .4rem; opacity: .6; }
.crumbs a { text-decoration: none; color: var(--ink-3); }
.crumbs a:hover { text-decoration: underline; }

/* ---------- Knöpfe ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.35rem; border-radius: 999px;
  font-weight: 650; font-size: 1rem; text-decoration: none; letter-spacing: .01em;
  background: var(--ocker); color: #fff; border: 1.5px solid var(--ocker);
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.btn:hover { background: var(--ocker-l); border-color: var(--ocker-l); color: var(--nacht); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: rgb(255 255 255 / .12); border-color: currentColor; color: inherit; }
.btn--gruen { background: var(--gruen); border-color: var(--gruen); color: #fff; }
.btn--gruen:hover { background: var(--gruen-d); border-color: var(--gruen-d); color: #fff; }
.btn--sm { padding: .5rem .95rem; font-size: .9rem; }
.knopfzeile { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 0; }

/* ---------- Inhaltsfluss ----------
   Alles innerhalb .content wird auf Lesebreite zentriert. Elemente mit
   .breakout nutzen die volle Wrap-Breite, .bleed die volle Viewport-Breite. */
.content { padding: var(--sec) 0; }
.pagehead + .content { padding-top: 1rem; }
.hero + .content { padding-top: calc(var(--sec) * .6); }
.content > * { max-width: var(--measure); margin-inline: auto; padding-inline: var(--gutter); box-sizing: content-box; }
.content > .breakout { max-width: var(--wrap); }
.content > .bleed { max-width: none; padding-inline: 0; }
.content > h2 { margin-top: 2.2em; }
.content > h2:first-child, .content > .eyebrow:first-child { margin-top: 0; }
.content > .eyebrow + h2 { margin-top: 0; }
.content > p, .content > ul, .content > ol { text-wrap: pretty; }
.content > .dark { max-width: none; padding-inline: 0; }
.prose > * { max-width: var(--measure); }
.abschnitt { padding-block: var(--sec); }
.abschnitt--eng { padding-block: calc(var(--sec) * .55); }
.abschnitt--putz2 { background: var(--putz-2); }

/* ---------- Dunkle Abschnitte mit Sandkante ---------- */
.dark {
  background: var(--nacht); color: var(--nacht-ink);
  padding: calc(var(--sec) + 2vw) 0 var(--sec);
  clip-path: polygon(0 0, 100% 2.6vw, 100% 100%, 0 100%);
  margin-block: 0;
}
.dark + .dark { clip-path: none; padding-top: 0; }
.dark h2, .dark h3, .dark h1 { color: var(--nacht-ink); }
.dark p { color: var(--nacht-ink-2); }
.dark .eyebrow { color: var(--ocker-l); }
.dark a { color: var(--nacht-ink); }
.dark strong { color: var(--nacht-ink); }
.dark .btn { color: #fff; }
.dark .btn--ghost { color: var(--nacht-ink); }
.dark figcaption { color: var(--nacht-ink-2); }

/* ---------- Abbildungen ---------- */
figure { margin: 0; }
.fig { margin: 2rem auto; }
.fig img { width: 100%; border-radius: var(--radius); }
.fig--wide { margin-block: 2.5rem; }
.fig--tall img { aspect-ratio: 4 / 3; object-fit: cover; }
figcaption, .credit {
  font-size: .86rem; line-height: 1.45; color: var(--ink-3); margin-top: .6rem;
  padding-left: .75rem; border-left: 2px solid var(--gruen);
}
.fig--side { float: right; width: min(40%, 22rem); margin: .3rem 0 1.5rem 2rem; }
@media (max-width: 40rem) { .fig--side { float: none; width: 100%; margin: 1.5rem 0; } }
.fig a { display: block; }
.fig a:hover img { filter: brightness(1.04); }

/* Galerie: Spaltenlayout für gemischte Formate, mit Lightbox */
.galerie { columns: 3 15rem; column-gap: 1rem; margin-block: 2rem; }
.galerie figure { break-inside: avoid; margin: 0 0 1rem; }
.galerie img { border-radius: var(--radius); width: 100%; transition: transform .35s var(--ease), filter .35s; }
.galerie a:hover img { transform: scale(1.015); filter: brightness(1.05); }
.galerie figcaption { font-size: .8rem; margin-top: .4rem; }
.galerie--2 { columns: 2 18rem; }
.galerie--4 { columns: 4 13rem; }

/* ---------- Teaser-Karten (Rubriken) ---------- */
.karten { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); margin-block: 2rem; list-style: none; padding-inline: var(--gutter); }
.karten > li { margin: 0; }
.wrap > .karten { padding-inline: 0; }
.karte { display: block; text-decoration: none; color: inherit; height: 100%; }
.karte__img { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--putz-2); }
.karte__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.karte:hover .karte__img img { transform: scale(1.04); }
.karte__kicker { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ocker-d); margin: .9rem 0 .25rem; }
.karte__title { font-family: var(--display); font-size: 1.45rem; line-height: 1.15; margin: 0 0 .35rem; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1; }
.karte:hover .karte__title { color: var(--gruen-d); }
.karte__text { font-size: .98rem; color: var(--ink-2); margin: 0; }
.karten--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 19rem), 1fr)); }
.karte--dark { color: var(--nacht-ink); }
.karte--dark .karte__text { color: var(--nacht-ink-2); }
.karte--dark:hover .karte__title { color: var(--ocker-l); }

/* Weiterlesen */
.weiter { padding: 0 0 var(--sec); }
.weiter ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.weiter li { margin: 0; }
.weiter a { display: block; padding: 1.2rem 1.3rem; background: var(--putz-2); border-radius: var(--radius); text-decoration: none; color: inherit; border-left: 3px solid var(--gruen); transition: background .2s, transform .25s var(--ease); }
.weiter a:hover { background: var(--gruen-l); transform: translateX(3px); }
.weiter__kicker { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.weiter__title { display: block; font-family: var(--display); font-size: 1.3rem; line-height: 1.15; margin-top: .2rem; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1; }

/* ---------- Fakten, Hinweise, Zitate ---------- */
.fakten { display: grid; gap: 1.2rem 2rem; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); margin: 2rem auto; padding: 1.6rem 0; border-top: 1px solid var(--putz-3); border-bottom: 1px solid var(--putz-3); }
.fakten div { margin: 0; }
.fakten dt { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink-3); }
.fakten dd { margin: .15rem 0 0; font-family: var(--display); font-size: 1.35rem; line-height: 1.2; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 0; }
.fakten--klein { margin: 1.4rem auto; padding: 1rem 0; }
.fakten--klein dd { font-family: var(--body); font-size: 1rem; font-variation-settings: normal; color: var(--ink-2); }
.fakten dd small { display: block; font-family: var(--body); font-size: .88rem; color: var(--ink-2); margin-top: .15rem; }

.hinweis { background: var(--ocker-l); border-left: 3px solid var(--ocker); padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.8rem auto; font-size: 1rem; }
.hinweis--gruen { background: var(--gruen-l); border-color: var(--gruen); }
.hinweis p:last-child { margin-bottom: 0; }
.hinweis strong { display: block; margin-bottom: .2rem; }

/* ---------- FAQ-Block (sichtbar, ohne Aufklappen) ---------- */
.faq { margin-top: 2.6rem; }
.faq > h2 { margin-top: 0; margin-bottom: .6em; }
.faq__item { border-top: 1px solid var(--putz-3); padding: 1.15rem 0 .1rem; }
.faq__item:last-child { border-bottom: 1px solid var(--putz-3); }
.faq__item h3 { margin: 0 0 .4em; font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
.faq__item p { margin-bottom: 1em; }
.abschnitt .faq { max-width: var(--measure); margin-top: 0; }

.zitat { margin: 2.8rem auto; padding: 0; }
.zitat p { font-family: var(--display); font-style: italic; font-size: clamp(1.35rem, 2.3vw, 1.85rem); line-height: 1.35; color: var(--ink); margin: 0; font-variation-settings: "opsz" 72, "SOFT" 50, "WONK" 1; text-wrap: pretty; }
.zitat p::before { content: "„"; color: var(--ocker); }
.zitat p::after { content: "“"; color: var(--ocker); }
.zitat cite { display: block; margin-top: .8rem; font-style: normal; font-size: .88rem; color: var(--ink-3); letter-spacing: .02em; }
.dark .zitat p { color: var(--nacht-ink); }

.stand { font-size: .82rem; color: var(--ink-3); letter-spacing: .02em; }

/* ---------- FAQ (details/summary) ---------- */
.faq details { border-top: 1px solid var(--putz-3); padding: .2rem 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--putz-3); }
.faq summary { cursor: pointer; font-family: var(--display); font-size: 1.3rem; padding: .9rem 2rem .9rem 0; position: relative; list-style: none; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: .8rem; font-size: 1.5rem; color: var(--ocker-d); transition: transform .25s; font-family: var(--body); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 1rem; color: var(--ink-2); }
.faq details > div p:last-child { margin: 0; }

/* ---------- Unterkünfte: Lagen, Filter, Karten ---------- */
.anzeige-hinweis { font-size: .9rem; color: var(--ink-3); background: var(--putz-2); border-radius: var(--radius); padding: .7rem 1rem; margin: 1.4rem auto; }
.anzeige-hinweis .tag { font-weight: 700; color: var(--ocker-d); text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; margin-right: .5rem; }

.lagen { display: grid; gap: 1.2rem 2rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); margin: 2rem auto; padding: 1.6rem 0; border-top: 1px solid var(--putz-3); border-bottom: 1px solid var(--putz-3); }
.lage-titel { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink-3); margin: 0 0 .25rem; }
.lage-titel::before { content: ""; display: inline-block; width: .6em; height: .6em; border-radius: 50%; margin-right: .5em; background: var(--ink-3); }
.lage p:last-child { margin: 0; font-size: .98rem; color: var(--ink-2); }
.lage-zahl { font-family: var(--display); font-size: 1.1rem; color: var(--ink); text-transform: none; letter-spacing: 0; margin-left: .5rem; font-weight: 400; }
/* Eine Farbregel je Lage aus content-data/unterkuenfte.php */
.lage-zentrum .lage-titel::before,   .hk-lage-zentrum::before   { background: var(--gruen); }
.lage-point .lage-titel::before,     .hk-lage-point::before     { background: #b8432f; }
.lage-diaz .lage-titel::before,      .hk-lage-diaz::before      { background: #5b9bb5; }
.lage-hartenbos .lage-titel::before, .hk-lage-hartenbos::before { background: #7a9a6a; }
.lage-danabaai .lage-titel::before,  .hk-lage-danabaai::before  { background: #8c6a9a; }
.lage-safari .lage-titel::before,    .hk-lage-safari::before    { background: #8a5f21; }
.lage-umland .lage-titel::before,    .hk-lage-umland::before    { background: var(--ocker); }

.filterzeile { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin: 1.8rem auto 1rem; }
.filterzeile .zaehler { margin-left: auto; font-size: .88rem; color: var(--ink-3); }
.filter-knopf { font: inherit; font-weight: 600; font-size: .9rem; color: var(--ink); background: transparent; border: 1.5px solid var(--putz-3); border-radius: 999px; padding: .45rem 1rem; cursor: pointer; transition: background .2s, border-color .2s; }
.filter-knopf:hover { border-color: var(--ink-3); }
.filter-knopf[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--putz); }
.sortier { font: inherit; font-size: .9rem; color: var(--ink); border: 1.5px solid var(--putz-3); border-radius: 999px; background: transparent; padding: .45rem .8rem; }

.hotelliste { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); margin: 1.5rem auto 2.5rem; }
.hotel-karte { display: flex; flex-direction: column; }
.hk-bild { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--putz-2); display: flex; align-items: center; justify-content: center; }
.hk-bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.hotel-karte:hover .hk-bild img { transform: scale(1.04); }
.hk-noimg { width: 3rem; height: 3rem; opacity: .4; }
.hk-wert { position: absolute; right: .7rem; bottom: .7rem; font-weight: 700; font-size: .95rem; line-height: 1; color: var(--nacht-ink); background: rgb(15 23 30 / .82); border-radius: 999px; padding: .4rem .65rem; }
.hk-wert small { font-weight: 400; font-size: .72rem; opacity: .75; margin-left: .1em; }
.hk-info { display: flex; flex-direction: column; flex: 1; padding-top: .9rem; }
.hk-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem .7rem; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ocker-d); margin: 0 0 .25rem; }
.hk-art::before { content: ""; display: inline-block; width: .55em; height: .55em; border-radius: 50%; margin-right: .4em; background: var(--ink-3); vertical-align: 1px; }
.hk-lage { color: var(--ink-3); font-weight: 600; }
.hk-sterne { margin-left: auto; color: var(--ocker); letter-spacing: .05em; font-size: .85rem; }
.hk-name { font-family: var(--display); font-size: 1.45rem; line-height: 1.15; margin: 0 0 .3rem; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1; }
.hk-ort { font-size: .88rem; color: var(--ink-3); margin: 0 0 .5rem; }
.hk-notiz { font-size: .98rem; color: var(--ink-2); margin: 0 0 .7rem; }
.hk-merkmale { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; padding: 0; margin: 0 0 .9rem; }
.hk-merkmale li { font-size: .74rem; letter-spacing: .03em; color: var(--ink-2); background: var(--putz-2); border-radius: 999px; padding: .2rem .65rem; margin: 0; }
.hk-fuss { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: .8rem; padding-top: .4rem; }
.hk-preis { font-family: var(--display); font-size: 1.35rem; line-height: 1.1; color: var(--ink); margin: 0; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 0; }
.hk-ab { font-family: var(--body); font-size: .85rem; color: var(--ink-3); }
.hk-nacht { display: block; font-family: var(--body); font-size: .74rem; color: var(--ink-3); letter-spacing: .02em; margin-top: .2rem; }
.karte-btn { flex: none; display: inline-flex; flex-direction: column; align-items: center; padding: .55rem 1rem; border-radius: 999px; font-weight: 650; font-size: .9rem; line-height: 1.2; text-decoration: none; background: var(--gruen); color: #fff; transition: background .2s; }
.karte-btn:hover { background: var(--gruen-d); color: #fff; }
.karte-shop { font-weight: 400; font-size: .7rem; opacity: .85; }
.leer { color: var(--ink-3); background: var(--putz-2); border-radius: var(--radius); padding: 2rem; text-align: center; margin-inline: auto; }
@media (max-width: 40rem) { .hk-fuss { flex-direction: column; align-items: stretch; } .karte-btn { align-items: center; } }

/* ---------- Lightbox ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; margin: 0; }
.lightbox::backdrop { background: rgb(15 23 30 / .94); }
.lightbox__fig { position: absolute; inset: 3rem 4rem 3rem; display: grid; grid-template-rows: 1fr auto; gap: .6rem; justify-items: center; align-items: center; }
.lightbox__fig img { max-width: 100%; max-height: calc(100vh - 8rem); width: auto; height: auto; object-fit: contain; }
.lightbox__fig figcaption { color: var(--nacht-ink-2); border-color: var(--ocker); max-width: 50rem; text-align: left; }
.lightbox button { position: absolute; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; padding: .5rem .9rem; opacity: .75; }
.lightbox button:hover { opacity: 1; }
.lightbox__close { top: .6rem; right: 1rem; }
.lightbox__prev { left: .4rem; top: 50%; translate: 0 -50%; }
.lightbox__next { right: .4rem; top: 50%; translate: 0 -50%; }
@media (max-width: 40rem) { .lightbox__fig { inset: 3rem .5rem 2rem; } .lightbox__prev, .lightbox__next { top: auto; bottom: 0; translate: none; } }

/* ---------- Fußzeile ---------- */
.site-footer { position: relative; background: var(--nacht); color: var(--nacht-ink-2); margin-top: var(--sec); padding-bottom: 2rem; }
.site-footer__sand { height: 3.5rem; background: var(--putz); clip-path: polygon(0 0, 100% 0, 100% 15%, 70% 55%, 35% 40%, 0 100%); }
.site-footer__inner { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; display: grid; gap: 2rem 2.5rem; grid-template-columns: 2fr 1fr 1fr; padding: 2rem 0 2.5rem; }
.site-footer__intro p { font-size: .95rem; max-width: 30rem; }
.site-footer h2 { font-family: var(--body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ocker); margin: 0 0 .8rem; font-weight: 700; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; font-size: .95rem; }
.site-footer a { color: var(--nacht-ink); text-decoration: none; }
.site-footer a:hover { color: var(--ocker-l); text-decoration: underline; }
.wortmarke--footer { color: var(--nacht-ink); margin-bottom: .5rem; }
.site-footer__meta { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; border-top: 1px solid rgb(255 255 255 / .1); padding-top: 1.2rem; font-size: .8rem; }
.site-footer__meta p { margin: 0; }
.abschnitt--putz2 + .site-footer .site-footer__sand, .dark + .site-footer .site-footer__sand { background: var(--putz-2); }
@media (max-width: 56rem) { .site-footer__inner { grid-template-columns: 1fr 1fr; } .site-footer__intro { grid-column: 1 / -1; } }
@media (max-width: 30rem) { .site-footer__inner { grid-template-columns: 1fr; } }

/* ---------- Einblenden ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--2 { transition-delay: .12s; } .reveal--3 { transition-delay: .24s; }
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .karte__img img, .galerie img { transition: none; } }

/* ---------- Startseite ---------- */
.start-intro { padding: var(--sec) 0 0; }
.start-intro__grid { display: grid; gap: 2.5rem 4rem; grid-template-columns: 1.1fr 1fr; align-items: start; }
.start-intro__grid .lede { margin-top: .5rem; }
.start-intro__grid h2 { margin-top: 0; font-size: clamp(2rem, 3.8vw, 3.1rem); }
@media (max-width: 52rem) { .start-intro__grid { grid-template-columns: 1fr; } }
.grid { display: grid; gap: 2rem 3rem; align-items: start; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.karte--gross .karte__img { aspect-ratio: 3 / 2; }

/* ---------- Druck ---------- */
@media print {
  .site-header, .site-footer, .weiter, .hero__scroll, .btn, .filterzeile { display: none !important; }
  .hero { min-height: 0; color: var(--ink); }
  .hero__media { display: none; }
  .hero__title { color: var(--ink); text-shadow: none; }
  body { font-size: 11pt; }
}
