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

  body {
    overflow-x: hidden;
  }

  /* Scroll Reveal Animations */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .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 */
  #navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(123, 45, 59, 0.08);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7B2D3B, #e56e3a);
    border-radius: 2px;
    transition: width 0.3s ease;
  }

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

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

  #mobile-menu.closed {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav-link {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .mobile-nav-link:hover {
    color: #e56e3a;
    transform: scale(1.05);
  }

  /* Hero */
  #hero {
    position: relative;
  }

  #hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #FFF8F0, transparent);
    z-index: 1;
    pointer-events: none;
  }

  /* Menu Cards */
  .menu-card {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .menu-card:hover {
    transform: translateY(-8px);
  }

  .menu-card img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Gallery */
  #gallery img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Buttons */
  a[href^="tel"] {
    -webkit-tap-highlight-color: transparent;
  }

  /* Form */
  input:focus, select:focus, textarea:focus {
    outline: none;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #FFF8F0;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7B2D3B, #e56e3a);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #7B2D3B;
  }

  /* Selection */
  ::selection {
    background: #f3c2cc;
    color: #5e1a27;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .scroll-reveal {
      transform: translateY(30px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    html {
      scroll-behavior: auto;
    }
    .scroll-reveal {
      opacity: 1;
      transform: none;
    }
  }
