.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: clamp(50px, 8vw, 80px) var(--section-pad-x);
  background-image: url('../assets/images/background_werkstatt.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2)), url('../assets/images/background_werkstatt.png');
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin: 0 0 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.14;
  color: var(--cream);
  margin: 0 0 22px;
}

.hero-title span {
  color: var(--amber-soft);
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cream-muted);
  max-width: 480px;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 640px) {
  .hero {
    min-height: 480px;
  }
}