/* =========================================================================
   Birkenhütte Sebnitz — Design-System „Handwerklich & Warm"
   Zilla Slab (Überschriften) · Karla (Text) · Terrakotta-Akzent
   ========================================================================= */

:root {
  --bg:        #F4ECE1;   /* warmes Creme (Grund) */
  --bg-panel:  #EBDFCE;   /* leicht tiefere Fläche */
  --card:      #FBF6EE;   /* Kartenfläche, warmes Off-White */
  --ink:       #3A2E27;   /* Text (Ink-Braun) */
  --ink-soft:  #6A594D;   /* gedämpfter Text (>= 4.5:1 auf Creme) */
  --accent:    #B5502E;   /* Terrakotta (Flächen/CTA) */
  --accent-deep:#8C3A1E;  /* Terrakotta dunkel (Text/Links/Hover) */
  --forest:    #3C5140;   /* gedämpftes Waldgrün (Zweitakzent) */
  --line:      rgba(58, 46, 39, .16);
  --line-strong: rgba(58, 46, 39, .28);
  --shadow:    0 1px 2px rgba(58,46,39,.06);

  --radius: 10px;
  --radius-sm: 7px;
  --maxw: 1200px;
  --gap: clamp(1.25rem, 4vw, 2.75rem);

  --ff-head: 'Zilla Slab', Georgia, 'Times New Roman', serif;
  --ff-body: 'Karla', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --fs-scale: 1;   /* wird vom Barrierefreiheits-Menü überschrieben */

  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.20vw, 1.12rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.30rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.80rem, 1.55rem + 1.25vw, 2.75rem);
  --step-4:  clamp(2.15rem, 1.70rem + 2.25vw, 3.75rem);
}

/* Kontrast-Modus (Barrierefreiheits-Menü) */
:root[data-contrast="high"] {
  --bg:        #FBF7F0;
  --bg-panel:  #F1E7D8;
  --card:      #FFFFFF;
  --ink:       #241a14;
  --ink-soft:  #4a382d;
  --accent-deep:#7a2f14;
  --line:      rgba(36, 26, 20, .4);
  --line-strong: rgba(36, 26, 20, .6);
}

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

