/* ============================================
   HERO SECTION — Full-screen cinematic hero
   ============================================ */

/* ── Fade-in Animation ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero Container ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* ── Background Image ── */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* ── Dark Gradient Overlay ── */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: var(--z-overlay);
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 60px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: var(--z-content);
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 16px;
  opacity: 0.9;
  animation: fadeInUp var(--transition-fade) both;
  animation-delay: 0.8s;
}

.scroll-line {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: fadeInUp var(--transition-fade) both;
  animation-delay: 1s;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scrollDrop 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  will-change: transform;
}

@keyframes scrollDrop {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ── Content Block ── */
.hero__content {
  position: relative;
  z-index: var(--z-content);
  padding: 0 0 var(--space-hero-pad-bottom) var(--space-hero-pad-left);
  max-width: 680px;
}

/* ── Heading ── */
.hero__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-hero-heading);
  font-weight: var(--fw-black);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--color-white);
  margin: 0;
  animation: fadeInUp var(--transition-fade) both;
  animation-delay: 0.15s;
}

.hero__heading span {
  display: block;
}

/* ── Paragraphs ── */
.hero__paragraph {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--color-white);
  max-width: 520px;
  margin-top: 24px;
  animation: fadeInUp var(--transition-fade) both;
  animation-delay: 0.35s;
}

.hero__paragraph--secondary {
  max-width: 480px;
  margin-top: 12px;
  color: var(--color-white-85);
  animation-delay: 0.5s;
}

/* ── CTA Row ── */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  animation: fadeInUp var(--transition-fade) both;
  animation-delay: 0.65s;
}

/* ============================================
   RESPONSIVE — Hero Section
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero__content {
    padding-left: 40px;
    padding-bottom: 60px;
    max-width: 580px;
  }

  .hero__paragraph {
    max-width: 460px;
  }

  .hero__paragraph--secondary {
    max-width: 420px;
  }
  
  .scroll-indicator {
    right: 40px;
    bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero__content {
    padding: 0 0 140px 24px !important; /* Shifted up from 60px */
  }
  .hero__heading {
    font-size: 38px !important;
    line-height: 1.05 !important;
  }
  .hero__paragraph {
    font-size: 13px !important;
    line-height: 1.6 !important;
    max-width: 90% !important;
  }
  .hero__paragraph--secondary {
    max-width: 100%;
  }
  .hero__cta-row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .btn-pill-outline,
  .btn-pill-solid {
    padding: 12px 20px !important;
    font-size: 11px !important;
  }
  
  .scroll-indicator {
    right: 24px;
    bottom: 30px;
  }
  
  .scroll-line {
    height: 60px;
  }
  
  .scroll-text {
    font-size: 9px;
    letter-spacing: 3px;
  }
}
