  /* Base & Utilities */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #fdf9f0;
  }
  ::-webkit-scrollbar-thumb {
    background: #065f46;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #047857;
  }

  /* Selection */
  ::selection {
    background: #065f46;
    color: #d9f99d;
  }

  /* Animations */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered children */
  .stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
  .stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
  .stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
  .stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
  .stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
  .stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }

  /* Header scroll state */
  #header.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(6, 94, 59, 0.08);
  }

  /* Mobile menu transition */
  #mobile-menu {
    animation: fadeIn 0.2s ease;
  }

  /* Hero image hover */
  #hero .rounded-3xl img {
    transition: transform 0.6s ease;
  }
  #hero .rounded-3xl:hover img {
    transform: scale(1.03);
  }

  /* Gallery hover */
  #gallery .rounded-2xl img {
    transition: transform 0.5s ease;
  }

  /* Focus visible */
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid #065f46;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate-on-scroll {
      opacity: 1;
      transform: none;
      transition: none;
    }
    #hero .rounded-3xl img,
    #gallery .rounded-2xl img {
      transform: none !important;
    }
  }
