/* ===========================================
   HERO - CINEMATIC FULL SCREEN
   =========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s var(--ease-smooth);
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  position: absolute;
  inset: -50px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  animation: slowZoom 25s ease infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,9,0.4) 0%,
      rgba(10,10,9,0.1) 30%,
      rgba(10,10,9,0.2) 60%,
      rgba(10,10,9,0.95) 100%),
    linear-gradient(90deg,
      rgba(10,10,9,0.7) 0%,
      transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: clamp(4rem, 10vh, 8rem);
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-smooth) 0.5s forwards;
}

.hero-label::before {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold-400);
}

.hero-title {
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.hero-title-line {
  display: block;
  transform: translateY(100%);
  animation: slideUp 1s var(--ease-dramatic) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.2s; }
.hero-title-line:nth-child(2) { animation-delay: 0.35s; }

@keyframes slideUp {
  to { transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; }
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--cream-300);
  max-width: 500px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-smooth) 0.8s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-smooth) 1s forwards;
}

/* Hero Slide Controls */
.hero-controls {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  right: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 20;
}

.slide-counter {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--cream-300);
}

.slide-counter .current {
  font-size: 2rem;
  color: var(--gold-400);
}

.slide-progress {
  display: flex;
  gap: 0.5rem;
}

.progress-bar {
  width: 60px;
  height: 2px;
  background: var(--noir-600);
  overflow: hidden;
  cursor: pointer;
}

.progress-bar.active .progress-fill {
  animation: progressFill 6s linear forwards;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--gold-400);
}

@keyframes progressFill {
  to { width: 100%; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 20;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-300);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-400) 0%, transparent 100%);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: 700px; }

  .hero-controls {
    right: 1.5rem;
    bottom: 2rem;
  }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}
