/* ===========================================================
   Haus Edelweiss — Stylesheet
   Farben: Tannengrün (--pine), Heugold (--hay), warmes Weiß (--paper)
   Schriften: Fraunces (Headlines), Albert Sans (Fließtext)
   =========================================================== */

:root {
  --paper: #faf8f3;
  --paper-deep: #f1ede4;
  --ink: #26312a;
  --ink-soft: #5a655c;
  --pine: #35563f;
  --pine-deep: #27422f;
  --hay: #c2974f;
  --hairline: rgba(38,49,42,0.14);
  --shadow: 0 18px 50px -18px rgba(38,49,42,0.28);
  --radius: 18px;
  --max: 1120px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Albert Sans", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Skip-Link (Barrierefreiheit) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pine);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Navigation ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,243,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow .4s;
}
nav.scrolled { box-shadow: 0 6px 30px -14px rgba(38,49,42,0.25); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo picture { display: flex; }
.nav-logo img { height: 50px; width: auto; transition: transform .3s cubic-bezier(.2,.6,.2,1); }
.nav-logo:hover img { transform: scale(1.06); }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--hay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.2,.6,.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-lang { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.06em; }
.nav-lang strong { color: var(--ink); }
.nav-lang a { padding: 2px 3px; }
.nav-lang a:hover { color: var(--pine); }
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .25s, background .25s, box-shadow .25s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn:focus-visible { outline: 2px solid var(--pine); outline-offset: 3px; }
.btn-pine { background: var(--pine); color: #fff; box-shadow: 0 8px 24px -10px rgba(39,66,47,0.55); }
.btn-pine:hover { background: var(--pine-deep); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--pine); color: var(--pine); background: transparent; }
.btn-ghost:hover { background: rgba(53,86,63,0.08); transform: translateY(-2px); }
@media (max-width: 880px) { .nav-links { display: none; } }
@media (max-width: 600px) {
  .nav-inner { padding: 10px 16px; }
  .nav-logo img { height: 40px; }
  /* CTA-Button ausblenden - der Hero hat denselben Button; so bleibt
     Platz fuer den Sprachumschalter DE/EN */
  .nav-right .btn { display: none; }
  .nav-lang { font-size: 14px; }
}

/* ---------- Hero ---------- */
header {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: -6% 0; will-change: transform; }
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-media img.active { opacity: 1; animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,22,0.28) 0%, transparent 35%, rgba(20,28,22,0.66) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 24px 70px;
  color: #fff;
}
.hero-logo {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
  opacity: 0;
  animation: rise .8s ease .05s forwards;
}
.hero-logo img {
  display: inline-block;
  width: min(620px, 88vw);
  height: auto;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.9)) drop-shadow(0 0 10px rgba(255,255,255,0.6)) drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise .8s ease .2s forwards;
}
.hero-content h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 17ch;
  margin-top: 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  opacity: 0;
  animation: rise .9s ease .4s forwards;
}
.hero-sub {
  margin-top: 18px;
  font-size: clamp(17px, 2vw, 20px);
  max-width: 50ch;
  opacity: 0;
  animation: rise .9s ease .6s forwards;
}
.hero-ctas {
  margin-top: 30px;
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: rise .9s ease .8s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-ctas .btn-ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.hero-ctas .btn-ghost:hover { background: rgba(255,255,255,0.14); }

.season-toggle {
  position: fixed;
  top: 86px;
  right: 24px;
  z-index: 90;
  display: flex;
  background: rgba(20,28,22,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 980px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(38,49,42,0.25);
}
.season-toggle button {
  border: 0;
  background: transparent;
  color: #fff;
  font: 600 13px var(--sans);
  letter-spacing: 0.04em;
  padding: 7px 18px;
  border-radius: 980px;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.season-toggle button.on { background: #fff; color: var(--ink); }
.season-toggle button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Mobil: Hero entzerren - kleineres Logo, kompaktere Texte */
@media (max-width: 640px) {
  .season-toggle { top: 72px; right: 16px; }
  .hero-logo { top: 118px; }
  .hero-logo img { width: min(360px, 72vw); }
  .hero-eyebrow { display: none; }
  .hero-content { padding: 130px 20px 44px; }
  .hero-content h1 { font-size: clamp(30px, 8.6vw, 40px); }
  .hero-sub { margin-top: 14px; font-size: 16px; }
  .hero-ctas { margin-top: 22px; gap: 10px; }
}

/* ---------- Fakten-Leiste ---------- */
.facts { background: var(--pine); color: #fdfcf8; }
.facts-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.fact b { display: block; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.fact span { font-size: 13.5px; opacity: .85; }
@media (max-width: 720px) { .facts-inner { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Shared ---------- */
section { padding: 100px 24px; }
.inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hay);
  margin-bottom: 12px;
}
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
}
h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  max-width: 24ch;
}
.section-sub { margin-top: 16px; font-size: 18px; color: var(--ink-soft); max-width: 62ch; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.2,.6,.2,1), transform .75s cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Die Wohnung ---------- */
.gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery a {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-deep);
  transition: transform .45s cubic-bezier(.2,.6,.2,1), box-shadow .45s;
}
.gallery a:hover, .gallery a:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow); }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.gallery a:hover img, .gallery a:focus-visible img { transform: scale(1.06); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.season-img { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.season-img.active { opacity: 1; }
.season-img picture { display: block; width: 100%; height: 100%; }
.gallery a.reveal:nth-child(4n+1) { --d: 0s; }
.gallery a.reveal:nth-child(4n+2) { --d: .08s; }
.gallery a.reveal:nth-child(4n+3) { --d: .16s; }
.gallery a.reveal:nth-child(4n+4) { --d: .24s; }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }

.amenities {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.amenity {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 15.5px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform .35s, box-shadow .35s;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity::before { content: "✦"; color: var(--hay); font-size: 14px; margin-top: 3px; transition: transform .35s; }
.amenity:hover::before { transform: scale(1.25) rotate(12deg); }
.amenity.reveal:nth-child(3n+1) { --d: 0s; }
.amenity.reveal:nth-child(3n+2) { --d: .08s; }
.amenity.reveal:nth-child(3n+3) { --d: .16s; }
@media (max-width: 820px) { .amenities { grid-template-columns: 1fr; } }

details.floorplan { margin-top: 30px; }
.floorplan-wrap { margin-top: 18px; max-width: 480px; }
.floorplan-wrap a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hairline);
  cursor: zoom-in;
}
.floorplan-wrap img { width: 100%; height: auto; display: block; }
.floorplan-note { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Preisrechner ---------- */
.prices { background: var(--paper-deep); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.calc {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
@media (max-width: 880px) { .calc { grid-template-columns: 1fr; } }

.calc-form,
.kontakt-form {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.calc-form h3, .kontakt-form h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 20px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--hairline);
  border-radius: 12px;
  font: 500 16px var(--sans);
  color: var(--ink);
  background: var(--paper);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 4px rgba(53,86,63,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.calc-result {
  border-radius: var(--radius);
  padding: 30px;
  background: var(--pine);
  color: #fdfcf8;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .4s, opacity .4s;
}
.calc-result.bump { animation: bump .45s cubic-bezier(.2,.6,.2,1); }
@keyframes bump { 0% { transform: scale(.985); opacity: .6; } 100% { transform: scale(1); opacity: 1; } }
.calc-result .placeholder { opacity: .8; font-size: 16.5px; }
.res-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  font-size: 15.5px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.res-line span:first-child { opacity: .85; }
.res-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  margin-top: 6px;
}
.res-total b { font-family: var(--serif); font-weight: 500; font-size: 38px; }
.res-hint { margin-top: 14px; font-size: 13px; opacity: .75; }
.res-warn { font-size: 16px; line-height: 1.55; }
.calc-result .btn { margin-top: 22px; background: #fff; color: var(--pine-deep); align-self: flex-start; }

details.all-prices { margin-top: 30px; }
details.all-prices summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--pine);
  font-size: 16px;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s;
}
details.all-prices summary:hover, details.all-prices summary:focus-visible { color: var(--pine-deep); }
details.all-prices summary::-webkit-details-marker { display: none; }
details.all-prices summary::after { content: "▾"; transition: transform .3s; }
details.all-prices[open] summary::after { transform: rotate(180deg); }
.price-table {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-head, .price-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 10px;
  padding: 13px 22px;
  font-size: 15px;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.price-head { font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); background: var(--paper); }
.price-row:last-child { border-bottom: 0; }
.price-row .period { color: var(--ink-soft); }
.price-row { transition: background .25s; }
.price-row:hover { background: var(--paper-deep); }
.price-row b { font-family: var(--serif); font-weight: 500; font-size: 17px; }
@media (max-width: 720px) {
  .price-head { display: none; }
  .price-row { grid-template-columns: 1fr 1fr; }
}
.price-note { margin-top: 18px; font-size: 14px; color: var(--ink-soft); max-width: 72ch; }

.booking-cta {
  margin-top: 28px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform .35s, box-shadow .35s;
}
.booking-cta:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.booking-cta p { margin: 0; max-width: 52ch; color: var(--ink-soft); font-size: 14.5px; }
.booking-cta .btn { flex-shrink: 0; }
@media (max-width: 640px) { .booking-cta { flex-direction: column; align-items: flex-start; } }

.storno-table {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.storno-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px;
  padding: 13px 22px;
  font-size: 15px;
  border-bottom: 1px solid var(--hairline);
  transition: background .25s;
}
.storno-row:hover { background: var(--paper-deep); }
.storno-row:last-child { border-bottom: 0; }
.storno-row span { color: var(--ink-soft); }
.storno-row b { font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--pine); }
.storno-note { margin-top: 14px; font-size: 14px; color: var(--ink-soft); max-width: 72ch; }
.storno-note a { color: var(--pine); text-decoration: underline; }
@media (max-width: 480px) {
  .storno-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Region ---------- */
.region-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}
.region-grid a {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-deep);
  transition: transform .45s cubic-bezier(.2,.6,.2,1), box-shadow .45s;
}
.region-grid a:hover, .region-grid a:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow); }
.region-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.region-grid a:hover img, .region-grid a:focus-visible img { transform: scale(1.06); }
.region-grid .cap {
  position: absolute;
  left: 14px; bottom: 12px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  transition: transform .35s cubic-bezier(.2,.6,.2,1);
}
.region-grid a:hover .cap, .region-grid a:focus-visible .cap { transform: translateY(-4px); }
.region-grid a.reveal:nth-child(3n+1) { --d: 0s; }
.region-grid a.reveal:nth-child(3n+2) { --d: .08s; }
.region-grid a.reveal:nth-child(3n+3) { --d: .16s; }
@media (max-width: 820px) { .region-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }

