:root {
  /* Hintergrund & Flächen */
  --bg-page: #f7f5ef;
  /* leicht warm, nicht mehr bläulich */
  --bg-section: #ffffff;
  --surface: var(--bg-section);
  --surface-soft: #f2f5ec;
  /* sanftes, warmes Grün-Grau */

  /* Akzentfarbe: warmes Grün */
  --accent: #3b973b;
  /* Hauptakzent (Buttons, Links) */
  --accent-dark: #2f7a2f;
  /* Hover / dunkler */
  --accent-soft: #e3f2dd;
  /* Badges / Hintergründe */
  --accent-ink: #234423;
  /* Text in Akzentnähe */

  /* Text & Rahmen */
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --text: var(--text-main);
  --border: #d9e2d0;
  /* leicht grünlicher Rahmen */
  --card: #ffffff;

  /* Layout / Sonstiges */
  --max: 1120px;
  --space: 1.5rem;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
  --shadow-subtle: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow: var(--shadow-subtle);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  color: var(--text-main);
  background: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

a {
  color: var(--accent-ink);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--space);
  gap: 16px;
  flex-wrap: nowrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo img {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.header-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  word-break: break-word;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 500;
}

.topbar-item a {
  color: var(--text);
}

.topbar-item a:hover {
  color: var(--accent-ink);
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .65;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* Abstand Icon <-> Text */
  padding-inline: 14px 18px;
  /* leicht kompakter links */
  border-radius: 999px;
  /* richtig pill-förmig */
}

.whatsapp-btn .whatsapp-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.whatsapp-btn .whatsapp-label {
  font-size: 0.95rem;
  line-height: 1;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  white-space: nowrap;
}


@media (min-width: 769px) {
  .header-whatsapp {
    display: flex;
  }
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
  margin-left: auto;
}

.main-nav a {
  color: var(--text-muted);
}

.main-nav a.btn-cta {
  color: #fff;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  white-space: nowrap;
}

.main-nav .has-submenu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav .has-submenu>a::after {
  content: "▾";
  font-size: 12px;
  margin-left: 4px;
  color: var(--text-muted);
}

.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px -30px rgba(15, 23, 42, .4);
  padding: 10px 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
  z-index: 12;
}

.main-nav .submenu a {
  color: var(--text);
  font-weight: 500;
}

.main-nav .submenu a:hover {
  color: var(--accent-ink);
}

.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu:focus-within .submenu {
  display: flex;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-section);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

.btn,
.btn-primary,
.btn-cta,
.btn-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn {
  background: var(--surface-soft);
  border-color: var(--border);
  color: var(--text);
}

.btn:hover {
  border-color: var(--accent-ink);
  color: var(--accent-ink);
}

.btn-primary,
.btn-cta,
.btn-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px -15px rgba(46, 67, 38, .3);
}

.btn-primary:hover,
.btn-cta:hover,
.btn-active:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.floating-reserve {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 30px -12px rgba(15, 23, 42, 0.4);
  display: none;
  z-index: 30;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.floating-reserve:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -14px rgba(15, 23, 42, 0.45);
}

main.container {
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero {
  position: relative;
  margin: 0 0 clamp(32px, 6vw, 56px);
  color: #fff;
  overflow: hidden;
}

.hero-full {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}

.hero-image {
  background: url('/img/hintergrund_giessen_zeughaus.webp') center/cover no-repeat;
  min-height: clamp(320px, 50vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px -60px rgba(15, 23, 42, .85);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, .55), rgba(225, 240, 207, .35));
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) clamp(16px, 6vw, 48px);
  display: grid;
  gap: 16px;
  max-width: min(90%, 760px);
}

.hero-overlay h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  text-shadow: 0 22px 60px rgba(15, 23, 42, .65);
}

.hero-overlay p {
  margin: 0;
  font-size: clamp(16px, 2.6vw, 20px);
  color: rgba(255, 255, 255, .88);
}

.hero-rotator {
  font-size: clamp(18px, 3vw, 22px);
  color: rgba(255, 255, 255, .9);
  min-height: 1.4em;
  transition: opacity .4s ease;
}

.hero-rotator.is-fading {
  opacity: 0;
}

.hero-actions {
  display: inline-flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.search-section {
  display: grid;
  gap: clamp(28px, 5vw, 44px);
  margin-top: clamp(-70px, -9vw, -44px);
  position: relative;
  z-index: 2;
}

.search-form-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, .9);
  padding: clamp(22px, 4.5vw, 36px);
  box-shadow: 0 32px 65px -55px rgba(15, 23, 42, .7);
}

