  /* Scroll reveal base — content is visible by default, JS adds animation */
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    .scroll-reveal:not(.revealed) {
      opacity: 0;
      transform: translateY(32px);
    }
  }

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

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #FDF9F3;
  }
  ::-webkit-scrollbar-thumb {
    background: #E0C4B0;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #C4724E;
  }

  /* Navbar scroll state */
  #navbar.scrolled {
    background: rgba(253, 249, 243, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(196, 114, 78, 0.1);
  }

  /* Image hover container */
  .scroll-reveal img {
    display: block;
  }

  /* Select arrow */
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
  }

  /* Date input styling */
  input[type="date"] {
    color-scheme: light;
  }
