/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.70) 50%,
    rgba(10,22,40,0.82) 100%
  );
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 10rem 0 8rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-title span {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.70);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.70s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.90s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Bottom badge */
.hero-badge {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  opacity: 0;
  animation: heroFadeUp 0.8s 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(201,168,76,0.30);
  background: rgba(10,22,40,0.50);
  backdrop-filter: blur(12px);
  border-radius: 2px;
}

.hero-badge-name {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-badge-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: var(--container-pad);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s 1.3s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    /* flex layout must remain a single-column so children don't sit side-by-side */
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .hero-content {
    padding: 5.5rem 0 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  /* Keep badge absolutely positioned so it never becomes a flex sibling */
  .hero-badge {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-scroll {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    padding: 0;
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
    max-width: 320px;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 5rem 0 3rem;
  }

  .hero-label {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.18;
  }

  .hero-sub {
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
  }

  .hero-badge {
    bottom: 1.5rem;
  }

  .hero-badge-inner {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .hero-badge-name {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .hero-badge-dot {
    display: none;
  }

  .hero-badge-tag {
    font-size: 0.5rem;
    letter-spacing: 0.10em;
  }
}

