@charset "UTF-8";
/* ============================================================
   Haus Spranger – Ferienwohnung Klingenthal
   style.css – Alle Stile für alle Seiten
   ============================================================ */

/* ─── RESET & VARIABLEN ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #1a2e1e;
  --green-mid:   #2d4a33;
  --green-light: #4a7c59;
  --sage:        #8aac8e;
  --cream:       #f5f0e8;
  --warm-white:  #faf8f4;
  --stone:       #c8b99a;
  --text:        #1a1a18;
  --text-light:  #5a5a52;
  --gold:        #c8a96e;
  --radius:      12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 5%;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled, nav.solid {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.82; }
.nav-logo img {
  height: 72px; width: auto;
  mix-blend-mode: screen;
  transition: mix-blend-mode 0.3s;
}
nav.scrolled .nav-logo img,
nav.solid   .nav-logo img {
  mix-blend-mode: multiply;
}

/* Footer Logo */
.footer-brand img {
  height: 72px; width: auto;
  margin-bottom: 14px; display: block;
  opacity: 0.85;
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(245,240,232,0.88);
  text-decoration: none; transition: color 0.2s;
}
nav.scrolled .nav-links a,
nav.solid    .nav-links a { color: var(--text-light); }
.nav-links a:hover,
nav.scrolled .nav-links a:hover,
nav.solid    .nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold) !important; }

.nav-cta {
  background: var(--gold); color: var(--green-dark);
  border: none; padding: 9px 20px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--stone); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px; transition: all 0.3s;
}
nav.scrolled .hamburger span,
nav.solid    .hamburger span { background: var(--green-dark); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--green-dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Lora', serif; font-size: 1.7rem;
  color: var(--cream); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 22px; right: 6%;
  background: none; border: none; font-size: 1.8rem;
  color: var(--cream); cursor: pointer; line-height: 1;
}

/* ════════════════════════════════════════
   PAGE HEADER (für Unterseiten)
════════════════════════════════════════ */
.page-header {
  padding: 140px 6% 72px;
  background: var(--green-dark);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/Hero.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.page-header-content { position: relative; z-index: 1; max-width: 680px; }
.page-header .section-tag { color: var(--sage); }
.page-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream); line-height: 1.15; margin-bottom: 16px;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p {
  font-size: 1rem; color: rgba(245,240,232,0.75); line-height: 1.8;
}

/* ════════════════════════════════════════
   HERO (Startseite)
════════════════════════════════════════ */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,35,22,0.25) 0%, rgba(20,35,22,0.7) 100%),
    url('../img/Hero.jpg') center/cover no-repeat;
  transform: scale(1.04); transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-content {
  position: relative; z-index: 2; padding: 0 6% 8vh; max-width: 760px;
}
.hero-badge {
  display: inline-block; margin-bottom: 18px;
  padding: 5px 16px; border-radius: 50px;
  border: 1px solid rgba(200,169,110,0.55);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.1; color: var(--cream); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; color: rgba(245,240,232,0.82);
  line-height: 1.75; max-width: 500px; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 28px; right: 6%;
  display: flex; align-items: center; gap: 10px;
  color: rgba(245,240,232,0.45); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 38px; height: 1px; background: rgba(245,240,232,0.35);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.35} 50%{opacity:1} }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn-primary {
  background: var(--gold); color: var(--green-dark);
  padding: 13px 30px; border-radius: 50px; border: none;
  font-size: 0.88rem; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: #d4b87a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.35); }
.btn-dark {
  background: var(--green-dark); color: var(--cream);
  padding: 13px 30px; border-radius: 50px; border: none;
  font-size: 0.88rem; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all 0.25s; display: inline-block;
}
.btn-dark:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 1px solid rgba(245,240,232,0.5);
  color: var(--cream); padding: 13px 30px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: rgba(245,240,232,0.1); border-color: var(--cream); }

