  /* ========== BASE & RESET ========== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    overflow-x: hidden;
  }

  ::selection {
    background: rgba(196, 112, 59, 0.3);
    color: #F5EDE3;
  }

  /* ========== SCROLLBAR ========== */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #0E0D0B;
  }
  ::-webkit-scrollbar-thumb {
    background: #2A2520;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #C4703B;
  }

  /* ========== ANIMATIONS ========== */
  @keyframes heroLineUp {
    from { transform: translateY(110%); }
    to { transform: translateY(0); }
  }

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

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

  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

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

  @keyframes scrollIndicator {
    0% { top: -50%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 150%; opacity: 0; }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ========== HERO ANIMATIONS ========== */
  .hero-eyebrow {
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
  }

  .hero-line {
    animation: heroLineUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
  }
  .hero-line:nth-child(1) { animation-delay: 0.1s; }
  .hero-line:nth-child(2) { animation-delay: 0.22s; }
  .hero-line:nth-child(3) { animation-delay: 0.34s; }
  .hero-line:nth-child(4) { animation-delay: 0.46s; }

  .hero-sub {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
  }

  .hero-ctas {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.75s;
    opacity: 0;
  }

  .hero-stats {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
  }

  .hero-image {
    animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
  }

  /* ========== SCROLL INDICATOR ========== */
  .animate-scroll-indicator {
    animation: scrollIndicator 2s ease-in-out infinite;
  }

  /* ========== NAVIGATION ========== */
  .nav-link {
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4915A;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }

  /* ========== MOBILE MENU ========== */
  #mobile-menu.active {
    opacity: 1;
    pointer-events: all;
  }
  #mobile-menu:not(.active) {
    opacity: 0;
    pointer-events: none;
  }
  .mobile-nav-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  #mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
  }
  #mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
  #mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
  #mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
  #mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
  #mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
  #mobile-menu.active .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }

  /* ========== SCROLL REVEAL ========== */
  .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);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ========== ABOUT ========== */
  .about-images {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .about-images.revealed {
    opacity: 1;
    transform: translateX(0);
  }
  .about-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .about-content.revealed {
    opacity: 1;
    transform: translateX(0);
  }

  /* ========== MENU CARDS ========== */
  .menu-card {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .menu-card.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .menu-card:nth-child(1) { transition-delay: 0s; }
  .menu-card:nth-child(2) { transition-delay: 0.1s; }
  .menu-card:nth-child(3) { transition-delay: 0.2s; }
  .menu-card:nth-child(4) { transition-delay: 0.3s; }

  .menu-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .menu-header.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========== GALLERY ========== */
  .gallery-item {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gallery-item.revealed {
    opacity: 1;
    transform: scale(1);
  }

  .gallery-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gallery-header.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========== TESTIMONIALS ========== */
  .testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .testimonial-card:nth-child(1) { transition-delay: 0s; }
  .testimonial-card:nth-child(2) { transition-delay: 0.15s; }
  .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

  .testimonials-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .testimonials-header.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========== CONTACT ========== */
  .contact-info {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .contact-info.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .contact-form-wrap {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .contact-form-wrap.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========== FLOATING ACCENT ========== */
  @keyframes gentle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
  }
  .floating-accent {
    animation: gentle-float 4s ease-in-out infinite;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 767px) {
    .hero-line {
      font-size: 2.5rem !important;
    }
  }

  @media (min-width: 768px) {
    .hero-line {
      font-size: 3.5rem !important;
    }
  }

  @media (min-width: 1024px) {
    .hero-line {
      font-size: 4.5rem !important;
    }
  }

  @media (min-width: 1280px) {
    .hero-line {
      font-size: 5rem !important;
    }
  }
