/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(200, 185, 155, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: heroFadeUp 1s ease 0.2s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}

.hero__heading em {
  font-style: italic;
}

.hero__subtext {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* Scroll Hint */
.hero__scroll-hint {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-text), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-arrow {
  color: var(--color-text);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(4px); opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

@media (max-width: 640px) {
  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero__heading {
    font-size: 2.2rem;
  }

  .hero__subtext br {
    display: none;
  }
}