.search-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-field select,
.form-field input {
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 0 14px;
  font-size: 16px;
  transition: border .15s ease, box-shadow .15s ease;
}

.form-field select:focus,
.form-field input:focus {
  outline: none;
  border-color: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(47, 67, 38, .22);
}

.promo-section {
  margin-top: clamp(-110px, -12vw, -48px);
  margin-bottom: clamp(34px, 6vw, 60px);
  position: relative;
  z-index: 2;
}

.promo-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.promo-badge {
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: 0 26px 55px -48px rgba(15, 23, 42, .55);
  opacity: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}

.promo-badge strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}

.promo-badge span {
  font-size: 14px;
  color: var(--text-muted);
}

.promo-icon {
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.promo-icon svg {
  width: 56px;
  height: 56px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.promo-copy {
  display: grid;
  gap: 4px;
}

.fly-card {
  opacity: 0;
  transform: translateY(35px) scale(.98);
  animation: fly-in .9s ease forwards;
  animation-delay: var(--fly-delay, 0s);
}

@keyframes fly-in {
  from {
    opacity: 0;
    transform: translateY(35px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(24px, 4vw, 36px);
  margin-top: clamp(8px, 2.4vw, 20px);
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.results-header h2 {
  margin: 0;
  font-size: 22px;
}

.results-subline {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.listing-grid {
  display: grid;
  gap: 22px;
}

.listing-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, .7);
  box-shadow: var(--shadow);
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -40px rgba(15, 23, 42, .6);
}

.listing-card figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 240px;
  position: relative;
}

.listing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-figure .listing-slide {
  transition: transform .3s ease;
}

.listing-figure:hover .listing-slide {
  transform: scale(1.02);
}

.listing-figure .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(47, 67, 38, .85);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.listing-figure .slider-prev {
  left: 10px;
}

.listing-figure .slider-next {
  right: 10px;
}

.listing-figure .slider-nav:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.listing-figure:not(.has-multiple) .slider-nav {
  display: none;
}

.listing-meta .listing-meta-btn {
  margin-left: auto;
  /* schiebt den Button ganz nach rechts */
  white-space: nowrap;
  /* nicht umbrechen */
  font-size: 12px;
  /* optional: etwas kleiner als der große CTA */
  padding: 6px 12px;
  /* optional: kompakter */
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 9999;
  padding: 24px;
}

.lightbox-overlay .lightbox-image {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, .8);
}

.lightbox-overlay .lightbox-nav,
.lightbox-overlay .lightbox-close {
  background: rgba(225, 240, 207, .85);
  color: var(--accent-ink);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.lightbox-overlay .lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.lightbox-overlay .lightbox-nav.prev {
  margin-right: -6px;
}

.lightbox-overlay .lightbox-nav.next {
  margin-left: -6px;
}

.lightbox-overlay button:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .lightbox-overlay .lightbox-image {
    max-width: 100vw;
    max-height: 82vh;
  }
}

@media (max-width: 640px) {
  .lightbox-overlay .lightbox-image {
    max-width: 100vw;
    max-height: 82vh;
  }
}

.listing-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
}

.listing-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.listing-meta .badge {
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
  font-size: 12px;
}

.listing-body h3 {
  margin: 0;
  font-size: 20px;
}

.listing-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.listing-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.listing-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-muted);
  font-size: 13px;
  border: 1px solid rgba(226, 232, 240, .9);
}

.amenity-chip .icon {
  font-size: 16px;
}

