/* ── Keyframes ─────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 0.45; }
  50%       { transform: scaleY(0.55) translateY(-6px); opacity: 1; }
}

@keyframes marqueeL {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

@keyframes navIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes availPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,169,110,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(200,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,169,110,0); }
}

/* Nav link entrance */
.nav-links a, .nav-right > * {
  opacity: 0;
  animation: navIn 0.5s var(--ease-out-expo) both;
}
.nav-links a:nth-child(1)  { animation-delay: 0.15s; }
.nav-links a:nth-child(2)  { animation-delay: 0.22s; }
.nav-links a:nth-child(3)  { animation-delay: 0.29s; }
.nav-links a:nth-child(4)  { animation-delay: 0.36s; }
.nav-links a:nth-child(5)  { animation-delay: 0.43s; }
.nav-right > *:nth-child(1){ animation-delay: 0.5s;  }
.nav-right > *:nth-child(2){ animation-delay: 0.57s; }

/* Logo entrance */
.nav-logo {
  opacity: 0;
  animation: navIn 0.5s var(--ease-out-expo) 0.05s both;
}

/* Hero hamburger */
.hamburger {
  opacity: 0;
  animation: navIn 0.5s var(--ease-out-expo) 0.1s both;
}

/* Mobile menu link entrance */
#mobile-menu.open .mobile-menu__link {
  animation: fadeUp 0.5s var(--ease-out-expo) both;
}
#mobile-menu.open .mobile-menu__link:nth-child(1) { animation-delay: 0.05s; }
#mobile-menu.open .mobile-menu__link:nth-child(2) { animation-delay: 0.12s; }
#mobile-menu.open .mobile-menu__link:nth-child(3) { animation-delay: 0.19s; }
#mobile-menu.open .mobile-menu__link:nth-child(4) { animation-delay: 0.26s; }
#mobile-menu.open .mobile-menu__link:nth-child(5) { animation-delay: 0.33s; }

/* Image hover reveal */
.cat-img { overflow: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .brands-track { animation: none; }
}
