/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(251, 249, 244, 0.6) 50%,
    var(--color-background) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-inline: var(--margin-mobile);
  text-align: center;
  max-width: 640px;
}

.hero__title {
  font-size: var(--headline-lg-mobile-size);
  line-height: var(--headline-lg-mobile-line);
  color: var(--color-spiritual-blue-deep);
  margin-bottom: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  animation: hero-rise 0.8s ease 0.1s both;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-line);
  color: var(--color-wisdom-grey);
  margin-bottom: 32px;
  animation: hero-rise 0.8s ease 0.3s both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--label-md-size);
  font-weight: var(--label-md-weight);
  letter-spacing: var(--label-md-tracking);
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 88, 191, 0.15);
  transition: all 0.2s ease;
  animation: hero-rise 0.8s ease 0.5s both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__subtitle,
  .hero__cta {
    animation: none;
  }
}

.hero__cta:hover {
  background: var(--color-spiritual-blue-deep);
  transform: scale(1.05);
}

.hero__cta:active {
  transform: scale(0.95);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--headline-xl-size);
    line-height: var(--headline-xl-line);
    letter-spacing: var(--headline-xl-tracking);
  }
}