.listing-footer {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-tag {
  font-weight: 600;
  font-size: 18px;
}

.price-tag small {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.filters {
  position: sticky;
  top: 104px;
  align-self: start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.filter-title {
  font-size: 18px;
  margin: 0;
}

.filter-form {
  display: grid;
  gap: 18px;
}

.filter-group {
  display: grid;
  gap: 12px;
}

.filter-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.filter-group input[type="number"] {
  width: 90px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.filter-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.filter-actions {
  display: flex;
  justify-content: flex-end;
}

.empty-state {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, .45);
  padding: clamp(24px, 5vw, 40px);
  text-align: center;
  color: var(--text-muted);
}

.empty-state h3 {
  margin-top: 0;
  font-size: 22px;
  color: var(--text);
}

.welcome {
  margin: clamp(18px, 6vw, 42px) 0 clamp(40px, 9vw, 76px);
}

.welcome-inner {
  background: var(--surface);
  background-color: rgba(225, 240, 207, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(225, 240, 207, 0.9);
  padding: clamp(22px, 4.5vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 32px);
  box-shadow: 0 32px 70px -50px rgba(15, 23, 42, .65);
}

.welcome-image {
  position: relative;
  display: inline-block;
}

.welcome-image img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 4px solid #fff;
  box-shadow: 0 16px 45px -35px rgba(15, 23, 42, .6);
  position: relative;
  z-index: 1;
}

.welcome-arc {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 24px);
  max-width: 320px;
  min-width: 240px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

.welcome-arc text {
  font-family: "Pacifico", "Brush Script MT", "Snell Roundhand", cursive;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 1px;
  fill: var(--accent-ink);
}

.welcome-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 32px);
}

.welcome-copy p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.listing-section {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  margin: clamp(20px, 6vw, 40px) 0 clamp(32px, 7vw, 70px);
}

.testimonials {
  margin-top: clamp(40px, 8vw, 80px);
}

.testimonials h2 {
  font-size: 24px;
  margin: 0;
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px -18px rgba(15, 23, 42, .45);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.testimonial-nav button:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -20px rgba(15, 23, 42, .5);
}

.testimonial-nav button:active {
  transform: translateY(0);
}

.testimonial-nav button[hidden] {
  display: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: 0 18px 40px -30px rgba(15, 23, 42, .4);
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
  color: var(--text-muted);
}

.testimonial-card footer {
  margin-top: 14px;
  font-weight: 600;
  color: var(--text);
}

.features {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, .9);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 20px 50px -40px rgba(15, 23, 42, .6);
  margin-bottom: clamp(18px, 4vw, 28px);
}

.features h2 {
  margin-top: 0;
}

.features .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.features .tags li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(226, 232, 240, .9);
  font-size: 13px;
  color: var(--text-muted);
}

.content-block,
.contact-list,
.contact,
.legal-hint {
  margin-bottom: clamp(18px, 4vw, 28px);
}

.content-block {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, .9);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 20px 50px -40px rgba(15, 23, 42, .6);
}

.content-block h2 {
  margin-top: 0;
}

.content-block p {
  color: var(--text-muted);
}

.content-image {
  margin-top: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: 0 18px 45px -38px rgba(15, 23, 42, .55);
  background: #fff;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-image figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface-soft);
}

.img-placeholder {
  margin-top: 14px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, rgba(225, 240, 207, .25) 0 18px, rgba(47, 67, 38, .08) 18px 36px);
  border: 1px dashed rgba(47, 67, 38, .35);
  display: grid;
  place-items: center;
  color: var(--accent-ink);
  font-weight: 600;
  text-align: center;
}

.map-static {
  margin-top: 14px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px -38px rgba(15, 23, 42, .55);
  border: 1px solid rgba(226, 232, 240, .8);
  display: grid;
  place-items: center;
  color: var(--accent-ink);
}

.map-interactive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 14px;
  box-shadow: 0 18px 45px -38px rgba(15, 23, 42, .55);
  border: 1px solid rgba(226, 232, 240, .8);
}

.map-interactive .map-canvas {
  position: absolute;
  inset: 0;
}

.map-fallback {
  color: var(--accent-ink);
  font-weight: 600;
  text-align: center;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-list {
  list-style: none;
  padding: clamp(18px, 4vw, 28px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, .9);
  display: grid;
  gap: 10px;
  box-shadow: 0 18px 45px -38px rgba(15, 23, 42, .55);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
  box-shadow: 0 12px 30px -24px rgba(15, 23, 42, .35);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.faq-toggle {
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--accent-ink);
  cursor: pointer;
  padding: clamp(16px, 3vw, 20px);
}

.faq-question {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.faq-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, .08);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  transition: transform .2s ease;
  background: #f7f9fb;
}

.faq-answer {
  padding: 0 clamp(16px, 3vw, 22px) clamp(16px, 3vw, 22px);
}

.faq-answer[hidden] {
  display: none !important;
}

.faq-answer p {
  margin: 0 0 8px;
  line-height: 1.5;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.is-open {
  border-color: rgba(15, 23, 42, .18);
  background: #f8fbff;
  box-shadow: 0 14px 35px -26px rgba(15, 23, 42, .4);
}

.contact-list strong {
  color: var(--text);
}

.contact {
  display: grid;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, .9);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 18px 45px -38px rgba(15, 23, 42, .55);
}

