/* commoneverypath.com — культурный люкс-туризм */
/* Палитра: айвори #FFFFF0, шоколадный #4E342E, винный #6B2D3C, золотистый #B8860B, тёмно-синий #0D2137 */

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes grow {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.animate-fade { animation: fade 0.6s ease-in-out; }
.animate-grow { animation: grow 0.8s ease-out; }

/* Акцентные классы */
.text-accent { color: #B8860B; }
.bg-accent { background-color: #B8860B; }
.border-accent { border-color: #B8860B; }