/* ---------- Anreise ---------- */
.anreise-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.anreise-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--paper-deep);
}
.anreise-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.anreise-media .video-mute {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
  transition: opacity .3s, background .3s;
}
.anreise-media .video-mute:hover,
.anreise-media .video-mute:focus-visible { opacity: 1; background: rgba(0,0,0,0.5); }
.anreise-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.anreise-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.anreise-list li::before { content: "✦"; color: var(--hay); font-size: 14px; margin-top: 3px; }
.anreise-text .btn { margin-top: 26px; }
@media (max-width: 880px) {
  .anreise-grid { grid-template-columns: 1fr; gap: 30px; }
  .anreise-media { order: -1; }
}

/* ---------- Webcam ---------- */
.webcam { background: var(--pine-deep); color: #fdfcf8; }
.webcam .eyebrow { color: #e4c98f; }
.webcam h2 { color: #fff; }
.webcam .section-sub { color: rgba(253,252,248,0.78); }
.webcam-frame {
  position: relative;
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  aspect-ratio: 16 / 9;
  background: #1b2b20;
}
.webcam-frame .webcam-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  text-align: center;
  padding: 20px;
}
.webcam-frame img#cam {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .3s;
  background: #000;
}
.webcam-frame .cam-link {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.35);
  color: #e0e0e0;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
  backdrop-filter: blur(3px);
  z-index: 2;
}
.webcam-frame .cam-link:hover { color: #fff; }
.webcam-frame .cam-fullscreen {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.8);
  border: none;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  z-index: 2;
  opacity: .6;
  transition: opacity .3s;
}
.webcam-frame .cam-fullscreen:hover,
.webcam-frame .cam-fullscreen:focus-visible { opacity: 1; }
.webcam-frame .cam-logo {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  filter: drop-shadow(0 0 5px black);
}
.webcam-frame .cam-logo.left { left: 10px; width: 130px; }
.webcam-frame .cam-logo.right { right: 10px; width: 150px; }
@media (max-width: 560px) {
  .webcam-frame .cam-logo.left { width: 90px; }
  .webcam-frame .cam-logo.right { width: 105px; }
}
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff7b6b;
}
.live-dot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff7b6b;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.webcam-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(253,252,248,0.65);
  max-width: 72ch;
}
.webcam-note a { text-decoration: underline; }

