/* ============================================================
   CSS CUSTOM PROPERTIES
   Farbpalette abgeleitet aus dem Logo von Haus-Am-Spielberg:
   Waldgrün (#4d7a38) + Warmbraun (#7a5e4e)
   ============================================================ */
:root {
  /* Primäres Grün (Bäume & Welle im Logo) */
  --g900: #1a2e12;
  --g800: #243d19;
  --g700: #2e5020;
  --g600: #3d6629;
  --g500: #4d7a38;   /* Logo-Hauptgrün */
  --g400: #6a9e52;
  --g300: #8fbd75;
  --g100: #eaf3e4;

  /* Warmbraun (Hausdach im Logo) */
  --b700: #5a4035;
  --b500: #7a5e4e;   /* Logo-Hauptbraun */
  --b300: #a8897a;
  --b100: #f5ede8;

  /* Neutrale Töne */
  --white:   #ffffff;
  --bg:      #fafaf7;
  --cream:   #f5f0e6;
  --warm100: #ede8de;
  --warm200: #d8d2c5;
  --warm300: #b4ae9f;
  --text:    #1c1c18;
  --textmid: #4a4a44;
  --textlt:  #7a7a72;

  /* Fonts — Cormorant Garamond (display/serif) + Outfit (body) */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Outfit', 'Segoe UI', sans-serif;

  /* Layout */
  --maxw:    1160px;
  --pad:     2rem;
  --sec:     5.5rem;

  /* Effects */
  --r:       6px;
  --rlg:     12px;
  --sh-sm:   0 1px 3px rgba(0,0,0,0.06), 0 2px 10px rgba(0,0,0,0.05);
  --sh-md:   0 4px 16px rgba(0,0,0,0.10);
  --sh-lg:   0 12px 40px rgba(0,0,0,0.16);
  --t:       all 0.28s ease;
}

/* ============================================================
   SKIP LINK — nur sichtbar bei Tastaturnavigation
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--g800);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--r) var(--r);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
  box-shadow: var(--sh-md);
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--b500);
  outline-offset: 2px;
}

/* ============================================================
   FOCUS STYLES — sichtbarer Fokusrahmen für alle interaktiven Elemente
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--g400);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Buttons & Links im Nav */
.nav-menu a:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--g400);
  outline-offset: 3px;
}

/* Buttons */
.btn:focus-visible,
button:focus-visible {
  outline: 3px solid var(--g400);
  outline-offset: 3px;
}

/* Formular-Felder — bereits eigenen Fokus-Style, ergänzen */
.fld input:focus-visible,
.fld select:focus-visible,
.fld textarea:focus-visible {
  outline: none; /* eigener Stil via box-shadow schon definiert */
}

/* Galerie & Karten */
.g-item:focus-visible,
.room-card:focus-visible,
.review-card:focus-visible {
  outline: 3px solid var(--g400);
  outline-offset: 2px;
}

/* ============================================================
   REDUCED MOTION — Animationen für Menschen mit Vestibularproblemen
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Parallax deaktivieren */
  .hero-bg {
    transform: none !important;
  }

  /* Reveal-Animationen sofort anzeigen */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Hero-Animationen deaktivieren */
  .hero-eyebrow,
  .hero-content h1,
  .hero-sub,
  .hero-badges,
  .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Scroll-Indikator */
  .hero-scroll {
    animation: none !important;
  }
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--g800); }
h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--textlt); margin-bottom: 0.85rem; }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--textmid); line-height: 1.8; }
p.lead { font-size: 1.1rem; color: var(--text); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--g500);
  margin-bottom: 0.6rem;
}
.eyebrow--gold { color: var(--b300); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto var(--gap, 3.5rem); }
.section-header .eyebrow { display: block; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 0.95rem; }
.section-header--light h2 { color: var(--white); }

