.hero {
  background: linear-gradient(180deg, var(--header-primary-bg) 0%, var(--header-utility-bg) 100%);
  color: var(--color-text-inverted);
  padding: 0;
}

.hero__content {
  padding-top: clamp(4rem, 8vw, 5rem);
  padding-bottom: clamp(4.75rem, 9vw, 6rem);
}

.hero__eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 800;
  margin: 0 0 1.1rem;
}

.hero__title {
  max-width: 800px;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.hero__lead {
  max-width: 34rem;
  margin: 1.25rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Split-layout: teksti + kehystetty kuvitus rinnakkain */
.hero__content--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(8, 37, 74, 0.42);
}

.hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 60rem) {
  .hero__content--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Kuvitus copyn yläpuolelle mobiilissa */
  .hero__media {
    order: -1;
  }
}
