/* === Ferienwohnung Haas – modernes Mosel-Design === */

:root {
  --bg: #f7f2ea;            /* warm cream */
  --bg-2: #efe7d8;          /* mosel sandstein */
  --paper: #fffbf3;
  --ink: #1f1a16;
  --ink-2: #4a4039;
  --ink-3: #7a6f64;
  --wine: #6b1f24;          /* mosel wine red */
  --wine-2: #8b3036;
  --vine: #3d4a2a;          /* vineyard green */
  --gold: #b8893a;          /* riesling gold */
  --line: #d8cdb9;
  --line-soft: #e8ddc8;
  --shadow: 0 24px 60px -28px rgba(45,30,15,0.35);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #0a0807; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 1080px; }

/* === Typografie === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
em { font-style: italic; color: var(--wine); }

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 18px;
}

.sec-head { margin-bottom: 56px; max-width: 720px; }
.sec-head--center { margin: 0 auto 56px; text-align: center; }
.sec-head__lead {
  margin-top: 22px;
  color: var(--ink-2);
  font-size: 1.1rem;
  max-width: 640px;
}
.sec-head--center .sec-head__lead { margin-left: auto; margin-right: auto; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary {
  background: var(--wine);
  color: #fff8ec;
}
.btn--primary:hover { background: var(--wine-2); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn--ghost { color: #fff8ec; }
.btn--ghost:hover { border-color: currentColor; }
.btn--block { width: 100%; padding: 18px; }

/* === Navigation === */
.nav {
  position: fixed; inset: 16px 16px auto 16px;
  z-index: 100;
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, padding .3s, box-shadow .3s, border-color .3s, inset .3s;
  color: var(--ink);
  background: rgba(255, 251, 243, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow:
    0 10px 40px -10px rgba(20, 15, 10, 0.25),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}
.nav--scrolled {
  inset: 8px 8px auto 8px;
  background: rgba(255, 251, 243, 0.78);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(255, 255, 255, 0.7);
  padding: 10px 22px;
  box-shadow:
    0 14px 50px -10px rgba(20, 15, 10, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.7);
}
.nav__brand { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav__partner-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  padding: 0 20px;
}
.nav__partner-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity .2s;
}
.nav__partner-logo:hover { opacity: 1; }
.nav__partner-logo--mosel { height: 40px; }
@media (max-width: 960px) {
  .nav__partner-logos { display: none; }
}
.nav__wappen {
  width: 48px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
  transition: width .3s;
}
.nav--scrolled .nav__wappen {
  width: 40px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}
@media (max-width: 600px) {
  .nav__wappen { width: 34px; }
  .nav--scrolled .nav__wappen { width: 32px; }
}
.nav__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--wine); color: #fff8ec;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.nav__title { display: flex; flex-direction: column; line-height: 1.05; gap: 4px; }
.nav__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: font-size .3s;
}
.nav__sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 600;
  white-space: nowrap;
  transition: font-size .3s;
}
.nav--scrolled .nav__name { font-size: 1.2rem; }
.nav--scrolled .nav__sub { font-size: 0.68rem; }
@media (max-width: 600px) {
  .nav__name { font-size: 1rem; }
  .nav__sub { font-size: 0.6rem; letter-spacing: 0.14em; }
}
@media (max-width: 380px) {
  .nav__name { font-size: 0.85rem; }
  .nav__wappen { width: 26px; }
}
.nav__links {
  display: flex; align-items: center; gap: 24px;
  font-size: 0.92rem; font-weight: 500;
}
@media (min-width: 1201px) and (max-width: 1500px) {
  .nav__sub { display: none; }
  .nav__name { font-size: 1.2rem; }
  .nav__links { gap: 18px; font-size: 0.86rem; }
  .nav__links a.nav__cta { padding: 11px 20px; margin-left: 4px; }
  .nav__langs { margin-left: 6px; padding-left: 10px; }
}
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: currentColor; transition: width .3s;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a.nav__cta {
  padding: 13px 30px;
  margin-left: 8px;
  border: 0;
  background: var(--wine);
  color: #fff8ec !important;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow:
    0 10px 28px -6px rgba(107, 31, 36, 0.55),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nav__cta:hover {
  background: var(--wine-2);
  transform: translateY(-1px);
  box-shadow:
    0 12px 30px -6px rgba(107, 31, 36, 0.6),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}
.nav__cta::after { display: none !important; }
.nav--scrolled .nav__cta { background: var(--wine); color: #fff8ec; border-color: var(--wine); }
.nav__langs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.nav__lang {
  background: none;
  border: none;
  border-radius: 3px;
  padding: 0;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity .2s, box-shadow .2s, transform .2s;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.nav__lang::after,
.nav__lang::before { display: none !important; content: none !important; }
.nav__lang img {
  display: block;
  width: 26px;
  height: auto;
  border-radius: 3px;
}
.nav__lang:hover { opacity: 1; transform: translateY(-1px); }
.nav__lang--active {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
  cursor: default;
}
.nav--scrolled .nav__lang--active { box-shadow: 0 0 0 2px var(--wine); }
.nav__burger {
  display: none;
  background: none; border: 0;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block; height: 2px; width: 22px; background: currentColor;
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.4,.01,.2,1), opacity .22s ease;
}
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0.3); }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Actions (Flaggen + Burger) – nur am Handy sichtbar */
.nav__mobile-actions { display: none; }
.nav__scrim { display: none; }

