  *, *::before, *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  /* Hero Animations */
  .hero-badge {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }

  h1 {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
  }

  #hero p {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
  }

  #hero > div:last-child > div {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Scroll Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* Menu Cards */
  .menu-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .menu-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Feature Cards */
  .feature-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .feature-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Menu Label */
  .menu-label {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
  }

  /* Scroll Indicator */
  .scroll-indicator {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1.2s;
  }

  /* Gallery Images */
  .rounded-2xl.overflow-hidden img {
    will-change: transform;
  }

  /* Navbar Scroll State */
  #navbar.scrolled {
    background: rgba(250, 250, 246, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(45, 90, 61, 0.08);
  }

  #navbar.scrolled .nav-link {
    color: #2D5A3D;
  }

  /* Mobile Menu */
  #mobile-menu {
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-link {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
  }

  .mobile-link:nth-child(1) { animation-delay: 0.05s; }
  .mobile-link:nth-child(2) { animation-delay: 0.1s; }
  .mobile-link:nth-child(3) { animation-delay: 0.15s; }
  .mobile-link:nth-child(4) { animation-delay: 0.2s; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
  }

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

  /* Selection */
  ::selection {
    background: rgba(45, 90, 61, 0.15);
    color: #2D5A3D;
  }

  /* Smooth transitions for all interactive elements */
  a, button {
    transition: all 0.25s ease;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    html {
      scroll-padding-top: 72px;
    }
  }
