/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Фоновая заглушка: сюда на Этапе 2 ляжет фото бетона/архитектуры */
/* ===== HERO BACKGROUND ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* Оверлей для читаемости типографики */
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.62) 0%,
      rgba(10, 10, 10, 0.38) 42%,
      rgba(10, 10, 10, 0.82) 82%,
      var(--c-black) 100%),
    /* Кадр: бетон чуть ниже центра, небо — под заголовок */
    url('../../assets/img/hero-bg.png') center 62% / cover no-repeat;
  animation: hero-drift 26s var(--ease) forwards;
}

/* Медленное кинематографичное «дыхание» кадра */
@keyframes hero-drift {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vh, 2rem);
  padding-top: var(--header-h);
}

.hero-coords {
  font-size: var(--fs-micro);
  color: var(--c-text-muted);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.hero-line {
  display: block;
}

.hero-sub {
  max-width: 34ch;
  color: var(--c-stone);
  line-height: 1.6;
}

.hero-dates {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: var(--fs-micro);
  color: var(--c-sand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-micro);
  color: var(--c-text-muted);
  animation: hero-pulse 2.4s infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, 0); }
  50%      { opacity: 1;    transform: translate(-50%, 6px); }
}