.elementor-328 .elementor-element.elementor-element-bfb0077{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0rem;--margin-bottom:0rem;--margin-left:0rem;--margin-right:0rem;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}.elementor-328 .elementor-element.elementor-element-3a0c0ae > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-328 .elementor-element.elementor-element-6d20a24{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3a0c0ae *//* =========================
   HERO – kompletter CSS-Block mit vh + svh Fallbacks
   ========================= */

/* Basis-Hero */
.hero{
  width: 100%;
  min-height: 92vh;   /* Fallback */
  min-height: 92svh;  /* Moderne Browser */
  --hero-pt: clamp(2rem, 4vw, 3rem);   /* definiert dein Top-Padding */
  padding: var(--hero-pt) 2rem;        /* nutzt die Variable */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
  overflow: hidden;
  color: #000;

  /* Fokuspunkt des Bildes */
  --img-x: 72%;
  --img-y: 46%;
}

/* Hintergrundbild als <img> */
.hero--img { background: none; }
.hero-media{
  position: absolute;
  inset: 0;              /* bleibt */
  z-index: -1;
  top: calc(-1 * var(--hero-pt));
  height: calc(100% + var(--hero-pt));
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-x) var(--img-y);
}

/* KEIN Overlay */
.hero::before{ content: none; }

/* Text-Container */
.hero-text{
  position: relative;
  z-index: 1;
  max-width: 65ch;
  margin: 0 auto;
  padding: clamp(1.25rem, 2vw, 2rem);
  color: #000;
  text-wrap: balance;
}

/* Typo */
.hero-text h1,
.hero-text h2{
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem 0;
  position: relative;
  display: inline-block;
}
.hero-text h2{
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: .04em;
  text-transform: lowercase;
  opacity: .9;
  margin-bottom: .5rem;
}
.hero-text p{
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin-bottom: .85rem;
}
.sub{ font-weight: 600; }

/* Unterstreichung */
.highlight{ position: relative; z-index: 1; }
.underline{
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 56px;
  stroke: #f4c300;
  stroke-width: 8;
  fill: none;
  z-index: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 1.5s ease forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce){
  .underline{ animation: none; stroke-dashoffset: 0; }
}

/* CTA */
.cta{
  display: inline-block;
  background-color: #f4c300;
  color: #000;
  padding: .85rem 1.5rem;
  font-weight: 800;
  border-radius: .66rem;
  text-decoration: none;
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px rgba(244,195,0,.28);
  outline: none;
}
.cta:hover{ background-color: #e0b000; transform: translateY(-1px); }
.cta:active{ transform: translateY(0); }
.cta:focus-visible{ box-shadow: 0 0 0 3px #000, 0 0 0 6px #f4c300; }

/* ===== Desktop ===== */
@media (min-width: 900px){
  .hero-text {
    margin-left: clamp(2rem, 8vw, 10rem);
    margin-top: clamp(10rem, 20vh, 14rem);
    margin-right: auto;
    text-align: left;
    max-width: 65ch;
  }
}

/* Zeilenumbruch fix */
.hero-text h2 { display:block; margin-bottom:.35rem; }
.hero-text h1 { display:inline-block; margin-top:.1rem; }

/* ===== Phones: nur bis 599px zentrieren ===== */
@media (max-width: 599px){
  .hero { justify-content: center; align-items: center; }
  .hero-text { margin: 0 auto; text-align: center; }
}

/* ===== allgemeine Mobile-Anpassungen (bis 768px) ===== */
@media (max-width: 768px){
  .hero{
    min-h