
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(90deg, var(--bg), var(--bg-2));
  color: #fff;
  padding: 60px 8%;
  gap: 40px;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--brand-2); /* rot als Akzent */
}
.hero-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 1.8rem;
}

/* CTA-Button */
.btn-cta {
  display:inline-block;
  background: var(--brand-2);
  color:#fff;
  padding: 1rem 1.6rem;
  border-radius:6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size:1rem;
  box-shadow: 0 6px 18px rgba(227,6,19,.4);
  transition:.25s;
}
.btn-cta:hover {
  background:#c10511;
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

@media(max-width: 900px){
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    order: 1;
  }
  .hero-image {
    order: 2;
  }
}