/* ============================================================
   Ferienhaus Thoma — Alpine Editorial
   Farben aus den Fotos: Creme, Tannengrün, Holz, Geranienrot
   ============================================================ */

/* ---------- Fonts (lokal gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-v38-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-v38-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-v38-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-v38-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla-v33-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla-v33-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla-v33-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --paper: #f6f1e7;
  --paper-deep: #efe7d8;
  --ink: #22301f;
  --ink-soft: #4a5a45;
  --pine: #2f4a33;
  --pine-deep: #24391f;
  --wood: #a8794a;
  --wood-light: #c9a06e;
  --geranium: #b8432c;
  --geranium-deep: #9a3320;
  --white: #fffdf8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Karla', 'Helvetica Neue', sans-serif;

  --wrap: 1120px;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(34, 48, 31, .35);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--pine); text-decoration-color: rgba(47, 74, 51, .35); text-underline-offset: 3px; }
a:hover { color: var(--geranium); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.only-desktop { display: none; }
@media (min-width: 760px) { .only-desktop { display: inline; } }

/* Papier-Textur (als normales Body-Background, performant) */
body {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .02 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typo ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 300; line-height: 1.08; color: var(--ink); }
h1 em, h2 em, .brand-text em, .footer-brand em {
  font-style: italic; font-weight: 400; color: var(--pine);
}
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: .5em; letter-spacing: -.01em; }
h3 { font-size: 1.35rem; font-weight: 600; }
.kicker {
  font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--geranium); margin-bottom: 1.1em;
}
.kicker::before {
  content: ""; display: inline-block; width: 26px; height: 2px;
  background: var(--geranium); vertical-align: middle; margin-right: 12px;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.lead.narrow { max-width: 640px; }

/* Platzhalter-Markierung (vor Livegang entfernen) */
.tag-ph {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #8a6d00; background: #ffe9a8;
  border: 1px dashed #c9a227; border-radius: 4px; padding: 1px 6px; vertical-align: middle;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  color: var(--white);
}
.site-header.scrolled {
  background: rgba(246, 241, 231, .96);
  box-shadow: 0 1px 0 rgba(34, 48, 31, .08);
  padding: 10px 28px;
  color: var(--ink);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-mark { color: var(--geranium); display: grid; place-items: center; }
.site-header:not(.scrolled) .brand-mark { color: var(--white); }
.brand-text { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .01em; }
.site-header:not(.scrolled) .brand-text em { color: var(--white); }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  color: inherit; text-decoration: none; font-weight: 500; font-size: .95rem;
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px;
  background: var(--geranium); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--geranium); color: var(--white) !important;
  padding: 9px 20px; border-radius: 999px;
  transition: background .25s;
}
.nav-cta:hover { background: var(--geranium-deep); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .site-nav {
    position: fixed; inset: 0; z-index: 60;
    flex-direction: column; justify-content: center; gap: 30px;
    background: var(--pine-deep);
    transform: translateY(-102%); transition: transform .45s var(--ease);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { color: var(--paper); font-size: 1.4rem; font-family: var(--font-display); }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; z-index: 70;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span {
    width: 26px; height: 2px; background: currentColor; color: inherit;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .site-header:not(.scrolled) .nav-toggle span { background: var(--white); }
  .nav-toggle.open span { background: var(--paper); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Slideshow im Kopfbereich ----------
   Auf Wunsch von Hubert steht hier NUR das Bild: kein dunkler Schleier,
   kein Text darueber. Die Begruessung folgt darunter im hellen Bereich. */
.hero { position: relative; overflow: hidden; }
.slideshow {
  position: relative; width: 100%;
  /* Die Hoehe richtet sich nach der Breite (rund 16:9). Ein flacherer
     Streifen wuerde vom Haus das Dach abschneiden. */
  height: clamp(380px, 56vw, 820px);
  background: var(--paper-deep);
}
@media (max-width: 700px) {
  /* Auf dem Handy etwas breiter als 4:3. Grund: Das Balkon-Panorama ist
     sehr breit (2,2:1) – bei 4:3 waeren die Rinder auf der Weide weg. */
  .slideshow { height: auto; aspect-ratio: 16 / 10; }
}
.slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
  /* Kurze Blende: bei 2 Sekunden Standzeit wuerde eine lange Ueberblendung
     das Bild die meiste Zeit verwaschen zeigen. */
  opacity: 0; transition: opacity .55s var(--ease);
}
/* Das Hausbild ist hochformatiger als die uebrigen (4:3 statt 3:2).
   Ausschnitt weiter oben, damit Dach und Giebel komplett im Bild bleiben. */
.slide-haus { object-position: center 30%; }
/* Das Balkon-Panorama: auf dem Handy nach rechts verschoben, damit die
   Rinder auf der Weide im Bild bleiben. */
.slide-balkon { object-position: center center; }
@media (max-width: 700px) {
  .slide-balkon { object-position: 78% center; }
}
.slide.ist-aktiv { opacity: 1; }

/* Auswahlpunkte unten mittig */
.slide-punkte {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 11px; z-index: 3;
}
.slide-punkt {
  width: 12px; height: 12px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255, 253, 248, .55); cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .55);
  transition: background .3s, transform .3s;
}
.slide-punkt:hover { transform: scale(1.15); }
.slide-punkt.ist-aktiv { background: var(--white); }

/* ---------- Begruessung unter der Slideshow ---------- */
.hero-text { padding: 60px 0 10px; text-align: center; }
.hero-text .kicker { justify-content: center; }
.hero-text h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  color: var(--ink); margin-top: 6px;
}
.hero-text h1 em { color: var(--wood); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem); margin: 20px auto 0;
  max-width: 660px; color: var(--ink-soft);
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* Vier DTV-Sterne im Startbild, rechts oben.
   Auf Wunsch von Hubert stehen hier nur die Sterne – das Gastgebersiegel
   sitzt weiter unten in der Auszeichnungs-Zeile. */
