/* ================= Hero Slider ================= */
.hero{
  position:relative;
  height:100vh;
  min-height:560px;
  max-height:920px;
  overflow:hidden;
  color:var(--color-white);
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
  z-index:1;
}
.hero-slide.active{ opacity:1; z-index:2; }
.hero-slide img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.06);
  transition:transform 8s ease-out;
}
.hero-slide.active img{ transform:scale(1); }
.hero-slide::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(5,11,24,.55) 0%, rgba(5,11,24,.35) 40%, rgba(5,11,24,.85) 100%);
}

.hero-content{
  position:relative;
  z-index:5;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:760px;
  padding:0 24px;
  margin:0 auto;
}
.hero-content .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  align-self:flex-start;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--color-gold-300);
  margin-bottom:24px;
  backdrop-filter:blur(6px);
}
.hero-content h1{
  color:var(--color-white);
  font-size:clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom:20px;
}
.hero-content p{
  color:rgba(255,255,255,.88);
  font-size:1.15rem;
  max-width:600px;
  margin-bottom:34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-dots{
  position:absolute;
  bottom:34px;
  left:50%;
  transform:translateX(-50%);
  z-index:6;
  display:flex;
  gap:10px;
}
.hero-dots button{
  width:34px; height:4px;
  border-radius:4px;
  border:none;
  background:rgba(255,255,255,.35);
  cursor:pointer;
  padding:0;
  transition:background var(--transition);
}
.hero-dots button.active{ background:var(--color-gold-400); }

.hero-scroll{
  position:absolute;
  right:34px;
  bottom:40px;
  z-index:6;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.75);
  font-size:.7rem;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.hero-scroll .line{ width:1px; height:36px; background:rgba(255,255,255,.4); position:relative; overflow:hidden; }
.hero-scroll .line::after{
  content:"";
  position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:var(--color-gold-400);
  animation:scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ top:-100%; }
  50%{ top:0; }
  100%{ top:100%; }
}

@media (max-width:640px){
  .hero-scroll{ display:none; }
}