.mt-1 { margin-top: 1.25rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section { padding: var(--sec) 0; }

.bg-green { background: var(--g800); }
.bg-cream  { background: var(--cream); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--g500);
  color: var(--white);
  border-color: var(--g500);
}
.btn-primary:hover {
  background: var(--g600);
  border-color: var(--g600);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-hero {
  background: var(--b500);
  color: var(--white);
  border-color: var(--b500);
  padding: 1rem 2.4rem;
  font-size: 0.95rem;
}
.btn-hero:hover {
  background: var(--b700);
  border-color: var(--b700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,94,78,0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
  padding: 1rem 2.4rem;
  font-size: 0.95rem;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-submit {
  width: 100%;
  background: var(--g500);
  color: var(--white);
  border: 2px solid var(--g500);
  padding: 0.95rem;
  font-size: 0.95rem;
  border-radius: var(--r);
  transition: var(--t);
  margin-top: 0.25rem;
}
.btn-submit:hover {
  background: var(--g600);
  border-color: var(--g600);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 0;
  transition: var(--t);
}

#navbar.scrolled {
  background: var(--white);
  padding: 0.6rem 0;
  box-shadow: var(--sh-sm);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Bildlogo: nur sichtbar wenn Navbar weiß (gescrollt) */
.logo-img {
  height: 48px;
  width: auto;
  display: none;
  transition: var(--t);
}
#navbar.scrolled .logo-img { display: block; }

/* Textlogo: sichtbar auf dunklem Hero, versteckt wenn gescrollt */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.logo-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}
#navbar.scrolled .logo-text { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: var(--t);
}
.nav-menu a:hover { color: var(--white); }
#navbar.scrolled .nav-menu a { color: var(--textmid); }
#navbar.scrolled .nav-menu a:hover { color: var(--g500); }

.nav-cta {
  background: var(--b500) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--r);
  transition: var(--t);
}
.nav-cta:hover { background: var(--b700) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
#navbar.scrolled .nav-hamburger span { background: var(--g800); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--g700) 0%, var(--g900) 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,46,18,0.4) 0%,
    rgba(26,46,18,0.55) 55%,
    rgba(26,46,18,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 var(--pad);
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.25rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero-content h1 em {
  font-style: italic;
  color: #c8ddb8;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badges span {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.55);
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 30px; height: 30px; }

/* ============================================================
   KEY FACTS STRIP
   ============================================================ */
#key-facts {
  background: var(--white);
  border-bottom: 1px solid var(--warm100);
  box-shadow: var(--sh-sm);
}

.facts-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.fact {
  padding: 1.6rem 2.8rem;
  text-align: center;
}
.fact-val {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--g700);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.fact-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--textlt);
}
.fact-sep { width: 1px; height: 42px; background: var(--warm200); }

/* ============================================================
   DAS HAUS
   ============================================================ */
#das-haus { background: var(--bg); }

.col-text h2 { margin: 0.5rem 0 1.25rem; }
.col-text p  { margin-bottom: 1.1rem; }

.house-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.house-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--g600);
  background: var(--g100);
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
}

.col-image { position: relative; }

.img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--rlg);
  box-shadow: var(--sh-lg);
  background: var(--warm100);
  filter: brightness(1.18) saturate(1.05);
  transition: transform 0.55s ease, filter 0.55s ease, box-shadow 0.55s ease;
}

.col-image:hover .img-main {
  transform: scale(1.03);
  filter: brightness(1.28) saturate(1.1);
  box-shadow: 0 20px 56px rgba(0,0,0,0.22);
}

/* Placeholder when no image */
.img-placeholder { background: linear-gradient(135deg, var(--g100), var(--warm100)); border-radius: var(--rlg); aspect-ratio: 4/3; }

.img-badge {
  position: absolute;
  bottom: 12rem;
  left: -1.25rem;
  background: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: var(--r);
  box-shadow: var(--sh-md);
  font-size: 0.82rem;
  color: var(--textmid);
  line-height: 1.5;
}
.img-badge strong { display: block; font-size: 0.95rem; color: var(--g700); margin-bottom: 0.15rem; }

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
#highlights { background: var(--g800); }
#highlights .section-header--light h2 { color: var(--white); }

.hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.hl-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.5rem;
  border-radius: var(--rlg);
  text-align: center;
  transition: var(--t);
}
.hl-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}

.hl-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.hl-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.75rem; }
.hl-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.75; }

/* ============================================================
   FAMILIENTREFFEN CALLOUT
   ============================================================ */
.callout-section {
  background: linear-gradient(135deg, var(--g900) 0%, var(--g800) 60%, var(--b700) 100%);
  padding: var(--sec) 0;
  position: relative;
  overflow: hidden;
}

