/* ==========================================================================
   WIESBERGHOF – style.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --salbei:     #717A56;
  --hellbeige:  #EAE2DA;
  --sandgrau:   #B3AB98;
  --waldgruen:  #595F44;
  --kastanie:   #986C4F;
  --terrakotta: #D77859;
  --winterblau: #889AA2;
  --text:       #1A1A1A;
  --white:      #FFFFFF;
  --bg-light:   #F7F4F2;
  --hero-band:  var(--salbei);   /* Salbeigrün hinter dem Hero */

  --font-head:   'Coustard', Georgia, serif;
  --font-body:   'Figtree', system-ui, sans-serif;
  --font-script: 'hey-eloise', cursive;

  --max-w:     1440px;
  --gutter:    6rem;
  --section-v: 7rem;

  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  hyphens: none;
  -webkit-hyphens: none;
}

img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* Branded Textauswahl */
::selection {
  background: var(--salbei);
  color: var(--white);
}
::-moz-selection {
  background: var(--salbei);
  color: var(--white);
}

address { font-style: normal; }

.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;
}

/* --------------------------------------------------------------------------
   Preloader – Bildmarke füllt sich von links nach rechts
   -------------------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.9s var(--ease-out), visibility 0.9s var(--ease-out);
}
#preloader.is-hidden {
  transform: translateY(-100%);
  visibility: hidden;
}

.preloader-mark {
  position: relative;
  width: 320px;
  max-width: 72vw;
}

.pl-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Geist-Ebene: zarte Andeutung der Marke */
.pl-ghost path { fill: rgba(113, 122, 86, 0.18); }

/* Füll-Ebene: volles Salbeigrün, von links nach rechts freigegeben */
.pl-fill {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  animation: plMarkFill 1.4s var(--ease-out) forwards;
}
.pl-fill path { fill: var(--salbei); }

@keyframes plMarkFill {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  .pl-fill { animation: none; clip-path: inset(0 0% 0 0); }
  #preloader { transition: opacity 0.3s ease, visibility 0.3s ease; }
  #preloader.is-hidden { transform: none; opacity: 0; }
}

/* --------------------------------------------------------------------------
   3. Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

/* Versetzter Rhythmus in Sektion 2 */
.split-text .section-quote { margin-left: 2.5rem; }
.split-text .section-text  { margin-left: 2.5rem; max-width: 40ch; }
.split-text .btn           { margin-left: 2.5rem; }

/* Variierende Containerbreiten je Sektion */
.section-intro  .container { max-width: 1440px; }
.section-region .container { max-width: 1340px; }

/* Esel schaut rechtsbündig vom Browserrand herein */
.pig-peek {
  position: relative;
  height: 0;
  z-index: 3;
}
.pig-svg {
  position: absolute;
  right: 6rem;
  bottom: 0;
  width: 220px;
  height: auto;
  fill: #C8C2BA;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1) 0.4s,
              opacity 0.3s ease 0.4s;
}
.pig-peek.pig-visible .pig-svg {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1100px) {
  .pig-svg { width: 180px; right: 3rem; }
}
@media (max-width: 900px) {
  .pig-svg { width: 140px; right: 2rem; }
}
@media (max-width: 560px) {
  .pig-svg { width: 110px; right: 1rem; bottom: 0; }
}

.chicken-peek {
  position: relative;
  height: 0;
  z-index: 3;
}
.chicken-svg {
  position: absolute;
  right: 6rem;
  bottom: 0;
  width: 220px;
  height: auto;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1) 0.4s,
              opacity 0.3s ease 0.4s;
}
.chicken-svg { fill: #C8C2BA; }
.chicken-svg .st0 { fill: #C8C2BA; }
.chicken-peek.chicken-visible .chicken-svg {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1100px) {
  .chicken-svg { width: 190px; right: 3rem; }
}
@media (max-width: 900px) {
  .chicken-svg { width: 160px; right: 2rem; }
}
@media (max-width: 560px) {
  .chicken-svg { width: 80px; right: 1rem; }
}

.sheep-peek {
  position: relative;
  height: 0;
  z-index: 3;
}
.sheep-svg {
  position: absolute;
  right: 6rem;
  bottom: 0;
  width: 124px;
  height: auto;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1) 0.4s,
              opacity 0.3s ease 0.4s;
}
.sheep-svg path { fill: #C8C2BA; }
.sheep-peek.sheep-visible .sheep-svg {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1100px) {
  .sheep-svg { width: 108px; right: 3rem; }
}
@media (max-width: 900px) {
  .sheep-svg { width: 92px; right: 2rem; }
}
@media (max-width: 560px) {
  .sheep-svg { width: 52px; right: 1rem; }
}

.donkey-peek {
  position: relative;
  height: 0;
  z-index: 5;
}
.donkey-peek img {
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: 300px;
  height: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.3s ease;
}
/* Wenn donkey-visible gesetzt wird: Esel schaut herein */
.donkey-peek.donkey-visible img {
  transform: translateX(0);
  opacity: 1;
}

/* Slideshow Ferienwohnung – Querformat mit Crossfade */
.apt-slideshow {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

.apt-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease-out);
}
.apt-slide.is-active { opacity: 1; }

.apt-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots zur Ferienwohnung-Slideshow */
.apt-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.apt-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(26,26,26,.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s var(--ease-out);
}
.apt-dot:hover { background: rgba(26,26,26,.45); }
.apt-dot.is-active {
  background: var(--salbei);
  transform: scale(1.25);
}

/* Slideshow: Zoom-Cursor */
.apt-slideshow { cursor: zoom-in; }

/* Zoom-Lupe auf dem Wrapper (kein overflow:hidden → kein Clipping des Kreises) */
.apt-slideshow-wrap {
  position: relative;
}
.apt-slideshow-wrap::after {
  content: '';
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.88)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E")
    center / 18px no-repeat;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  z-index: 5;
}
.apt-slideshow-wrap:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .apt-slideshow-wrap::after { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
#lightbox.is-open { display: flex; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 3px;
  user-select: none;
  transition: opacity 0.2s ease;
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  z-index: 2001;
  padding: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  z-index: 2001;
  padding: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.lightbox-close:hover { opacity: 1; }

.lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* Facts / Statistik unter der Slideshow */
.apt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align: center;
}
.fw-hero .apt-stats {
  margin-top: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  border-top: none;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.apt-stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1;
  color: var(--salbei);
  margin-bottom: 0.6rem;
}

.apt-stat strong em {
  font-style: normal;
  font-size: 0.55em;
  color: var(--terrakotta);
  margin-left: 0.15em;
}
.apt-stat strong em:first-child {
  margin-left: 0;
  margin-right: 0.3em;
}

