.hero {
  position: relative;
  width: 100%;
  background-color: var(--color-bt-light);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: right;
  overflow: hidden;
  padding-block-start: calc(var(--space-md) + 80px);
  padding-block-end: var(--space-3xl);
  padding-inline: var(--padding-x);
}

/* Overlay – sorgt für Lesbarkeit über dem Hintergrundbild */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(21, 57, 62, 0.75);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--width-container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* H1 – Cyan, riesig */
.hero__h1 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: clamp(72px, 20vw, 168px);
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  word-break: break-word;
  margin: 0;
}

/* Accent-Span */
.hero__h1 .text-accent,
.hero__subtitle .text-accent {
  color: var(--color-accent);
  white-space: nowrap;
}

/* Body: Subtitle + CTA links / Video rechts */
.hero__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero__subtitle {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: clamp(20px, 5vw, 48px);
  line-height: 1.1;
  color: var(--color-white);
  text-align: right;
  margin: 0;
}

/* Video / Placeholder */
.hero__media { width: 100%; }

.hero__video,
.hero__video-placeholder {
  width: 100%;
  height: 266px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.hero__video-placeholder {
  background-color: rgba(21, 57, 62, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  border: 1px dashed rgba(195, 230, 232, 0.4);
}

/* CTA Button im Hero → verwendet globales btn--main */
/* Kein lokaler Style nötig, alles in style.css */

/* ── Desktop ab 1024px ─────────────────────────────────── */
@media (min-width: 1024px) {
  .hero {
    padding-block-start: calc(var(--space-xl) + 80px);
    padding-inline: var(--padding-x-desktop);
  }

  .hero__h1 { font-size: clamp(100px, 13.8vw, 196px); }

  .hero__body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg);
  }

  .hero__content {
    flex: 0 0 auto;
    max-width: 480px;
  }

  .hero__subtitle {
    text-align: left;
    font-size: 48px;
  }

  .hero__media {
    flex: 0 0 658px;
    width: 658px;
  }

  .hero__video,
  .hero__video-placeholder { height: 370px; }
}