.callout-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.callout-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.callout-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.25;
}

.callout-inner h2 em {
  font-style: italic;
  color: #c8ddb8;
}

.callout-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.callout-inner .btn-hero {
  margin-top: 1rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
#galerie { background: var(--bg); }
#galerie .section-header { --gap: 2rem; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 4px;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--warm100);
}
.g-wide { grid-column: span 2; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.06); }

.g-lbl {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 2.5rem 1rem 0.85rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.g-item:hover .g-lbl { opacity: 1; }
.g-item::after { z-index: 1; }

/* ============================================================
   SCHLAFZIMMER
   ============================================================ */
#schlafzimmer { background: var(--cream); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--rlg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--warm200);
  transition: var(--t);
}
.room-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

.room-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--warm100);
}
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }

.room-info {
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: 2rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0.1rem;
  align-items: center;
}
.room-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  font-size: 1.5rem;
  align-self: center;
  line-height: 1;
}
.room-info h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.95rem;
  line-height: 1.2;
  margin: 0;
}
.room-info p {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.78rem;
  color: var(--textlt);
  margin: 0;
  line-height: 1.3;
}

/* ============================================================
   AUSSTATTUNG (Accordion)
   ============================================================ */
#ausstattung { background: var(--bg); }

.accordion {
  border: 1px solid var(--warm200);
  border-radius: var(--rlg);
  overflow: hidden;
}

.acc-item { border-bottom: 1px solid var(--warm200); }
.acc-item:last-child { border-bottom: none; }

.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.75rem;
  background: var(--white);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--t);
  text-align: left;
}
.acc-btn:hover { background: var(--bg); color: var(--g500); }

.acc-open .acc-btn {
  background: var(--g800);
  color: var(--white);
}

.acc-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.acc-icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.acc-icon::after  { width: 2px; height: 14px; top: 3px; left: 9px; }
.acc-open .acc-icon::after { transform: rotate(90deg); opacity: 0; }

.acc-body {
  background: var(--white);
  padding: 1.75rem;
  border-top: 1px solid var(--warm100);
}

.amen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 2rem;
}
.amen-group h4 { margin-bottom: 0.65rem; }
.amen-group li {
  font-size: 0.875rem;
  color: var(--textmid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--warm100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.amen-group li::before { content: '✓'; color: var(--g500); font-weight: 600; flex-shrink: 0; }
.amen-group li:last-child { border-bottom: none; }

.notice-list { display: flex; flex-direction: column; gap: 0; }
.notice-list li {
  font-size: 0.875rem;
  color: var(--textmid);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--warm100);
  display: flex;
  gap: 0.6rem;
}
.notice-list li::before { content: 'ℹ'; color: var(--b500); flex-shrink: 0; }
.notice-list li:last-child { border-bottom: none; }

/* ============================================================
   PREISE
   ============================================================ */
#preise { background: var(--cream); }

.price-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.price-table {
  background: var(--white);
  border: 1px solid var(--warm200);
  border-radius: var(--rlg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  position: relative;
}
.price-table--feat {
  border-color: var(--g500);
  box-shadow: 0 0 0 2px var(--g500), var(--sh-md);
}

.pt-feat-badge {
  position: absolute;
  top: 0; right: 1.5rem;
  background: var(--g500);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--r) var(--r);
}

.pt-head {
  background: var(--g800);
  padding: 1.25rem 1.75rem;
}
.price-table--feat .pt-head { background: var(--g700); }

.pt-head h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.pt-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

table th {
  background: var(--bg);
  padding: 0.7rem 1.5rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--textlt);
  border-bottom: 1px solid var(--warm200);
}
table td {
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  color: var(--textmid);
  border-bottom: 1px solid var(--warm100);
}
table tr:last-child td { border-bottom: none; }

.pval {
  font-family: var(--serif);
  font-size: 1.1rem !important;
  font-weight: 500;
  color: var(--g700) !important;
  white-space: nowrap;
}
.tr-hl td { background: var(--g100); }
.tr-hl .pval { color: var(--g600) !important; }