.hero-siegel {
  position: absolute;
  top: clamp(76px, 10vh, 100px);
  right: clamp(16px, 2.8vw, 44px);
  width: clamp(168px, 21vw, 300px);
  z-index: 2;
}
.hero-siegel img {
  /* height: auto ist zwingend – im HTML stehen feste Masse, sonst wird
     das Bild in die Laenge gezogen. */
  display: block; width: 100%; height: auto;
  /* Zwei Schatten: der harte gibt den gelben Sternen Kontur vor hellem
     Himmel, der weiche setzt sie vom Foto ab. */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .55))
          drop-shadow(0 8px 22px rgba(0, 0, 0, .40));
}
/* Die Sterne bleiben jetzt auf allen Geraeten sichtbar: Seit die
   Begruessung unter dem Bild steht, ueberlagern sie keinen Text mehr. */
/* Die Menuezeile ist weiss und lag frueher auf dem dunklen Schleier.
   Der ist weg – damit sie auf hellen Bildern lesbar bleibt, bekommt sie
   einen eigenen, sehr flachen Verlauf nur an der Oberkante. */
.site-header:not(.scrolled)::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 150px;
  background: linear-gradient(180deg, rgba(18, 28, 16, .48) 0%, rgba(18, 28, 16, .20) 55%, rgba(18, 28, 16, 0) 100%);
  pointer-events: none; z-index: -1;
}
.site-header:not(.scrolled) .brand-text,
.site-header:not(.scrolled) .site-nav a:not(.nav-cta) {
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; text-decoration: none; border: 0; cursor: pointer;
  transition: transform .2s var(--ease), background .25s, box-shadow .25s;
  font-family: var(--font-body);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--geranium); color: var(--white); box-shadow: 0 10px 25px -10px rgba(184, 67, 44, .6); }
.btn-primary:hover { background: var(--geranium-deep); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 253, 248, .16); color: var(--white); border: 1px solid rgba(255, 253, 248, .55); }
.btn-ghost:hover { background: rgba(255, 253, 248, .28); color: var(--white); }
.btn-block { width: 100%; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }

/* Willkommen */
.grid-host {
  display: grid; grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 860px) { .grid-host { grid-template-columns: 1fr; gap: 40px; } }
.host-photo { position: relative; }
.host-photo img {
  /* width/height stehen bei manchen Bildern im HTML. Ohne height:auto
     wuerde die feste Hoehe gelten und das Bild in die Laenge ziehen. */
  width: 100%; height: auto;
  border-radius: var(--radius); box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}