.apt-stat span {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(26,26,26,.65);
}

/* Hero-Highlights mit Icon statt Zahlen-Stat (Über-uns-Seite) */
.apt-stat--highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apt-stat-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
}
.apt-stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--salbei);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.apt-stat--highlight strong {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.2;
  color: var(--waldgruen);
  margin-bottom: 0.5rem;
}
.apt-stat--highlight span {
  max-width: 24ch;
  margin: 0 auto;
}

/* Ab-Hof-Hinweis (zentriert, unter dem Produkt-Grid) */
.hof-shop-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.hof-shop-note .nationalpark-stoerer {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   4. Typografie
   -------------------------------------------------------------------------- */

/* Eyebrow im Hero */
.hero-eyebrow {
  font-family: var(--font-script);
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.6rem, 2.5rem, 2.5rem);
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 1.4rem;
}

/* Eyebrow in Sektionen */
.eyebrow {
  font-family: var(--font-script);
  color: var(--terrakotta);
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.section-h2 {
  font-family: var(--font-head);
  color: var(--salbei);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.section-divider {
  margin: 1.4rem 0 1.8rem;
}
.section-divider img {
  width: 240px;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
}

.section-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  color: var(--text);
  max-width: 52ch;
  margin-bottom: 2.4rem;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transform: translateZ(0);
  transition: background 0.22s var(--ease-out),
              border-color 0.22s var(--ease-out),
              color 0.22s var(--ease-out);
  white-space: nowrap;
}

/* Padding sitzt jetzt im Span → Span-Höhe = Button-Höhe → translateY(100%) = exakt eine Button-Höhe */
.btn-text {
  display: flex;
  align-items: center;
  padding: 0.95rem 2.2rem;
  transition: transform 0.22s var(--ease-out);
}
.btn-text--clone {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.22s var(--ease-out);
}
.btn:hover .btn-text        { transform: translateY(-100%); }
.btn:hover .btn-text--clone { transform: translateY(0); }

.btn--primary {
  background: var(--terrakotta);
  color: var(--white);
  border-color: var(--terrakotta);
}
.btn--primary:hover { background: #b85c3d; border-color: #b85c3d; }

.btn--secondary {
  background: transparent;
  color: var(--salbei);
  border-color: var(--salbei);
}
.btn--secondary:hover {
  background: var(--salbei);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.75);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

/* --------------------------------------------------------------------------
   6. Scroll-Reveal
   -------------------------------------------------------------------------- */
.reveal,
.reveal-stagger,
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.is-visible,
.reveal-stagger.is-visible,
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.31s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.44s; }

/* --------------------------------------------------------------------------
   7. Header / Navigation
   -------------------------------------------------------------------------- */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  padding: 0 var(--gutter);
  height: 72px;
  background: transparent;
  transition: background 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out),
              transform 0.32s var(--ease-out);
}

/* Logo-Wrapper: transparent → unsichtbar, sticky → sichtbar */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

#main-nav.is-sticky .nav-logo-wrap {
  opacity: 1;
  pointer-events: auto;
}

.nav-logo-img {
  height: 38px;
  width: auto;
}

/* Nav-Center: Links + Buttons zusammen zentriert */
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

/* Nav-Links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Nav-Right: nur Telefon */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-links li a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 1.2rem;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 1.2rem; right: 1.2rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

.nav-links li a:hover::after,
.nav-links li a.is-active::after {
  transform: scaleX(1);
}

#main-nav.is-sticky .nav-links li a { color: var(--text); }
#main-nav.is-sticky .nav-links li a.is-active { color: var(--salbei); }

/* Sticky-Header */
#main-nav.is-sticky {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transform: translateY(0) !important;
}

#main-nav.is-hidden { transform: translateY(-100%); }

/* CTA-Buttons im Header */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 999px;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transform: translateZ(0);
  transition: background 0.22s var(--ease-out),
              border-color 0.22s var(--ease-out),
              color 0.22s var(--ease-out);
}

.nav-btn .btn-text {
  display: flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  transition: transform 0.22s var(--ease-out);
}
.nav-btn .btn-text--clone {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.22s var(--ease-out);
}
.nav-btn:hover .btn-text        { transform: translateY(-100%); }
.nav-btn:hover .btn-text--clone { transform: translateY(0); }

/* Outlined: Anfragen */
.nav-btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
}
.nav-btn--outline:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

/* Gefüllt: Buchen */
.nav-btn--filled {
  background: var(--salbei);
  border-color: var(--salbei);
  color: var(--white);
}
.nav-btn--filled:hover {
  background: var(--waldgruen);
  border-color: var(--waldgruen);
}

/* Sticky-Anpassungen Buttons */
#main-nav.is-sticky .nav-btn--outline {
  border-color: var(--salbei);
  color: var(--salbei);
}
#main-nav.is-sticky .nav-btn--outline:hover {
  background: var(--salbei);
  color: var(--white);
  border-color: var(--salbei);
}

.nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.nav-phone:hover { opacity: 1; }
.nav-phone svg { width: 24px; height: 24px; }
#main-nav.is-sticky .nav-phone { color: var(--salbei); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s var(--ease-out), opacity 0.2s ease, background 0.3s ease;
}

#main-nav.is-sticky .nav-toggle span { background: var(--salbei); }
#main-nav.menu-open .nav-toggle span  { background: var(--text); }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Wenn Menü offen: CTAs im Header verstecken */
#main-nav.menu-open .nav-center { display: none; }

/* Mobile Nav – Fullscreen Overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 88px var(--gutter) 2rem;
  overflow-y: auto;
  z-index: 999;
}
.nav-mobile.is-open { display: block; }

.nav-mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav-mobile ul li a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: color 0.2s ease;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.is-active { color: var(--salbei); }

/* Trennlinie zwischen Nav-Links und CTAs */
.nav-mobile-sep {
  height: 1.5rem;
}

/* CTAs als Menüpunkte */
.nav-mobile-action {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: color 0.2s ease;
  color: var(--salbei);
}
.nav-mobile-action:hover { color: var(--waldgruen); }
.nav-mobile-action--buchen {
  color: var(--waldgruen);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
/* Parallax: Hero bleibt stehen, die Sektionen schieben sich darüber */
.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inhalt über dem fixierten Hero */
.section,
footer {
  position: relative;
  z-index: 2;
}

.hero-slides {
  position: absolute;
  inset: 0;
  bottom: -25%;
  will-change: transform;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.30) 50%,
    rgba(0,0,0,.48) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap {
  width: clamp(200px, 28vw, 320px);
}

.hero-logo-img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-title {
  font-family: var(--font-head);
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.3;
  max-width: 24ch;
  margin-top: 2.8rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.35);
}