.price-note {
  background: var(--white);
  border: 1px solid var(--warm200);
  border-radius: var(--r);
  padding: 1.1rem 1.5rem;
  text-align: center;
  margin-bottom: 1.75rem;
}
.price-note p { font-size: 0.875rem; margin-bottom: 0.25rem; }
.price-note p:last-child { margin-bottom: 0; }

.price-cta { text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--cream); }

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--warm200);
  border-radius: var(--rlg);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--warm200); }
.faq-item:last-child { border-bottom: none; }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.75rem;
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.faq-btn:hover { background: var(--bg); color: var(--g600); }
.faq-item.faq-open .faq-btn { background: var(--g800); color: var(--white); }

.faq-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.faq-icon::after  { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq-item.faq-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-body {
  background: var(--white);
  padding: 1.25rem 1.75rem 1.5rem;
  border-top: 1px solid var(--warm100);
}
.faq-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--textmid);
  margin: 0;
}

/* ============================================================
   KALENDER
   ============================================================ */
#kalender {
  background: var(--cream);
  padding: 3.5rem 0;
}

.kalender-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--rlg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.kalender-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  height: 500px;
}

.kalender-placeholder {
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--textlt);
  padding: 3rem 2rem;
  border: 2px dashed var(--warm200);
  border-radius: var(--rlg);
  background: var(--bg);
}
.kalender-placeholder p:first-child { font-size: 2.5rem; margin-bottom: 0.75rem; }
.kalender-placeholder strong { display: block; font-size: 1rem; color: var(--textmid); margin-bottom: 0.5rem; }
.kalender-placeholder p { font-size: 0.875rem; margin-bottom: 0.4rem; }
.kalender-placeholder small { font-size: 0.75rem; }

/* ============================================================
   BEWERTUNGEN
   ============================================================ */
#bewertungen { background: var(--bg); }

.rating-sum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.rating-stars-lg { font-size: 1.2rem; color: var(--b500); }
.rating-score {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--g800);
}
.rating-src { font-size: 0.8rem; color: var(--textlt); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--warm200);
  border-radius: var(--rlg);
  padding: 1.75rem;
  box-shadow: var(--sh-sm);
  transition: var(--t);
}
.review-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.rev-stars { color: var(--b500); font-size: 0.9rem; }
.rev-date  { font-size: 0.75rem; color: var(--textlt); }

.review-card p { font-size: 0.9rem; line-height: 1.78; margin-bottom: 0.75rem; }
.rev-author { font-size: 0.82rem; font-weight: 600; color: var(--g700); margin-bottom: 0 !important; }

/* ============================================================
   LAGE
   ============================================================ */
#lage { background: var(--cream); }
.two-col--lage { align-items: start; }

.dist-block { margin: 2rem 0; }
.address-line { font-size: 0.82rem; color: var(--g600); font-weight: 500; margin: 0.4rem 0 0.75rem; }
.dist-list { margin-top: 0.75rem; }
.dist-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--warm100);
  font-size: 0.875rem;
}
.dist-row:last-child { border-bottom: none; }
.dist-row span:first-child { color: var(--textmid); }
.dist-val { font-weight: 600; color: var(--g600); white-space: nowrap; }

.activity-block { margin-top: 1.5rem; }
.act-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.act-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--textmid);
  background: var(--white);
  border: 1px solid var(--warm200);
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
}

.col-map { border-radius: var(--rlg); overflow: hidden; box-shadow: var(--sh-md); }
.col-map iframe { display: block; width: 100%; }

.map-ph {
  width: 100%;
  height: 420px;
  background: var(--warm100);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rlg);
  border: 2px dashed var(--warm200);
}
.map-ph-inner { text-align: center; color: var(--textlt); padding: 2rem; }
.map-ph-inner p:first-child { font-size: 2.5rem; margin-bottom: 0.75rem; }
.map-ph-inner strong { display: block; font-size: 1rem; color: var(--textmid); margin-bottom: 0.5rem; }
.map-ph-inner p { font-size: 0.875rem; color: var(--textlt); margin-bottom: 0.4rem; }
.map-ph-inner small { font-size: 0.75rem; }

/* ============================================================
   ANFRAGE
   ============================================================ */
#anfrage { background: var(--g800); }
#anfrage h2 { color: var(--white); margin: 0.5rem 0 1.25rem; }
#anfrage .anfrage-info p { color: rgba(255,255,255,0.73); margin-bottom: 1.1rem; }

