/* ==========================================================================
   BYB Bygg & Design AB — animationer
   ========================================================================== */

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-meta, .hero-title, .hero p.lead, .hero-cta {
  opacity: 0; animation: rise 0.8s var(--ease) forwards;
}
.hero-meta { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.22s; }
.hero p.lead { animation-delay: 0.36s; }
.hero-cta { animation-delay: 0.5s; }

.reveal { opacity: 1; transform: none; }

/* Counter number pop */
.stat-number.counted { animation: fadeIn 0.4s var(--ease); }

/* Accordion open state handled inline via JS height, icon rotation above */

@media (prefers-reduced-motion: reduce) {
  .hero-meta, .hero-title, .hero p.lead, .hero-cta { opacity: 1; animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
}
