/* ========================
   HERO SECTION
======================== */

.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--color-dark);
}

/* Slides */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Fallback gradient if no image */
  background-color: var(--color-dark);
  background-image:
    linear-gradient(160deg, #1a1208 0%, #0a0a0a 40%, #0a0f1a 100%);
  transform: scale(1.04);
  transition: transform 8s linear;
}
.hero-slide.active .hero-bg {
  transform: scale(1);
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: var(--z-above);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, var(--fs-5xl));
  font-weight: 300;
  line-height: 1.0;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}
.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-desc {
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: var(--space-8);
}

/* Controls */
.hero-controls {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  z-index: var(--z-above);
}

.hero-prev,
.hero-next {
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-lg);
  padding: var(--space-2);
  transition: color var(--duration-fast) var(--ease);
}
.hero-prev:hover,
.hero-next:hover { color: var(--color-white); }

.hero-dots {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all var(--duration-base) var(--ease);
}
.dot.active {
  background: var(--color-gold);
  transform: scale(1.4);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  right: var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  z-index: var(--z-above);
}
.scroll-indicator span {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), var(--color-gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .scroll-indicator { display: none; }
}