.anfrage-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem;
  align-items: start;
}

.anfrage-tel p { color: rgba(255,255,255,0.6) !important; font-size: 0.82rem; margin-bottom: 0.35rem !important; }
.tel-link {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #c8ddb8;
  transition: var(--t);
}
.tel-link:hover { color: var(--white); }

.plattform-box { margin-top: 2rem; }
.plattform-box p { color: rgba(255,255,255,0.55) !important; font-size: 0.8rem; margin-bottom: 0.6rem !important; }

/* Social Links in Anfrage-Sektion */
.social-box { margin-bottom: 2rem; }
.social-box > p { color: rgba(255,255,255,0.6) !important; font-size: 0.8rem; margin-bottom: 0.6rem !important; }

.social-links { display: flex; flex-direction: column; gap: 0.5rem; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border-radius: var(--r);
  transition: var(--t);
  width: fit-content;
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.35); transform: translateX(3px); }

/* Social Bar im Footer */
.footer-social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-social-bar > span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-right: 0.25rem;
}
.fsoc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: var(--t);
}
.fsoc-btn:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.plattform-btns { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.plt-btn {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  transition: var(--t);
}
.plt-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.4); }

/* Form */
.form-wrap { }
.anfrage-form {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--rlg);
  box-shadow: var(--sh-lg);
}

.fld { margin-bottom: 1rem; }
.fld label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--textlt);
  margin-bottom: 0.4rem;
}
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--warm200);
  border-radius: var(--r);
  transition: var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  outline: none;
  border-color: var(--g500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(77,122,56,0.1);
}
.fld textarea { resize: vertical; min-height: 90px; }

.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Straße + Nr / PLZ + Ort: 3fr + 1fr */
.frow3 { display: grid; grid-template-columns: 3fr 1fr; gap: 1rem; }
.frow3 .fld--wide { grid-column: auto; }

/* Abschnitts-Überschrift im Formular */
.form-section-label {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--g600) !important;
  margin: 1.25rem 0 0.75rem !important;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--warm200);
}
.anfrage-form .form-section-label:first-child { margin-top: 0 !important; }

@media (max-width: 768px) {
  .frow3 { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ERFOLGS-MODAL
   ============================================================ */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(15, 25, 10, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.success-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.success-modal__box {
  background: var(--white);
  border-radius: var(--rlg);
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal.is-open .success-modal__box {
  transform: translateY(0) scale(1);
}

.success-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  color: var(--g500);
}

.success-modal__icon svg {
  width: 100%;
  height: 100%;
}

/* Animierter Kreis + Haken */
.success-circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease 0.2s forwards;
}

.success-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.4s ease 0.75s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.success-modal h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--g800);
  margin-bottom: 0.85rem;
}

.success-modal p {
  font-size: 0.95rem;
  color: var(--textmid);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.success-modal__sub {
  font-size: 0.8rem !important;
  color: var(--textlt) !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.75rem !important;
}

.success-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.success-modal__wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.success-modal__wa:hover {
  background: #1da855;
  border-color: #1da855;
  transform: translateY(-2px);
}

.success-modal__close {
  background: transparent;
  border: 2px solid var(--warm200);
  color: var(--textmid);
  padding: 0.875rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
}

.success-modal__close:hover {
  border-color: var(--g500);
  color: var(--g500);
}

@media (max-width: 480px) {
  .success-modal__box { padding: 2rem 1.5rem; }
  .success-modal__actions { flex-direction: column; }
  .success-modal__wa, .success-modal__close { width: 100%; justify-content: center; }
}

/* ============================================================
   Formspree Fehlermeldungen */
.fs-field-error {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
}
.fs-error-global {
  font-size: 0.85rem;
  color: #c0392b;
  margin-bottom: 0.75rem;
  text-align: center;
}
[data-fs-field][aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--textlt) !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--g900);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white) !important;
  margin-bottom: 0.75rem !important;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.52); line-height: 1.7; }

.footer-contact h4, .footer-nav h4, .footer-legal h4 { color: var(--b300); margin-bottom: 1rem; }
.footer-contact p, .footer-contact a { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; display: block; transition: var(--t); }
.footer-contact a:hover { color: var(--white); }

