/* =====================================================
   HERO SLIDESHOW
   ===================================================== */
.hero-slideshow {
  position: relative;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(12, 12, 13, 0.50);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding-inline: 1.5rem;
}


.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-subtitle {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(235, 235, 235, 0.4);
  animation: heroFadeIn 1s 0.7s both;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-dot {
  display: block;
  height: 1px;
  background-color: var(--color-text);
  opacity: 0.25;
  width: 12px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.4s ease, opacity 0.4s ease;
}
.hero-dot.is-active { width: 32px; opacity: 1; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: heroFadeIn 1s 1.6s both;
}
@media (min-width: 768px) {
  .hero-scroll-hint { display: flex; }
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(235, 235, 235, 0.25);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background-color: rgba(235, 235, 235, 0.2);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.2; }
  50%       { transform: scaleY(0.3); opacity: 0.8; }
}
