/* =====================================================================
   Appartement 11 · Zirbe Medium — Filzmoos
   Design-System im Apple-Stil: serifenlose Typografie, große ruhige
   Flächen, Glas-Navigation, Markenfarben aus dem Logo (Petrol/Schiefer).
   ===================================================================== */

/* ---------- 1. Design-Tokens ---------- */
:root {
  /* Flächen */
  --paper:      #FFFFFF;
  --sand:       #FFFFFF;
  --sand-deep:  #F5F5F7;
  --slate:      #1A2427;
  --slate-soft: #263438;

  /* Text */
  --ink:        #1D1D1F;
  --ink-soft:   #424245;
  --muted:      #6E6E73;

  /* Marke (aus dem Logo abgeleitet) */
  --brand:       #345B6C;
  --brand-dark:  #26454F;
  --brand-light: #4E7E95;
  --brand-tint:  #EEF3F6;
  --zirbe:       #B08A5C;
  --zirbe-tint:  #FAF5EE;

  --line:        rgba(0, 0, 0, 0.10);
  --line-strong: rgba(0, 0, 0, 0.22);

  /* Typografie — durchgehend System-Sans (SF Pro auf Apple-Geräten) */
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", "Segoe UI", Roboto, system-ui, sans-serif;
  --font-display: var(--font-body);

  --fs-hero:  clamp(2.9rem, 7.4vw, 5.6rem);
  --fs-h1:    clamp(2.05rem, 5.2vw, 3.9rem);
  --fs-h2:    clamp(2rem, 4.4vw, 3.3rem);
  --fs-h3:    clamp(1.28rem, 2vw, 1.6rem);
  --fs-lead:  clamp(1.14rem, 1.7vw, 1.45rem);
  --fs-body:  1.0625rem;

  /* Raster */
  --wrap:      1160px;
  --wrap-slim: 820px;
  --gap:       clamp(1.1rem, 2.4vw, 1.75rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);

  /* Formen */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.20);

  --ease: cubic-bezier(0.28, 0.11, 0.32, 1);
}

/* ---------- 2. Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.53;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  text-wrap: balance;
  /* Lange deutsche Wörter wie „Geschäftsbedingungen“ sprengen sonst auf
     schmalen Geräten die Seitenbreite. */
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.015em; line-height: 1.16; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-dark); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: 0.35em; }

:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout ---------- */
.wrap {
  width: min(100% - 2.75rem, var(--wrap));
  margin-inline: auto;
}
.wrap--slim { width: min(100% - 2.75rem, var(--wrap-slim)); }

/* Auf sehr schmalen Geräten zählt jeder Millimeter Textbreite. */
@media (max-width: 420px) {
  .wrap { width: min(100% - 1.75rem, var(--wrap)); }
  .wrap--slim { width: min(100% - 1.75rem, var(--wrap-slim)); }
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6.5vw, 5rem); }
.section--tone { background: var(--sand-deep); }

