/* ─── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(3rem, 6vh, 5rem);
}

/* Media layer */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #fff;
}

.hero__tag {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: var(--text-hero);
  line-height: 1.0;
  margin-bottom: var(--space-8);
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--text-lg);
  line-height: 1.7;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* Scroll indicator */
@keyframes pulseDown {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: pulseDown 2s infinite;
}

/* ─── Mobile ─────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}