.host-photo::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--wood-light); border-radius: var(--radius);
  transform: rotate(1.2deg); z-index: -1;
}
/* Zwei Fotos untereinander (Spielplatz im Familien-Abschnitt).
   height: auto ist noetig, weil die Bilder feste Masse im HTML tragen –
   ohne die Angabe wuerden sie beim Verkleinern verzerrt. */
.host-photo-duo { display: grid; gap: 24px; }
.host-photo-duo::before { display: none; }
.host-photo-duo img { width: 100%; height: auto; transform: rotate(-1.2deg); }
.host-photo-duo img + img { transform: rotate(1.2deg); }
.host-photo-duo figcaption { margin-top: 20px; }

.host-photo figcaption {
  margin-top: 26px; font-family: var(--font-display); font-style: italic;
  color: var(--ink-soft); text-align: center;
}
.host-text p + p { margin-top: 1em; }
.host-facts { list-style: none; margin-top: 28px; display: grid; gap: 10px; }
.host-facts li { padding-left: 30px; position: relative; }
.host-facts li::before {
  content: "✿"; position: absolute; left: 0; color: var(--geranium);
}

/* Badges (DTV etc.) */
/* ---------- Siegel-Leiste (Auszeichnungen & Logos) ----------
   Nimmt weitere Logos (Allgaeu GmbH, Familienwappen) einfach mit auf:
   neues <img class="siegel siegel-…"> ergaenzen, Breite unten festlegen. */
/* Die Logos haben ganz unterschiedliche Formate – vom Quadrat bis zum
   flachen Sternenband (5:1). Damit die Reihe ruhig wirkt, wird jeweils
   die HOEHE vorgegeben und die Breite ergibt sich von selbst. */
/* Eigene Zeile unter dem Willkommen-Abschnitt, ueber die ganze Breite */
.auszeichnungen {
  margin-top: 54px; padding-top: 40px;
  border-top: 1px solid rgba(34, 48, 31, .12);
}
.siegel-reihe {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 22px 46px;
}
.siegel { display: block; width: auto; height: auto; }
.siegel-dtv     { height: 124px; }
.siegel-sterne  { height: 30px; }
.siegel-allgaeu { height: 104px; border-radius: 9px; }
.siegel-wappen  { height: 124px; }
/* Trennt die Zertifizierung (links) von Region und Familie (rechts) */
.siegel-trenner { width: 1px; height: 74px; background: rgba(34, 48, 31, .16); }
.siegel-note { margin: 22px 0 0; font-size: .92rem; color: var(--ink-soft); text-align: center; }
/* Auf schmalen Bildschirmen kleiner, damit die Reihe nicht zerfaellt */
@media (max-width: 860px) {
  .siegel-reihe   { gap: 18px 30px; }
  .siegel-dtv     { height: 96px; }
  .siegel-sterne  { height: 24px; }
  .siegel-trenner { height: 58px; }
  .siegel-allgaeu { height: 80px; }
  .siegel-wappen  { height: 96px; }
}
/* Auf dem Handy zwei mal zwei: oben die Zertifizierung, unten Region
   und Familienwappen. Vier Logos in einer Zeile wuerden zerfallen. */
@media (max-width: 520px) {
  .siegel-reihe {
    display: grid; grid-template-columns: repeat(2, auto);
    justify-content: center; justify-items: center; align-items: center;
    gap: 24px 30px;
  }
  .siegel-trenner { display: none; }
  .siegel-dtv     { height: 88px; }
  .siegel-sterne  { height: 22px; }
  .siegel-allgaeu { height: 76px; }
  .siegel-wappen  { height: 88px; }
}

/* ---------- Logo-Streifen ueber dem Fussbereich (kleiner) ---------- */
.logo-streifen { padding: 44px 0 52px; border-top: 1px solid rgba(34, 48, 31, .10); }
.logo-reihe {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 24px 46px;
}
.logo-item { display: block; width: auto; opacity: .88; transition: opacity .3s; }
.logo-item:hover { opacity: 1; }
.logo-dtv-siegel { height: 62px; }
.logo-dtv-klass  { height: 64px; }
.logo-allgaeu    { height: 48px; border-radius: 5px; }
.logo-wappen     { height: 58px; }

/* Haelt Massangaben wie "1,80 × 2,00 m" in einer Zeile zusammen */
.nowrap { white-space: nowrap; }