.contact label {
  display: grid;
  gap: 6px;
  color: var(--text-muted);
}

.contact label.legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact input,
.contact textarea {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

.contact textarea {
  resize: vertical;
  min-height: 140px;
}

.contact button {
  justify-self: start;
}

.contact .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.travel-hint {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.legal-hint {
  font-size: 13px;
  color: var(--text-muted);
}

.legal-hint a {
  color: var(--accent-ink);
}

@media (max-width: 640px) {
  .content-block {
    padding: 16px;
  }
  .content-block ul {
    padding-left: 18px;
  }
  .map-interactive {
    padding-bottom: 70%;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btn,
  .cta-row .btn-primary {
    width: 100%;
  }
}

.detail-layout {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  margin-top: clamp(32px, 6vw, 56px);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 36px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: var(--shadow);
}

.detail-gallery {
  display: grid;
  gap: 12px;
}

.detail-gallery-main {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  height: clamp(260px, 40vw, 420px);
}

.detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.detail-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.detail-summary {
  display: grid;
  gap: 16px;
  align-content: start;
}

.detail-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-summary-top .badge {
  margin: 0;
}

.detail-summary .badge {
  justify-self: start;
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.detail-summary h1 {
  margin: 0;
  font-size: clamp(26px, 4vw, 34px);
}

.detail-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}

.detail-price {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  gap: 4px;
  align-content: start;
}

.detail-price strong {
  font-size: 22px;
}

.detail-price span {
  font-size: 13px;
  color: var(--text-muted);
}

.detail-amenities-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-sections {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 36px);
}

.detail-highlights,
.detail-description,
.detail-rules {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, .9);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 24px 55px -45px rgba(15, 23, 42, .6);
  margin-bottom: clamp(18px, 4vw, 28px);
}

.detail-rules .rules-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rules-lang-switch {
  display: inline-flex;
  gap: 6px;
}

.lang-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease;
}

.lang-btn.is-active {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.streetview-btn {
  margin-top: 10px;
}

.rules-panel {
  display: none;
}

.rules-panel.is-active {
  display: block;
}

.rules-read-more {
  margin-top: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rules-modal {
  background: #fff;
  color: var(--text);
  padding: 18px;
  border-radius: var(--radius-md);
  max-width: 720px;
  width: min(90vw, 720px);
  max-height: 80vh;
  overflow: auto;
  position: relative;
}

.rules-overlay .lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
}

.streetview-frame {
  width: min(90vw, 900px);
  height: min(75vh, 640px);
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.detail-highlights ul,
.detail-rules ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
}

.detail-description article+article {
  margin-top: 18px;
}

.detail-description h2,
.detail-highlights h2,
.detail-rules h2 {
  margin-top: 0;
}

.detail-description p {
  color: var(--text-muted);
  margin: 0 0 10px;
}

.detail-contact {
  display: grid;
  gap: 18px;
  align-content: start;
}

.detail-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, .9);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 22px 50px -42px rgba(15, 23, 42, .6);
}

.detail-card h3 {
  margin-top: 0;
}

.detail-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.detail-map .map-embed-frame {
  position: relative;
  padding-bottom: 56%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 12px 0 16px;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, .6);
}

.detail-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  margin-top: clamp(48px, 8vw, 80px);
  border-top: 1px solid var(--border);
  background: var(--bg-section);
}

.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: clamp(24px, 5vw, 40px) var(--space);
  color: var(--text-muted);
}

.footer-block h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-ink);
}

