  /* Custom styles for Saru Hibachi and Sushi */

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #050e1a;
    color: #ffffff;
  }

  /* Scroll reveal base — always visible, JS adds animation */
  .scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  /* Staggered delays */
  .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; }

  /* Navbar transitions */
  #navbar.scrolled {
    background: rgba(5, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  #navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.7);
  }

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

  /* Hero scroll indicator */
  .scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .scroll-indicator:hover {
    border-color: rgba(94, 234, 212, 0.5);
    background: rgba(94, 234, 212, 0.1);
  }

  /* Link hover underline animation */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5eead4;
    transition: width 0.3s ease;
    border-radius: 1px;
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

  ::-webkit-scrollbar-track {
    background: #050e1a;
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(94, 234, 212, 0.3);
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: rgba(94, 234, 212, 0.5);
  }

  /* Selection color */
  ::selection {
    background: rgba(94, 234, 212, 0.3);
    color: #ffffff;
  }

  /* Form focus states */
  input:focus,
  textarea:focus {
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.1);
  }

  /* Button active state */
  button:active {
    transform: scale(0.98);
  }

  /* Mobile menu link hover */
  .mobile-menu-link {
    position: relative;
  }

  /* Image loading placeholder */
  img {
    background: linear-gradient(135deg, rgba(12, 31, 58, 0.8) 0%, rgba(5, 14, 26, 0.9) 100%);
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html {
      scroll-behavior: auto;
    }
  }