/* Info-Box (freundlicher Hinweis) */
.info-box {
  margin-top: 24px; padding: 14px 18px; border-radius: 10px;
  background: #fdf6ea; border: 1px solid rgba(168, 121, 74, .35);
  font-size: .95rem; color: var(--ink-soft);
}
/* Verbot statt freundlicher Hinweis – gehoert zur Hausordnung, deshalb
   deutlicher abgesetzt als die uebrigen Hinweise. */
.info-box.verbot {
  background: #fbeeea; border-color: rgba(184, 67, 44, .40); color: #6d2416;
}

.sub-head { margin-top: 26px; margin-bottom: 12px; font-size: 1.1rem; }

/* Für Familien */
.grid-flip { grid-template-columns: 1fr minmax(280px, 420px); }
@media (max-width: 860px) { .grid-flip { grid-template-columns: 1fr; } .grid-flip .host-photo { order: -1; } }
.familien { background: var(--paper-deep); }

/* Region */
.region-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; }
@media (max-width: 760px) { .region-cols { grid-template-columns: 1fr; gap: 16px; } }
/* Vier Bilder: Sommer und Winter im Wechsel */
.region-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 50px; }
@media (max-width: 1000px) { .region-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .region-strip { grid-template-columns: 1fr; } }
.region-strip img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); }

/* Bewertungen */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; max-width: 520px; } }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid rgba(168, 121, 74, .2);
  box-shadow: 0 8px 30px -18px rgba(34, 48, 31, .3);
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: #d99a27; letter-spacing: 3px; font-size: 1.05rem; }
.review-card blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.5; }
.review-card figcaption { font-size: .88rem; font-weight: 700; }
.review-card figcaption span { font-weight: 400; color: var(--ink-soft); }
.review-more {
  margin-top: 34px; text-align: center; display: grid; justify-items: center; gap: 16px;
}