html {
  font-size: calc(100% * var(--fs-scale));
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background-color: var(--bg);
  /* dezente Papier-/Korn-Textur per SVG-Filter (kein externes Bild) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: normal;
}

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

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: .002em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { margin: 0 0 1rem; }

a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent); }

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(2.25rem, 4.5vw, 4rem); }
.section--tight { padding-block: clamp(1.6rem, 3vw, 2.5rem); }
.section--panel { background: var(--bg-panel); }
.section--forest { background: var(--forest); color: #F4ECE1; }
.section--forest h2, .section--forest h3 { color: #FBF6EE; }
.section--forest p { color: #ECE3D6; }

.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--accent-deep);
  margin: 0 0 .6rem;
}
.section--forest .eyebrow { color: #E7B79E; }

.lead { font-size: var(--step-1); color: var(--ink-soft); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 700; font-size: var(--step-0);
  line-height: 1; text-decoration: none;
  padding: .85rem 1.4rem; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  min-height: 44px; transition: background-color .25s ease, transform .25s ease, color .25s ease;
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--onforest { background: #F4ECE1; color: var(--forest); }
.btn--onforest:hover { background: #fff; color: var(--forest); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* Skip-Link -------------------------------------------------------------- */
.skip-link {
  position: absolute; left: .75rem; top: -3.5rem;
  background: var(--accent-deep); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--radius-sm); z-index: 1200; transition: top .18s ease;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: .75rem; color: #fff; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; }
.brand picture, .brand img { display: block; }
.brand img { height: 84px; width: auto; }
.brand span { line-height: 1.05; }
.brand small { display: block; font-family: var(--ff-body); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a:not(.btn) { text-decoration: none; color: var(--ink); font-weight: 500; padding: .55rem .7rem; border-radius: var(--radius-sm); font-size: .98rem; }
.nav a:not(.btn):hover { background: var(--bg-panel); color: var(--ink); }
.nav a[aria-current="page"]:not(.btn) { color: var(--accent-deep); font-weight: 700; }
.nav a.btn--primary, .nav a.btn--primary:hover { color: #fff; }
.header-cta { margin-left: .4rem; }

.nav-toggle {
  display: none; background: transparent; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: .5rem; cursor: pointer; color: var(--ink);
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .brand img { height: 60px; }
  .nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: .15rem; background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .8rem clamp(1rem,4vw,2.5rem) 1.4rem; box-shadow: 0 12px 24px rgba(58,46,39,.12);
    transform: translateY(-130%); transition: transform .28s ease; max-height: calc(100dvh - 68px); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a:not(.btn) { padding: .8rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn):last-of-type { border-bottom: 0; }
  .header-cta { margin: .6rem 0 0; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .nav { transition: none; } }

/* Hero (fotogeführt, Headline im Farbblock) ------------------------------ */
.hero { position: relative; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: clamp(340px, 62vh, 640px); object-fit: cover; }
.hero__block {
  background: var(--accent); color: #fff;
  padding: clamp(1.4rem, 3.5vw, 2.4rem) clamp(1.4rem, 4vw, 2.6rem);
  border-radius: var(--radius);
  max-width: 40rem; box-shadow: 0 18px 40px rgba(58,46,39,.28);
}
.hero__block .eyebrow { color: #F4D9CB; }
.hero__block h1 { color: #fff; }
.hero__block p { color: #FBEFE7; margin-bottom: 1.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Desktop: Foto vollflächig, Farbblock überlappt unten links */
@media (min-width: 780px) {
  .hero__media img { height: clamp(460px, 74vh, 720px); }
  .hero__block { position: absolute; left: clamp(1rem, 4vw, 3rem); bottom: clamp(-2.5rem, -3vw, -3rem); }
}
@media (max-width: 779px) {
  .hero__block { margin: -2.2rem 1rem 0; position: relative; z-index: 2; }
}
.hero + * { --hero-pad: 3.5rem; }
@media (min-width: 780px) { .hero + .section { padding-top: clamp(3.25rem, 5vw, 4.75rem); } }

/* Fotobehandlung: warm getönt */
.warm { filter: saturate(1.03) contrast(1.02) sepia(.06); }

/* Grid-Helper ------------------------------------------------------------ */
.grid { display: grid; gap: var(--gap); }
.split { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.05fr 1fr; }
  .split--wide-text { grid-template-columns: 1.2fr .9fr; }
  .split--reverse .split__media { order: 2; }
}
.section-head { margin-bottom: clamp(1.15rem, 2.5vw, 1.85rem); }
@media (min-width: 900px) {
  .section-head--row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: end; max-width: none; }
  .section-head--row .section-head__lead { margin-bottom: .35rem; }
}

/* Foto-Rahmen (Polaroid-artig, dezent) */
.framed { background: var(--card); padding: .7rem .7rem 1.1rem; border-radius: var(--radius); box-shadow: 0 10px 26px rgba(58,46,39,.14); border: 1px solid var(--line); }
.framed img { border-radius: var(--radius-sm); }
.framed figcaption { font-size: var(--step--1); color: var(--ink-soft); padding: .5rem .2rem 0; }
.media-tilt { transform: rotate(-1.1deg); }
@media (prefers-reduced-motion: reduce) { .media-tilt { transform: none; } }

/* USP-Leiste ------------------------------------------------------------- */
.usp { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.usp__item { background: var(--card); padding: 1.3rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.usp__item svg { width: 30px; height: 30px; color: var(--accent-deep); stroke-width: 1.6; }
.usp__item strong { font-family: var(--ff-head); font-weight: 600; font-size: 1.08rem; }
.usp__item span { color: var(--ink-soft); font-size: var(--step--1); }
/* Mobil: eine Spalte, Icon links – vermeidet die einzelne Waise im 2er-Raster */
@media (max-width: 560px) {
  .usp { grid-template-columns: 1fr; }
  .usp__item { display: grid; grid-template-columns: auto 1fr; column-gap: .9rem; row-gap: .15rem; align-items: start; padding: 1.05rem 1.15rem; }
  .usp__item svg { grid-row: 1 / span 2; margin-top: .1rem; }
}

/* Karten (Wohnungen, Ausflugsziele) ------------------------------------- */
.cards { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 760px) { .cards--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 820px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.card__media { aspect-ratio: 3 / 2; background: var(--bg-panel); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card__body h3 { margin: 0; }
.card__tag { align-self: flex-start; font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-deep); }
.card__foot { margin-top: auto; padding-top: .4rem; }
.placeholder-note { background: repeating-linear-gradient(45deg, var(--bg-panel), var(--bg-panel) 10px, #e4d6c2 10px, #e4d6c2 20px); border: 1px dashed var(--line-strong); border-radius: var(--radius-sm); padding: 1rem 1.1rem; color: var(--ink-soft); font-size: var(--step--1); }

/* Bild-Slider in Wohnungs-Karten (Swipe + Pfeile + Punkte) */
.card-gallery { position: relative; }
.cg__track { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.cg__track::-webkit-scrollbar { display: none; }
.cg__slide { flex: 0 0 100%; height: 100%; scroll-snap-align: center; }
.cg__slide picture, .cg__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cg__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,.86); color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(58,46,39,.28); transition: background .15s ease; }
.cg__nav:hover { background: #fff; }
.cg__nav svg { width: 20px; height: 20px; }
.cg__prev { left: .55rem; }
.cg__next { right: .55rem; }
.cg__dots { position: absolute; left: 0; right: 0; bottom: .6rem; display: flex; justify-content: center; gap: .4rem; pointer-events: none; }
.cg__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); border: none; padding: 0; cursor: pointer; pointer-events: auto; box-shadow: 0 0 0 1px rgba(58,46,39,.25); }
.cg__dot[aria-current="true"] { background: #fff; }
@media (prefers-reduced-motion: reduce) { .cg__track { scroll-behavior: auto; } }
.card-gallery .cg__slide img { cursor: zoom-in; }

/* Lightbox – Bilder im Ganzen ansehen */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(30,22,18,.93); display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox__fig { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.lightbox__fig img { max-width: min(92vw, 1400px); max-height: 82vh; width: auto; height: auto; border-radius: var(--radius-sm); box-shadow: 0 12px 44px rgba(0,0,0,.55); background: #241a15; }
.lightbox__fig figcaption { color: #F4ECE1; font-size: var(--step--1); text-align: center; max-width: 60ch; }
.lightbox__close, .lightbox__nav { position: absolute; border: none; background: rgba(255,255,255,.9); color: var(--ink); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,.35); transition: background .15s ease; }
.lightbox__close:hover, .lightbox__nav:hover { background: #fff; }
.lightbox__close { top: clamp(.7rem, 2vw, 1.3rem); right: clamp(.7rem, 2vw, 1.3rem); width: 44px; height: 44px; }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 46px; height: 46px; }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__prev { left: clamp(.6rem, 2.5vw, 1.6rem); }
.lightbox__next { right: clamp(.6rem, 2.5vw, 1.6rem); }
.lightbox__counter { position: absolute; bottom: clamp(.8rem, 2.5vw, 1.4rem); left: 0; right: 0; text-align: center; color: #E6DAcd; font-size: var(--step--1); }
@media (max-width: 560px) { .lightbox__nav { width: 40px; height: 40px; } .lightbox__fig img { max-height: 74vh; } }

/* Preis-Darstellung ------------------------------------------------------ */
.price-head { display: flex; align-items: baseline; gap: .35rem; margin: .2rem 0 .6rem; font-family: var(--ff-head); }
.price-head .from { font-size: .95rem; color: var(--ink-soft); font-family: var(--ff-body); }
.price-head strong { font-size: 2.1rem; line-height: 1; color: var(--accent-deep); font-weight: 700; }
.price-head .per { font-size: .95rem; color: var(--ink-soft); font-family: var(--ff-body); }
.price-details { border-top: 1px solid var(--line); margin-top: .3rem; }
.price-details summary { cursor: pointer; padding: .7rem 0 .3rem; font-weight: 700; font-size: var(--step--1); color: var(--accent-deep); list-style: none; display: flex; align-items: center; gap: .4rem; }
.price-details summary::-webkit-details-marker { display: none; }
.price-details summary::after { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
.price-details[open] summary::after { transform: rotate(-135deg); }
.price-details dl { margin: .3rem 0 .2rem; display: grid; gap: .3rem; }
.price-details dl > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; color: var(--ink-soft); border-bottom: 1px dotted var(--line); padding-bottom: .3rem; }
.price-details dt { margin: 0; }
.price-details dd { margin: 0; font-weight: 700; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .price-details summary::after { transition: none; } }
.card__media--empty { display: flex; align-items: center; justify-content: center; text-align: center; color: var(--ink-soft); font-size: var(--step--1); padding: 1rem; }

/* Ausstattungs-Liste ----------------------------------------------------- */
.amenities { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 680px) { .amenities { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .amenities { grid-template-columns: repeat(3, 1fr); } }
.amenity-group h3 { display: flex; align-items: center; gap: .55rem; font-size: 1.12rem; border-bottom: 2px solid var(--line); padding-bottom: .5rem; margin-bottom: .8rem; }
.amenity-group h3 svg { width: 22px; height: 22px; color: var(--accent-deep); flex: none; }
.amenity-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.amenity-group li { position: relative; padding-left: 1.4rem; color: var(--ink-soft); font-size: .98rem; }
.amenity-group li::before { content: ""; position: absolute; left: 0; top: .55em; width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent); }
.wohnvergleich { align-items: stretch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
@media (min-width: 860px) { .wohnvergleich { grid-template-columns: 1fr 1fr; } }
.wohnvergleich .factbox { display: flex; flex-direction: column; }
.wohnvergleich .factbox h3 { font-size: 1.16rem; border-bottom: 2px solid var(--line); padding-bottom: .5rem; margin-bottom: .8rem; }

/* Faktenblock / Info-Boxen ---------------------------------------------- */
.factbox { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.factbox h3 { margin-top: 0; }
.rules { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.rules li { display: flex; gap: .7rem; align-items: flex-start; }
.rules svg { width: 22px; height: 22px; color: var(--accent-deep); flex: none; margin-top: .15rem; }

/* Bewertungen ------------------------------------------------------------ */
.ratings { display: grid; gap: 1.5rem; }
.rating-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.rating-badge { flex: 1 1 220px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .9rem; box-shadow: var(--shadow); }
.rating-badge .score { font-family: var(--ff-head); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--accent-deep); white-space: nowrap; flex: none; }
.rating-badge .score--icon { display: inline-flex; align-items: center; color: var(--accent); }
.rating-badge .meta strong { color: var(--ink); font-weight: 700; }
.rating-badge .meta { font-size: var(--step--1); color: var(--ink-soft); }
.rating-badge .stars { color: var(--accent); letter-spacing: .1em; }
/* Bewertungs-Slider: horizontal wischen (nativer Scroll + Scroll-Snap) */
.quotes { display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: 1rem; scroll-padding-inline: 2px;
  scrollbar-color: var(--accent) var(--bg-panel); }
.quotes::-webkit-scrollbar { height: 8px; }
.quotes::-webkit-scrollbar-track { background: var(--bg-panel); border-radius: 100px; }
.quotes::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--accent) 55%, transparent); border-radius: 100px; }
.quotes:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 4px; border-radius: var(--radius); }
.quote { flex: 0 0 80%; scroll-snap-align: start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow); }
@media (min-width: 620px)  { .quote { flex-basis: 46%; } }
@media (min-width: 920px)  { .quote { flex-basis: 31.5%; } }

/* Wisch-Hinweis (nur wo der Slider tatsächlich scrollt = schmale Screens) */
.swipe-hint { display: none; }
@media (max-width: 619px) {
  .swipe-hint { display: flex; align-items: center; justify-content: center; gap: .4rem;
    margin: .2rem 0 0; color: var(--accent-deep); font-weight: 600; font-size: var(--step--1); }
  .swipe-hint svg { animation: swipeNudge 1.6s ease-in-out infinite; }
}
@keyframes swipeNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@media (prefers-reduced-motion: reduce) { .swipe-hint svg { animation: none; } }
:root[data-motion="reduce"] .swipe-hint svg { animation: none; }
.quote blockquote { margin: 0 0 .7rem; font-size: 1.05rem; }
.quote figcaption { font-size: var(--step--1); color: var(--ink-soft); font-weight: 700; }
.quote .stars { color: var(--accent); letter-spacing: .12em; margin-bottom: .5rem; }

/* Galerie ---------------------------------------------------------------- */
.gallery { columns: 3 260px; column-gap: 1rem; }
.gallery figure { break-inside: avoid; margin: 0 0 1rem; }
.gallery--placeholder { columns: auto; margin-top: 1.5rem; }

/* Umgebung: Ausflugsziel-Karten mit Medaillons --------------------------- */
.spots { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); }
.spot { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .6rem; }
.spot__head { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem 1rem; flex-wrap: wrap; }
.spot__head h3 { margin: 0; font-size: 1.12rem; }
.spot p { margin: 0; color: var(--ink-soft); }
.spot .distance { margin-top: 0; }

/* Impressionen-Galerie (lizenzfreie Umgebungsfotos) */
.impressionen { display: grid; gap: clamp(.7rem, 2vw, 1.1rem); grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.impressionen figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--bg-panel); }
.impressionen img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.bildnachweis { margin: 1.1rem 0 0; font-size: var(--step--1); color: var(--ink-soft); }
.bildnachweis a { color: inherit; }

/* Umgebung / Wege -------------------------------------------------------- */
.feature-list { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); }
.feature-row { display: grid; gap: 1rem; align-items: start; }
@media (min-width: 820px) { .feature-row { grid-template-columns: 220px 1fr; gap: 2rem; } }
.feature-row .num { font-family: var(--ff-head); font-weight: 700; color: var(--accent); font-size: 2.4rem; line-height: 1; }
.feature-row h3 { margin-bottom: .3rem; }
.distance { display: inline-block; margin-top: .4rem; font-size: var(--step--1); font-weight: 700; color: var(--forest); background: color-mix(in srgb, var(--forest) 12%, transparent); padding: .25rem .6rem; border-radius: 100px; }

/* FAQ -------------------------------------------------------------------- */
.faq { display: grid; gap: .7rem; max-width: 60rem; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 1.05rem 1.3rem; font-family: var(--ff-head); font-weight: 600; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 12px; height: 12px; border-right: 2.5px solid var(--accent-deep); border-bottom: 2.5px solid var(--accent-deep); transform: rotate(45deg); transition: transform .2s ease; flex: none; margin-top: -4px; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq .faq__a { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq .faq__a p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }

/* Kontakt / CTA-Band ----------------------------------------------------- */
.cta-band { text-align: left; }
.contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list svg { width: 24px; height: 24px; color: var(--accent-deep); flex: none; margin-top: .1rem; }
.contact-list a { color: var(--ink); }
.contact-list strong { display: block; font-family: var(--ff-head); }

/* Leaflet-Karte (2-Klick / DSGVO) --------------------------------------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map { width: 100%; height: clamp(280px, 42vh, 420px); background: var(--bg-panel); }
.map-consent { width: 100%; height: 100%; min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; text-align: center; padding: 1.5rem; background:
   linear-gradient(rgba(60,81,64,.72), rgba(60,81,64,.72)); color: #fff; }
.map-consent p { color: #fff; max-width: 34ch; margin: 0; }
.leaflet-container { font-family: var(--ff-body); }

/* Preise / Ablauf-Schritte ---------------------------------------------- */
.steps { display: grid; gap: 1.1rem; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.35rem; position: relative; }
.step::before { counter-increment: step; content: counter(step); font-family: var(--ff-head); font-weight: 700; color: #fff; background: var(--accent); width: 2.1rem; height: 2.1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: .7rem; }
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* Kalender --------------------------------------------------------------- */
.kal { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1rem,3vw,1.6rem); box-shadow: var(--shadow); }
.kal__tabs { display: flex; gap: .4rem; margin-bottom: 1rem; flex-wrap: wrap; }
.kal__tab { border: 1.5px solid var(--line-strong); background: transparent; border-radius: 100px; padding: .5rem 1rem; font-family: var(--ff-body); font-weight: 700; cursor: pointer; color: var(--ink); min-height: 40px; }
.kal__tab[aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.kal__nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.kal__nav button { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: var(--bg); cursor: pointer; font-size: 1.3rem; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.kal__nav button:disabled { opacity: .35; cursor: not-allowed; }
.kal__months { display: grid; gap: 1.5rem; }
@media (min-width: 680px) { .kal__months { grid-template-columns: 1fr 1fr; } }
.kal__month h3 { text-align: center; font-size: 1.05rem; margin-bottom: .6rem; text-transform: capitalize; }
.kal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.kal__dow { text-align: center; font-size: .72rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; padding-bottom: .3rem; }
.kal__day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1px solid transparent; background: var(--bg); font-size: .9rem; cursor: pointer; color: var(--ink); font-weight: 500; }
.kal__day:hover:not(:disabled) { border-color: var(--accent); }
.kal__day.is-empty { background: transparent; cursor: default; }
.kal__day.is-booked { background: repeating-linear-gradient(45deg, #e7d3ca, #e7d3ca 5px, #ddc3b8 5px, #ddc3b8 10px); color: #9a7a6d; cursor: not-allowed; text-decoration: line-through; }
.kal__day.is-past { color: #b9ab9d; cursor: not-allowed; }
.kal__day.is-start, .kal__day.is-end { background: var(--accent); color: #fff; border-color: var(--accent-deep); font-weight: 700; }
.kal__day.is-range { background: color-mix(in srgb, var(--accent) 22%, var(--card)); color: var(--ink); }
/* Wechseltage: nur halb belegt (Abreise bis 10 Uhr / Anreise ab 15 Uhr) */
.kal__day.is-turn { position: relative; }
.kal__day.is-turn-am { background: linear-gradient(to bottom right, #ddc3b8 0 49.5%, var(--bg) 50.5% 100%); }
.kal__day.is-turn-pm { background: linear-gradient(to bottom right, var(--bg) 0 49.5%, #ddc3b8 50.5% 100%); }
.kal__day.is-turn:hover:not(:disabled) { border-color: var(--accent); }
.kal__legend i.leg-turn { background: linear-gradient(to bottom right, #ddc3b8 0 50%, var(--bg) 50% 100%); }
.kal__legend { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; margin-top: 1rem; font-size: var(--step--1); color: var(--ink-soft); }
.kal__legend span { display: inline-flex; align-items: center; gap: .45rem; }
.kal__legend i { width: 15px; height: 15px; border-radius: 4px; display: inline-block; border: 1px solid var(--line); }
.kal__selection { margin-top: 1.1rem; padding: 1rem 1.15rem; border-radius: var(--radius-sm); background: var(--bg-panel); font-size: .97rem; }
.kal__selection strong { color: var(--accent-deep); }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: #2E241E; color: #E6DAcd; margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.site-footer a { color: #EAD9C6; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { display: inline-flex; margin-bottom: 1rem; background: #F6EEE1; padding: 10px 16px; border-radius: 16px; }
.footer-brand picture, .footer-brand img { display: block; }
.footer-brand img { height: 68px; width: auto; }
.footer-col .footer-h { font-family: var(--ff-head); font-weight: 600; color: #fff; font-size: 1.05rem; line-height: 1.2; margin: 0 0 .8rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-col address { font-style: normal; color: #D9CBBB; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between; font-size: var(--step--1); color: #C9BBAB; }
.footer-bottom .credit a { font-weight: 700; text-decoration: underline; }
.footer-bottom button.linklike { background: none; border: 0; color: #C9BBAB; text-decoration: underline; cursor: pointer; font: inherit; padding: 0; }
.footer-bottom button.linklike:hover { color: #fff; }

/* Floating WhatsApp ------------------------------------------------------ */
.wa-float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 900;
  display: inline-flex; align-items: center; gap: .5rem;
  background: #1f7d3a; color: #fff; text-decoration: none; font-weight: 700;
  padding: .8rem 1.15rem; border-radius: 100px; box-shadow: 0 8px 22px rgba(31,125,58,.4);
  min-height: 44px;
}
.wa-float:hover { background: #196630; color: #fff; }
.wa-float svg { width: 24px; height: 24px; }
.wa-float__label { font-size: .95rem; }
@media (max-width: 520px) { .wa-float__label { display: none; } .wa-float { padding: .85rem; } }

/* Barrierefreiheits-Menü ------------------------------------------------- */
.a11y { position: fixed; left: 1rem; bottom: 1rem; z-index: 950; }
.a11y__toggle { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: var(--card); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(58,46,39,.2); }
.a11y__toggle svg { width: 26px; height: 26px; }
.a11y__panel { position: absolute; left: 0; bottom: 58px; width: 260px; background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: 0 16px 40px rgba(58,46,39,.25); padding: 1rem 1.1rem; display: grid; gap: .85rem; }
.a11y__panel h2 { font-size: 1.05rem; margin: 0; }
.a11y__row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.a11y__row > span { font-size: .92rem; font-weight: 600; }
.a11y__btns { display: inline-flex; gap: .3rem; }
.a11y__btns button, .a11y__switch { border: 1.5px solid var(--line-strong); background: var(--bg); color: var(--ink); border-radius: 6px; min-width: 38px; min-height: 38px; cursor: pointer; font-weight: 700; font-family: var(--ff-body); }
.a11y__switch[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.a11y__reset { justify-self: start; background: none; border: 0; text-decoration: underline; color: var(--accent-deep); cursor: pointer; font: inherit; padding: 0; }
[hidden] { display: none !important; }

/* Reduced-Motion global (auch per a11y-Menü erzwingbar) */
:root[data-motion="reduce"] * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }

/* Cookie-Consent --------------------------------------------------------- */
.consent { position: fixed; inset: auto 0 0 0; z-index: 1100; background: var(--card); border-top: 2px solid var(--accent); box-shadow: 0 -10px 30px rgba(58,46,39,.2); }
.consent__inner { padding: 1.2rem 0 1.4rem; display: grid; gap: 1rem; }
@media (min-width: 900px) { .consent__inner { grid-template-columns: 1.6fr 1fr; align-items: center; } }
.consent h2 { font-size: 1.2rem; margin: 0 0 .4rem; }
.consent p { margin: 0; font-size: .95rem; color: var(--ink-soft); max-width: 62ch; }
.consent__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.consent__actions .btn { flex: 1 1 auto; justify-content: center; }
.consent__cats { display: grid; gap: .55rem; margin: .4rem 0 0; }
.consent__cat { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; }
.consent__cat input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--accent); }
.consent__cat label strong { display: block; }
.consent__cat input:disabled { opacity: .6; }
.consent details { margin-top: .3rem; font-size: .9rem; }
.consent summary { cursor: pointer; color: var(--accent-deep); font-weight: 700; }
/* Kompakte Variante: kleine Karte unten links, betrifft nur die 2-Klick-Karte */
.consent--compact { inset: auto auto clamp(.8rem, 3vw, 1.5rem) clamp(.8rem, 3vw, 1.5rem); width: min(400px, calc(100vw - 1.6rem)); box-sizing: border-box; border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: var(--radius); }
.consent--compact .consent__inner { display: block; padding: 1rem 1.15rem 1.15rem; }
.consent--compact h2 { font-size: 1.05rem; margin: 0 0 .3rem; }
.consent--compact p { font-size: .9rem; margin: 0; }
.consent--compact .consent__actions { display: flex; flex-wrap: nowrap; gap: .5rem; margin-top: .85rem; }
.consent--compact .consent__actions .btn { flex: 1 1 50%; min-width: 0; white-space: nowrap; justify-content: center; text-align: center; padding: .6rem .5rem; }
.consent--compact .consent__more { display: inline-block; margin-top: .7rem; font-size: var(--step--1); color: var(--accent-deep); font-weight: 600; }

/* Belegungs-Admin (/admin) */
.admin-body { background: var(--bg); color: var(--ink); }
.admin-shell { padding-block: clamp(1.5rem, 4vw, 3rem); }
.admin-head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }
.admin-head img { width: 72px; height: auto; flex: none; }
.admin-head h1 { margin: 0 0 .25rem; }
.admin__muted { color: var(--ink-soft); font-size: var(--step--1); margin: 0; }
.admin__loading, .admin__err { color: var(--ink-soft); padding: 1rem 0; }
.admin__err { color: var(--accent-deep); font-weight: 600; }
.admin__add { margin-top: 1rem; }
.admin__list { margin-top: 1.75rem; }
.admin__list h2 { font-size: 1.1rem; margin: 0 0 .6rem; }
.admin__list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.admin__list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .55rem .9rem; }
.admin__del { border: none; background: none; color: var(--accent-deep); font-weight: 600; cursor: pointer; text-decoration: underline; padding: .2rem .1rem; }
.admin__save { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .8rem 1rem; align-items: center; }
.admin__save label { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.admin__save input { font: inherit; padding: .5rem .7rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--card); color: var(--ink); min-height: 44px; }
.admin__status { margin-top: .9rem; font-weight: 600; }
.admin__status--ok { color: var(--forest); }
.admin__status--err { color: var(--accent-deep); }
.admin__status--info { color: var(--ink-soft); }
.admin__hint { margin-top: 1.75rem; color: var(--ink-soft); font-size: var(--step--1); }

/* Breadcrumb ------------------------------------------------------------- */
.crumbs { font-size: var(--step--1); color: var(--ink-soft); padding-top: 1.2rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li::after { content: "›"; margin-left: .4rem; color: var(--line-strong); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--ink-soft); }

/* Utility ---------------------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.stack > * + * { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }
.pagehead { padding-block: clamp(2rem, 5vw, 3.5rem) 0; }
.pagehead .lead { margin-top: .6rem; }
.badge-soft { display: inline-block; font-size: var(--step--1); font-weight: 700; color: var(--forest); background: color-mix(in srgb, var(--forest) 12%, transparent); padding: .3rem .7rem; border-radius: 100px; }

/* Dezente Scroll-Reveal-Animation (nur wenn JS die Klasse setzt; respektiert
   prefers-reduced-motion und das Barrierefreiheits-Menü). Ohne JS/ohne Motion
   bleiben Inhalte normal sichtbar. */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
:root[data-motion="reduce"] .reveal { opacity: 1 !important; transform: none !important; }

/* Hero-Bewertungszeile (Vertrauen im ersten Viewport) */
.hero__rating { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1.1rem; font-size: var(--step--1); color: #FBEFE7; font-weight: 600; }
.hero__rating .stars { color: #F4D9CB; letter-spacing: .1em; }
.trust-inline { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--accent-deep); }
.trust-inline .stars { color: var(--accent); letter-spacing: .08em; }

/* Umgebung-Hub: Teaser-Karten ------------------------------------------- */
.teasers { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.teaser { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.teaser__media { display: block; }
.teaser__media img { display: block; width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.teaser__media .ph-img { border-radius: 0; }
.teaser__body { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; padding: 1.15rem 1.25rem 1.3rem; }
.teaser__body h3 { margin: 0; font-size: 1.18rem; line-height: 1.2; }
.teaser__body h3 a { color: var(--ink); text-decoration: none; }
.teaser__body h3 a:hover { color: var(--accent-deep); }
.teaser__body p { margin: 0; color: var(--ink-soft); }
.teaser__more { margin-top: auto; font-weight: 700; color: var(--accent-deep); text-decoration: none; }
.teaser__more:hover { text-decoration: underline; }

/* Bild-Platzhalter (bis echte Fotos geliefert werden) */
.ph-img { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; background: repeating-linear-gradient(45deg, #efe3d2, #efe3d2 12px, #e9dbc6 12px, #e9dbc6 24px);
  color: var(--ink-soft); border-radius: var(--radius); }
.ph-img span { font-size: var(--step--1); font-weight: 600; letter-spacing: .04em; }

/* Detailseiten-Hero (Text + Bild) */
.detail-hero__grid { display: grid; gap: clamp(1.2rem, 3vw, 2.5rem); align-items: center; }
@media (min-width: 900px) { .detail-hero__grid { grid-template-columns: 1fr 520px; } }
.detail-hero__text h1 { margin: .2rem 0 .6rem; }
.detail-hero__media img { display: block; width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.detail-hero__media .ph-img { aspect-ratio: 3 / 2; }

/* Lesbarer Fließtext auf Detailseiten */
/* .prose erbt die Container-Breite (= Header-Inhaltsbreite, --maxw); kein eigener
   max-width-Deckel, damit der Text nicht schmaler wird, aber auch nicht die
   Container-Begrenzung überschreibt. */
.prose h2 { margin: 2rem 0 .6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 1rem; }

/* Querverlinkung „Mehr aus der Sächsischen Schweiz" */
.relgrid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.relcard { display: flex; flex-direction: column; gap: .35rem; padding: 1.1rem 1.2rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; box-shadow: var(--shadow); }
.relcard:hover { border-color: var(--line-strong); }
.relcard__eyebrow { font-size: var(--step--1); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--forest); }
.relcard__title { font-family: var(--ff-head); font-weight: 600; font-size: 1.1rem; color: var(--ink); line-height: 1.2; }
.relcard__more { margin-top: .3rem; font-weight: 700; color: var(--accent-deep); }

/* „Mehr Bewertungen"-Link unter den Zitaten */
.reviews-more { margin-top: 1.4rem; color: var(--ink-soft); }
.reviews-more a { color: var(--accent-deep); font-weight: 600; }

/* Kalender: Personen/Haustier-Optionen für die WhatsApp-Anfrage */
.kal__opts { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; margin: 0 0 1rem; }
.kal__opts label { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.kal__opts select { font: inherit; padding: .45rem .6rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--card); color: var(--ink); min-height: 44px; }
.kal__opts .kal__pet input { width: 20px; height: 20px; accent-color: var(--accent); }
.kal__price { margin: 0 0 1rem; padding: .8rem 1rem; background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.kal__price-total { margin: 0; font-size: 1.05rem; }
.kal__price-total strong { color: var(--accent-deep); white-space: nowrap; }
.kal__price-break { margin: .25rem 0 0; font-size: var(--step--1); color: var(--ink-soft); }
.kal__price-note { margin: .35rem 0 0; font-size: var(--step--1); color: var(--ink-soft); }