.footer-meta {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1060px) {
  .listing-card {
    grid-template-columns: 1fr;
  }

  .listing-card figure {
    height: 220px;
  }

  .search-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    flex-direction: column;
    align-items: center;
    /* statt flex-start */
    gap: 12px;
  }

  /*.main-nav {
    width: 100%;
    justify-content: space-between;
  }
*/
  .promo-badges {
    grid-template-columns: 1fr;
  }

  .search-section {
    margin-top: 24px;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-gallery-main {
    height: clamp(220px, 50vw, 320px);
  }

  .detail-sections {
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .breadcrumbs a {
    text-decoration: none;
    color: var(--accent-ink);
  }

  .breadcrumbs a:hover {
    text-decoration: underline;
  }

  .crumb-current {
    font-weight: 600;
  }

  .crumb-sep {
    margin: 0 0.25rem;
    color: #9ca3af;
    /* etwas dezenter als der Text */
  }

  /* RESPONSIVE */

  @media (min-width: 769px) {
    .nav-overlay {
      display: none !important;
    }
  }

  @media (max-width: 768px) {
    /* HEADER */

    .site-header .header-inner {
      padding: 14px var(--space);
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .header-left {
      width: 100%;
      gap: 8px;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .site-logo img {
      display: block;
      margin: 0 auto;
    }

    .nav-toggle {
      display: flex;
      align-self: flex-start;
      /* Burger links */
    }

    .header-whatsapp {
      width: 100%;
      justify-content: center;
      font-size: 13px;
      padding: 9px 12px;
    }

    .header-contacts {
      width: 100%;
      align-items: center;
      font-size: 12px;
      text-align: center;
    }

    /* OFF-CANVAS NAVIGATION */

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 75vw;
      max-width: 320px;
      background: var(--card);
      flex-direction: column;
      align-items: flex-start;
      padding: 90px 28px 28px;
      gap: 18px;
      box-shadow: var(--shadow);
      transition: right .3s ease;
      z-index: 15;
      margin-left: 0;
    }

    .main-nav .whatsapp-btn {
      display: none;
    }

    .main-nav a {
      width: 100%;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }

    .main-nav a.btn-cta {
      margin-top: 12px;
      border-bottom: 0;
    }

    .site-header.nav-open .main-nav {
      right: 0;
    }

    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.45);
      display: none;
      z-index: 10;
    }

    .site-header.nav-open .nav-overlay {
      display: block;
    }

    /* Submenu "Lage & Umgebung" als Akkordeon */

    .main-nav .has-submenu {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }

    .main-nav .has-submenu>a {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .main-nav .submenu {
      position: static;
      display: none;
      padding-left: 14px;
      box-shadow: none;
      border: none;
      background: transparent;
      gap: 4px;
      margin-top: 4px;
    }

    .main-nav .has-submenu.submenu-open .submenu {
      display: flex;
    }

    /* HERO / WELCOME */

    .floating-reserve {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 18px;
      font-size: 15px;
      right: 16px;
      bottom: max(16px, env(safe-area-inset-bottom, 16px));
    }

    .hero-actions {
      width: 100%;
      flex-wrap: wrap;
    }

    .welcome-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .welcome-image {
      justify-self: center;
      margin-bottom: 10px;
    }

    .welcome-copy {
      max-width: 520px;
    }

    .welcome-copy p {
      text-align: left;
    }

    .welcome {
      display: none;
    }

    /* SECTION- & GRID-LAYOUT */

    .search-section {
      margin-top: 18px;
    }

    .search-section,
    .listings-section,
    .promo-section,
    .contact-section,
    .location-grid,
    .contact-grid {
      margin-top: 22px;
    }

    .promo-badges,
    .search-facts,
    .listing-grid,
    .location-grid,
    .contact-grid,
    .contact-form-grid {
      grid-template-columns: 1fr;
    }

    /* FOOTER */

    .site-footer .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-links {
      margin-left: 0;
      flex-wrap: wrap;
    }
  }


  @media (max-width: 1060px) {
    .hero-inner {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .listing-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-badges {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-facts {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-grid {
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    }
  }

  @media (max-width: 720px) {
    .hero-inner {
      grid-template-columns: minmax(0, 1fr);
    }

    .hero-columns {
      order: 2;
    }

    .hero-image {
      order: 1;
    }

    .hero-footer {
      order: 3;
    }

    .listing-header {
      align-items: flex-start;
    }

    .listing-tabs {
      width: 100%;
      justify-content: space-between;
    }

    .listing-grid {
      grid-template-columns: 1fr;
    }

    .promo-badges {
      grid-template-columns: 1fr;
    }

    .search-facts {
      grid-template-columns: 1fr;
    }

    .contact-grid {
      grid-template-columns: 1fr;
    }

    .location-grid {
      grid-template-columns: 1fr;
    }

    .site-header .header-inner {
      padding-bottom: 12px;
    }

    .hero-actions {
      justify-content: center;
    }

    .hero-tile {
      padding: 9px 11px;
    }

    .hero-highlight-card {
      padding: 9px 11px;
    }

    .site-footer .footer-inner {
      align-items: flex-start;
    }

    .footer-links {
      flex-wrap: wrap;
    }
  }

}
