/* ─── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 65vh;
  margin: 0 auto 3.5rem auto;
  width: 100%;
  max-width: 1800px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem var(--container-padding);
  background-color: var(--color-bg-secondary);
  z-index: 1; /* Creates new stacking context */
}

@media (min-width: 768px) {
  .hero {
    width: calc(100% - 100px);
    margin: 2rem auto 4rem auto;
    border-radius: 40px;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05); /* Slight scale to allow a subtle pan animation if needed later */
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Even darker black tint for better contrast */
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: #fff;
  padding-top: 1rem;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400; /* Sleeker, thinner premium typography */
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
