/**
 * Landingpage styling aligned to legacy conversion layout.
 */
:root {
  --lp-space-1: 0.25rem;
  --lp-space-2: 0.5rem;
  --lp-space-3: 0.75rem;
  --lp-space-4: 1rem;
  --lp-space-5: 1.25rem;
  --lp-space-6: 1.5rem;
  --lp-space-8: 2rem;
  --lp-space-10: 2.5rem;
  --lp-radius-sm: 0.15rem;
  --lp-radius: 0.35rem;
  --lp-card-border: #d6d7d9;
  --lp-teal: var(--lpc-color-primary, #24666c);
  --lp-gold: var(--lpc-color-button, #e10632);
  --lp-text: rgb(61, 61, 61);
  --lp-bg-soft: rgb(242, 242, 242);
  --lp-shadow: 0 10px 24px rgba(7, 23, 27, 0.15);
  --lp-hover-filter: brightness(0.93);
  --font-headline: var(--lpc-font-heading, Montserrat-Bold, sans-serif);
  --font-default: var(--lpc-font-body, "Segoe UI", Roboto, Arial, sans-serif);
  --font-body: var(--font-default);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--lp-text);
  background: var(--lp-bg-soft);
  font-family: var(--font-default);
}

h1,
h2,
h3,
.lp-inquiry-title {
  font-family: Montserrat-Bold, sans-serif;
  font-family: var(--font-headline);
  text-transform: uppercase;
}

h1 {
  display: block;
  color: rgb(61, 61, 61);
  font-family: Montserrat-Bold, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 20 3 2;
  word-break: break-word;
  unicode-bidi: isolate;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.lp-shell {
  width: 100%;
  max-width: min(var(--lpc-container-max, 1200px), 86rem);
  margin-inline: auto;
  padding-inline: var(--lp-space-5);
}

.lp-main {
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.lp-main .lp-conversion {
  background: transparent;
}

.lp-site-header {
  position: absolute;
  inset: 20px 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--lp-space-8);
  padding-inline: 0;
}

.lp-logo img {
  display: block;
  width: auto;
  max-width: none;
  max-height: 6.5rem;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.lp-nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: var(--lpc-color-overlay-menu-bg, #1d7479);
  color: #fff;
  font-size: 0;
  position: relative;
}

.lp-nav-toggle::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  top: 0.8rem;
  height: 1.5px;
  background: #fff;
  box-shadow: 0 0.38rem 0 #fff, 0 0.76rem 0 #fff;
}

.lp-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.lp-nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lp-nav-panel__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--lpc-color-overlay-menu-bg, #1d7479) 86%, transparent);
}

.lp-nav-panel__content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.lp-overlay-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-overlay-menu li + li {
  margin-top: 1.1rem;
}

.lp-overlay-menu a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-family: var(--font-headline);
  line-height: 1.3;
  font-weight: 500;
}