/* Preise & Buchung */
.usp-strip {
  display: flex; flex-wrap: wrap; gap: 12px 34px; margin: 26px 0 40px;
  font-weight: 700; color: var(--pine);
}
.preis-hinweis {
  background: var(--white); border-radius: var(--radius); padding: 30px 34px;
  border: 1px solid rgba(168, 121, 74, .25); margin-bottom: 38px;
  box-shadow: 0 14px 40px -24px rgba(34, 48, 31, .35);
}
.preis-hinweis h3 { margin-bottom: 8px; }
.preis-hinweis p { color: var(--ink-soft); margin-bottom: 14px; }
.preis-hinweis .preis-ab {
  color: var(--pine); font-family: var(--font-display); font-size: 1.55rem;
}
.preis-hinweis .preis-ab strong { font-size: 2.4rem; font-weight: 600; }
.preis-hinweis .preis-ab span { font-family: var(--font-body); font-size: .95rem; }
.preis-fakten {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0;
}
.preis-fakten div {
  display: grid; gap: 5px; background: var(--paper-deep); border-radius: 10px; padding: 18px;
}
.preis-fakten strong { color: var(--pine); font-family: var(--font-display); font-size: 1.45rem; }
.preis-fakten span { color: var(--ink-soft); font-size: .9rem; }
@media (max-width: 700px) { .preis-fakten { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .rechner-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .rechner-grid { grid-template-columns: 1fr; } }
.rechner label { display: grid; gap: 6px; font-weight: 700; font-size: .88rem; }
.rechner input, .rechner select {
  font: inherit; font-weight: 400; padding: 12px 14px;
  border: 1px solid rgba(34, 48, 31, .25); border-radius: 9px;
  background: var(--paper); color: var(--ink); width: 100%;
}
.rechner-ergebnis { margin-top: 26px; border-top: 1px dashed rgba(168, 121, 74, .4); padding-top: 22px; }
.rechner-zeilen { display: grid; gap: 6px; margin-bottom: 12px; font-size: .97rem; }
.rechner-zeilen .zeile { display: flex; justify-content: space-between; gap: 20px; }
.rechner-summe { font-size: 1.3rem; font-family: var(--font-display); margin-bottom: 6px; }
.rechner-hinweis { font-size: .85rem; color: var(--ink-soft); margin-bottom: 18px; }
/* ---------- Verfuegbarkeit fuer einen Zeitraum pruefen ---------- */
@media (max-width: 640px) { .vf-grid { grid-template-columns: 1fr; } }
.btn-outline { background: transparent; color: var(--geranium); border: 1px solid var(--geranium); }
.btn-outline:hover { background: var(--geranium); color: var(--white); }
/* Der geprüfte Zeitraum wird im Kalender umrandet */
.cal-day.gewaehlt { outline: 2px solid var(--wood); outline-offset: -2px; font-weight: 700; }

.belegung-block h3 { margin-bottom: 8px; }

/* ---------- Stornobedingungen ----------
   Auf Wunsch von Hubert absichtlich leise: zugeklappt, kleine Schrift,
   graue Farbe, kein Rahmen und kein Farbakzent. */
.storno {
  margin-top: 46px; padding-top: 18px;
  border-top: 1px solid rgba(34, 48, 31, .12);
}
.storno summary {
  cursor: pointer; font-size: .9rem; color: var(--ink-soft);
  display: inline-flex; align-items: baseline; gap: 8px;
  list-style: none;
}
.storno summary::-webkit-details-marker { display: none; }
.storno summary::before { content: "+"; font-weight: 700; opacity: .6; }
.storno[open] summary::before { content: "–"; }
.storno summary:hover { color: var(--ink); }
.storno-inhalt { margin-top: 14px; font-size: .88rem; color: var(--ink-soft); max-width: 720px; }
.storno-inhalt p { margin-bottom: 8px; }
.storno-inhalt ul { margin: 10px 0 10px 20px; display: grid; gap: 5px; }
.storno-tipp { font-style: italic; }
@media (max-width: 700px) {
}

/* Anreise */
/* Berg- und Badeseen – abgesetzt, damit er sich vom Region-Abschnitt
   darueber unterscheidet (beide haetten sonst denselben Hintergrund). */
.seen { background: var(--paper-deep); }

.anreise { background: var(--paper-deep); }
.anreise-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; margin-top: 30px; }
@media (max-width: 800px) { .anreise-grid { grid-template-columns: 1fr; } }
.anreise-text p { margin-bottom: 1em; }
.anreise-card {
  background: var(--pine); color: var(--paper);
  border-radius: var(--radius); padding: 34px 36px; box-shadow: var(--shadow);
}
.anreise-card h3 { color: var(--paper); margin-bottom: 12px; }
.anreise-card p { margin-bottom: 14px; }
.anreise-hoehe { color: #f3d9a4; font-style: italic; font-family: var(--font-display); }

/* Highlights */
.highlights { background: var(--pine); color: var(--paper); padding: 70px 0; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
@media (max-width: 860px) { .highlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .highlight-grid { grid-template-columns: 1fr; } }
.highlight { text-align: center; }
.highlight svg { width: 44px; height: 44px; margin: 0 auto 14px; color: #f3d9a4; }
.highlight h3 { color: var(--paper); font-size: 1.15rem; margin-bottom: 6px; }
.highlight p { color: rgba(246, 241, 231, .75); font-size: .95rem; }

/* Wohnungen */
.fw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
@media (max-width: 860px) { .fw-grid { grid-template-columns: 1fr; } }
.fw-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 30px -14px rgba(34, 48, 31, .25);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fw-media { aspect-ratio: 3 / 2; overflow: hidden; }
.fw-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.fw-card:hover .fw-media img { transform: scale(1.05); }
.fw-body { padding: 24px 26px 28px; }
.fw-body h3 { margin-bottom: 8px; }
.fw-body p { color: var(--ink-soft); font-size: .97rem; }

.grundriss {
  max-width: 240px; margin: 46px auto 0; text-align: center;
}
.grundriss a {
  display: block; background: var(--white); padding: 9px; border-radius: 10px;
  border: 1px solid rgba(168, 121, 74, .25); box-shadow: 0 12px 34px -22px rgba(34, 48, 31, .4);
  cursor: zoom-in;
}
.grundriss img { width: 100%; height: auto; display: block; border-radius: 8px; }
.grundriss figcaption { margin-top: 12px; color: var(--ink-soft); font-size: .9rem; }

.ausstattung {
  margin-top: 56px; background: var(--paper-deep);
  border-radius: var(--radius); padding: 40px 44px;
  border: 1px solid rgba(168, 121, 74, .25);
}
.ausstattung h3 { margin-bottom: 20px; }
.check-list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px;
}
@media (max-width: 700px) { .check-list { grid-template-columns: 1fr; } }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  background: var(--pine);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 4%, 40% 70%);
}
.check-list li.verbot { color: #8b2718; }
.check-list li.verbot::before {
  content: "!"; clip-path: none; border-radius: 50%; background: #b8432c;
  color: #fff; font-weight: 700; font-size: 12px; line-height: 16px; text-align: center;
}

/* Galerie */
.galerie .wrap { margin-bottom: 40px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; grid-auto-flow: dense; gap: 14px;
}
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }
.g-item { border-radius: 10px; overflow: hidden; position: relative; }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease), filter .4s;
}
.g-item:hover img { transform: scale(1.06); filter: brightness(1.06); }
.g-item::after {
  content: "+"; position: absolute; right: 12px; bottom: 8px;
  color: var(--white); font-size: 1.5rem; font-weight: 300; opacity: 0;
  transition: opacity .3s; text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.g-item:hover::after { opacity: 1; }

/* Preise */
.preise { background: var(--paper-deep); }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
@media (max-width: 860px) { .price-cards { grid-template-columns: 1fr; max-width: 440px; } }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 32px;
  border: 1px solid rgba(168, 121, 74, .2);
}
.price-card.featured {
  background: var(--pine); color: var(--paper);
  box-shadow: var(--shadow); transform: translateY(-8px);
}
.price-card.featured h3 { color: var(--paper); }
.price-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .14em; font-family: var(--font-body); font-weight: 700; margin-bottom: 14px; }
.price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; margin-bottom: 18px; }
.price span { font-size: 1rem; font-family: var(--font-body); color: inherit; opacity: .65; }
.price-incl { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; margin-bottom: 18px; color: var(--wood); }
.price-card ul { list-style: none; display: grid; gap: 8px; font-size: .96rem; }
.price-card li { padding-left: 24px; position: relative; }
.price-card li::before { content: "–"; position: absolute; left: 0; color: var(--geranium); }
.price-card.featured li::before { color: #f3d9a4; }
.price-note { margin-top: 28px; font-size: .92rem; color: var(--ink-soft); }

/* Belegung */
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px 26px; margin: 18px 0 10px; font-size: .92rem; }
.dot { display: inline-block; width: 14px; height: 14px; border-radius: 4px; margin-right: 7px; vertical-align: -2px; }
.dot.free { background: #e3ecd9; border: 1px solid #b6cba2; }
.dot.booked { background: var(--geranium); }
.dot.wechsel { background: linear-gradient(135deg, #e3ecd9 50%, var(--geranium) 50%); border: 1px solid #b6cba2; }
.dot.locked { background: repeating-linear-gradient(135deg, #f0cdc6 0 4px, #e3b9b1 4px 8px); border: 1px solid #d8a99f; }
.dot.past { background: #e4ddd0; }
.cal-controls { display: flex; align-items: center; gap: 18px; margin: 22px 0; flex-wrap: wrap; }
.cal-controls > span#calRange { font-family: var(--font-display); font-size: 1.15rem; min-width: 210px; text-align: center; }
.cal-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(34,48,31,.25);
  background: var(--white); font-size: 1.4rem; cursor: pointer; color: var(--ink);
  transition: background .2s, transform .2s;
}
.cal-btn:hover { background: var(--pine); color: var(--paper); transform: scale(1.05); }
.calendar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .calendar-grid { grid-template-columns: 1fr; max-width: 420px; } }
.cal-month { background: var(--white); border-radius: var(--radius); padding: 22px 20px; border: 1px solid rgba(168,121,74,.18); }
.cal-month h4 { font-family: var(--font-display); font-weight: 600; text-align: center; margin-bottom: 14px; }
.cal-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.cal-table th { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); padding-bottom: 8px; font-weight: 700; }
.cal-table td { text-align: center; padding: 2px; }

/* Anfrage */
.anfrage { background: var(--pine-deep); color: var(--paper); }
.anfrage .kicker { color: #f3d9a4; }
.anfrage .kicker::before { background: #f3d9a4; }
.anfrage h2, .anfrage h2 em { color: var(--paper); }
.anfrage .lead { color: rgba(246, 241, 231, .8); }
.grid-anfrage { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
@media (max-width: 900px) { .grid-anfrage { grid-template-columns: 1fr; gap: 44px; } }
.kontakt-block { margin-top: 34px; display: grid; gap: 16px; }
.kontakt-block a { color: #f3d9a4; }
.anfrage-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 38px 36px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .5);
  display: grid; gap: 18px;
}
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row.two { grid-template-columns: 1fr; } }
.anfrage-form label { display: grid; gap: 6px; font-weight: 700; font-size: .88rem; }
.anfrage-form .optional { font-weight: 400; color: var(--ink-soft); }
.anfrage-form input, .anfrage-form select, .anfrage-form textarea {
  font: inherit; font-weight: 400; padding: 12px 14px;
  border: 1px solid rgba(34, 48, 31, .25); border-radius: 9px;
  background: var(--paper); color: var(--ink); width: 100%;
}
.anfrage-form input:focus, .anfrage-form select:focus, .anfrage-form textarea:focus {
  outline: 2px solid var(--pine); outline-offset: 1px; background: var(--white);
}
.hp { position: absolute; left: -9999px; top: -9999px; }
.consent { display: flex !important; flex-direction: row; gap: 12px; font-weight: 400 !important; font-size: .85rem !important; color: var(--ink-soft); align-items: start; }
.consent input { width: auto; margin-top: 4px; }
.form-status { font-size: .92rem; min-height: 1.4em; font-weight: 700; }
.form-status.ok { color: var(--pine); }
.form-status.error { color: var(--geranium); }

/* Footer */
.site-footer { background: #1a2a17; color: rgba(246, 241, 231, .8); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--paper); margin-bottom: 10px; }
.footer-brand em { color: #f3d9a4; }
.footer-head { font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--paper); margin-bottom: 10px; }
.site-footer a { color: rgba(246, 241, 231, .85); }
.site-footer a:hover { color: #f3d9a4; }
.footer-note { text-align: center; margin-top: 50px; font-size: .85rem; color: rgba(246, 241, 231, .45); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 22, 13, .94);
  display: grid; place-items: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 1400px); max-height: 88vh; border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: 0; color: var(--paper);
  font-size: 2.6rem; cursor: pointer; opacity: .8; transition: opacity .2s, transform .2s;
  padding: 10px 18px; line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; transform: scale(1.1); }
.lb-close { top: 18px; right: 22px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.15); }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* Slideshow wechselt dann ohne Überblendung und ohne Automatik */
  .slide { transition: none; }
}


/* ===== Zusammengeführter Buchungsablauf (Kalender + Preis + Anfrage) ===== */
/* Buchen-Box: Kalender + Preis + Anfrage in einem Ablauf */
.buchen-box {
  background: var(--white); border-radius: var(--radius); padding: 34px 36px;
  border: 1px solid rgba(168, 121, 74, .25);
  box-shadow: 0 14px 40px -24px rgba(34, 48, 31, .35);
}
/* Auf dem Handy Rand sparen, damit die Tage groß genug zum Antippen bleiben */
@media (max-width: 560px) {
  .buchen-box { padding: 22px 12px; }
  .cal-month { padding: 18px 10px; }
  .auswahl-preis { padding: 18px 14px; }
  .auswahl-personen { width: 100%; }
  .auswahl-personen label { flex: 1; }
  .auswahl-personen select { width: 100%; min-width: 0; }
}
.buchen-kopf { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.buchen-kopf h3 { margin-bottom: 6px; }
.buchen-anleitung { color: var(--ink-soft); font-size: .97rem; }
.buchen-fuss { margin-top: 22px; font-size: .84rem; color: var(--ink-soft); }
.zeile-extra { padding-top: 6px; border-top: 1px dotted rgba(168,121,74,.5); color: var(--ink-soft); }

/* Auswahl-Panel */
.auswahl { margin-top: 26px; border-top: 1px dashed rgba(168, 121, 74, .45); padding-top: 22px; }
.auswahl-leer { color: var(--ink-soft); font-size: .97rem; }
.auswahl-kopf {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 20px;
}
.auswahl-zeitraum { display: grid; gap: 3px; }
.az-label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--geranium); }
.auswahl-zeitraum strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; }
.az-reset {
  justify-self: start; background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; font-size: .85rem; color: var(--ink-soft); text-decoration: underline;
}
.az-reset:hover { color: var(--geranium); }
.auswahl-personen { display: flex; gap: 14px; }
.auswahl-personen label { display: grid; gap: 6px; font-weight: 700; font-size: .85rem; }
.auswahl-personen select {
  font: inherit; font-weight: 400; padding: 10px 12px; min-width: 92px;
  border: 1px solid rgba(34, 48, 31, .25); border-radius: 9px;
  background: var(--paper); color: var(--ink);
}
.auswahl-preis { background: var(--paper); border-radius: 12px; padding: 22px 24px; }
.rechner-zeilen { display: grid; gap: 6px; margin-bottom: 12px; font-size: .97rem; }
.rechner-zeilen .zeile { display: flex; justify-content: space-between; gap: 20px; }
.rechner-summe { font-size: 1.35rem; font-family: var(--font-display); margin-bottom: 6px; }
.rechner-hinweis { font-size: .85rem; color: var(--ink-soft); margin-bottom: 18px; }