/* === Schwebender Mini-CTA (nur Handy) === */
.fab { display: none; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg picture { display: block; width: 100%; height: 100%; }
.hero__img-credit {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-family: Manrope, sans-serif;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 600px) {
  .hero__img-credit { font-size: 0.56rem; right: 8px; bottom: 8px; }
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  animation: heroPan 24s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.02) translate(-0.5%, 0); }
  to { transform: scale(1.06) translate(0.5%, -0.5%); }
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  padding: 120px 24px 56px;
  max-width: 1440px; margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0 0;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(107,31,36,0.06), rgba(107,31,36,0.12));
  border-radius: 999px;
  border: 1px solid rgba(107,31,36,0.18);
  align-self: flex-start;
}
.hero__price-from {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.hero__price-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--wine);
  line-height: 1;
}
.hero__price-unit {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-2);
  font-weight: 500;
}
.hero__card {
  background: var(--paper);
  border-radius: 8px;
  padding: 36px 40px;
  max-width: 440px;
  box-shadow: 0 30px 80px -20px rgba(20,15,10,0.45);
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
}

.buchung__price {
  margin-top: 20px !important;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(107,31,36,0.05), rgba(107,31,36,0.1));
  border-radius: 8px;
  border-left: 3px solid var(--wine);
  font-size: 1.05rem;
  color: var(--ink-2);
}
.buchung__price strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--wine);
  margin-right: 4px;
}
.hero__location {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  text-shadow: none;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--wine);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 28px;
}
.hero__actions-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero .btn--ghost {
  color: var(--ink);
  border-color: var(--line);
}
.hero .btn--ghost:hover {
  border-color: var(--wine);
  color: var(--wine);
}
.hero__card-footer { display: none; }
.hero__partner-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  margin-top: 6px;
}
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 44px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero__scroll span {
  display: block; width: 3px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { transform: translateY(-6px); opacity: 0; }
  50% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 700px) {
  .hero__inner { padding: 120px 20px 40px; }
  .hero__card { padding: 32px 28px; }
}

.contact__phone {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--wine);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-block;
  transition: color .2s;
}
.contact__phone:hover { color: var(--wine-2); }
.contact__v em {
  font-style: italic;
  color: var(--ink-3);
  font-size: 0.85rem;
  font-family: var(--sans);
  display: inline-block;
  margin-top: 4px;
}