.hero-title-break { display: none; }

@media (min-width: 901px) {
  .hero-title { max-width: 34ch; }
  .hero-title-break { display: inline; }
}

/* Slideshow Dots */
/* Dots – identisch zur Ferienwohnung-Slideshow */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s var(--ease-out);
}
.hero-dot:hover { background: rgba(255,255,255,.7); }
.hero-dot.is-active {
  background: var(--white);
  transform: scale(1.25);
}

/* --------------------------------------------------------------------------
   9. Sektionen – Allgemein
   -------------------------------------------------------------------------- */
.section      { padding: var(--section-v) 0; }
.section--white  { background: var(--white); }

/* Erste Sektion als Karte über dem Hero – runde Oberkante + Schatten */
.section-intro {
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.18);
  margin-top: -2px; /* lückenlos über Hero schieben */
  /* Extra Freiraum unten, damit die Welle der Ferienwohnung-Sektion (die von
     unten hereinragt) nicht in den Slogan schneidet */
  padding-bottom: calc(var(--section-v) + 9rem);
}
.section--beige  { background: var(--hellbeige); }
.section--light  { background: var(--bg-light); }

/* Subtiles Film-Grain auf den getönten Sektionen – physische Papier-Haptik */
.section--beige,
.section--light {
  position: relative;
}
.section--beige::after,
.section--light::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Grain deaktivieren wenn Welle darüber liegt – sonst sichtbare Kante */
.section-apartment::after { content: none; }

/* Inhalt über dem Grain halten */
.section--beige > *,
.section--light > * {
  position: relative;
  z-index: 1;
}

/* Foto-Frame */
.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.photo-frame--tall { aspect-ratio: 3 / 4; }

.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.photo-frame:hover img { transform: scale(1.03); }

.split-visual { position: relative; }

/* --------------------------------------------------------------------------
   10. Sektion 1 – Intro / Jahreszeiten
   -------------------------------------------------------------------------- */
/* Zentrierter Sektionskopf (wie Region) */
.intro-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 4.5rem;
}
.intro-header .eyebrow { display: inline-block; }
.intro-header .section-divider { display: flex; justify-content: center; }
.intro-header .section-text {
  margin: 0 auto 1.4rem;
  max-width: 68ch;
}
.intro-header .section-text:last-child { margin-bottom: 0; }
.fw-intro .intro-header { margin-bottom: 0; }

/* Slogan in Coustard unter den Jahreszeiten */
.intro-slogan {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  text-align: center;
  color: var(--salbei);
  margin: 7.5rem auto 0;
  max-width: 800px;
}

/* Slogan: Text wischt von links nach rechts ins Bild */
.reveal--slogan {
  clip-path: inset(0 100% 0 0);
  opacity: 1 !important;
  transform: none !important;
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal--slogan.is-visible {
  clip-path: inset(0 0% 0 0);
}

/* Störer: gleitet von rechts herein mit Überschwinger */
.reveal--stoerer {
  transform: translateX(60px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.5s ease !important;
}
.reveal--stoerer.is-visible {
  transform: translateX(0);
  opacity: 1;
}

/* Organische Wellenkante oben an der Ferienwohnung-Sektion – Übergang von Weiß zu Beige */
.apt-top-wave {
  position: absolute;
  bottom: calc(100% - 2px);
  left: -1px;
  right: -1px;
  width: calc(100% + 2px);
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}
.apt-top-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Zusätzlicher Freiraum oben, damit Welle + Esel (zwischen Sektion 1 und Ferienwohnung) Platz haben */
.section-apartment {
  position: relative;
  padding-top: calc(var(--section-v) + 2rem);
}

/* Jahreszeiten: eine Reihe auf Desktop, leicht versetzt */
.intro-seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.intro-seasons > .season-row:nth-child(even) {
  margin-top: 2.6rem;
}

/* Jede Jahreszeit: Bild immer oben, Karte darunter – wie die Region-Karten */
.season-row {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.season-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(26,26,26,.22);
}

.season-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.season-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.season-row:hover .season-photo img { transform: scale(1.04); }

.season-item {
  position: relative;
  background: var(--bg-light);
  padding: 2.2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  overflow: hidden;
}

/* Corporate-Design-Farben, Inhalte in Weiß */
.season-item--sommer    { background: var(--salbei); }
.season-item--herbst    { background: var(--kastanie); }
.season-item--winter    { background: var(--winterblau); }
.season-item--fruehling { background: var(--terrakotta); }

/* Großer Script-Saisonname als Wasserzeichen */
.season-name {
  position: absolute;
  top: 0.4rem;
  right: 0.8rem;
  font-family: var(--font-script);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--white);
  pointer-events: none;
}

.season-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.season-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
}
.season-row:hover .season-icon svg { transform: scale(1.08) rotate(-2deg); }

/* Handgezeichnete Icons in Weiß */
.season-icon .ic {
  stroke: var(--white);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.season-icon .ic-dot {
  fill: var(--white);
}

.season-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

/* --------------------------------------------------------------------------
   11. Sektion 2 – Ferienwohnung
   -------------------------------------------------------------------------- */
.section-quote {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--kastanie);
  line-height: 1.65;
  margin: 0 0 2rem;
  font-style: italic;
}
.section-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.78em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sandgrau);
  margin-top: 0.8rem;
}

/* Highlights-Reihe (eigene grüne Sektion) */
.section--green { background: var(--waldgruen); }
.section--winterblau { background: var(--winterblau); }
.section--winterblau .fw-feature h3 { color: var(--winterblau); }
.section--winterblau .fw-feature-icon svg { stroke: var(--winterblau); }

.apartment-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.highlights-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Weiße Variante auf grünem Grund */
.section--green .apt-highlight-icon .hic   { stroke: var(--white); }
.section--green .apt-highlight-icon .hic-dot { fill: var(--white); }
.section--green .apt-highlight-title       { color: var(--white); }
.section--green .apt-highlight p           { color: rgba(255,255,255,.82); }