.footer-nav li, .footer-legal li { margin-bottom: 0.6rem; }
.footer-nav a, .footer-legal a { font-size: 0.875rem; color: rgba(255,255,255,0.58); transition: var(--t); }
.footer-nav a:hover, .footer-legal a:hover { color: var(--white); }

.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,18,8,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lb-content { text-align: center; max-width: 92vw; }
.lb-content img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: var(--r); display: block; }
.lb-cap { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.85rem; }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  border-radius: var(--r);
  transition: var(--t);
  line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.16); color: var(--white); }

.lb-close { top: 1.25rem; right: 1.25rem; font-size: 1.75rem; padding: 0.3rem 0.7rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 2.5rem; padding: 0.5rem 0.85rem; }
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--g900);
  border-top: 3px solid var(--g500);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.25rem var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 260px; }

.cookie-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white) !important;
  margin-bottom: 0.3rem !important;
}

.cookie-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.6;
  margin: 0 !important;
}

.cookie-link {
  background: none;
  border: none;
  color: var(--g300);
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.cookie-link:hover { color: var(--white); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.65rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}

.cookie-btn--primary {
  background: var(--g500);
  color: var(--white);
  border: 2px solid var(--g500);
}
.cookie-btn--primary:hover {
  background: var(--g600);
  border-color: var(--g600);
}

.cookie-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.25);
}
.cookie-btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* Consent Placeholder (Maps & Kalender) */
.consent-placeholder {
  width: 100%;
  height: 420px;
  background: var(--warm100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--textlt);
  padding: 2rem;
  border-radius: var(--rlg);
  border: 2px dashed var(--warm200);
}
.consent-placeholder--calendar { height: 500px; }
.consent-placeholder p:first-child { font-size: 2rem; margin-bottom: 0.5rem; }
.consent-placeholder strong { display: block; font-size: 1rem; color: var(--textmid); margin-bottom: 0.5rem; }
.consent-placeholder p { font-size: 0.875rem; margin-bottom: 0.25rem; }
.consent-placeholder small { font-size: 0.75rem; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  right: 0;
  bottom: 6rem;
  z-index: 800;
  display: flex;
  align-items: center;
  background: #25D366;
  color: var(--white);
  border-radius: 40px 0 0 40px;
  box-shadow: -2px 4px 16px rgba(37,211,102,0.4);
  text-decoration: none;
  overflow: hidden;
  max-width: 52px;
  transition: max-width 0.35s ease, box-shadow 0.28s ease;
  white-space: nowrap;
}

.wa-float:hover {
  max-width: 240px;
  box-shadow: -4px 6px 24px rgba(37,211,102,0.5);
}

.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  padding: 13px;
}

.wa-icon svg {
  width: 26px;
  height: 26px;
}

.wa-label {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding-right: 1.1rem;
  padding-left: 0.1rem;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s;
}

.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .wa-float { bottom: 1.5rem; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   GRAIN OVERLAY — atmosphärische Textur auf dunklen Sections
   ============================================================ */
.bg-green::after,
.callout-section::after,
#anfrage::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}
.bg-green { position: relative; }
.callout-section { position: relative; }
#anfrage { position: relative; }
#anfrage .container { position: relative; z-index: 1; }
.bg-green .container, .callout-section .container { position: relative; z-index: 1; }

/* ============================================================
   DIAGONAL SECTION DIVIDERS
   ============================================================ */
#highlights {
  clip-path: polygon(0 2%, 100% 0%, 100% 98%, 0% 100%);
  margin: -1.5rem 0;
  padding: calc(var(--sec) + 2rem) 0;
}

.callout-section {
  clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%);
  margin: -1.5rem 0;
  padding: calc(var(--sec) + 2.5rem) 0;
}

/* ============================================================
   NAV BACKDROP BLUR
   ============================================================ */
#navbar.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.88);
}

/* ============================================================
   SCHÄRFERE HOVER-EFFEKTE
   ============================================================ */

/* Galerie-Items: stärkere Transformation */
.g-item:hover img { transform: scale(1.08); }

.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77,122,56,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.g-item:hover::after { opacity: 1; }