/* === Video Intro === */
.video-intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0807;
}
.video-intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.video-intro__video.is-loaded { opacity: 1; }
.video-intro__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,8,7,0.5) 0%,
      rgba(10,8,7,0.15) 30%,
      rgba(10,8,7,0.15) 60%,
      rgba(10,8,7,0.75) 100%);
}
.video-intro__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 48px 120px;
  max-width: 1240px;
  margin: 0 auto;
  z-index: 2;
  color: #fff8ec;
  animation: introFade 1.6s ease 0.4s both;
}
@keyframes introFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.video-intro__kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1.15rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f3d29a;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 248, 236, 0.4);
  border-radius: 999px;
  background: rgba(10, 8, 7, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-intro__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.02;
  max-width: 1000px;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 50px rgba(0, 0, 0, 0.7), 0 2px 12px rgba(0, 0, 0, 0.5);
}
.video-intro__title em {
  font-style: italic;
  color: #f3d29a;
}
.video-intro__sub {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 248, 236, 0.85);
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.video-intro__mute {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 3;
  background: rgba(10, 8, 7, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 248, 236, 0.3);
  color: #fff8ec;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.video-intro__mute:hover {
  background: rgba(10, 8, 7, 0.6);
  border-color: rgba(255, 248, 236, 0.6);
}
.video-intro__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 248, 236, 0.6);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 8, 7, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.video-intro__scroll span {
  display: block;
  width: 3px;
  height: 9px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

/* Hide top nav over the video for cleaner first impression */
.nav { transition: opacity .4s, background .3s, padding .3s, box-shadow .3s, border-color .3s, inset .3s; }

@media (max-width: 700px) {
  .video-intro__content { padding: 0 24px 100px; }
  .video-intro__mute { top: 88px; right: 20px; padding: 8px 14px; font-size: 0.75rem; }
}

/* === Burgen banner === */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
}
.banner img,
.banner__pic {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.banner__pic img {
  position: static; inset: auto;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: none;
}
.banner img.is-active,
.banner__pic.is-active { opacity: 1; }
.banner__dots {
  position: absolute;
  bottom: 24px; right: 32px;
  display: flex; gap: 10px;
  z-index: 3;
}
.banner__dots button {
  width: 10px; height: 10px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  padding: 0;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.banner__dots button.is-active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}
@media (max-width: 700px) {
  .banner__dots { right: 20px; bottom: 16px; }
}
.banner__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 48px 48px;
  background: linear-gradient(transparent 0%, rgba(15,10,8,0.05) 30%, rgba(15,10,8,0.85) 100%);
  color: #fff8ec;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.banner__kicker {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f3d29a;
  font-weight: 600;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.banner__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.3;
  max-width: 720px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
  font-weight: 400;
}
@media (max-width: 700px) {
  .banner__caption { padding: 40px 24px 28px; }
}

/* === Sections base === */
.section {
  padding: 140px 0;
  position: relative;
}

.slideshow img[data-img="img/haus-pink-2025.jpg"] {
  object-fit: cover;
  object-position: center center;
}
.section--wohnung { background: var(--paper); }

/* === Barrierefrei-USP – auffällig, Handy + Desktop === */
.usp {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 44px;
  padding: 24px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--wine) 0%, #58181d 100%);
  color: #fdeede;
  box-shadow: 0 18px 44px -18px rgba(107, 31, 36, 0.6);
  position: relative;
  overflow: hidden;
}
.usp::after {
  content: "";
  position: absolute; top: -40%; right: -10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(243,210,154,0.22), transparent 70%);
  pointer-events: none;
}
.usp__badge {
  flex: 0 0 auto;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #0057b8;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  box-shadow: 0 4px 14px -3px rgba(0, 0, 0, 0.35);
}
.usp__body { flex: 1; }
.usp__title {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 7px;
}
.usp__text {
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(253, 238, 222, 0.92);
  margin: 0;
}
.usp__pets {
  margin: 12px 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: #f3d29a;
}
@media (max-width: 600px) {
  .usp {
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px;
    margin-bottom: 32px;
  }
  .usp__badge { width: 50px; height: 50px; }
  .usp__title { font-size: 1.08rem; }
  .usp__text { font-size: 0.98rem; }
}
.wohnung__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.wohnung__lead p { color: var(--ink-2); margin-bottom: 18px; font-size: 1.06rem; }
.features {
  list-style: none;
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
}
.features li {
  display: flex; gap: 10px;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--ink-2);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.features li span { color: var(--wine); font-weight: 700; }

/* === Slideshow === */
.slideshow {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-2);
}
.slideshow img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slideshow img.is-active { opacity: 1; }
.slideshow__dots {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; gap: 8px; justify-content: center;
  z-index: 2;
}
.slideshow__dots button {
  width: 8px; height: 8px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  padding: 0;
  transition: background .3s, transform .3s;
}
.slideshow__dots button.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* === Wohnung Floorplan === */
.wohnung__floorplan {
  margin: 60px 0 0;
  padding: 40px;
  background: var(--bg-2);
  border-radius: 8px;
  text-align: center;
}
.wohnung__floorplan h3 {
  font-size: 1.35rem;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 500;
}
.wohnung__floorplan img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: 520px;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

@media (max-width: 700px) {
  .wohnung__floorplan {
    margin: 40px 0 0;
    padding: 24px;
  }
  .wohnung__floorplan h3 { font-size: 1.15rem; margin-bottom: 20px; }
  .wohnung__floorplan img { padding: 12px; }
}

