  /* Base & Utilities */
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    overflow-x: hidden;
  }

  ::selection {
    background: #E8645A;
    color: #ffffff;
  }

  /* Scroll Reveal Animations */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    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.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Scroll-reveal for below-fold content — progressive enhancement */
  @media (prefers-reduced-motion: no-preference) {
    .reveal-init {
      opacity: 0;
      transform: translateY(24px);
    }

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

  /* Nav active state */
  .nav-link.active {
    color: #E8645A !important;
  }

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

  /* Form focus states */
  input:focus,
  textarea:focus {
    outline: none;
    box-shadow: 0 0 0 1px #E8645A;
  }

  /* Smooth image loading */
  img {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  /* Subtle hover lift for cards */
  .group:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
  }

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

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

  ::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #E8645A;
  }

  /* Mobile responsive adjustments */
  @media (max-width: 768px) {
    .font-serif {
      line-height: 1.15;
    }
  }
