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

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* --- Video background --- */

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%; /* extra height for parallax travel */
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* --- Dark overlay --- */

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-overlay-dark),
    var(--color-overlay-darker)
  );
  z-index: 1;
}

/* --- Content wrapper --- */

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--navbar-height);
}

/* --- Left-aligned inner block --- */

.hero__inner {
  max-width: 700px;
}

/* --- Gold decorative line above label --- */

.hero__line {
  width: 60px;
  height: 1px;
  background-color: var(--color-accent-gold);
  margin-bottom: 20px;
}

/* --- Small label --- */

.hero__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--font-size-label);
  font-weight: 600;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

/* --- Main headline --- */

.hero__title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: var(--line-height-heading);
  letter-spacing: var(--letter-spacing-heading);
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

/* --- Subtext --- */

.hero__subtext {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: var(--line-height-body);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
}

/* --- CTA row --- */

.hero__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* --- Scroll indicator --- */

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transition: opacity var(--transition-base);
}

.hero__scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 48px;
  background-color: rgba(201, 168, 76, 0.2);
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--color-accent-gold);
  animation: scroll-sweep 2s ease-in-out infinite;
}

@keyframes scroll-sweep {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(300%);
  }
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: var(--font-size-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-gold);
  opacity: 0.6;
}

/* === Responsive === */

@media (max-width: 1199px) {
  .hero__title {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 40px;
  }

  .hero__subtext {
    font-size: 16px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__scroll {
    bottom: 24px;
  }
}
