/* Ferienwohnung Paula
   Farben aus dem bisherigen Auftritt (paula-lahr.de): Paula-Grün, Tannengrün, Schiefer, Nebel.
   Leitmotiv: die Dachschräge. Giebel-Maske im Hero und in der Lage, schräge Kante an Fotos,
   diagonal geteilte Wechseltage im Kalender. */

@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sacramento";
  src: url("../fonts/sacramento.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --gruen: #007739;
  --tanne: #005632;
  --wald: #003b00;
  --tinte: #1c2b24;
  --schiefer: #7f8c8d;
  --schiefer-dunkel: #56615f;
  --nebel: #f6f8f8;
  --minze: #e2f0e8;
  --linie: #dfe5e4;
  --weiss: #ffffff;
  --belegt: #cfd6d5;

  --schrift: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --schreibschrift: "Sacramento", "Brush Script MT", cursive;

  /* Typo-Skala 1.25 */
  --t-klein: 0.875rem;
  --t-basis: 1.0625rem;
  --t-m: 1.3125rem;
  --t-l: 1.625rem;
  --t-xl: clamp(2rem, 1.4rem + 2.4vw, 2.75rem);
  --t-xxl: clamp(2.5rem, 1.6rem + 3.6vw, 4rem);

  --rand: clamp(1rem, 4vw, 3rem);
  --breite: 76rem;
  --schraege: clamp(1.5rem, 4vw, 3rem);
  --radius: 0.5rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--schrift);
  font-size: var(--t-basis);
  line-height: 1.6;
  color: var(--tinte);
  background: var(--nebel);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gruen); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--tanne); text-decoration-thickness: 2px; }

h1, h2, h3 { line-height: 1.15; margin: 0; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--t-xl); color: var(--tanne); }
h3 { font-size: var(--t-m); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
h2 + p { margin-top: 0.75rem; }

:focus-visible {
  outline: 3px solid var(--gruen);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--tanne);
  color: var(--weiss);
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; color: var(--weiss); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--rand);
}

/* ---------- Kopfzeile ---------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--nebel) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.kopf.ist-gescrollt { border-bottom-color: var(--linie); }

.kopf-innen {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.25rem;
}

.marke {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--tanne);
  margin-right: auto;
}
.marke:hover { color: var(--tanne); }
.marke-klein {
  font-size: var(--t-klein);
  font-weight: 600;
  color: var(--schiefer-dunkel);
}
.marke-name {
  font-family: var(--schreibschrift);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gruen);
}

.navi ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navi a {
  color: var(--tinte);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.navi a:hover { color: var(--gruen); }

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.55rem 1.35rem;
  border: 2px solid var(--gruen);
  border-radius: 999px;
  background: var(--gruen);
  color: var(--weiss);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.knopf:hover { background: var(--tanne); border-color: var(--tanne); color: var(--weiss); text-decoration: none; }
.knopf[disabled] { opacity: 0.55; cursor: progress; }
.knopf-hell {
  background: transparent;
  color: var(--gruen);
}
.knopf-hell:hover { background: var(--minze); color: var(--tanne); border-color: var(--tanne); }
.knopf-klein { min-height: 2.4rem; padding: 0.35rem 1rem; font-size: 0.95rem; }

.menue-knopf {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  color: var(--tanne);
  cursor: pointer;
}
.menue-knopf svg { display: block; }

@media (max-width: 62rem) {
  .menue-knopf { display: block; }
  .kopf .knopf { display: none; }
  .navi {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nebel);
    border-bottom: 1px solid var(--linie);
    display: none;
  }
  .navi.ist-offen { display: block; }
  .navi ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem var(--rand) 1rem;
  }
  .navi a { display: block; padding: 0.7rem 0; font-size: var(--t-basis); }
}

/* ---------- Hero ---------- */