.apt-highlight {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.apt-highlight-icon {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.apt-highlight-icon svg {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  transition: transform 0.5s var(--ease-out);
}

.apt-highlight-title {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--salbei);
  text-transform: uppercase;
}

/* Slot-Machine Reels für Ferienwohnung-Stats */
.slot-reel {
  display: inline-block;
  overflow: hidden;
  height: 1em;
  vertical-align: middle;
}
.slot-reel-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.slot-reel-track div {
  display: block;
  height: 1em;
  line-height: 1em;
}
.apt-highlight:hover .apt-highlight-icon svg {
  transform: scale(1.1) rotate(-2deg);
}

/* Positive Strichzeichnung in Salbeigrün */
.apt-highlight-icon .hic {
  stroke: var(--salbei);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.apt-highlight-icon .hic-dot { fill: var(--salbei); }
/* Huhn-Icon: behält seine Originalfarbe, wird nie weiß überschrieben */
.apt-highlight-icon .hic-natural { fill: #1D1D1B; }

.apt-highlight p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(26,26,26,.75);
}

/* ==========================================================================
   UNTERSEITE FERIENWOHNUNG
   ========================================================================== */

/* Solider Header auf Unterseiten ohne Hero (fällt sofort solide ein) */
#main-nav.is-solid { transform: translateY(0) !important; }

/* Unterseiten: Logo von Anfang an sichtbar (weiß), Buchen terrakotta auf grün */
#main-nav.nav-subpage:not(.is-sticky) .nav-logo-wrap         { opacity: 1; pointer-events: auto; }
#main-nav.nav-subpage:not(.is-sticky) .nav-logo-img          { filter: brightness(0) invert(1); }
#main-nav.nav-subpage:not(.is-sticky) .nav-btn--filled       { background: var(--terrakotta); border-color: var(--terrakotta); color: var(--white); }
#main-nav.nav-subpage:not(.is-sticky) .nav-btn--filled:hover { background: var(--waldgruen); border-color: var(--waldgruen); color: var(--white); }

/* Transparenter Header über hellem Hero-Band → dunkle Schrift & Icons */
#main-nav.nav-onlight:not(.is-sticky) .nav-links li a        { color: var(--text); }
#main-nav.nav-onlight:not(.is-sticky) .nav-links li a.is-active { color: var(--salbei); }
#main-nav.nav-onlight:not(.is-sticky) .nav-phone             { color: var(--salbei); }
#main-nav.nav-onlight:not(.is-sticky) .nav-btn--outline      { border-color: var(--salbei); color: var(--salbei); }
#main-nav.nav-onlight:not(.is-sticky) .nav-btn--outline:hover { background: var(--salbei); color: var(--white); }
#main-nav.nav-onlight:not(.is-sticky) .nav-toggle span       { background: var(--text); }

/* --- Page-Hero: beige-grünes Band oben + querformatiges Bild --- */
.fw-hero {
  position: relative;
  padding: 72px var(--gutter) 0;
  /* Salbeigrün-Band: deckt Nav-Bereich ab, endet auf halber Bildhöhe */
  background: linear-gradient(to bottom,
              var(--hero-band) 0,
              var(--hero-band) 50%,
              transparent 50%);
}
.fw-hero-head {
  max-width: 920px;
  margin: 0 auto 2.2rem;
  text-align: center;
}
.fw-hero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--terrakotta);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.fw-hero-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  color: var(--waldgruen);
}
.fw-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin: 0.9rem auto 0;
  max-width: 44ch;
  color: rgba(26,26,26,.7);
}
.fw-hero-frame {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}
.fw-hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Meta-Chips unter dem Hero */
.fw-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: var(--max-w);
  margin: 1.6rem auto 0;
}
.fw-chip {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-light);
  border: 1px solid rgba(113,122,86,.18);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
}
.fw-chip strong {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--salbei);
  margin-right: 0.35rem;
}

/* --- Intro-Sektion: Bild-Stack --- */
.fw-intro-stack {
  position: relative;
  padding-bottom: 3rem;
  padding-right: 2.5rem;
}
.fw-intro-photo {
  overflow: hidden;
}
.fw-intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.fw-intro-photo--main {
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 54px rgba(0,0,0,.18);
}
.fw-intro-photo--inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 3 / 4;
  border: 5px solid var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.fw-intro-photo--main img,
.fw-intro-photo--inset img {
  transition: transform 0.7s var(--ease-out);
}
.fw-intro-photo:hover img { transform: scale(1.04); }

/* --- Ausstattung: Feature-Grid --- */
.fw-equip-header {
  max-width: 640px;
  margin-bottom: 3.4rem;
}
.fw-equip-header .eyebrow { display: inline-block; }

.fw-equip-header--with-card {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.fw-equip-header--with-card .fw-equip-header-text {
  flex: 1;
  min-width: 0;
}
.fw-equip-card-visual {
  flex-shrink: 0;
  width: 320px;
}
.fw-card-img {
  width: 320px;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.fw-card-img--sommer { transform: rotate(3deg); }
.fw-card-img--winter { transform: rotate(-3deg); }

@media (max-width: 900px) {
  .fw-equip-header--with-card { flex-direction: column; gap: 2.4rem; }
  .fw-equip-card-visual { width: 100%; display: flex; justify-content: center; }
  .fw-card-img { width: 260px; }
}
.fw-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.fw-feature-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.fw-feature {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 1.7rem 2.1rem;
  box-shadow: 0 10px 34px rgba(31,34,24,.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.fw-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(31,34,24,.12);
}
.fw-feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.3rem;
}
.fw-feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--salbei);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fw-feature h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--salbei);
  margin-bottom: 0.6rem;
}
.fw-feature p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(26,26,26,.72);
}

/* Slideshow im Hero-Frame – aspect-ratio treibt die Höhe, Frame clippt */
.fw-hero-frame .apt-slideshow {
  position: relative;
  aspect-ratio: 21 / 9;
  box-shadow: none;
  cursor: default;
}
.fw-hero-frame .apt-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.fw-hero-frame .apt-dot              { background: rgba(255,255,255,.4); }
.fw-hero-frame .apt-dot:hover        { background: rgba(255,255,255,.7); }
.fw-hero-frame .apt-dot.is-active    { background: var(--white); }

/* --- Galerie --- */
.fw-gallery-header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.fw-gallery-header .eyebrow { display: inline-block; }
.fw-gallery-stage {
  max-width: 1040px;
  margin: 0 auto;
}
.fw-gallery-stage .apt-slideshow {
  aspect-ratio: 16 / 10;
}

