/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Smooth scroll + selection */
html { scroll-behavior: smooth; }
::selection { background: #D4AF37; color: #0A1A0F; }

/* Subtle gold scrollbar accent (desktop) */
@media (min-width: 768px) {
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: #0A1A0F; }
  ::-webkit-scrollbar-thumb { background: #1B5E20; border-radius: 6px; }
  ::-webkit-scrollbar-thumb:hover { background: #2E7D32; }
}