.hero {
  padding-block: clamp(2rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
}
.hero-raster {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.hero-text { padding-bottom: 1rem; }

.hero h1 {
  display: flex;
  flex-direction: column;
  color: var(--tanne);
}
.h1-zeile {
  font-size: var(--t-l);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--schiefer-dunkel);
}
.wortmarke {
  font-family: var(--schreibschrift);
  font-weight: 400;
  font-size: clamp(6rem, 3rem + 13vw, 13rem);
  line-height: 0.75;
  letter-spacing: 0;
  color: var(--gruen);
  margin: 0.28em 0 0 -0.06em;
  padding-right: 0.15em;
}

.hero-lead {
  font-size: var(--t-m);
  line-height: 1.5;
  max-width: 32ch;
  margin: 1rem 0 1.75rem;
}
.hero-aktionen { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.giebel {
  position: relative;
  clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
  aspect-ratio: 4 / 5;
  background: var(--minze);
}
.giebel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bild { max-width: 34rem; justify-self: end; width: 100%; }

.eckdaten {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  border-top: 2px solid var(--tanne);
}
.eckdaten div {
  padding: 1rem 1rem 0 0;
}
.eckdaten dt {
  font-size: var(--t-klein);
  color: var(--schiefer-dunkel);
}
.eckdaten dd {
  margin: 0.15rem 0 0;
  font-size: var(--t-m);
  font-weight: 700;
  line-height: 1.3;
  color: var(--tanne);
}

@media (max-width: 52rem) {
  .hero-raster { grid-template-columns: 1fr; }
  .hero-bild { justify-self: stretch; max-width: none; order: -1; aspect-ratio: 5 / 4; }
  .eckdaten { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Ladeinszenierung: Giebel öffnet sich, danach wird "Paula" geschrieben */
@media (prefers-reduced-motion: no-preference) {
  .hero-bild {
    animation: giebel-auf 1.1s cubic-bezier(0.65, 0, 0.25, 1) 0.1s both;
  }
  .hero-bild img {
    animation: bild-ruhe 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s both;
  }
  .wortmarke {
    animation: schreiben 1.2s cubic-bezier(0.45, 0, 0.3, 1) 0.7s both;
  }
}
@keyframes giebel-auf {
  from { clip-path: polygon(50% 0, 50% 15%, 50% 100%, 50% 100%, 50% 15%); }
  to   { clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%); }
}
@keyframes bild-ruhe {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
@keyframes schreiben {
  from { clip-path: inset(-10% 100% -20% 0); }
  to   { clip-path: inset(-10% -5% -20% 0); }
}

/* ---------- Abschnitte ---------- */

.abschnitt { padding-block: clamp(4rem, 8vw, 7rem); }
.abschnitt-weiss { background: var(--weiss); }
.abschnitt-kopf { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.abschnitt-kopf p { font-size: var(--t-m); line-height: 1.5; margin-top: 0.75rem; color: var(--tinte); }

/* ---------- Rundgang ---------- */

.rundgang {
  display: grid;
  grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.raeume {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--linie);
}
.raum-tab {
  appearance: none;
  background: none;
  border: 0;
  border-left: 4px solid transparent;
  margin-left: -3px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: var(--t-m);
  font-weight: 700;
  color: var(--schiefer-dunkel);
  text-align: left;
  cursor: pointer;
}
.raum-tab:hover { color: var(--tanne); }
.raum-tab[aria-selected="true"] {
  color: var(--gruen);
  border-left-color: var(--gruen);
}
.raum-text {
  margin-top: 1.5rem;
  min-height: 9rem;
}
.raum-text h3 { color: var(--tanne); margin-bottom: 0.5rem; }
.raum-text p { max-width: 38ch; }

.buehne {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--minze);
  clip-path: polygon(0 0, calc(100% - var(--schraege) * 2) 0, 100% calc(var(--schraege) * 2), 100% 100%, 0 100%);
  overflow: hidden;
}
.buehne img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.buehne img.ist-neu {
  animation: dach-wisch 0.75s cubic-bezier(0.65, 0, 0.25, 1) both;
}
@keyframes dach-wisch {
  from { clip-path: polygon(0 0, 0 0, -45% 100%, -45% 100%); }
  to   { clip-path: polygon(0 0, 145% 0, 100% 100%, -45% 100%); }
}
@media (prefers-reduced-motion: reduce) {
  .buehne img.ist-neu { animation: none; }
}

.tour {
  margin-top: 1.5rem;
  grid-column: 2;
}
.tour-rahmen {
  position: relative;
  min-height: 11rem;
  background: var(--tanne);
  color: var(--weiss);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.tour-rahmen.ist-geladen { aspect-ratio: 16 / 9; padding: 0; }
.tour-rahmen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tour-rahmen p { max-width: 40ch; margin: 0.75rem auto 0; font-size: var(--t-klein); color: #d6e6dc; }
.tour-rahmen a { color: var(--weiss); }
.tour .knopf { background: var(--weiss); color: var(--tanne); border-color: var(--weiss); }
.tour .knopf:hover { background: var(--minze); border-color: var(--minze); }

@media (max-width: 52rem) {
  .rundgang { grid-template-columns: minmax(0, 1fr); }
  .rundgang > * { min-width: 0; }
  .raeume {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: 0;
    border-bottom: 2px solid var(--linie);
  }
  .raum-tab {
    border-left: 0;
    border-bottom: 4px solid transparent;
    margin: 0 0 -3px;
    padding: 0.45rem 0.7rem;
    white-space: nowrap;
  }
  .raum-tab[aria-selected="true"] { border-bottom-color: var(--gruen); }
  .raum-text { min-height: 0; }
  .buehne { order: -1; }
  .tour { grid-column: auto; }
  .tour-rahmen.ist-geladen { aspect-ratio: 4 / 3; }
}

/* ---------- Galerie ---------- */

.galerie {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(9rem, 16vw, 14rem);
  grid-auto-flow: dense;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.galerie li { position: relative; }
.galerie .breit { grid-column: span 2; }
.galerie .hoch { grid-row: span 2; }
.galerie .gross { grid-column: span 2; grid-row: span 2; }
.galerie button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--minze);
  cursor: zoom-in;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - var(--schraege)) 0, 100% var(--schraege), 100% 100%, 0 100%);
}
.galerie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galerie button:focus-visible { outline-offset: -4px; clip-path: none; }

@media (max-width: 52rem) {
  .galerie { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 9.5rem; }
  .galerie .gross { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 38, 20, 0.94);
  color: var(--weiss);
}
.lightbox::backdrop { background: transparent; }
.lightbox[open] { display: grid; grid-template-rows: auto 1fr auto; }
.lightbox-leiste {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem var(--rand);
}
.lightbox-zaehler { font-size: var(--t-klein); color: #bcd6c6; }
.lightbox-bild {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0 var(--rand);
}
.lightbox-bild img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  grid-area: 1 / 1;
}
.lightbox-unten {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem var(--rand) 1.2rem;
}
.lightbox-titel { margin: 0; font-weight: 600; }
.lightbox button {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--weiss);
  border-radius: 999px;
  min-width: 2.9rem;
  min-height: 2.9rem;
  padding: 0.4rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.lightbox button:hover { border-color: var(--weiss); background: rgba(255, 255, 255, 0.08); }
.lightbox .pfeile { display: flex; gap: 0.5rem; }

/* ---------- Ausstattung ---------- */

.ausstattung {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem clamp(1.5rem, 3vw, 3rem);
}
.ausstattung h3 {
  color: var(--tanne);
  padding-bottom: 0.6rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid var(--tanne);
}
.ausstattung ul { list-style: none; margin: 0; padding: 0; }
.ausstattung li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.6rem;
  line-height: 1.4;
}
.ausstattung li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.85rem;
  height: 0.55rem;
  /* kleines Dach als Aufzählungszeichen */
  background: var(--gruen);
  clip-path: polygon(50% 0, 100% 70%, 100% 100%, 85% 100%, 50% 45%, 15% 100%, 0 100%, 0 70%);
}
@media (max-width: 62rem) { .ausstattung { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 36rem) { .ausstattung { grid-template-columns: 1fr; } }

/* ---------- Preise ---------- */

.preise {
  background: var(--tanne);
  color: var(--weiss);
}
.preise h2 { color: var(--weiss); }
.preise .abschnitt-kopf p { color: #d6e6dc; }
.preis-raster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.preis {
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  padding-top: 1rem;
}
.preis-betrag {
  display: block;
  font-size: clamp(3.5rem, 2rem + 6vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.preis-text { display: block; margin-top: 0.6rem; color: #d6e6dc; max-width: 24ch; }
.preis-hinweise { margin: 0; padding: 0; list-style: none; }
.preis-hinweise li {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.preis-hinweise li:first-child { border-top-width: 2px; border-top-color: rgba(255, 255, 255, 0.35); }
.preis-hinweise strong { display: block; }
.preise a { color: var(--weiss); }
.preise a:hover { color: var(--minze); }
.preis-beispiel {
  margin-top: 2.5rem;
  font-size: var(--t-m);
  color: #d6e6dc;
}
.preis-beispiel strong { color: var(--weiss); }
@media (max-width: 52rem) { .preis-raster { grid-template-columns: 1fr 1fr; } .preis-hinweise { grid-column: 1 / -1; } }

/* ---------- Kalender und Anfrage ---------- */

.buchung {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 62rem) { .buchung { grid-template-columns: 1fr; } }

.kalender {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: calc(var(--radius) * 2);
  padding: clamp(1rem, 2.5vw, 1.75rem);
}
.kalender-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.kalender-navi button {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid var(--linie);
  border-radius: 999px;
  background: var(--weiss);
  color: var(--tanne);
  cursor: pointer;
}
.kalender-navi button:hover:not([disabled]) { border-color: var(--gruen); color: var(--gruen); }
.kalender-navi button[disabled] { opacity: 0.35; cursor: default; }
.kalender-stand { font-size: var(--t-klein); color: var(--schiefer-dunkel); text-align: center; margin: 0; }

.monate {
  display: grid;
  grid-template-columns: repeat(var(--monate, 2), minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}
.monat h3 {
  font-size: var(--t-basis);
  font-weight: 700;
  color: var(--tanne);
  text-align: center;
  margin-bottom: 0.6rem;
}
.monat-raster {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}
.wochentag {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--schiefer-dunkel);
  padding-bottom: 0.25rem;
}
.tag {
  --belegt-farbe: var(--belegt);
  position: relative;
  aspect-ratio: 1;
  min-height: 2.4rem;
  border: 0;
  border-radius: 4px;
  padding: 0;
  background: var(--nebel);
  font: inherit;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  color: var(--tinte);
  cursor: pointer;
}
.tag:hover:not([aria-disabled="true"]) { box-shadow: inset 0 0 0 2px var(--gruen); }
.tag-leer { visibility: hidden; }
.tag[aria-disabled="true"] { cursor: default; }
.tag.ist-vergangen { background: transparent; color: #aab3b2; }
.tag.ist-heute { font-weight: 800; text-decoration: underline; text-underline-offset: 0.2em; }

/* Belegte Nacht: ganze Zelle. Anreisetag eines Gastes: untere rechte Hälfte, Abreisetag: obere linke Hälfte. */
.tag.ist-belegt {
  background: repeating-linear-gradient(135deg, var(--belegt-farbe) 0 5px, #dde2e1 5px 10px);
  color: var(--schiefer-dunkel);
  text-decoration: line-through;
}
.tag.ist-anreise-belegt {
  background: linear-gradient(135deg, var(--nebel) 0 50%, var(--belegt-farbe) 50% 100%);
}
.tag.ist-abreise-belegt {
  background: linear-gradient(135deg, var(--belegt-farbe) 0 50%, var(--nebel) 50% 100%);
}
.tag.ist-anreise-belegt.ist-abreise-belegt { background: var(--belegt-farbe); }

.tag.ist-im-zeitraum { background: var(--minze); color: var(--tanne); text-decoration: none; }
.tag.ist-start,
.tag.ist-ende {
  background: var(--gruen);
  color: var(--weiss);
  font-weight: 700;
  text-decoration: none;
}
.tag.ist-vorschau { background: var(--minze); }

.legende {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: var(--t-klein);
  color: var(--schiefer-dunkel);
}
.legende li { display: inline-flex; align-items: center; gap: 0.45rem; }
.legende i {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 3px;
  background: var(--nebel);
  border: 1px solid var(--linie);
}
.legende .l-belegt { background: repeating-linear-gradient(135deg, var(--belegt) 0 3px, #dde2e1 3px 6px); }
.legende .l-wechsel { background: linear-gradient(135deg, var(--nebel) 0 50%, var(--belegt) 50% 100%); }
.legende .l-auswahl { background: var(--gruen); border-color: var(--gruen); }

.kalender-meldung {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: #fff5e0;
  color: #5c4300;
  font-size: var(--t-klein);
}
.kalender-meldung[hidden] { display: none; }

.auswahl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--linie);
}
.auswahl-text { margin: 0; }
.auswahl-text strong { color: var(--tanne); }
.auswahl-preis { display: block; font-size: var(--t-klein); color: var(--schiefer-dunkel); }

/* Formular */
.anfrage h3 { font-size: var(--t-l); color: var(--tanne); margin-bottom: 0.4rem; }
.anfrage-hinweis { color: var(--schiefer-dunkel); margin-bottom: 1.5rem; }
fieldset { border: 0; margin: 0 0 1.25rem; padding: 0; min-width: 0; }
legend { font-weight: 700; color: var(--tanne); margin-bottom: 0.6rem; padding: 0; }
.felder { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem 1rem; }
.feld { display: flex; flex-direction: column; gap: 0.3rem; }
.feld-voll { grid-column: 1 / -1; }
.feld label { font-size: 0.95rem; font-weight: 600; }
.feld small { font-size: var(--t-klein); color: var(--schiefer-dunkel); }
input, select, textarea {
  width: 100%;
  font: inherit;
  color: var(--tinte);
  background: var(--weiss);
  border: 1.5px solid #b9c3c2;
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  min-height: 2.9rem;
}
textarea { min-height: 6.5rem; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: var(--schiefer); }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gruen);
  outline-offset: 0;
  border-color: var(--gruen);
}
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #b3261e; }
@media (max-width: 36rem) { .felder { grid-template-columns: 1fr; } }

.pflicht { color: var(--gruen); }

.captcha {
  background: var(--minze);
  border-radius: var(--radius);
  padding: 1rem;
}
.captcha-zeile { display: flex; gap: 0.75rem; align-items: flex-end; flex-wrap: wrap; }
.captcha-zeile .feld { flex: 1 1 12rem; }
.captcha-frage { font-weight: 700; color: var(--tanne); }
.link-knopf {
  background: none;
  border: 0;
  padding: 0.6rem 0;
  font: inherit;
  font-size: var(--t-klein);
  font-weight: 600;
  color: var(--gruen);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.honig { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.haken {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0 0 1rem;
}
.haken input { width: 1.25rem; height: 1.25rem; min-height: 0; margin: 0.2rem 0 0; accent-color: var(--gruen); flex: none; }
.klein { font-size: var(--t-klein); color: var(--schiefer-dunkel); }

.formular-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}
.formular-status[hidden] { display: none; }
.formular-status.ist-fehler { background: #fdecea; color: #7a1d16; }
.formular-status.ist-ok { background: var(--minze); color: var(--tanne); }

.danke {
  padding: 2rem;
  background: var(--minze);
  border-radius: calc(var(--radius) * 2);
}
.danke h3 { margin-bottom: 0.5rem; }

/* ---------- Gastgeber ---------- */

.gastgeber {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.foto-markiert { position: relative; margin: 0; }
.foto-markiert img { width: 100%; border-radius: calc(var(--radius) * 2); }
.markierung {
  position: absolute;
  width: 18%;
  aspect-ratio: 1;
  translate: -50% -50%;
  border: 3px solid var(--weiss);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gruen);
  opacity: 0;
  scale: 0.7;
  transition: opacity 0.25s, scale 0.35s cubic-bezier(0.3, 1.4, 0.5, 1);
  pointer-events: none;
}
.markierung span {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0.5rem;
  background: var(--gruen);
  color: var(--weiss);
  font-weight: 700;
  font-size: var(--t-klein);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.markierung.ist-aktiv { opacity: 1; scale: 1; }
@media (prefers-reduced-motion: reduce) { .markierung { transition: opacity 0.2s; scale: 1; } }

.name-knopf {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--gruen);
  text-decoration: underline dotted;
  text-underline-offset: 0.2em;
  cursor: pointer;
}
.name-knopf:hover, .name-knopf[aria-pressed="true"] { color: var(--tanne); text-decoration-style: solid; }
.gastgeber-text p { max-width: 58ch; }
.gastgeber-text .unterschrift {
  font-family: var(--schreibschrift);
  font-size: 2.6rem;
  line-height: 1.1;
  color: var(--gruen);
  margin-top: 1.5rem;
}
@media (max-width: 52rem) { .gastgeber { grid-template-columns: 1fr; } .foto-markiert { max-width: 26rem; } }

/* ---------- Lage ---------- */

.lage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.wege { margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.wege li {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--linie);
}
.wege li:last-child { border-bottom: 1px solid var(--linie); }
.wege b { color: var(--tanne); font-size: var(--t-m); line-height: 1.3; }
.adresse { font-style: normal; margin-bottom: 1.25rem; }
.lage .giebel { aspect-ratio: 2 / 3; max-width: 24rem; justify-self: end; width: 100%; }
@media (max-width: 52rem) {
  .lage { grid-template-columns: 1fr; }
  .lage .giebel { justify-self: start; max-width: 18rem; }
  .wege li { grid-template-columns: 1fr; gap: 0.1rem; }
}

/* ---------- Fuß ---------- */

.fuss {
  background: var(--wald);
  color: #cfe0d5;
  padding-block: 3rem 2rem;
  font-size: 0.95rem;
}
.fuss a { color: var(--weiss); }
.fuss-raster {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.fuss .marke-name { color: var(--weiss); font-size: 3rem; }
.fuss address { font-style: normal; }
.fuss-links { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.fuss-unten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---------- Rechtliche Unterseiten ---------- */

.rechtliches { padding-block: clamp(2.5rem, 6vw, 5rem); }
.rechtliches-karte {
  max-width: 48rem;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: calc(var(--radius) * 2);
  padding: clamp(1.5rem, 5vw, 3.5rem);
}
.rechtliches h1 { font-size: var(--t-xxl); color: var(--tanne); margin-bottom: 1.5rem; }
.rechtliches h2 { font-size: var(--t-m); margin: 2.25rem 0 0.6rem; }
.rechtliches address { font-style: normal; }
.rechtliches dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.3rem 1.25rem; margin: 0; }
.rechtliches dt { font-weight: 600; }
.rechtliches dd { margin: 0; }
.rechtliches ul { padding-left: 1.2rem; }
.rechtliches li { margin-bottom: 0.35rem; }
.rechtliches .gedaempft { color: var(--schiefer-dunkel); }
.zurueck { font-weight: 600; text-decoration: none; }
@media (max-width: 36rem) { .rechtliches dl { grid-template-columns: 1fr; } .rechtliches dd { margin-bottom: 0.5rem; } }

/* Positionen der Gesichter auf dem Gastgeberfoto (Prozent der Bildgröße) */
.m-denise  { left: 40.5%; top: 25%; }
.m-hendrik { left: 58.5%; top: 24%; }
.m-barney  { left: 61%;   top: 49%; }

.lightbox-bild img.ist-neu {
  animation: dach-wisch 0.6s cubic-bezier(0.65, 0, 0.25, 1) both;
}

[hidden] { display: none !important; }

.feld-fehler {
  display: block;
  margin-top: 0.2rem;
  font-size: var(--t-klein);
  font-weight: 600;
  color: #b3261e;
}
.haken { flex-wrap: wrap; }
.haken > span { flex: 1 1 0; min-width: 0; }
.haken .feld-fehler { flex-basis: 100%; padding-left: 1.95rem; }