/* --- Booking-Card --- */
.fw-booking-card {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}
.fw-booking-info {
  padding: clamp(2rem, 4vw, 3.4rem);
}
.fw-booking-eyebrow {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--terrakotta);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.fw-booking-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--salbei);
  line-height: 1.15;
  margin-bottom: 1.8rem;
}
.fw-booking-list {
  display: flex;
  flex-direction: column;
}
.fw-booking-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(26,26,26,.09);
}
.fw-booking-list li:last-child { border-bottom: 1px solid rgba(26,26,26,.09); }
.fw-booking-key {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--salbei);
  flex-shrink: 0;
}
.fw-booking-val {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  text-align: right;
}
.fw-booking-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--hellbeige);
}
.fw-booking-price-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(26,26,26,.55);
}
.fw-booking-price {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--salbei);
  line-height: 1;
  margin-bottom: 1.4rem;
}
.fw-booking-price em {
  font-style: normal;
  font-size: 0.38em;
  color: rgba(26,26,26,.55);
  display: inline;
  margin-right: 0.2em;
  vertical-align: middle;
}
.fw-booking-price span {
  font-size: 0.3em;
  color: rgba(26,26,26,.55);
}
.fw-booking-btn { width: 100%; }
.fw-booking-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--salbei);
  margin-top: 0.9rem;
  transition: color 0.2s ease;
}
.fw-booking-link:hover { color: var(--waldgruen); }

/* --- Bio-Sektion --- */
.fw-bio-layout { grid-template-columns: 0.9fr 1.1fr; }
.fw-bio-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
}
.fw-bio-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.fw-bio-photo:hover img { transform: scale(1.04); }
.fw-bio-highlight {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  border-left: 3px solid var(--terrakotta);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
}
.fw-bio-highlight strong { color: var(--kastanie); }

/* --- CTA-Band --- */
.fw-cta {
  position: relative;
  text-align: center;
  padding-top: 9rem;
}
.fw-cta-wave {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  width: calc(100% + 2px);
  line-height: 0;
  transform: scaleY(-1);
  pointer-events: none;
}
.fw-cta-wave svg { display: block; width: 100%; height: auto; }
.fw-cta-inner { max-width: 880px; }
.eyebrow--light { color: rgba(255,255,255,.92); }
.fw-cta-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  color: var(--white);
  margin: 0 auto 2.2rem;
  max-width: 22ch;
}
.fw-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   12. Sektion 3 – Region
   -------------------------------------------------------------------------- */
.region-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.region-header .eyebrow  { display: inline-block; }
.region-header .section-divider { display: flex; justify-content: center; }

.region-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
/* Versetzte Karten für lebendigen Rhythmus */
.region-cards > .region-card:nth-child(2) { margin-top: 3.5rem; }
.region-cards > .region-card:nth-child(1) { margin-bottom: 3.5rem; }

.region-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.region-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.region-card-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.region-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.region-card:hover .region-card-photo img { transform: scale(1.04); }

.region-card-body { padding: 1.8rem 2rem 2.2rem; }

.region-card-eyebrow {
  font-family: var(--font-script);
  color: var(--terrakotta);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.region-card-body h3 {
  font-family: var(--font-head);
  color: var(--salbei);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.region-card-body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26,26,26,.72);
}
.region-card-body p + p { margin-top: 0.9rem; }
.region-card-body .region-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terrakotta);
  line-height: 1.4;
}

.region-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}

.region-wave {
  position: absolute;
  bottom: -2px;
  left: -1px;
  right: -1px;
  width: calc(100% + 2px);
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}
.region-wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.section-region {
  padding-bottom: 13rem;
  z-index: 3;
}

/* Störer im Eyebrow-Stil mit handgezeichnetem Pfeil */
.nationalpark-stoerer {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-script);
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--terrakotta);
  text-transform: uppercase;
  max-width: 720px;
  margin: 0 auto 0.5rem;
  text-align: left;
}

.nationalpark-stoerer-pfeil {
  width: 38px;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.4rem;
  /* Schwarz → Terrakotta einfärben */
  filter: invert(60%) sepia(43%) saturate(751%) hue-rotate(326deg) brightness(95%) contrast(86%);
}

/* Störer auf dunklem Hintergrund: weiß statt Terrakotta */
.section--winterblau .nationalpark-stoerer,
.section--green .nationalpark-stoerer {
  color: var(--white);
}
.section--winterblau .nationalpark-stoerer-pfeil,
.section--green .nationalpark-stoerer-pfeil {
  filter: invert(1);
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
footer {
  background: var(--waldgruen);
  color: var(--white);
  padding: 5rem var(--gutter) 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo-link { display: inline-block; }

.footer-logo {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
}


.footer-col-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.2rem;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(255,255,255,.7);
}
.footer-address strong { color: var(--white); font-weight: 600; }
.footer-address a {
  color: rgba(255,255,255,.7);
  transition: color 0.2s ease;
}
.footer-address a:hover { color: var(--white); }

.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-hints {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 2.5rem;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,.38);
}

.footer-partner-logos { display: flex; align-items: center; gap: 2rem; }

.footer-partner-logo {
  height: 36px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity 0.2s ease;
}
.footer-partner-logo:hover { opacity: 1; }

/* --------------------------------------------------------------------------
   14. Responsive – Laptop / kleinere Desktops
   -------------------------------------------------------------------------- */
@media (min-width: 901px) and (max-width: 1100px) {
  :root { --gutter: 3.5rem; --section-v: 5.5rem; }
  .split-layout { gap: 3rem; }
  .intro-inner  { gap: 3rem; }
  .footer-inner { gap: 2.5rem; }
  .donkey-peek img { width: 220px; bottom: -4rem; }
  .section-apartment { padding-top: calc(var(--section-v) + 7rem); }
}