/* Zusammenfassung im Anfrageformular */
.form-zusammenfassung {
  display: grid; gap: 3px; padding: 16px 18px; border-radius: 11px;
  background: #eef3e8; border: 1px solid rgba(47, 74, 51, .2);
}
.fz-titel { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pine); }
.form-zusammenfassung strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; }
.form-zusammenfassung span#fzDetails { font-size: .9rem; color: var(--ink-soft); }
.fz-aendern { justify-self: start; font-size: .82rem; margin-top: 2px; }


.cal-day {
  display: grid; place-items: center; aspect-ratio: 1; border-radius: 8px;
  font-size: .86rem; background: #e3ecd9; color: var(--ink);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
  width: 100%; border: 0; font-family: inherit; padding: 0;
}
button.cal-day { cursor: pointer; }
button.cal-day:hover { transform: scale(1.12); z-index: 2; position: relative; box-shadow: 0 4px 12px -4px rgba(34,48,31,.4); }
button.cal-day:focus-visible { outline: 2px solid var(--pine); outline-offset: 2px; z-index: 3; }
button.cal-day.belegt, button.cal-day.gesperrt { cursor: not-allowed; }

.cal-day.belegt { background: var(--geranium); color: var(--white); }
/* Wechseltage: Eck-Dreieck statt Halbierung – die Ziffer bleibt immer lesbar */
.cal-day.anreise, .cal-day.abreise {
  background: #e3ecd9; color: var(--ink);
  position: relative; overflow: hidden;
}
.cal-day.anreise::after, .cal-day.abreise::after {
  content: ""; position: absolute; width: 0; height: 0; pointer-events: none;
}
/* Anreise: ab nachmittags belegt → Dreieck unten rechts */
.cal-day.anreise::after {
  right: 0; bottom: 0;
  border-left: 20px solid transparent;
  border-bottom: 20px solid var(--geranium);
}
/* Abreise: vormittags noch belegt → Dreieck oben links */
.cal-day.abreise::after {
  left: 0; top: 0;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--geranium);
}
.cal-day.anreise > span, .cal-day.abreise > span { position: relative; z-index: 1; }
.cal-day.gesperrt {
  background: repeating-linear-gradient(135deg, #f0cdc6 0 5px, #e3b9b1 5px 10px);
  color: #8d4535;
}

.cal-day.past { background: #eeeae0; color: #b4ac9d; }
.cal-day.today { outline: 2px solid var(--pine); outline-offset: -2px; font-weight: 700; }

/* ---- Zeitraum-Auswahl (muss nach den Status-Farben stehen, um sie zu überschreiben) ---- */
.cal-day.sel-range {
  background: #a5c48a; color: var(--pine-deep); font-weight: 700;
}
.cal-day.sel-start, .cal-day.sel-end {
  background: var(--pine); color: var(--paper);
  font-weight: 700; box-shadow: 0 3px 12px -3px rgba(47, 74, 51, .65);
}
.cal-day.sel-start > span, .cal-day.sel-end > span { color: var(--paper); }
.cal-day.sel-range > span { color: var(--pine-deep); }
/* Wechseltage: an den Rändern der Auswahl kein Dreieck mehr zeigen */
.cal-day.sel-start::after, .cal-day.sel-end::after { display: none; }