/* ---------- Gastgeber & Kontaktformular ---------- */
.host-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.host-text p { margin-top: 16px; font-size: 17.5px; color: var(--ink-soft); }
.host-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  margin-top: 28px;
}
.host-card h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; }
.host-card p { margin-top: 10px; color: var(--ink-soft); font-size: 16px; }
.host-card .tel {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--pine);
}
@media (max-width: 880px) { .host-inner { grid-template-columns: 1fr; gap: 36px; } }

/* Honeypot-Feld (Spam-Schutz, fuer Menschen unsichtbar) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
}
.field-checkbox input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--pine);
}
.field-checkbox a { color: var(--pine); text-decoration: underline; }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(53,86,63,0.1); color: var(--pine-deep); }
.form-status.error { background: rgba(255,123,107,0.14); color: #9a3324; }

.kontakt-form .btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 24px 56px;
  color: var(--ink-soft);
  font-size: 13.5px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-brand img { height: 52px; width: auto; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-links a:hover { color: var(--ink); }
.footer-fb { display: inline-flex; align-items: center; gap: 6px; }
.footer-fb svg { width: 15px; height: 15px; fill: currentColor; }

.footer-finisky {
  max-width: var(--max);
  margin: 22px auto 0;
  border-radius: var(--radius);
  background: #16263d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 6px;
  padding: 8px 16px;
}
.footer-finisky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px;
  color: #fff;
  transition: opacity .2s ease;
}
.footer-finisky a:hover { opacity: .85; }
.footer-finisky img { height: 40px; width: auto; }
.footer-finisky span { color: rgba(255,255,255,.8); }
.finisky-social { display: flex; gap: 2px; }
.finisky-social a { padding: 8px; }
.finisky-social svg { width: 22px; height: 22px; fill: rgba(255,255,255,.8); transition: fill .2s; }
.finisky-social a:hover svg { fill: #fff; }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal-header {
  padding: 150px 24px 40px;
  max-width: var(--max);
  margin: 0 auto;
}
.legal-header h1 { font-size: clamp(34px, 5.4vw, 56px); max-width: none; }
.legal {
  padding: 0 24px 100px;
  max-width: 820px;
  margin: 0 auto;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  margin-top: 44px;
  margin-bottom: 10px;
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 16px; color: var(--ink-soft); margin-top: 10px; }
.legal ul, .legal ol { margin-left: 22px; margin-top: 10px; }
.legal a { color: var(--pine); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal table {
  margin-top: 16px;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.legal table th, .legal table td {
  border: 1px solid var(--hairline);
  padding: 10px 14px;
  text-align: left;
  color: var(--ink-soft);
}
.legal table th { background: var(--paper-deep); color: var(--ink); font-weight: 600; }

/* ---------- 404-Seite ---------- */
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 24px 80px;
}
.error-page .eyebrow { }
.error-page h1 { font-size: clamp(40px, 8vw, 96px); }
.error-page p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); max-width: 50ch; }
.error-page .btn { margin-top: 28px; }

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img.active { animation: none; }
  .hero-logo, .hero-eyebrow, .hero-content h1, .hero-sub, .hero-ctas { animation: none; opacity: 1; }
  .live-dot::before { animation: none; }
  .calc-result.bump { animation: none; }
  .gallery a, .gallery img, .region-grid a, .region-grid img, .amenity, .btn { transition: none; }
  .amenity::before, .region-grid .cap, .booking-cta, .storno-row, .price-row,
  .nav-logo img, details.all-prices summary { transition: none; }
  .amenity:hover::before { transform: none; }
  .booking-cta:hover, .nav-logo:hover img { transform: none; }
  .lightbox, .lightbox-figure img { transition: none; }
  .legal-overlay, .legal-overlay-card { transition: none; }
  .season-img { transition: none; }
}