/* === Zimmer === */
.section--zimmer { background: var(--bg-2); }
.section--gaeste { background: var(--paper); }
.zimmer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.zimmer__main {
  position: relative;
  background: var(--paper);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.zimmer__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  animation: zimmerFade .55s ease;
}
.zimmer__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Sanfte Bild-Überblendung (siehe CrossfadeImg in app.jsx) */
.crossfade { position: absolute; inset: 0; width: 100%; height: 100%; }
.crossfade__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.crossfade__img--top { animation: crossfadeIn .6s ease both; }
@keyframes crossfadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.zimmer__img--plan .crossfade__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 28px;
  box-sizing: border-box;
}
.zimmer__img--plan {
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 28px;
  min-height: 480px;
  position: relative;
}
.zimmer__img--plan img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
}
.zimmer__img-dots {
  position: absolute;
  top: 18px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 3;
}
.zimmer__img-dots button {
  width: 8px; height: 8px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  padding: 0; cursor: pointer;
  box-shadow: 0 1px 6px rgba(0,0,0,0.35);
  transition: background .2s, width .2s;
}
.zimmer__img-dots button.is-active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}
@keyframes zimmerFade {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
.zimmer__caption {
  position: static;
  padding: 18px 36px 22px;
  display: flex; flex-direction: column;
  background: var(--ink);
  border-top: none;
  color: #fff8ec;
  animation: zimmerFade .55s ease;
}
.zimmer__index {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.zimmer__caption h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 8px;
  color: #fff8ec;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.6);
}
.zimmer__caption p {
  color: rgba(255,248,236,0.78);
  font-size: 1.0rem;
  line-height: 1.6;
  max-width: 760px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.7);
}
.zimmer__tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.zimmer__tabs button {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 18px 16px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}
.zimmer__tabs button:hover {
  border-color: var(--wine);
  transform: translateY(-2px);
}
.zimmer__tabs button.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff8ec;
}

