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

.hero-inner > * {
  animation: fadeUp 1.1s var(--ease) both;
}

.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.14s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.24s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.34s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.42s; }
.hero-inner > *:nth-child(6) { animation-delay: 0.50s; }
.hero-inner > *:nth-child(7) { animation-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .hero-inner > * {
    animation: none;
  }
}

/* Gold thread draw-on-scroll: JS toggles stroke-dashoffset via inline style */
.gold-thread path {
  transition: stroke-dashoffset 1.6s var(--ease);
}