/* Room Cards: rotate + lift */
.room-card:hover {
  transform: translateY(-6px) rotate(0.4deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

/* Review Cards: border accent on hover */
.review-card:hover {
  border-color: var(--g400);
  transform: translateY(-4px);
}

/* Highlight Cards: scale icon */
.hl-card:hover .hl-icon {
  transform: scale(1.15) rotate(-5deg);
  display: block;
  transition: transform 0.3s ease;
}
.hl-icon { transition: transform 0.3s ease; }

/* ============================================================
   STAGGERED HERO ANIMATIONS
   ============================================================ */
.hero-eyebrow { animation: fadeUp 0.7s ease 0.1s both; }
.hero-content h1 { animation: fadeUp 0.8s ease 0.3s both; }
.hero-sub { animation: fadeUp 0.7s ease 0.5s both; }
.hero-badges { animation: fadeUp 0.7s ease 0.65s both; }
.hero-actions { animation: fadeUp 0.7s ease 0.8s both; }

/* Entferne die allgemeine Animation von hero-content */
.hero-content { animation: none; }

/* ============================================================
   FACTS STRIP — dezenter Akzent-Underline
   ============================================================ */
.fact-val {
  position: relative;
  display: inline-block;
}
.fact-val::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--g500);
  transition: width 0.3s ease;
}
.fact:hover .fact-val::after { width: 100%; }

/* ============================================================
   BUTTON REFINEMENTS — subtile Glow-Effekte
   ============================================================ */
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(77,122,56,0.35), 0 2px 8px rgba(77,122,56,0.2);
}

.btn-hero:hover {
  box-shadow: 0 8px 28px rgba(122,94,78,0.45), 0 2px 8px rgba(122,94,78,0.25);
}

/* Nav CTA Glow */
.nav-cta:hover {
  box-shadow: 0 4px 16px rgba(122,94,78,0.4) !important;
}

/* ============================================================
   LINK UNDERLINE ANIMATION im Footer
   ============================================================ */
.footer-nav a, .footer-legal a {
  position: relative;
}
.footer-nav a::after, .footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transition: width 0.25s ease;
}
.footer-nav a:hover::after, .footer-legal a:hover::after { width: 100%; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sec: 4.5rem; --pad: 1.5rem; }

  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .img-badge { left: 0; }
  .hl-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .price-tables { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .anfrage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .fact { padding: 1.4rem 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --sec: 3.5rem; --pad: 1rem; }

  /* Nav */
  .nav-hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--pad);
    box-shadow: var(--sh-md);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a {
    color: var(--textmid) !important;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--warm100);
    display: block;
    width: 100%;
  }
  .nav-menu a:hover { color: var(--g500) !important; }
  .nav-cta { border-radius: 0 !important; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badges span { font-size: 0.72rem; }

  /* Facts */
  .facts-wrap { justify-content: flex-start; }
  .fact { flex: 1 1 40%; padding: 1.2rem; }
  .fact-sep { display: none; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-wide { grid-column: span 1; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr 1fr; }

  /* Accordion amenities */
  .amen-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  /* Form */
  .frow2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hl-grid { grid-template-columns: 1fr; }

  /* Formular: alle Felder einspaltig */
  .frow2, .frow3 { grid-template-columns: 1fr; }

  /* Bewertungen: einspaltig */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Zimmer: einspaltig */
  .rooms-grid { grid-template-columns: 1fr; }

  /* Facts: 2 pro Zeile */
  .fact { flex: 1 1 45%; padding: 1rem; }
  .fact-val { font-size: 1.4rem; }

  /* Diagonale Trenner auf Mobile deaktivieren */
  #highlights, .callout-section {
    clip-path: none;
    margin: 0;
    padding: var(--sec) 0;
  }

  /* Cookie Banner einspaltig */
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  /* Social Bar umbrechen */
  .footer-social-bar { gap: 0.5rem; }
  .fsoc-btn { font-size: 0.78rem; padding: 0.45rem 0.75rem; }

  /* Hero Badges kleiner */
  .hero-badges { gap: 0.35rem; }
  .hero-badges span { font-size: 0.68rem; padding: 0.28rem 0.6rem; }

  /* WhatsApp Button kompakter */
  .wa-float { bottom: 1rem; }
}
