/* ── HERO ── */
.hero {
  background: var(--forest);
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 28%, rgba(201, 123, 74, 0.13) 0%, transparent 58%);
  pointer-events: none;
}

.hero-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 220px);
  color: rgba(242, 237, 226, 0.04);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.hero-eyebrow {
  color: var(--terracotta-light) !important;
  position: relative;
}

.hero-title {
  font-size: var(--text-hero);
  color: var(--paper);
  margin-bottom: var(--space-md);
  position: relative;
  max-width: 800px;
}

.hero-title em {
  color: var(--terracotta-light);
  font-style: italic;
}

.hero-sub {
  font-size: var(--text-md);
  color: rgba(242, 237, 226, 0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  position: relative;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  position: relative;
}

.hero-film-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(242, 237, 226, 0.45);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  width: fit-content;
}

.hero-film-link:hover { color: rgba(242, 237, 226, 0.8); }

.hero-film-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(242, 237, 226, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.hero-film-link:hover .hero-film-icon { border-color: rgba(242, 237, 226, 0.45); }

.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(242, 237, 226, 0.35);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(242, 237, 226, 0.35));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1;   }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 24px 64px;
  }
  .hero-title {
    font-size: clamp(36px, 8vw, 52px);
  }
  .hero-scroll {
    right: 24px;
    bottom: 24px;
  }
}