.lp-overlay-menu__sub {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.lp-overlay-menu__sub li + li {
  margin-top: 0.55rem;
}

.lp-overlay-menu__sub a {
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.35;
}

.lp-nav-close {
  position: absolute;
  top: 1.8rem;
  right: 2.2rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

body.lp-menu-open {
  overflow: hidden;
}

body.lp-menu-open .lp-site-header {
  z-index: 220;
}

.lp-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.lp-hero__slides {
  position: fixed;
  inset: 0 0 auto 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.lp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation-name: lpHeroFade;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.lp-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(14, 28, 35, 0.32) 0%,
    rgba(17, 36, 45, 0.08) 42%,
    rgba(9, 24, 33, 0.36) 100%
  );
}

.lp-hero__slide-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lp-hero__slide:first-child {
  opacity: 1;
}

.lp-hero__mobile-cta-wrap {
  display: none;
}

@keyframes lpHeroFade {
  0%,
  18% {
    opacity: 1;
  }
  26%,
  100% {
    opacity: 0;
  }
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 6.5rem;
  padding-bottom: var(--lp-space-10);
  color: #fff;
}

.lp-hero__title {
  margin: 0;
  max-width: 44rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 500;
}

.lp-hero__excerpt {
  margin: var(--lp-space-3) 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  line-height: 1.25;
}

.lp-hero__cta {
  margin-top: var(--lp-space-4);
  padding: 0.65rem 2.2rem;
  border-radius: 0;
  background: var(--lp-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.lp-hero__cta:hover,
.lp-hero__cta:focus-visible {
  filter: var(--lp-hover-filter);
  transform: translateY(-1px);
}

.lp-conversion {
  padding: var(--lp-space-6) 0 var(--lp-space-8);
  margin-top: -30rem;
  position: relative;
  z-index: 10;
}

.lp-conversion__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lp-space-5);
}

@media (min-width: 1024px) {
  .lp-hero {
    position: fixed;
    inset: 0;
    height: 100vh;
    min-height: 100vh;
    z-index: 0;
  }

  .lp-conversion {
    margin-top: calc(20px + var(--lp-space-8) + 6.5rem + 3rem);
    z-index: 12;
  }

  .lp-content-below {
    position: relative;
    z-index: 20;
  }

  .lp-conversion__grid {
    grid-template-columns: minmax(0, 2fr) minmax(17rem, 25.6rem);
    align-items: stretch;
    gap: 1.35rem;
  }

  .lp-aside-form--sticky {
    position: sticky;
    top: 1rem;
  }
}

.lp-conversion__offers {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: end;
}

.lp-conversion--page .lp-conversion__offers {
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
}

/* Bildergalerie-Template: eine Spalte volle 2/3-Breite, oben bündig mit Formular-Spalte */
.lp-conversion--gallery .lp-conversion__offers {
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-conversion--gallery .lp-conversion__grid {
  align-items: start;
}

.lp-conversion--gallery .lp-gallery-overview {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-conversion--gallery .lp-gallery-overview.lp-card {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 20px;
}

.lp-conversion--gallery .lp-gallery-overview > h1 {
  margin: 0 0 1rem;
  padding: 20px 20px 0;
}

.lp-conversion--gallery .lp-gallery-overview > .lp-offers-placeholder {
  margin: 0;
  padding: 20px;
}

.lp-conversion--gallery .lp-gallery-overview__grid {
  width: 100%;
}

.lp-card {
  background: #fff;
  border: 1px solid var(--lp-card-border);
  border-radius: 0;
  box-shadow: 10px 10px 88px -12px rgba(0, 0, 0, 0.75);
  padding: 20px;
}

.lp-offer-card {
  display: flex;
  flex-direction: column;
  min-height: 23.5rem;
}

.lp-offer-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #4a4f54;
}

.lp-offer-card__title a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.lp-offer-card__image-link,
.lp-offer-card__image-wrap {
  display: block;
  margin-bottom: 0.65rem;
}

.lp-offer-card__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
}

.lp-offer-card__summary {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #4f565c;
}

.lp-offer-card__summary p {
  margin: 0;
}

.lp-gallery-overview {
  display: grid;
  gap: 1rem;
}

.lp-gallery-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.lp-gallery-overview__item {
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.lp-gallery-overview__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.lp-gallery-overview__full {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

.lp-offer-card__bottom {
  margin-top: auto;
  padding-top: 0.6rem;
}

.lp-offer-card__price {
  display: grid;
  gap: 0.1rem;
  margin-bottom: 0.35rem;
}

.lp-offer-card__price-note {
  font-size: 0.7rem;
  color: #5a6269;
}

.lp-offer-card__price strong {
  color: var(--lp-gold);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.lp-offer-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.lp-offer-card__link {
  color: #2f7d87;
  text-decoration: underline;
  font-size: 0.95rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.lp-offer-card__cta,
.lp-tabs a,
.lp-tabs button {
  padding: 0.32rem 0.88rem;
  border: 0;
  background: var(--lp-gold);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.lp-offer-card__cta:hover,
.lp-offer-card__cta:focus-visible {
  filter: var(--lp-hover-filter);
  transform: translateY(-1px);
}

.lp-offer-card__cta.is-added {
  background: #2f9b57;
}

.lp-offer-card__cta.is-added:hover,
.lp-offer-card__cta.is-added:focus-visible {
  filter: brightness(0.95);
}

.lp-offer-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.lp-offer-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.lp-offer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 25, 0.75);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.lp-offer-modal__panel {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: min(6vh, 3rem) auto;
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  padding: 1.1rem;
  box-shadow: 0 18px 50px rgba(8, 19, 25, 0.42);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lp-offer-modal.is-open .lp-offer-modal__backdrop {
  opacity: 1;
}

.lp-offer-modal.is-open .lp-offer-modal__panel {
  opacity: 1;
  transform: translateY(0);
}

.lp-offer-modal__close {
  position: absolute;
  top: 0.45rem;
  right: 0.6rem;
  border: 0;
  background: transparent;
  color: #1f3138;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lp-offer-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.8rem 0 0.4rem;
}

.lp-offer-modal__summary {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4f565c;
}

.lp-offer-modal__meta {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.lp-offer-modal__meta strong {
  color: var(--lp-gold);
  font-size: 1.6rem;
}

.lp-offer-modal__content {
  color: #2b3d44;
  line-height: 1.55;
}

.lp-modal-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.lp-modal-embed--video {
  aspect-ratio: 16 / 9;
}

.lp-modal-embed--map {
  aspect-ratio: 16 / 9;
  background: #f4f6f8;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-map-canvas {
  flex: 1;
  min-height: 320px;
  width: 100%;
  z-index: 0;
}

.lp-map-attribution {
  margin: 0;
  font-size: 0.75rem;
  text-align: right;
}

.lp-map-attribution a {
  color: inherit;
}

.leaflet-tooltip.lp-map-marker-label {
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--lp-card-border, #d6d7d9);
  border-radius: var(--lp-radius-sm, 0.15rem);
  background: #fff;
  color: var(--lp-text, rgb(61, 61, 61));
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.leaflet-tooltip.lp-map-marker-label::before {
  border-top-color: #fff;
}

.lp-map-popup {
  margin: 0;
  min-width: 10rem;
}

.lp-map-popup__label {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
}

.lp-map-popup__address {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--lp-text, rgb(61, 61, 61));
}

.lp-modal-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lp-gallery-modal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.lp-gallery-stage {
  margin: 0;
  width: 100%;
  min-height: 20rem;
  background: #f2f4f6;
  display: grid;
  place-items: center;
}

.lp-gallery-image {
  display: none;
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
}

.lp-gallery-image.is-active {
  display: block;
}

.lp-gallery-nav {
  border: 0;
  background: var(--lp-gold);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
}

body.lp-offer-modal-open {
  overflow: hidden;
}

body.lp-offer-modal-open .lp-site-header {
  z-index: 5;
}

.lp-inquiry-wrap {
  background: var(--lp-teal);
  color: #fff;
  border: 0;
  box-shadow: var(--lp-shadow);
  padding: 0.9rem;
}

.lp-inquiry-title {
  margin: 0;
  font-size: clamp(1.25rem, 1.75vw, 2.1rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lp-form-desc {
  margin: 0.55rem 0 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.lp-phone-reveal {
  margin: 0 0 0.9rem;
}

.lp-phone-reveal--separate {
  position: relative;
  height: 4.55rem;
  background: var(--lp-gold);
  overflow: hidden;
}

.lp-phone-reveal__toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--lp-gold);
  color: #fff;
  text-align: center;
  padding: 0.45rem 0.65rem;
  font-weight: 600;
  font-size: clamp(1.02rem, 1.9vw, 1.65rem);
  cursor: pointer;
  transition: opacity 0.22s ease, filter 0.18s ease, transform 0.18s ease;
  z-index: 2;
}

.lp-phone-reveal__toggle:hover,
.lp-phone-reveal__toggle:focus-visible {
  filter: var(--lp-hover-filter);
  transform: translateY(-1px);
}

.lp-phone-reveal__panel {
  position: absolute;
  inset: 0;
  background: var(--lp-gold);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.08rem;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 1;
}

.lp-phone-reveal.is-revealed .lp-phone-reveal__panel {
  opacity: 1;
  transform: translateY(0);
}

.lp-phone-reveal.is-revealed .lp-phone-reveal__toggle {
  opacity: 0;
  pointer-events: none;
  transform: none;
}

.lp-phone-reveal__panel span {
  font-size: clamp(1.15rem, 1.9vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.lp-phone-reveal__panel a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.05rem, 1.95vw, 1.7rem);
  font-weight: 700;
  line-height: 1.05;
}

.lp-form {
  display: grid;
  gap: 0.75rem;
}

.lp-form-grid {
  display: grid;
  gap: 0.75rem;
}

.lp-form-grid--two {
  grid-template-columns: 1fr 1fr;
}

.lp-form p {
  margin: 0;
}

.lp-form label,
.lp-form legend {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  display: inline-block;
}

.lp-form label.lp-label-required {
  font-weight: 700;
}

.lp-form label.lp-label-required span {
  color: #fff;
  font-weight: 800;
}

.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form input[type="tel"],
.lp-form input[type="date"],
.lp-form select,
.lp-form textarea {
  width: 100%;
  background: #fff;
  color: #1f2b30;
  border: 1px solid #d4d8db;
  border-radius: 0;
  min-height: 2rem;
  padding: 0.28rem 0.45rem;
  font-size: 0.92rem;
}

.lp-form textarea {
  min-height: 4.65rem;
}

.lp-form-offers {
  border: 0;
  margin: 0;
  padding: 0;
}

.lp-form-offers label {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0.18rem 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.lp-form-offers input[type="checkbox"] {
  margin-top: 0.2rem;
}

.lp-form button[type="submit"] {
  width: 100%;
  min-height: 2.65rem;
  border: 0;
  border-radius: 0;
  background: var(--lp-gold);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.lp-form button[type="submit"]:hover,
.lp-form button[type="submit"]:focus-visible {
  filter: var(--lp-hover-filter);
  transform: translateY(-1px);
}

.lp-honeypot {
  position: absolute;
  left: -9999px;
}

.lp-inquiry-notice {
  border-radius: 0;
}

.lp-inquiry-debug {
  margin: 0.55rem 0 0;
  padding: 0.55rem;
  background: rgba(8, 20, 24, 0.35);
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.lp-content-below {
  margin-top: var(--lp-space-6);
  background: transparent;
  border-top: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 20;
  color: rgb(61, 61, 61);
}

.lp-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--lp-space-4);
  align-items: start;
}

.lp-content-main,
.lp-content-sidebar {
  min-width: 0;
}

.lp-content-sidebar {
  display: grid;
  gap: var(--lp-space-4);
}

.lp-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: var(--lp-space-5);
}

.lp-tabs a,
.lp-tabs button {
  width: 100%;
  text-align: center;
  border-radius: 0;
  font-weight: 600;
  line-height: 1.2;
}

.lp-tabs a:hover,
.lp-tabs a:focus-visible,
.lp-tabs button:hover,
.lp-tabs button:focus-visible {
  filter: var(--lp-hover-filter);
  transform: translateY(-1px);
}

.lp-stack {
  display: grid;
  gap: var(--lp-space-4);
}

.lp-stack > * {
  margin: 0;
}

.lp-widget {
  margin: 0;
}

.lp-betriebe-widget {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  min-height: 20rem;
}

.lp-betriebe-widget__slide {
  display: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-betriebe-widget__slide.is-active {
  display: block;
  animation: lpBetriebeFadeIn 0.35s ease;
}

@keyframes lpBetriebeFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lp-betriebe-widget__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.lp-betriebe-widget__nav {
  position: static;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0;
  background: var(--lp-gold);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.lp-betriebe-widget__nav:hover,
.lp-betriebe-widget__nav:focus-visible {
  filter: var(--lp-hover-filter);
  transform: translateY(-1px);
}

.lp-betriebe-widget__image-link {
  display: block;
  margin-bottom: 0.65rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.lp-betriebe-widget__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
}

.lp-betriebe-widget__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #4a4f54;
}

.lp-betriebe-widget__teaser {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.4;
}

.lp-betriebe-widget__slide > p:last-child {
  margin: 0;
  text-align: right;
}

.lp-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: lp-benefit;
  display: grid;
  gap: 0.65rem;
}

.lp-benefits-list li {
  counter-increment: lp-benefit;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  line-height: 1.45;
}

.lp-benefits-list li::before {
  content: counter(lp-benefit);
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--lpc-color-primary, var(--lp-teal, #24666c));
  color: #fff;
  font-weight: 700;
}

.lp-share-widget {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-block: 0.15rem;
}

.lp-share-widget__btn {
  flex: 0 0 auto;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--lpc-color-button, var(--lp-gold, #e10632));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.lp-share-widget__icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.lp-share-widget__btn:hover,
.lp-share-widget__btn:focus-visible {
  filter: var(--lp-hover-filter);
  transform: translateY(-1px);
}

.lp-widget-title {
  text-align: center;
}

.lp-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 1px;
  padding: 0;
  background: transparent;
  border-top: 0;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.lp-sticky-cta a {
  flex: 1 1 50%;
  width: 50%;
  border-radius: 0;
  padding: 0.72rem 0.5rem;
  font-size: 0.84rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.08rem;
  text-decoration: none;
}

.lp-sticky-cta a small {
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
}

.lp-sticky-cta__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.lp-sticky-cta__call,
.lp-sticky-cta__request {
  border: 0;
  background: var(--lp-gold);
  color: #fff;
  transition: filter 0.18s ease;
}

.lp-sticky-cta__call:hover,
.lp-sticky-cta__call:focus-visible,
.lp-sticky-cta__request:hover,
.lp-sticky-cta__request:focus-visible {
  filter: var(--lp-hover-filter);
  text-decoration: none;
}

@media (max-width: 1023px) {
  .lp-shell {
    max-width: 32rem;
    padding-inline: 0.9rem;
  }

  .lp-site-header {
    position: absolute;
    padding-top: 1.35rem;
  }

  .lp-overlay-menu a {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .lp-nav-close {
    top: 0.9rem;
    right: 1.2rem;
  }

  .lp-hero {
    min-height: 31rem;
  }

  .lp-hero__slides {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .lp-hero__mobile-cta-wrap {
    position: absolute;
    inset: auto 0 1.1rem 0;
    z-index: 2;
    display: block;
  }

  .lp-hero__mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: var(--lp-gold);
    color: #fff;
    font-weight: 700;
    padding: 0.72rem 0.95rem;
    transition: filter 0.18s ease, transform 0.18s ease;
  }

  .lp-hero__mobile-cta:hover,
  .lp-hero__mobile-cta:focus-visible {
    filter: var(--lp-hover-filter);
    transform: translateY(-1px);
  }

  .lp-conversion {
    margin-top: 0;
    padding-top: 0;
  }

  .lp-conversion__offers {
    grid-template-columns: 1fr;
  }

  .lp-form-grid--two {
    grid-template-columns: 1fr;
  }

  .lp-content-below {
    padding: 0;
  }

  .lp-content-layout {
    grid-template-columns: 1fr;
  }

  .lp-sticky-cta[data-enabled="1"] {
    display: flex;
  }

  body.lp-has-sticky-cta {
    padding-bottom: 5rem;
  }
}

.site-footer {
  margin-top: var(--lp-space-8);
  padding-block: var(--lp-space-8);
  border-top: 1px solid color-mix(in srgb, var(--lpc-color-text, #1a1a1a) 12%, transparent);
  background: var(--lp-bg-soft);
}

.lp-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--lp-space-4);
  font-size: 0.875rem;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lp-space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer-links a {
  color: inherit;
}

.lp-footer-phone {
  font-weight: 600;
  white-space: nowrap;
}

.lp-betrieb-details-table {
  width: 100%;
  border-collapse: collapse;
}

.lp-betrieb-details-table th,
.lp-betrieb-details-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.45rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--lpc-color-text, #1a1a1a) 12%, transparent);
}

.lp-betrieb-details-table th {
  width: 40%;
  font-weight: 700;
  padding-right: 0.6rem;
}

.lp-betrieb-inclusive__title {
  margin: 0 0 var(--lp-space-4, 1rem);
  font-size: 1.25rem;
  font-weight: 700;
}

.lp-betrieb-inclusive__content {
  margin: 0;
}

.lp-footer-bar {
  position: static;
  width: 100%;
  margin-top: 0;
  background: color-mix(in srgb, var(--lp-bg-soft) 92%, #ffffff);
  border-top: 1px solid color-mix(in srgb, var(--lpc-color-text, #1a1a1a) 12%, transparent);
  font-size: 0.68rem;
  line-height: 1.25;
  padding: 0.22rem 0.75rem;
  text-align: center;
}

.lp-footer-bar p {
  margin: 0;
}

.lp-footer-bar a {
  color: inherit;
}

.lp-child-ages {
  display: none;
  gap: 0.55rem;
  margin: 0 0 0.6rem;
}

.lp-child-ages.is-visible {
  display: grid;
}

.lp-child-ages__title {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 600;
}

.lp-child-ages__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lp-child-ages__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem;
  min-width: 0;
  width: calc(25% - 0.42rem);
  flex: 0 0 calc(25% - 0.42rem);
  max-width: calc(25% - 0.42rem);
}

.lp-child-ages__label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.lp-child-ages__input {
  width: 100%;
}

/* Backward-compatible fallback if older JS markup is still in cache. */
.lp-child-ages__labels,
.lp-child-ages__inputs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (max-width: 1023px) {
  .lp-gallery-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-gallery-overview__grid {
    grid-template-columns: 1fr;
  }
}