/* === Familie === */
.section--familie { background: var(--paper); }
.familie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.familie__text p { color: var(--ink-2); margin-bottom: 14px; }
.familie__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--ink);
  line-height: 1.4;
  margin: 28px 0 8px !important;
  padding-left: 24px;
  border-left: 3px solid var(--wine);
}
.familie__sig {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--wine);
  font-style: italic;
  margin-bottom: 28px !important;
}
.familie__photo {
  position: relative;
  margin: 0;
}
.familie__photo-stack {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  background: var(--ink);
}
.familie__photo-stack img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  transition: opacity .8s ease-in-out;
}
.familie__photo-stack img.is-active { opacity: 1; }
.familie__photo-idx {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: rgba(15,10,8,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff8ec;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.familie__photo-stack img[data-img="img/ilse-fenster.jpg"] {
  object-position: 75% 18%;
}
.familie__photo figcaption {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  text-align: center;
}
.familie__photo-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 14px;
}
.familie__photo-dots button {
  width: 8px; height: 8px;
  border: 0; border-radius: 50%;
  background: var(--line);
  padding: 0;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.familie__photo-dots button.is-active {
  background: var(--wine);
  width: 24px;
  border-radius: 4px;
}

/* === Region === */
.section--region { background: var(--bg-2); }
.distances {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-bottom: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.distances__label {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
  font-weight: 600;
}
.distances > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.distances > div:last-child { border-right: 0; }
.distances span {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--wine);
}
.distances em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.distances small {
  font-size: 0.7rem;
  color: var(--ink-3);
  font-style: italic;
  line-height: 1.3;
  margin-top: 2px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: #fff8ec;
  font-size: 0.88rem;
  font-family: var(--serif);
  font-style: italic;
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover figcaption { opacity: 1; }

.region__map {
  margin: 0 0 64px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper);
}
.region__map-frame {
  position: relative;
  aspect-ratio: 16/8;
  background: var(--bg-2);
}
.region__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.region__map figcaption {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.45;
}
.region__map-marker {
  color: var(--wine);
  font-size: 1.2rem;
  font-style: normal;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(107,31,36,0.4));
}
.region__map-link {
  margin-left: auto;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}
.region__map-link:hover { color: var(--wine-2); }
@media (max-width: 700px) {
  .region__map-frame { aspect-ratio: 4/3; }
  .region__map figcaption { font-size: 0.92rem; padding: 14px 18px; }
  .region__map-link { margin-left: 0; }
}

.region__quote {
  margin-top: 80px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  color: var(--ink);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.region__quote em { color: var(--wine); font-weight: 500; }

/* === Burgen === */
/* === Events === */
.section--events {
  background:
    linear-gradient(rgba(31,26,22,0.93), rgba(31,26,22,0.96)),
    url("https://www.burgen-bernkastel.de/bilder/index-bauernmarkt.jpg") center/cover;
  color: #fff8ec;
}
.section--events h2, .section--events .kicker { color: #fff8ec; }
.section--events .kicker { color: #e9c887; }
.section--events .sec-head__lead { color: rgba(255,248,236,0.78); }
.section--events em { color: #e9c887; }

.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event {
  background: rgba(255,248,236,0.04);
  border: 1px solid rgba(255,248,236,0.12);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.event:hover {
  transform: translateY(-4px);
  border-color: rgba(233,200,135,0.55);
  background: rgba(255,248,236,0.07);
}
.event--hl {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-color: rgba(233,200,135,0.4);
  background: rgba(233,200,135,0.06);
}
.event__img {
  background-size: cover;
  background-position: center;
  aspect-ratio: 5/3;
  position: relative;
}
.event--hl .event__img { aspect-ratio: auto; min-height: 340px; }
.event__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--wine);
  color: #fff8ec;
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
}
.event__body { padding: 28px; flex: 1; }
.event--hl .event__body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.event__when {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e9c887;
  font-weight: 600;
  margin-bottom: 12px;
}
.event__body h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  color: #fff8ec;
}
.event--hl .event__body h3 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); }
.event__body p {
  color: rgba(255,248,236,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}
.events__note {
  margin-top: 48px;
  text-align: center;
  color: rgba(255,248,236,0.65);
  font-size: 0.95rem;
}
.events__note a { color: #e9c887; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* === FAQ === */
.section--faq { background: var(--bg-2); }
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  transition: border-color .25s;
}
.faq__item.is-open { border-color: var(--wine); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  transition: color .2s;
}
.faq__q:hover { color: var(--wine); }
.faq__icon {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__item.is-open .faq__a { max-height: 320px; }
.faq__a p {
  padding: 0 24px 24px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 600px) {
  .faq__q { padding: 18px 18px; font-size: 1.05rem; }
  .faq__a p { padding: 0 18px 20px; }
}

/* === Buchung === */
.section--buchung { background: var(--paper); }
.buchung__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.buchung__intro p { color: var(--ink-2); margin: 20px 0; max-width: 420px; }
.contact {
  list-style: none;
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.contact li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.contact__k {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 2px;
}
.contact__v { color: var(--ink); }

.buchung__form {
  background: var(--bg);
  padding: 40px;
  border-radius: 6px;
  border: 1px solid var(--line-soft);
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.98rem;
  border-radius: 4px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(107,31,36,0.12);
}
.field textarea { resize: vertical; font-family: var(--sans); }
.field-row { display: grid; grid-template-columns: 1fr 0.55fr; gap: 16px; }
.form__note { font-size: 0.78rem; color: var(--ink-3); margin-top: 14px; text-align: center; }

.field--range { position: relative; }
.field--range input { cursor: pointer; background: var(--paper); }
.field__hint {
  display: inline-block;
  margin-top: 7px;
  font-size: 0.82rem;
  color: var(--wine);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.field__err {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: #c0392b;
  font-weight: 600;
}
.field--err input,
.field--err textarea {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.field__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 4px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-2);
  cursor: pointer;
}
.field__consent input {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--wine);
  cursor: pointer;
}
.field__consent a { color: var(--wine); }

/* Flatpickr im Weinrot-Cremé-Stil */
.flatpickr-calendar {
  font-family: var(--sans);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(43,32,24,0.18);
  border: 1px solid rgba(107,31,36,0.1);
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-weekday {
  color: var(--ink);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}
.flatpickr-day.inRange {
  background: #f3e3e1;
  border-color: #f3e3e1;
  box-shadow: -5px 0 0 #f3e3e1, 5px 0 0 #f3e3e1;
  color: var(--ink);
}
.flatpickr-day:hover {
  background: #efd9d6;
  border-color: #efd9d6;
}
.flatpickr-day.today { border-color: var(--wine); }
.flatpickr-prev-month svg,
.flatpickr-next-month svg { fill: var(--wine) !important; }
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg { fill: var(--ink) !important; }

.buchung__thanks {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 0;
}
.check {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--vine); color: #fff8ec;
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 20px;
}
.buchung__thanks h3 { margin-bottom: 10px; }
.buchung__thanks p { color: var(--ink-2); margin-bottom: 24px; }
.buchung__thanks .btn--ghost { color: var(--ink); border-color: var(--line); }
.buchung__thanks .btn--ghost:hover { border-color: var(--wine); color: var(--wine); }

/* === Weinfeste-Kalender === */
.weinfeste { max-width: 860px; margin: 0 auto; }
.weinfeste__month { margin-top: 44px; }
.weinfeste__month:first-child { margin-top: 0; }
.weinfeste__mname {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--wine);
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(107,31,36,0.2);
}
.weinfeste__mname span {
  color: var(--ink-3);
  font-size: 1.1rem;
  font-style: italic;
}
.weinfeste__list { list-style: none; margin: 0; padding: 0; }
.wfest {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(31,26,22,0.08);
  align-items: baseline;
}
.wfest:last-child { border-bottom: none; }
.wfest__date {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--wine);
  white-space: nowrap;
  padding-top: 2px;
}
.wfest__info { display: flex; flex-direction: column; gap: 3px; }
.wfest__ort {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.wfest__name {
  font-size: 0.95rem;
  color: var(--ink-3);
  line-height: 1.45;
}
.weinfeste__note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--ink-3);
  font-style: italic;
}
.weinfeste__hlnote {
  text-align: center;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
}
.wfest--hl {
  background: linear-gradient(90deg, rgba(184,137,58,0.14), rgba(184,137,58,0.03));
  border-radius: 10px;
  margin: 2px -14px;
  padding: 15px 14px;
  border-bottom-color: transparent;
}
.wfest__hl-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.wfest--personal {
  background: linear-gradient(90deg, rgba(107,31,36,0.16), rgba(107,31,36,0.04));
  border-radius: 12px;
  margin: 8px -16px;
  padding: 20px 18px;
  border-bottom-color: transparent;
  box-shadow: 0 8px 22px rgba(107,31,36,0.14);
}
.wfest--personal .wfest__ort { font-size: 1.18rem; color: var(--wine); }
.wfest--personal .wfest__name { font-size: 1.02rem; color: var(--ink); }
.wfest__personal-tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wine);
  background: rgba(255,251,243,0.75);
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}
@media (max-width: 600px) {
  .weinfeste__mname { font-size: 1.45rem; }
  .wfest { grid-template-columns: 1fr; gap: 3px; padding: 13px 2px; }
  .wfest__date { font-size: 0.74rem; white-space: normal; padding-top: 0; }
  .wfest__ort { font-size: 0.98rem; }
  .wfest__name { font-size: 0.9rem; }
  .wfest--hl { margin: 2px -8px; padding: 13px 8px; }
  .wfest--personal { margin: 8px -8px; padding: 16px 12px; }
  .wfest--personal .wfest__ort { font-size: 1.05rem; }
  .wfest__personal-tag { font-size: 0.78rem; padding: 4px 10px; }
}