/* ════════════════════════════════════════
   HIGHLIGHTS BAR
════════════════════════════════════════ */
.highlights {
  background: var(--green-dark);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.highlight-item {
  padding: 28px 24px; border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 14px;
}
.highlight-item:last-child { border-right: none; }
.highlight-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(138,172,142,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.highlight-text h4 { font-size: 0.88rem; font-weight: 500; color: var(--cream); margin-bottom: 2px; }
.highlight-text p  { font-size: 0.76rem; color: var(--sage); }

/* ════════════════════════════════════════
   SECTION ALLGEMEIN
════════════════════════════════════════ */
.section { padding: 88px 6%; }
.section-sm { padding: 56px 6%; }
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-light); font-weight: 500; margin-bottom: 10px; display: block;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.2; color: var(--green-dark); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 0.97rem; color: var(--text-light);
  line-height: 1.8; max-width: 620px; margin-bottom: 40px;
}
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--green-dark); }
.bg-dark .section-tag   { color: var(--sage); }
.bg-dark .section-title { color: var(--cream); }
.bg-dark .section-sub   { color: rgba(245,240,232,0.65); line-height: 1.8; font-size: 0.93rem; margin-bottom: 0; }

.section-header-center { text-align: center; max-width: 600px; margin: 0 auto 44px; }
.section-header-sm     { text-align: center; max-width: 580px; margin: 0 auto 40px; }
.pricing-intro         { max-width: 680px; }
.section--no-top       { padding-top: 0; padding-bottom: 80px; }
.mt-32                 { margin-top: 32px; }

