  /* Base */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { overflow-x: hidden; }

  /* Scroll reveal */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Nav scroll state */
  #nav.scrolled {
    background: rgba(26, 15, 28, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  #nav.scrolled .nav-link { color: rgba(255,255,255,0.8); }

  /* Mobile menu */
  #mobileMenu.open { transform: translateX(0); }

  /* Custom scrollbar */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: #1A0F1C; }
  ::-webkit-scrollbar-thumb { background: #3B1F44; border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: #4D2A56; }

  /* Selection */
  ::selection { background: rgba(212, 160, 23, 0.3); color: #fff; }

  /* Focus visible */
  :focus-visible { outline: 2px solid rgba(212, 160, 23, 0.6); outline-offset: 2px; }

  /* Select styling */
  select option { background: #2A1630; color: #fff; }

  /* Smooth image loading */
  img { loading: lazy; }

  /* Subtle gold shimmer on amber elements */
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

  /* Hero image parallax-like subtle float */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .hero-float { animation: float 6s ease-in-out infinite; }

  /* Pulse dot */
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .animate-pulse { animation: pulse-dot 2s ease-in-out infinite; }