/* === Footer === */
.footer {
  background: var(--ink);
  color: rgba(255,248,236,0.7);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,248,236,0.1);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff8ec;
  margin-bottom: 12px;
}
.footer h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e9c887;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer a {
  display: block;
  padding: 4px 0;
  transition: color .2s;
}
.footer a:hover { color: #e9c887; }
.footer__bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 1200px) {
  .section { padding: 80px 0; }
  .wohnung__grid, .familie__grid, .buchung__grid { grid-template-columns: 1fr; gap: 40px; }
  .zimmer__main { grid-template-columns: 1fr; }
  .zimmer__tabs { grid-template-columns: repeat(2, 1fr); }
  .events { grid-template-columns: 1fr; }
  .event--hl { grid-column: auto; grid-template-columns: 1fr; }
  .event--hl .event__img { min-height: 240px; }
  .event--hl .event__body { padding: 28px; }
  .nav__links {
    position: fixed; top: 76px; left: 12px; right: 12px;
    background: rgba(255, 251, 243, 0.72);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow:
      0 24px 60px -14px rgba(20, 15, 10, 0.45),
      inset 0 1px 0 0 rgba(255, 255, 255, 0.75);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    color: var(--ink);
    z-index: 2;
    transform-origin: top center;
    transform: translateY(-14px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform .42s cubic-bezier(.34, 1.32, .42, 1), opacity .3s ease;
  }
  .nav__links.nav__links--open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .nav__links a {
    padding: 13px 16px;
    border-radius: 13px;
    font-size: 1.06rem;
    font-weight: 500;
    transition: background .2s;
  }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__links a:active { background: rgba(107, 31, 36, 0.09); }
  .nav__links a.nav__cta {
    margin: 8px 0 0; width: 100%; text-align: center;
    padding: 15px 22px; font-size: 1rem;
    border-radius: 999px;
  }
  /* Flaggen im Menü ausblenden – sie sind jetzt dauerhaft oben */
  .nav__links .nav__langs { display: none; }

  /* Mobile-Actions: Flaggen + Burger immer oben sichtbar */
  .nav__mobile-actions { display: flex; align-items: center; gap: 12px; z-index: 3; }
  .nav__burger { display: flex; }
  .nav__langs--top {
    display: flex; align-items: center; gap: 7px;
    margin: 0; padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-left: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .nav--scrolled .nav__langs--top {
    border-color: rgba(43, 32, 24, 0.12);
    background: rgba(43, 32, 24, 0.04);
  }
  .nav__langs--top .nav__lang { opacity: 0.7; padding: 0; }
  .nav__langs--top .nav__lang img { width: 24px; border-radius: 3px; }
  .nav__langs--top .nav__lang--active { opacity: 1; }

  /* Scrim hinter dem geöffneten Menü */
  .nav__scrim {
    display: block; position: fixed; inset: 0; z-index: 1;
    background: rgba(10, 8, 7, 0.16);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    animation: scrimIn .3s ease;
  }
  @keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }
  .nav__brand { z-index: 3; }

  /* === Schwebender Mini-CTA (nur Handy) === */
  .fab {
    display: inline-flex; align-items: center; gap: 7px;
    position: fixed; right: 14px; bottom: 16px; z-index: 120;
    padding: 11px 16px 11px 14px;
    border-radius: 999px;
    background: rgba(107, 31, 36, 0.86);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
      0 10px 28px -8px rgba(107, 31, 36, 0.6),
      inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
    color: #fff8ec;
    font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.34, 1.3, .42, 1), opacity .3s ease, background .2s;
  }
  .fab.fab--show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .fab:active { background: rgba(88, 24, 29, 0.94); transform: scale(0.95); }
  .fab__icon { font-size: 1rem; line-height: 1; }
  .distances { grid-template-columns: repeat(3, 1fr); }
  .distances > div { padding: 12px; border-right: 1px solid var(--line); }
  .distances > div:nth-child(3n) { border-right: 0; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .field-row .field--small { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .features { grid-template-columns: 1fr; }
}

/* === Mobile (≤ 600px) === */
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }

  /* Nav – am Handy bündig oben, kein schwebender Spalt (sonst weißer Streifen) */
  .nav, .nav--scrolled {
    padding: 10px 14px;
    inset: 0 0 auto 0;
    border-radius: 0 0 16px 16px;
  }
  .nav__name { font-size: 0.95rem; }
  .nav__sub { display: none; }
  .nav__wappen { width: 30px; }
  .nav--scrolled .nav__wappen { width: 28px; }
  /* Weniger Eigen-Abstand von Krone+Name und Flaggen+Burger,
     damit dazwischen echter Freiraum bleibt statt Anstoßen */
  .nav__brand { gap: 9px; }
  .nav__mobile-actions { gap: 6px; }
  .nav__langs--top { gap: 5px; padding: 4px 7px; }
  .nav__langs--top .nav__lang img { width: 20px; }
  .nav__burger { width: 28px; height: 28px; }
  .nav__links { top: 64px; left: 10px; right: 10px; border-radius: 22px; z-index: 99; }
  .nav__links a.nav__cta { padding: 16px 22px; font-size: 0.95rem; width: 100%; box-sizing: border-box; }

  /* Eingabefelder: 16px verhindert iOS-Auto-Zoom beim Fokus */
  .field input, .field select, .field textarea { font-size: 16px; padding: 15px 16px; }
  .buchung__form { padding: 24px 18px; }

  /* Video Intro */
  .video-intro__title { font-size: 2.2rem; }
  .video-intro__content { padding: 0 20px 90px; }
  .video-intro__kicker { font-size: 0.92rem; padding: 10px 18px; }
  .video-intro__sub { font-size: 0.82rem; letter-spacing: 0.1em; }
  .video-intro__mute { display: none; }

  /* Hero card */
  .hero__inner { padding: 100px 16px 36px; justify-content: center; }
  .hero__card { padding: 28px 22px; max-width: 100%; border-radius: 12px; }
  .hero__title { font-size: 1.65rem; }
  .hero__location { font-size: 0.7rem; }
  .hero__price { margin-top: 18px; }
  .hero__price-num { font-size: 1.35rem; }
  .hero__actions { gap: 8px; }
  .btn { padding: 14px 20px; font-size: 0.88rem; }

  /* Banner */
  .banner { height: 70vh; }
  .banner__caption { padding: 0 20px 72px; }
  .banner__text { font-size: 1.15rem; }
  .banner__kicker { font-size: 0.7rem; }

  /* Sections */
  .section { padding: 56px 0; }
  .sec-head { margin-bottom: 36px; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.3rem; }

  /* Wohnung */
  .wohnung__grid { gap: 28px; }
  .slideshow { aspect-ratio: 3/2; }

  /* Zimmer */
  .zimmer__tabs { grid-template-columns: 1fr 1fr; gap: 6px; }
  .zimmer__tab { padding: 12px 10px; }
  .zimmer__tab-name { font-size: 0.9rem; }
  .zimmer__img { aspect-ratio: 4/3; max-height: none; }
  /* Grundriss am Handy vollständig zeigen */
  .zimmer__img--plan { aspect-ratio: auto; min-height: 0; padding: 12px; }
  .zimmer__img--plan img { width: 100%; height: auto; max-height: none; }
  .zimmer__caption { padding: 22px 22px 24px; }
  .zimmer__caption h3 { font-size: 1.35rem; }

  /* Familie */
  .familie__grid { gap: 28px; }
  .familie__photo-stack { aspect-ratio: 4/3; }
  .familie__quote { font-size: 1.2rem; padding-left: 16px; }

  /* Distances */
  .distances { grid-template-columns: repeat(2, 1fr); }
  .distances > div:nth-child(3n) { border-right: 1px solid var(--line); }
  .distances > div:nth-child(2n) { border-right: 0; }
  .distances span { font-size: 1.3rem; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery__item figcaption { opacity: 1; font-size: 0.75rem; padding: 8px 10px; }

  /* Events */
  .events { gap: 16px; }
  .event__img { aspect-ratio: 16/9; }
  .event__body { padding: 20px; }
  .event__body h3 { font-size: 1.2rem; }

  /* Buchung – fürs Handy optimiert: Formular zuerst, kompakt, eine Bildschirmhöhe */
  #buchung { scroll-margin-top: 60px; }
  .section--buchung { padding: 44px 0; }
  .buchung__grid { display: flex; flex-direction: column; gap: 22px; }
  .buchung__form { order: -1; }
  .buchung__intro { text-align: center; }
  .buchung__intro h2 { font-size: 1.7rem; }
  .buchung__intro p { margin: 14px auto; max-width: 100%; font-size: 0.95rem; }
  .buchung__price { justify-content: center; }
  .contact { margin-top: 20px; gap: 12px; text-align: left; }
  .contact li {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 14px 16px;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
  }
  .contact__k { font-size: 0.7rem; letter-spacing: 0.12em; }
  .buchung__form {
    padding: 20px 16px;
    border-radius: 16px;
    border: 1px solid var(--line-soft);
  }
  .field-row { grid-template-columns: 1.4fr 1fr; gap: 10px; }
  .field-row .field--small { grid-column: auto; }
  .field { margin-bottom: 12px; }
  .field label { font-size: 0.78rem; margin-bottom: 5px; }
  .field input, .field select, .field textarea { padding: 13px 14px; }
  .buchung__form textarea { min-height: 58px; }
  .buchung__form .btn--block { padding: 16px 20px; font-size: 1rem; margin-top: 4px; }
  .form__note { font-size: 0.72rem; margin-top: 8px; }
  .buchung__thanks { padding: 8px 2px; }
  .buchung__thanks-msg { font-size: 0.95rem; line-height: 1.55; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 48px 0 24px; }
  .footer__bottom { font-size: 0.78rem; }

  /* Map */
  .region__map-frame { aspect-ratio: 1/1; }
}

/* === Sticky Aktionsleiste: auf Wunsch entfernt === */
.mobilebar { display: none !important; }