/* --------------------------------------------------------------------------
   15. Responsive – Tablet Portrait + Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  :root { --gutter: 2rem; --section-v: 5rem; }

  /* Hero: auf Mobile nicht fullscreen, nur 60 % hoch */
  .hero { height: 60vh; min-height: 380px; }

  /* Ferienwohnung-Unterseite */
  .fw-hero {
    padding: 72px 1.5rem 0;
    background: linear-gradient(to bottom,
                var(--hero-band) 0,
                var(--hero-band) calc(72px + (100vw - 3rem) / 3),
                transparent calc(72px + (100vw - 3rem) / 3));
  }
  .fw-hero-frame .apt-slideshow { aspect-ratio: 3 / 2; }
  .fw-intro-stack { padding-right: 1.5rem; padding-bottom: 1.5rem; }
  .fw-feature-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .fw-feature-grid--three { grid-template-columns: 1fr 1fr; }
  .fw-booking-card { grid-template-columns: 1fr; }
  .fw-booking-list li { gap: 1rem; }
  .fw-bio-layout { grid-template-columns: 1fr; }
  .fw-cta { padding-top: 7rem; }

  /* Nav – Mobile Layout */
  #main-nav {
    display: flex;
    grid-template-columns: none;
    padding: 0 1rem 0 2rem;
    gap: 0;
  }
  .nav-links { display: none; }

  /* Logo: nimmt keinen Platz ein wenn transparent, sichtbar wenn sticky */
  .nav-logo-wrap {
    width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    flex-shrink: 0;
    transition: opacity 0.3s var(--ease-out);
  }
  #main-nav.is-sticky .nav-logo-wrap {
    width: auto;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    margin-right: auto;
  }

  /* Buttons: sichtbar wenn transparent, weg wenn sticky */
  .nav-ctas {
    flex-shrink: 0;
    margin-right: 0.75rem;
  }
  #main-nav.is-sticky .nav-ctas { display: none; }

  /* Unterseiten mit fw-hero (nav-subpage): Logo sofort zeigen, CTAs verstecken */
  #main-nav.nav-subpage .nav-logo-wrap {
    width: auto;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    margin-right: auto;
  }
  #main-nav.nav-subpage .nav-ctas { display: none; }

  /* E-Mail-Icon im Nav auf Mobilgeräten ausblenden */
  .nav-email { display: none; }

  /* Telefon + Toggle als Gruppe nach rechts schieben */
  .nav-right {
    margin-left: auto;
  }
  #main-nav.is-sticky .nav-right,
  #main-nav.nav-subpage .nav-right { margin-left: 0; }

  .nav-toggle {
    display: flex;
    margin-left: 0;
    margin-right: 0;
  }

  /* Hero */

  /* Layouts */
  .split-layout { grid-template-columns: 1fr; gap: 3rem; }
  .intro-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .intro-seasons { grid-template-columns: 1fr 1fr; }
  .apt-stats { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Versätze auf Tablet/Mobil reduzieren */
  .intro-seasons > .season-row:nth-child(even) { margin-top: 1.8rem; }
  .split-text .section-quote,
  .split-text .section-text,
  .split-text .btn { margin-left: 0; }
  .split-text .section-text { max-width: none; }

  /* Fließtext auf Tablet/Mobil etwas größer */
  .section-text { font-size: 1.05rem; }

  /* Hero: weniger Abstand zwischen Eyebrow und Logo */
  .hero-eyebrow { margin-bottom: 0.6rem; }

  /* Esel auf Tablet/Mobil */
  .donkey-peek img { width: 220px; bottom: -4rem; }
  .section-apartment { padding-top: calc(var(--section-v) + 5rem); }
  .section-region { padding-bottom: 8rem; }


  /* Apartment */
  .apartment-highlights { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Region */
  .region-cards { grid-template-columns: 1fr; }
  .region-cards > .region-card:nth-child(2) { margin-top: 0; }
  .region-cards > .region-card:nth-child(1) { margin-bottom: 0; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
}

/* --------------------------------------------------------------------------
   16. Responsive – iPhone
   -------------------------------------------------------------------------- */
@media (max-width: 560px) {
  :root { --section-v: 4rem; }
  .section-region { padding-bottom: 6rem; }

  /* Ferienwohnung-Unterseite */
  .fw-hero {
    padding: 72px 1rem 0;
    background: linear-gradient(to bottom,
                var(--hero-band) 0,
                var(--hero-band) calc(72px + (100vw - 2rem) * 0.4),
                transparent calc(72px + (100vw - 2rem) * 0.4));
  }
  .fw-hero-frame .apt-slideshow { aspect-ratio: 5 / 4; }
  .fw-intro .intro-header { opacity: 1; transform: none; }
  .fw-feature-grid { grid-template-columns: 1fr; }
  .fw-feature-grid--three { grid-template-columns: 1fr; }
  .fw-intro-photo--inset { width: 50%; }
  .fw-booking-list li { flex-direction: column; gap: 0.2rem; align-items: flex-start; }
  .fw-booking-val { text-align: left; }
  .fw-cta-actions { flex-direction: column; align-items: stretch; }

  .nav-ctas { gap: 0.35rem; }
  .nav-btn  { padding: 0.5rem 0.8rem; font-size: 0.72rem; }
  .nav-btn .btn-text { padding: 0.45rem 0.7rem; font-size: 0.72rem; }

  .hero-eyebrow { font-size: 1.6rem; }

  .donkey-peek img { width: 115px; bottom: -2.5rem; }

  .intro-seasons { grid-template-columns: 1fr; }
  .intro-seasons > .season-row:nth-child(even),
  .intro-seasons > .season-row:nth-child(odd) { margin-top: 0; margin-bottom: 0; }
  .apt-stats { grid-template-columns: 1fr 1fr; gap: 1.6rem; }

  .section-h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  .nationalpark-stoerer { font-size: 1.4rem; gap: 0.6rem; }
  .nationalpark-stoerer-pfeil { width: 30px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo { height: 80px; }
  .footer-partner-logos { flex-direction: column; gap: 1.2rem; align-items: center; }

  .section-apartment { padding-top: calc(var(--section-v) + 1rem); }

  /* Intro-Sektion: weniger Abstand zur Welle auf iPhone */
  .section-intro { padding-bottom: calc(var(--section-v) + 2rem); }

}

/* --------------------------------------------------------------------------
   Scroll-to-Top
   -------------------------------------------------------------------------- */
#scroll-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--salbei);
  color: var(--white);
  border: none;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
              background 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
#scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--waldgruen);
}
#scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   27"+ Bildschirme (≥ 1800px)
   -------------------------------------------------------------------------- */
@media (min-width: 1800px) {
  .section-region { padding-bottom: 20rem; }
}



/* ==========================================================================
   ANFRAGE-SEITE
   ========================================================================== */

/* ── Hero ── */
.anfrage-hero {
  position: relative;
  padding: calc(72px + 4rem) 0 9rem;
  background: var(--bg-light);
}
.anfrage-hero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--terrakotta);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.anfrage-hero-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: var(--waldgruen);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.anfrage-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
}

/* ── Bergwelle ── */
.anfrage-hero-wave {
  position: absolute;
  bottom: -2px;
  left: -1px;
  right: -1px;
  width: calc(100% + 2px);
  line-height: 0;
  pointer-events: none;
}
.anfrage-hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Sektion + Layout ── */
.anfrage-section { padding-top: 3rem; padding-bottom: 5rem; }

.anfrage-container {}

/* ── Formular ── */
.anfrage-form { width: 100%; }

.anfrage-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.anfrage-legend {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--waldgruen);
  margin-bottom: 1.25rem;
  width: 100%;
}

.anfrage-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.anfrage-row--2 { grid-template-columns: 1fr 1fr; }
.anfrage-row--dates { grid-template-columns: 2fr 1fr 1fr; }

.anfrage-field { display: flex; flex-direction: column; gap: 0.4rem; }
.anfrage-field--stepper { min-width: 0; }

.anfrage-field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.anfrage-required { color: var(--terrakotta); }

