/* -----------------------------------------------
   HERO SLIDER + KEN BURNS (HOME)
----------------------------------------------- */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 900ms ease;
  transform: scale(1);
  will-change: transform, opacity;
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 8s linear both;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.hero-dot.is-active {
  background: rgba(255,255,255,0.95);
  transform: scale(1.15);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 250ms ease; }
  .hero-slide.is-active { animation: none; }
}