  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
  }

  /* Scroll reveal animations - progressive enhancement, hidden by default */
  @media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
    .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
    .scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
  }

  /* Mobile menu animation */
  #mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  #mobile-menu.open {
    max-height: 400px;
  }

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

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

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

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

  /* Selection color */
  ::selection {
    background: #fbcfe8;
    color: #500724;
  }

  /* Navbar scroll state */
  #navbar.scrolled {
    box-shadow: 0 4px 20px rgba(157, 23, 77, 0.1);
  }

  /* Button focus styles */
  a:focus-visible, button:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Image loading placeholder */
  img {
    background-color: #fbcfe8;
  }