.anfrage-form input[type="text"],
.anfrage-form input[type="email"],
.anfrage-form input[type="tel"],
.anfrage-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(0,0,0,.13);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.anfrage-form input:focus,
.anfrage-form textarea:focus {
  outline: none;
  border-color: var(--waldgruen);
  box-shadow: 0 0 0 3px rgba(113,122,86,.12);
}
.was-validated .anfrage-form input:invalid,
.was-validated .anfrage-form textarea:invalid { border-color: var(--terrakotta); }
.anfrage-form textarea { resize: vertical; min-height: 130px; }

/* ── Datums-Trigger ── */
.daterange-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(0,0,0,.13);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
  min-height: 52px;
}
.daterange-trigger:hover,
.daterange-trigger:focus {
  border-color: var(--waldgruen);
  box-shadow: 0 0 0 3px rgba(113,122,86,.12);
  outline: none;
}
.daterange-trigger.has-value { color: var(--text-dark); }
.daterange-icon { width: 17px; height: 17px; flex-shrink: 0; color: var(--waldgruen); }
.daterange-sep  { color: rgba(0,0,0,.25); font-size: 0.85rem; }
.daterange-nights {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--waldgruen);
  background: rgba(113,122,86,.1);
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  white-space: nowrap;
  display: none;
}
.daterange-trigger.has-value .daterange-nights { display: inline-block; }

/* ── Stepper ── */
.anfrage-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(0,0,0,.13);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  height: 52px;
}
.anfrage-stepper input[type="number"] {
  border: none !important;
  box-shadow: none !important;
  text-align: center;
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0 !important;
  -moz-appearance: textfield;
  background: transparent;
}
.anfrage-stepper input[type="number"]::-webkit-inner-spin-button,
.anfrage-stepper input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.anfrage-stepper input:focus { box-shadow: none !important; outline: none; }
.stepper-btn {
  width: 40px; height: 100%;
  background: var(--bg-light);
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--waldgruen);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.stepper-btn:hover { background: rgba(113,122,86,.15); }

/* ── Footer ── */
.anfrage-footer {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.anfrage-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.anfrage-check input[type="checkbox"] {
  width: 20px; height: 20px;
  flex-shrink: 0;
  accent-color: var(--waldgruen);
  cursor: pointer;
  margin-top: 2px;
}
.anfrage-check a { color: var(--waldgruen); text-decoration: underline; }
.anfrage-captcha { margin: 0; }
.anfrage-submit  { padding: 0.95rem 2.4rem; }
.anfrage-hint    { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ── Feldvalidierung: rote Markierung + Tooltip ── */
.anfrage-form input.field-error,
.anfrage-form textarea.field-error {
  border-color: var(--terrakotta) !important;
  box-shadow: 0 0 0 3px rgba(176,87,63,.12) !important;
}
.daterange-trigger.field-error {
  border-color: var(--terrakotta) !important;
  box-shadow: 0 0 0 3px rgba(176,87,63,.12) !important;
}

.field-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--terrakotta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  animation: tooltipIn 0.18s var(--ease-out) both;
}
.field-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 14px;
  border: 5px solid transparent;
  border-top-color: var(--terrakotta);
}
@keyframes tooltipIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Meldung ── */
.anfrage-message {
  margin-top: 1.5rem;
  padding: 1.4rem 1.75rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  display: none;
  width: 100%;
  box-sizing: border-box;
}
.anfrage-message:not(:empty) { display: block; }
.anfrage-message--success {
  background: rgba(113,122,86,.13);
  border: 1.5px solid rgba(113,122,86,.4);
  color: #354524;
  font-size: 1.05rem;
}
.anfrage-message--error {
  background: rgba(176,87,63,.08);
  border: 1.5px solid rgba(176,87,63,.35);
  color: #7a3020;
}

/* ── Aside ── */
.anfrage-aside { position: sticky; top: calc(72px + 2rem); }

.anfrage-aside-inner {
  background: var(--hellbeige);
  border-radius: 12px;
  overflow: hidden;
  padding: 2.25rem 2rem 2rem;
}

.anfrage-aside-eyebrow {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--terrakotta);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.anfrage-aside-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--waldgruen);
  margin-bottom: 0.9rem;
  line-height: 1.12;
}
.anfrage-aside-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.anfrage-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,.08);
}
.anfrage-contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.anfrage-contact-icon {
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.anfrage-contact-icon svg { width: 17px; height: 17px; color: var(--waldgruen); }
.anfrage-contact-text { display: flex; flex-direction: column; gap: 0.08rem; }
.anfrage-contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.anfrage-contact-list a,
.anfrage-contact-list span:not(.anfrage-contact-label) {
  font-size: 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}
.anfrage-contact-list a:hover { color: var(--waldgruen); }

/* ================================================================
   DATE-RANGE-PICKER
   ================================================================ */
.drp-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 900;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.drp-overlay.is-active { opacity: 1; pointer-events: auto; }

.drp {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  z-index: 901;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  width: min(880px, calc(100vw - 2rem));
  max-height: calc(100vh - 4rem);
  overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
}
.drp.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }

.drp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
  flex-shrink: 0;
}
.drp-selected {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--waldgruen);
}
.drp-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light); border: none; border-radius: 50%;
  cursor: pointer; color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.drp-close svg { width: 16px; height: 16px; }
.drp-close:hover { background: var(--hellbeige); color: var(--text-dark); }

.drp-calendars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 1.75rem 2rem;
  overflow-y: auto; flex: 1;
}
.drp-calendars .drp-month + .drp-month {
  padding-left: 2rem;
  border-left: 1px solid rgba(0,0,0,.07);
}

.drp-month { min-width: 0; }
.drp-month-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.drp-month-name {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 400;
  color: var(--text-dark);
}
.drp-nav-prev, .drp-nav-next {
  width: 34px; height: 34px;
  background: var(--bg-light); border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-dark); transition: background 0.15s;
}
.drp-nav-prev svg, .drp-nav-next svg { width: 16px; height: 16px; }
.drp-nav-prev:hover, .drp-nav-next:hover { background: var(--hellbeige); }

.drp-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.drp-weekday {
  text-align: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); padding-bottom: 0.75rem;
}
.drp-day {
  text-align: center; padding: 0.55rem 0;
  font-size: 0.92rem; border-radius: 6px;
  cursor: default; color: var(--text-dark);
  transition: background 0.1s, color 0.1s;
}
.drp-day[data-date] { cursor: pointer; }
.drp-day[data-date]:hover { background: var(--hellbeige); }
.drp-day--past { color: rgba(0,0,0,.2); cursor: default; }
.drp-day--blocked {
  color: rgba(0,0,0,.28);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: var(--terrakotta);
  background: repeating-linear-gradient(
    -45deg,
    rgba(215,120,89,.08),
    rgba(215,120,89,.08) 3px,
    transparent 3px,
    transparent 6px
  );
}
.drp-day--blocked:hover { background: repeating-linear-gradient(
    -45deg,
    rgba(215,120,89,.08),
    rgba(215,120,89,.08) 3px,
    transparent 3px,
    transparent 6px
  ); }