/* ════════════════════════════════════════
   INTRO / ÜBER UNS (Startseite)
════════════════════════════════════════ */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.intro-text p {
  color: var(--text-light); line-height: 1.85;
  font-size: 0.95rem; margin-bottom: 14px;
}
.intro-text p.note {
  margin-top: 20px; padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: var(--cream); border-radius: 0 8px 8px 0;
  font-style: italic; font-size: 0.87rem;
}
.intro-image-stack { position: relative; padding-bottom: 28px; }
.img-main {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 16px; overflow: hidden;
}
.img-main img { width: 100%; height: 100%; object-fit: cover; }
.img-float {
  position: absolute; bottom: 0; left: -28px;
  width: 50%; aspect-ratio: 1;
  border-radius: 12px; overflow: hidden;
  border: 5px solid var(--warm-white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.img-float img { width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════
   VIDEO CONSENT (YouTube / externe Videos)
════════════════════════════════════════ */
.video-section { background: var(--green-dark); }
.video-section .section-tag   { color: var(--sage); }
.video-section .section-title { color: var(--cream); }
.video-section .video-intro   { text-align: center; margin-bottom: 40px; }
.video-intro p                { color: rgba(245,240,232,0.65); max-width: 560px; margin: 0 auto 32px; line-height: 1.8; font-size: 0.95rem; }
.video-wrap {
  position: relative; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  background: #0d1a0f; max-width: 900px; width: 100%; margin: 0 auto;
}
.video-consent-box {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 32px; text-align: center;
  overflow-y: auto;
  background: linear-gradient(135deg, #1a2e1e, #2d4a33);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-consent-box .vc-icon { font-size: 3rem; }
.video-consent-box h4 { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--cream); }
.video-consent-box p { font-size: 0.84rem; color: rgba(245,240,232,0.65); line-height: 1.6; max-width: 420px; }
.video-consent-box a { font-size: 0.76rem; color: var(--sage); text-decoration: underline; }
.vc-btn {
  background: var(--gold); color: var(--green-dark);
  border: none; padding: 12px 28px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  font-weight: 500; cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.vc-btn:hover { background: #d4b87a; }
.vc-note { font-size: 0.7rem !important; color: rgba(245,240,232,0.35) !important; margin-top: -4px; }
.video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.video-wrap.is-loaded iframe {
  opacity: 1; pointer-events: auto;
}
.video-wrap.is-loaded .video-consent-box {
  opacity: 0; visibility: hidden; pointer-events: none;
}

/* ════════════════════════════════════════
   FEATURES CARDS
════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 44px;
}
.feature-card {
  background: white; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.feature-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--green-dark); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
}
.feature-card h3 {
  font-family: 'Lora', serif; font-size: 1.1rem;
  color: var(--green-dark); margin-bottom: 8px;
}
.feature-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; }

/* ════════════════════════════════════════
   FERIENWOHNUNG – GRUNDRISS & DETAILS
════════════════════════════════════════ */
.fewo-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: start;
}
.fewo-text h3 {
  font-family: 'Lora', serif; font-size: 1.4rem;
  color: var(--green-dark); margin-bottom: 16px;
}
.fewo-text p {
  font-size: 0.93rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 14px;
}
.fewo-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-top: 20px; }
.fewo-list li {
  font-size: 0.84rem; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
}
.fewo-list li::before { content: '✓'; color: var(--green-light); font-weight: 600; font-size: 0.8rem; }
.fewo-plan {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  background: var(--cream);
}
.fewo-plan img { width: 100%; display: block; }
.fewo-plan-caption {
  padding: 14px 18px; font-size: 0.78rem;
  color: var(--text-light); text-align: center; font-style: italic;
}

/* ════════════════════════════════════════
   GALERIE
════════════════════════════════════════ */
.gallery-section-title {
  font-family: 'Lora', serif; font-size: 1.3rem;
  color: var(--green-dark); margin: 56px 0 20px;
}
.gallery-section-title:first-of-type { margin-top: 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px; gap: 10px; margin-bottom: 12px;
}
.gallery-item { border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row:    span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item::after {
  content: '⤢';
  position: absolute; top: 10px; right: 12px;
  font-size: 1.1rem; color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(8,14,9,0.96);
  align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.open { display: flex; }
#lightboxImg {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 8px; display: block;
}
.lightbox-close {
  position: fixed; top: 18px; right: 24px;
  background: none; border: none; color: rgba(245,240,232,0.7);
  font-size: 2rem; cursor: pointer; transition: color 0.2s; line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav { display: flex; align-items: center; gap: 20px; margin-top: 16px; }
.lightbox-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--cream); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.2); }
#lightboxCount { font-size: 0.82rem; color: rgba(245,240,232,0.5); min-width: 60px; text-align: center; }
#lightboxCaption { font-size: 0.82rem; color: rgba(245,240,232,0.55); margin-top: 6px; }

/* ════════════════════════════════════════
   PREISE
════════════════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 44px;
}
.price-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 34px 26px;
  transition: background 0.25s, border-color 0.25s;
}
.price-card.featured { background: var(--gold); border-color: var(--gold); }
.price-card:not(.featured):hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }
.price-season {
  font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 10px;
}
.price-card.featured .price-season { color: var(--green-dark); }
.price-amount { font-family: 'Lora', serif; font-size: 2.2rem; color: var(--cream); margin-bottom: 2px; }
.price-card.featured .price-amount { color: var(--green-dark); }
.price-per { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.price-card.featured .price-per { color: rgba(26,46,30,0.6); }
.price-features { list-style: none; }
.price-features li {
  font-size: 0.84rem; color: rgba(255,255,255,0.65);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: flex-start; gap: 8px;
}
.price-card.featured .price-features li { color: var(--green-dark); border-color: rgba(26,46,30,0.15); }
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 600; font-size: 0.76rem; flex-shrink: 0; margin-top: 2px; }
.price-card.featured .price-features li::before { color: var(--green-dark); }
.price-features li:last-child { border-bottom: none; }
.pricing-note { color: rgba(245,240,232,0.38); font-size: 0.78rem; margin-top: 22px; text-align: center; }

.service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-top: 32px;
}
.service-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 14px 18px; font-size: 0.86rem; color: rgba(245,240,232,0.75);
}
.service-item::before { content: '★'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ════════════════════════════════════════
   KINDER / ELTERN SEITEN
════════════════════════════════════════ */
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h3 {
  font-family: 'Lora', serif; font-size: 1.3rem;
  color: var(--green-dark); margin-bottom: 14px;
}
.content-text p {
  font-size: 0.93rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 12px;
}
.content-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.content-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.fun-items { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.fun-tag {
  background: var(--cream); border-radius: 50px;
  padding: 6px 16px; font-size: 0.82rem; color: var(--green-dark);
  font-weight: 500; display: flex; align-items: center; gap: 6px;
}
.baby-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.baby-list li {
  font-size: 0.88rem; color: var(--text-light);
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.baby-list li:last-child { border-bottom: none; }
.baby-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ════════════════════════════════════════
   ÜBER UNS SEITE
════════════════════════════════════════ */
.ueber-quote {
  background: var(--green-dark); border-radius: 16px;
  padding: 40px 48px; margin: 48px 0;
  position: relative;
}
.ueber-quote::before {
  content: '"'; font-family: 'Lora', serif; font-size: 8rem;
  color: rgba(200,169,110,0.15); position: absolute;
  top: -10px; left: 28px; line-height: 1;
}
.ueber-quote p {
  font-family: 'Lora', serif; font-size: 1.2rem; font-style: italic;
  color: var(--cream); line-height: 1.7; position: relative; z-index: 1;
}
.ueber-quote cite {
  display: block; margin-top: 16px; font-size: 0.84rem;
  color: var(--sage); font-style: normal;
}

/* ════════════════════════════════════════
   LINKS SEITE
════════════════════════════════════════ */
.links-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 40px;
}
.link-group {
  background: white; border-radius: 14px; padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.link-group h3 {
  font-family: 'Lora', serif; font-size: 1.05rem;
  color: var(--green-dark); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.link-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.link-group a {
  font-size: 0.87rem; color: var(--green-light);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.link-group a:hover { color: var(--gold); }
.link-group a::before { content: '↗'; font-size: 0.75rem; flex-shrink: 0; }
.link-disclaimer {
  margin-top: 36px; padding: 18px 22px;
  background: var(--cream); border-radius: 10px;
  border-left: 3px solid var(--stone);
  font-size: 0.84rem; color: var(--text-light); line-height: 1.7;
}

/* ════════════════════════════════════════
   KONTAKT SEITE
════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: white; border-radius: 14px; padding: 20px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card-primary { background: var(--green-dark); border-color: var(--green-dark); }
.contact-card-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,46,30,0.22); }
.contact-card:not(.contact-card-primary):hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.contact-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card-body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.contact-card-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); font-weight: 500;
}
.contact-card:not(.contact-card-primary) .contact-card-label { color: var(--text-light); }
.contact-card-body strong { font-size: 0.95rem; color: var(--cream); font-weight: 500; }
.contact-card:not(.contact-card-primary) .contact-card-body strong { color: var(--text); }
.contact-card-hint { font-size: 0.77rem; color: rgba(245,240,232,0.5); }
.contact-card:not(.contact-card-primary) .contact-card-hint { color: var(--text-light); }
.contact-card-arrow { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.contact-card-primary:hover .contact-card-arrow { transform: translateX(4px); }
.contact-tip {
  background: var(--cream); border-radius: 12px; padding: 16px 20px;
  border-left: 3px solid var(--gold);
  font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-top: 14px;
}
.contact-tip strong { color: var(--text); }

/* Map Consent */
.map-wrap {
  border-radius: 16px; overflow: hidden;
  position: relative; background: var(--cream);
  aspect-ratio: 1; min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.consent-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); padding: 28px;
}
.consent-box { text-align: center; max-width: 300px; }
.consent-icon { font-size: 2.4rem; margin-bottom: 10px; }
.consent-box h4 { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--green-dark); margin-bottom: 8px; }
.consent-box p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; margin-bottom: 8px; }
.consent-policy-link { display: block; font-size: 0.73rem; color: var(--green-light); text-decoration: none; margin-bottom: 14px; }
.consent-policy-link:hover { text-decoration: underline; }
.consent-btn {
  background: var(--green-dark); color: var(--cream);
  border: none; padding: 10px 22px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.83rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; margin-bottom: 8px;
}
.consent-btn:hover { background: var(--green-light); }
.consent-note { font-size: 0.68rem; color: #aaa; }

/* ════════════════════════════════════════
   DATENSCHUTZ / IMPRESSUM
════════════════════════════════════════ */
.legal-content { max-width: 780px; }
.legal-content h3 {
  font-family: 'Lora', serif; font-size: 1.1rem;
  color: var(--green-dark); margin: 28px 0 8px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 10px;
}
.legal-content a { color: var(--green-light); }
.legal-content strong { color: var(--text); }
.legal-content ul {
  list-style: none; margin: 10px 0 16px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.legal-content ul li {
  font-size: 0.88rem; color: var(--text-light);
  padding-left: 16px; position: relative; line-height: 1.7;
}
.legal-content ul li::before {
  content: '–'; position: absolute; left: 0; color: var(--stone);
}

/* ════════════════════════════════════════
   LAGE / MAP SECTION
════════════════════════════════════════ */
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.location-items { list-style: none; margin-top: 16px; }
.location-items li {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem; color: var(--text-light);
}
.location-items li:last-child { border-bottom: none; }
.loc-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 0.95rem; flex-shrink: 0;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--green-dark); color: rgba(245,240,232,0.58);
  padding: 52px 6% 28px;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 0.83rem; max-width: 250px; line-height: 1.75; }
.footer-links h5 {
  color: var(--cream); font-size: 0.77rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: rgba(245,240,232,0.52); text-decoration: none;
  font-size: 0.86rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.77rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(245,240,232,0.4); text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════════
   KARTE (Google Maps)
════════════════════════════════════════ */
#mapIframe, #videoIframe { width: 100%; height: 100%; border: none; display: block; }
.hidden { display: none !important; }

/* ════════════════════════════════════════
   DSGVO COOKIE BANNER
════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: -220px; left: 0; right: 0; z-index: 999;
  background: var(--green-dark); padding: 18px 6%;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.22);
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { bottom: 0; }
.cookie-banner.hidden  { display: none; }
.cookie-inner {
  display: flex; align-items: center; gap: 24px;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { color: var(--cream); font-size: 0.88rem; display: block; margin-bottom: 4px; }
.cookie-text p { font-size: 0.78rem; color: rgba(245,240,232,0.65); line-height: 1.6; }
.cookie-text p strong { display: inline; font-size: inherit; color: var(--cream); }
.cookie-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--gold); color: var(--green-dark);
  border: none; padding: 10px 22px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.83rem; font-weight: 500;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #d4b87a; }
.cookie-link {
  font-size: 0.76rem; color: rgba(245,240,232,0.5);
  text-decoration: underline; white-space: nowrap; cursor: pointer;
  background: none; border: none; padding: 0; font-family: 'Poppins', sans-serif;
}
.cookie-link:hover { color: var(--gold); }

/* ════════════════════════════════════════
   ANIMATIONEN
════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  .highlight-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); }
  .intro-grid, .fewo-grid, .content-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .img-float { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .links-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 5%; }
  .page-header { padding: 110px 5% 56px; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .links-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .fewo-list { grid-template-columns: 1fr; }
  .video-intro p { font-size: 0.88rem; }
  .yt-thumb-label { font-size: 0.85rem; }
  .yt-play-btn svg { width: 52px; height: 38px; }
  .video-wrap { min-height: clamp(280px, 70vw, 380px); }
  .video-consent-box { padding: 28px 16px; gap: 10px; }
  .video-consent-box .vc-icon { font-size: 2rem; }
  .video-consent-box h4 { font-size: 1rem; }
  .video-consent-box p { font-size: 0.78rem; }
  .vc-btn { padding: 10px 22px; font-size: 0.83rem; }
}

/* ════════════════════════════════════════
   LANGUAGE SWITCHER
════════════════════════════════════════ */
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  margin-left: 16px;
}
.lang-btn {
  background: none; border: 1px solid rgba(245,240,232,0.35);
  color: rgba(245,240,232,0.7); font-family: 'Poppins', sans-serif;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn.active { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
nav.scrolled .lang-btn,
nav.solid    .lang-btn {
  border-color: rgba(26,46,30,0.25); color: var(--text-light);
}
nav.scrolled .lang-btn:hover,
nav.solid    .lang-btn:hover { border-color: var(--green-light); color: var(--green-light); }
nav.scrolled .lang-btn.active,
nav.solid    .lang-btn.active { background: var(--green-dark); color: var(--cream); border-color: var(--green-dark); }