/* ---------- Lightbox ---------- */
.gallery a, .region-grid a, .floorplan-wrap a { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(26, 31, 26, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure {
  margin: 0;
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-figure picture { display: flex; min-height: 0; }
.lightbox-figure img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: opacity .25s ease;
}
.lightbox-caption {
  margin-top: 14px;
  color: var(--paper);
  font-size: 14px;
  text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: var(--paper);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover,
.lightbox-close:focus-visible, .lightbox-prev:focus-visible, .lightbox-next:focus-visible {
  background: rgba(255, 255, 255, .26);
}
.lightbox-close { top: 20px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-close { top: 10px; right: 10px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ---------- Legal-Overlay (Impressum/Datenschutz als Modal) ---------- */
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 26, 22, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.legal-overlay.is-open { opacity: 1; visibility: visible; }
.legal-overlay-card {
  background: var(--paper);
  border-radius: var(--radius);
  width: 100%;
  max-width: 820px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 32px 32px 50px;
  box-shadow: var(--shadow);
  transform: translateY(16px);
  transition: transform .25s ease;
}
.legal-overlay.is-open .legal-overlay-card { transform: translateY(0); }
.legal-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-overlay-head picture { display: flex; }
.legal-overlay-head img { height: 44px; width: auto; }
.legal-overlay-close {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.legal-overlay-close:hover, .legal-overlay-close:focus-visible { background: var(--paper-deep); color: var(--ink); }
.legal-overlay-body .legal-header { padding: 18px 0 0; max-width: none; margin: 0; }
.legal-overlay-body .legal { padding: 0; max-width: none; margin: 0; }
.legal-overlay-loading { padding: 60px 0; text-align: center; color: var(--ink-soft); }
@media (max-width: 640px) {
  .legal-overlay { padding: 12px; }
  .legal-overlay-card { padding: 22px 18px 36px; max-height: 92vh; }
  .legal-overlay-head img { height: 36px; }
}