.drp-day--today { font-weight: 700; color: var(--waldgruen); }
.drp-day--start,
.drp-day--end {
  background: var(--waldgruen) !important;
  color: #fff !important;
  font-weight: 600;
}
.drp-day--range,
.drp-day--hover {
  background: rgba(113,122,86,.12);
  border-radius: 0;
  color: var(--waldgruen);
}

.drp-legend {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0 2rem 0.25rem;
  font-size: 0.82rem; color: var(--text-muted);
  flex-shrink: 0;
}
.drp-legend-swatch {
  width: 22px; height: 22px; border-radius: 5px; flex-shrink: 0;
  position: relative;
  background: repeating-linear-gradient(
    -45deg,
    rgba(215,120,89,.10),
    rgba(215,120,89,.10) 3px,
    transparent 3px,
    transparent 6px
  );
}
.drp-legend-swatch::after {
  content: ""; position: absolute; left: 3px; right: 3px; top: 50%;
  height: 1.5px; background: var(--terrakotta); transform: translateY(-50%);
}

.drp-footer {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 1rem;
  padding: 1.25rem 2rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,.07);
  flex-shrink: 0;
}
.drp-clear {
  background: none; border: none;
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--text-muted); cursor: pointer;
  padding: 0.5rem 0.75rem; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.drp-clear:hover { color: var(--text-dark); background: var(--bg-light); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .anfrage-hero { padding-top: calc(72px + 2.5rem); padding-bottom: 6rem; padding-left: 0; padding-right: 0; }
  .anfrage-section { padding-top: 2.5rem; padding-bottom: 3.5rem; }
  .drp-calendars { grid-template-columns: 1fr; }
  .drp-calendars .drp-month + .drp-month {
    padding-left: 0; border-left: none;
    border-top: 1px solid rgba(0,0,0,.07);
    padding-top: 1.5rem; margin-top: 1.5rem;
  }
}
@media (max-width: 700px) {
  .anfrage-row--dates { grid-template-columns: 1fr 1fr; }
  .anfrage-row--dates .anfrage-field:first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .anfrage-row--2 { grid-template-columns: 1fr; }
  .anfrage-row--dates { grid-template-columns: 1fr 1fr; }
  .anfrage-hero-eyebrow { font-size: 1.9rem; }
  .anfrage-hero-title { font-size: 2rem; }
  .drp {
    border-radius: 12px 12px 0 0;
    top: auto; bottom: 0; left: 0; right: 0;
    width: 100%;
    transform: translateY(20px);
  }
  .drp.is-open { transform: translateY(0); }
  .drp-header, .drp-footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .drp-calendars { padding: 1.25rem; }
}

/* ==========================================================================
   Legal Pages (impressum / datenschutz / cookies)
   ========================================================================== */

.legal-section { padding-top: 3rem; padding-bottom: 5rem; }

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--waldgruen);
  margin: 2.5rem 0 0.75rem;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin: 1.75rem 0 0.5rem;
}

.legal-content p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.legal-content a {
  color: var(--waldgruen);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--terrakotta); }

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.legal-content th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  background: var(--bg-light);
  border-bottom: 2px solid var(--waldgruen);
  color: var(--waldgruen);
}

.legal-content td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(89,95,68,.15);
  vertical-align: top;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.legal-content th { overflow-wrap: anywhere; }

.legal-content table { table-layout: fixed; }

.legal-content .legal-stamp {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-content .legal-cookie-btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.7rem 1.5rem;
  background: var(--waldgruen);
  color: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.legal-content .legal-cookie-btn:hover {
  background: var(--terrakotta);
  color: #fff;
}

@media (max-width: 560px) {
  .legal-content table { font-size: 0.82rem; }
  .legal-content th, .legal-content td { padding: 0.4rem 0.5rem; }
}

/* ============================================================
   iPhone: alle Inhaltstexte linksbündig
   ============================================================ */
@media (max-width: 560px) {
  /* Globale Textelemente */
  .eyebrow,
  .section-eyebrow,
  .section-title,
  .section-text,
  .section-intro,
  .section-h2,

  /* Hero & Intro (hero-title/-eyebrow/-subtitle bleiben zentriert → nicht in der Liste) */
  .fw-hero-eyebrow,
  .fw-hero-title,
  .fw-hero-sub,
  .anfrage-hero-eyebrow,
  .anfrage-hero-title,
  .anfrage-hero-sub,

  /* Intro-Sektion */
  .intro-header,
  .intro-slogan,

  /* Apartment / FW */
  .fw-intro-eyebrow,
  .fw-intro-title,
  .fw-intro-text,
  .fw-equip-eyebrow,
  .fw-equip-title,
  .fw-equip-text,

  /* Highlights & Aktivitäten */
  .apt-highlight-title,
  .apt-highlight-text,
  .region-eyebrow,
  .region-title,
  .region-intro,
  .region-text,
  .region-card-eyebrow,
  .section-quote,
  blockquote,

  /* Karten-Sections */
  .sommercard-eyebrow,
  .sommercard-title,
  .sommercard-text,
  .wintercard-eyebrow,
  .wintercard-title,
  .wintercard-text,
  .nationalpark-eyebrow,
  .nationalpark-title,
  .nationalpark-text,

  /* Stats & Typo */
  .apt-stat-label,

  /* CTA-Band */
  .cta-band-text h2,
  .cta-band-text p,

  /* Legal */
  .legal-content h2,
  .legal-content p {
    text-align: left;
  }

  /* Ornament-Linie (section-divider) links ausrichten */
  .section-divider,
  .intro-header .section-divider,
  .region-header .section-divider {
    justify-content: flex-start;
  }

  .region-header { text-align: left; }

  /* intro-header: text-align override (overrides .intro-header { text-align: center }) */
  .intro-header {
    text-align: left;
  }

  /* Ornament-Linie unter Titeln: links statt zentriert */
  .section-title::after,
  .fw-hero-title::after,
  .fw-intro-title::after {
    margin-left: 0;
    margin-right: auto;
  }

  /* CTA-Buttons: linksbündig ausrichten */
  .highlights-cta { text-align: left; }
}
