.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__overlay--cinematic {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.1) 0%, rgba(5, 6, 8, 0.4) 40%, rgba(5, 6, 8, 0.98) 100%),
              radial-gradient(circle at 20% 30%, rgba(216, 181, 106, 0.08), transparent 50%);
  z-index: 1;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1) saturate(0.9);
  transition: transform 15s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero__media img,
.hero:hover .hero__media video {
  transform: scale(1.15);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-md);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 20px rgba(216, 181, 106, 0.1));
}

.hero__lead {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  color: var(--text-secondary);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.95;
}

.hero__actions {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}