.section--dark { background: var(--slate); color: #E8EAEB; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #FFFFFF; }
.section--dark a { color: #8FBCD0; }
.section--dark a:hover { color: #fff; }
.section--dark .eyebrow { color: #8FBCD0; }
.section--dark .lead { color: #B6BEC1; }

.eyebrow {
  display: block;
  font-size: clamp(0.95rem, 1.3vw, 1.14rem);
  font-weight: 600;
  letter-spacing: -0.008em;
  color: var(--brand);
  margin-bottom: 0.55rem;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  line-height: 1.42;
  letter-spacing: -0.014em;
  font-weight: 400;
}

/* Breiten in rem, nicht in ch: ch bezieht sich auf die Fließtextgröße
   des Containers und macht Überschriften sonst viel zu schmal. */
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { max-width: 38rem; }
.section-head--center {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.section-head--center .lead { max-width: 36rem; margin-inline: auto; }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 980px;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.012em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn:active { transform: scale(0.975); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--brand); border-color: rgba(52, 91, 108, 0.42); }
.btn--ghost:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.btn--light { background: rgba(255, 255, 255, 0.9); color: var(--ink); backdrop-filter: blur(14px); }
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--on-dark { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.btn--on-dark:hover { background: #fff; color: var(--slate); border-color: #fff; }

.btn--wide { width: 100%; }
.btn--lg { padding: 0.95rem 1.85rem; font-size: 1.14rem; }

.btn .arw { transition: transform 0.22s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1.4rem; align-items: center; }
.btn-row--center { justify-content: center; }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 22, 24, 0.52), transparent);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-solid::after { opacity: 0; }

.site-header--static {
  position: sticky;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header--static::after { opacity: 0; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  transition: color 0.4s var(--ease);
}
.brand__mark {
  width: 38px; height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 5px;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text b {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.brand__text span {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.68;
  letter-spacing: -0.005em;
}
.is-solid .brand, .site-header--static .brand { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.845rem;
  font-weight: 400;
  letter-spacing: -0.004em;
  transition: opacity 0.22s var(--ease), color 0.22s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a[aria-current="page"] { font-weight: 600; }
.is-solid .nav-links a, .site-header--static .nav-links a { color: var(--ink); opacity: 0.86; }
.is-solid .nav-links a:hover, .site-header--static .nav-links a:hover { opacity: 1; color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 0.65rem; }

.icon-link {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease);
}
.icon-link:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
.is-solid .icon-link, .site-header--static .icon-link { color: var(--ink); }
.is-solid .icon-link:hover, .site-header--static .icon-link:hover { background: var(--sand-deep); color: var(--brand); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 19px; height: 1.5px;
  background: #fff;
  position: relative;
  transition: background-color 0.2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px; height: 1.5px;
  background: inherit;
  transition: transform 0.34s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.is-solid .nav-toggle span, .site-header--static .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span { background: transparent !important; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); background: var(--ink); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); background: var(--ink); }

@media (max-width: 940px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 0.5rem 1.4rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    transition: transform 0.45s var(--ease);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a {
    color: var(--ink) !important;
    opacity: 1 !important;
    display: block;
    padding: 1.05rem 0.15rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.28rem;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  /* "safe" verhindert, dass der Inhalt oben aus dem Bild läuft,
     wenn er einmal höher wird als der Hero selbst. */
  align-items: safe end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
              rgba(14, 20, 22, 0.88) 0%,
              rgba(14, 20, 22, 0.34) 42%,
              rgba(14, 20, 22, 0.10) 68%,
              rgba(14, 20, 22, 0.42) 100%);
}
.hero__inner { padding-block: clamp(4rem, 10vw, 7.5rem); }

.hero__eyebrow {
  display: inline-block;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.008em;
  color: #9FCBDE;
  margin-bottom: 0.7rem;
}
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #fff;
  max-width: 15ch;
  margin-bottom: 1.15rem;
}
.hero__lead {
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  line-height: 1.42;
  letter-spacing: -0.014em;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.1rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(1.75rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: 1.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.hero__fact { padding-block: 0.4rem; }
.hero__fact b {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hero__fact span {
  font-size: 0.83rem;
  opacity: 0.68;
  letter-spacing: -0.004em;
}

/* Hero auf kleinen Geräten: kompakter, damit er in den Bildschirm passt,
   und mit kräftigerem Verlauf, weil der Text dort über helle Bildbereiche fällt. */
@media (max-width: 560px) {
  .hero { min-height: min(100svh, 780px); }
  .hero__inner { padding-block: 5.5rem 2.6rem; }
  .hero__media::after {
    background: linear-gradient(to top,
                rgba(14, 20, 22, 0.92) 0%,
                rgba(14, 20, 22, 0.66) 52%,
                rgba(14, 20, 22, 0.48) 100%);
  }
  .hero__eyebrow { font-size: 0.97rem; margin-bottom: 0.5rem; }
  .hero h1 { font-size: clamp(2.4rem, 10.4vw, 3rem); margin-bottom: 0.9rem; }
  .hero__lead { font-size: 1.06rem; margin-bottom: 1.7rem; }
  .hero__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1.5rem;
    margin-top: 2.1rem;
    padding-top: 1.35rem;
  }
  .hero__fact b { font-size: 1.4rem; }
  .hero__fact span { font-size: 0.79rem; }
}

/* ---------- 7. Split-Sektion ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(2.25rem, 5.5vw, 5rem);
  align-items: center;
}
.split__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--sand-deep);
}
.split__media img { width: 100%; }
.split--rev .split__text { order: -1; }
@media (max-width: 860px) { .split--rev .split__text { order: 0; } }

/* ---------- 8. Galerie & Lightbox ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 0.7rem;
}
.gallery__item {
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--sand-deep);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 16 / 10; }
@media (max-width: 640px) { .gallery__item--wide { grid-column: span 1; aspect-ratio: 4 / 3; } }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(1rem, 4vw, 3.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease), visibility 0.32s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-height: 84svh; width: auto; border-radius: var(--r-md); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  backdrop-filter: blur(10px);
  transition: background-color 0.22s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute; bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ---------- 9. Kennzahlen & Ausstattung ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 0.7rem;
}
.facts__item {
  background: var(--sand-deep);
  border-radius: var(--r-md);
  padding: 1.65rem 1.5rem;
  text-align: center;
}
.section--tone .facts__item { background: var(--paper); }
.facts__item b {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  margin-bottom: 0.15rem;
}
.facts__item span { font-size: 0.87rem; color: var(--muted); }

.amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 0 2.25rem;
}
.amenities li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  font-size: 1rem;
}
.section--dark .amenities li { border-color: rgba(255, 255, 255, 0.14); }
.amenities li svg { flex: 0 0 auto; margin-top: 0.34em; color: var(--brand-light); }
.amenities li.is-off { color: var(--muted); }
.section--dark .amenities li.is-off { color: #8D9699; }

.badges { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.75rem; }
.badge {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.008em;
  color: var(--brand-dark);
  background: var(--brand-tint);
  border-radius: 980px;
  padding: 0.42rem 0.95rem;
}
.section--dark .badge { background: rgba(255, 255, 255, 0.1); color: #C4D7E0; }

/* ---------- 10. Karten ---------- */
.link-card {
  display: flex;
  flex-direction: column;
  background: var(--sand-deep);
  border-radius: var(--r-lg);
  padding: 1.85rem 1.75rem 1.9rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.section--tone .link-card { background: var(--paper); }
a.link-card:hover { transform: translateY(-4px); }
.link-card__place {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 0.55rem;
}
.link-card h3 { margin-bottom: 0.4rem; }
.link-card p { color: var(--muted); font-size: 0.97rem; margin-bottom: 1.2rem; line-height: 1.47; }
.link-card__more {
  margin-top: auto;
  font-size: 0.97rem;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.link-card__more .arw { transition: transform 0.22s var(--ease); }
a.link-card:hover .link-card__more .arw { transform: translateX(3px); }

/* ---------- 11. Preise ---------- */
.price-card {
  background: var(--sand-deep);
  border-radius: var(--r-lg);
  padding: clamp(1.85rem, 3.6vw, 2.75rem);
  display: flex;
  flex-direction: column;
}
.section--tone .price-card { background: var(--paper); }
.price-card--accent { background: var(--slate); color: #C9D0D2; }
.price-card--accent h3 { color: #fff; }
.price-card--accent .price-card__body { color: #B0B8BB; }
.price-card--accent .price-card__note { color: #A2ABAE; }
.price-card--accent .price-card__amount { color: #fff; }
.price-card--accent .price-card__list li { border-color: rgba(255, 255, 255, 0.14); }
.price-card--accent .price-card__season { color: #8FBCD0; }

.price-card__season {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.price-card__amount {
  font-size: clamp(2.5rem, 5.2vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.price-card__amount small {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.price-card--accent .price-card__amount small { color: #9AA3A6; }
.price-card__note { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.6rem; }
.price-card__body { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1.6rem; line-height: 1.5; }
.price-card__list { list-style: none; padding: 0; margin: 0 0 1.9rem; font-size: 0.96rem; }
.price-card__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.66rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.price-card__list li span:last-child { color: var(--muted); text-align: right; }
.price-card--accent .price-card__list li span:last-child { color: #A2ABAE; }
.price-card .btn { margin-top: auto; }

.note-box {
  background: var(--zirbe-tint);
  border-radius: var(--r-md);
  padding: 1.4rem 1.65rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- 12. Buchungskanäle ---------- */
.channel {
  display: flex;
  align-items: center;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
  background: var(--sand-deep);
  border-radius: var(--r-lg);
  padding: 1.65rem 1.9rem;
}
.section--tone .channel { background: var(--paper); }
.channel__text { flex: 1 1 280px; }
.channel__text h3 { margin-bottom: 0.25rem; font-size: 1.24rem; }
.channel__text p { margin: 0; color: var(--muted); font-size: 0.97rem; }
.channel__badge {
  flex: 0 0 auto;
  order: -1;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand);
  padding: 0.32rem 0.8rem;
  border-radius: 980px;
}

/* ---------- 13. Zitat ---------- */
.quote { max-width: 32rem; }
.quote blockquote {
  margin: 0 0 1.2rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.024em;
}
.quote cite { font-style: normal; font-size: 0.93rem; color: var(--muted); }
.quote cite b { display: block; color: var(--ink); font-size: 1rem; font-weight: 600; }
.section--dark .quote cite b { color: #fff; }

/* ---------- 14. FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px; height: 11px;
  border-right: 1.8px solid var(--brand);
  border-bottom: 1.8px solid var(--brand);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.34s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq__answer { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 70ch; }

/* ---------- 15. Formular ---------- */
/* Eigene Breite für das Anfrageformular: schmal genug, dass die Felder
   nebeneinander noch bequem lesbar sind, breit genug, dass es nicht als
   endlose Spalte in die Länge läuft. */
.wrap--form { width: min(100% - 2.75rem, 780px); margin-inline: auto; }
@media (max-width: 420px) { .wrap--form { width: min(100% - 1.75rem, 780px); } }

.form-panel {
  background: var(--sand-deep);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 4vw, 2.75rem);
}
.form-panel__head { margin-bottom: 1.85rem; }
.form-panel__head h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin-bottom: 0.3rem;
}
.form-panel__head p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .field textarea { min-height: 132px; }
}

.form-consent { margin: 1.6rem 0 1.75rem; }

.form-submit { display: grid; gap: 0.9rem; }
.form-submit .btn { width: 100%; }
.form-submit p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.87rem; font-weight: 500; color: var(--ink-soft); }
.field label .req { color: var(--brand); }

.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.82rem 1rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3.5px rgba(52, 91, 108, 0.16);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #C0392B; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input {
  flex: 0 0 auto;
  width: 21px; height: 21px;
  margin-top: 0.1em;
  accent-color: var(--brand);
  cursor: pointer;
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  border-radius: var(--r-md);
  padding: 1.1rem 1.35rem;
  font-size: 0.97rem;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.form-status--ok  { background: #E6F4EA; color: #1B5E32; }
.form-status--err { background: #FBEAE8; color: #8A2A1E; }
[hidden] { display: none !important; }

/* ---------- 16. Kontaktinfos ---------- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.info-list li:first-child { padding-top: 0; }
.info-list__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
}
.info-list b {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 0.22rem;
  font-weight: 500;
}
.info-list a { color: var(--ink); text-decoration: none; }
.info-list a:hover { color: var(--brand); }

/* ---------- 16b. Kontaktkarten ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 0.8rem;
}
.contact-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem 1.7rem;
}
.contact-card__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  margin-bottom: 1rem;
}
.contact-card b {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
/* E-Mail und Telefonnummer werden am Handy angetippt – deshalb als Block
   mit genug Höhe, damit man sie mit dem Daumen sicher trifft. */
.contact-card a {
  display: inline-block;
  padding: 0.35rem 0;
  min-height: 44px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-card a:hover { color: var(--brand); }
.contact-card address {
  font-style: normal;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
}
.contact-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.55rem 0 0;
  line-height: 1.45;
}

/* Schaltfläche, die im Fließtext wie ein Link aussieht */
.link-btn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover { color: var(--brand-dark); }

/* ---------- 17. Karte (Zwei-Klick-Lösung) ---------- */
.map-consent {
  position: relative;
  /* width muss vor dem Seitenverhältnis feststehen. Sonst rechnet der Browser
     die Breite aus der Mindesthöhe zurück und der Kasten wird viel zu breit. */
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  /* Auf schmalen Geräten ergibt 16:9 zu wenig Höhe – die Schaltflächen
     wurden sonst abgeschnitten. */
  min-height: 26rem;
  background: linear-gradient(150deg, #DFE7EB 0%, #C7D5DC 48%, #E8E6E0 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
/* place-items: center gibt dem Inhalt sonst seine Wunschbreite statt der
   verfügbaren – auf schmalen Geräten ragte er dadurch aus dem Bild. */
.map-consent__inner { max-width: 42rem; width: 100%; }
.map-consent__inner h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.map-consent p { font-size: 0.97rem; color: var(--ink-soft); }
.map-consent[data-loaded="true"] { min-height: 0; }
.map-consent iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- 18. Grundriss ---------- */
.plan {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  margin: 0;
}
.plan img { width: 100%; }
.plan figcaption {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.87rem;
  color: var(--muted);
}

.room-list { list-style: none; padding: 0; margin: 0; }
.room-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  font-size: 1rem;
}
.room-list li span:last-child { color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.room-list li.is-total { font-weight: 600; border-bottom: 0; padding-top: 1.1rem; }
.room-list li.is-total span:last-child { color: var(--ink); }

/* ---------- 19. Bildstreifen ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 0.7rem;
}
.strip figure { margin: 0; }
.strip img {
  border-radius: var(--r-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.strip figcaption { font-size: 0.86rem; color: var(--muted); margin-top: 0.6rem; }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: var(--sand-deep);
  color: var(--muted);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.87rem;
  line-height: 1.5;
}
.site-footer h4 {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }

/* Feste Spalten statt auto-fit: auto-fit ist zusammen mit einer fr-Spalte
   ungültig, wodurch der gesamte Fußbereich in eine Spalte fiele. */
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand__mark { width: 62px; margin-bottom: 1rem; }
.footer-brand b {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.footer-brand p { max-width: 36ch; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.6rem; }

/* Schaltfläche, die im Fußbereich wie ein Link aussehen soll */
.footer-link-btn {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  display: inline;
}
.footer-link-btn:hover { color: var(--ink); text-decoration: underline; }

.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.social-row { display: flex; gap: 0.55rem; margin-top: 1.35rem; }
.social-row a {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink-soft);
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease);
}
.social-row a:hover { background: var(--brand); color: #fff; }

/* ---------- 21. Einwilligungsmanager ---------- */
.consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(20, 26, 28, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.consent-backdrop.is-visible { opacity: 1; visibility: visible; }

.consent {
  position: fixed;
  left: 50%;
  bottom: clamp(0.6rem, 2vw, 1.5rem);
  transform: translate(-50%, 160%);
  z-index: 250;
  width: min(100% - 1.2rem, 720px);
  max-height: min(86svh, 780px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.55s var(--ease);
  overflow: hidden;
}
.consent.is-visible { transform: translate(-50%, 0); }

.consent__panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.consent__title {
  font-size: clamp(1.16rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.consent__text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 1.35rem;
}
.consent__text a { text-decoration: underline; }

/* Annehmen und Ablehnen sind bewusst gleich groß und gleich auffällig –
   eine hervorgehobene Zustimmung wäre keine freiwillige Einwilligung. */
.consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.consent__actions .btn { width: 100%; padding: 0.72rem 1.1rem; font-size: 0.97rem; }
.consent__actions .consent__link { grid-column: 1 / -1; }

.btn--neutral {
  background: rgba(0, 0, 0, 0.07);
  color: var(--ink);
}
.btn--neutral:hover { background: rgba(0, 0, 0, 0.12); color: var(--ink); }

.consent__link {
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.9rem;
  color: var(--brand);
  cursor: pointer;
  padding: 0.5rem 0.25rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  justify-self: center;
}
.consent__link:hover { color: var(--brand-dark); }

/* Zweite Ebene: Kategorien einzeln schaltbar */
.consent__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.consent__back {
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.88rem;
  color: var(--brand);
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}
.consent__back:hover { color: var(--brand-dark); }

.consent-group {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}
.consent-group__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.consent-group__label { flex: 1; }
.consent-group__label b {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin-bottom: 0.2rem;
}
.consent-group__label p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.consent-group details { margin-top: 0.8rem; }
.consent-group summary {
  font-size: 0.85rem;
  color: var(--brand);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.consent-group summary::-webkit-details-marker { display: none; }
.consent-group summary::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.3s var(--ease);
}
.consent-group details[open] summary::after { transform: rotate(-135deg) translate(-1px, -1px); }
.consent-group dl {
  margin: 0.85rem 0 0;
  font-size: 0.83rem;
  color: var(--ink-soft);
  line-height: 1.5;
  display: grid;
  grid-template-columns: minmax(7.5rem, auto) 1fr;
  gap: 0.35rem 1rem;
}
.consent-group dt { color: var(--muted); }
.consent-group dd { margin: 0; }

/* Schalter */
.switch { flex: 0 0 auto; position: relative; display: inline-flex; }
.switch input {
  position: absolute;
  inset: 0;
  z-index: 1;                 /* muss über der sichtbaren Bahn liegen, sonst fängt sie den Klick ab */
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.switch input:disabled { cursor: not-allowed; }
.switch span {
  width: 50px; height: 30px;
  border-radius: 980px;
  background: rgba(0, 0, 0, 0.16);
  transition: background-color 0.28s var(--ease);
  display: block;
  position: relative;
}
.switch span::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.28s var(--ease);
}
.switch input:checked + span { background: var(--brand); }
.switch input:checked + span::after { transform: translateX(20px); }
.switch input:disabled + span { background: var(--brand); opacity: 0.42; }
.switch input:focus-visible + span { outline: 3px solid var(--brand-light); outline-offset: 3px; }

.consent__footer {
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.consent__footer .btn { width: 100%; padding: 0.72rem 1.1rem; font-size: 0.97rem; }
.consent__legal {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin: 0.35rem 0 0;
}
.consent__legal a { color: var(--muted); text-decoration: underline; }
.consent__legal a:hover { color: var(--ink); }

@media (max-width: 520px) {
  .consent__actions, .consent__footer { grid-template-columns: 1fr; }
}

/* ---------- 22. Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 23. Rechtstexte ---------- */
.legal { max-width: 72ch; }
.legal h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.14rem; margin-top: 1.9rem; }
.legal address { font-style: normal; line-height: 1.8; }
.legal__meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

/* ---------- 24. Hilfsklassen ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2.25rem, 4.5vw, 3.25rem); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
