  /* Custom Animations */
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .animate-marquee {
    animation: marquee 30s linear infinite;
  }

  @keyframes scroll-dot {
    0% { top: -16px; }
    100% { top: 48px; }
  }

  .animate-scroll-dot {
    animation: scroll-dot 1.5s ease-in-out infinite;
  }

  /* Scroll Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Navbar transition */
  #navbar.scrolled {
    background-color: rgba(250, 246, 243, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(185, 28, 59, 0.08);
  }

  #navbar.scrolled .nav-link,
  #navbar.scrolled a {
    color: #1c1917;
  }

  /* Mobile menu animations */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Smooth scroll */
  html {
    scroll-behavior: smooth;
  }

  /* Selection color */
  ::selection {
    background-color: #b91c3b;
    color: #faf6f3;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #faf6f3;
  }

  ::-webkit-scrollbar-thumb {
    background: #b91c3b;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #9a1530;
  }

  /* Gallery image aspect ratios */
  .grid .col-span-2 {
    aspect-ratio: auto;
  }

  /* Focus styles */
  input:focus, textarea:focus, select:focus {
    outline: none;
  }

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    html {
      scroll-behavior: auto;
    }
  }
