  /* Base & Reset */
  *, *::before, *::after {
    box-sizing: border-box;
  }

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

  body {
    margin: 0;
    overflow-x: hidden;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #FDF8F2;
  }
  ::-webkit-scrollbar-thumb {
    background: #D4A056;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #C0603A;
  }

  /* Selection */
  ::selection {
    background: #C0603A;
    color: white;
  }

  /* Navbar */
  #navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(253, 248, 242, 0.85);
    border-bottom: 1px solid rgba(61, 34, 22, 0.05);
  }

  #navbar.scrolled {
    background: rgba(253, 248, 242, 0.95);
    box-shadow: 0 1px 20px rgba(61, 34, 22, 0.08);
  }

  .nav-link {
    position: relative;
  }

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

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

  /* Mobile Menu */
  .menu-line {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle.active .menu-line:nth-child(3) {
    width: 24px;
    margin-left: 0;
    transform: rotate(-45deg) translate(5px, -5px);
  }

  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  #mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
  }

  #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
  #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
  #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
  #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
  #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

  /* Hero Shapes */
  .hero-shape {
    position: absolute;
    pointer-events: none;
  }

  .shape-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 96, 58, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
  }

  .shape-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 86, 0.12) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
    border-radius: 50%;
  }

  .shape-rect-1 {
    width: 120px;
    height: 120px;
    background: rgba(192, 96, 58, 0.06);
    top: 25%;
    right: 8%;
    border-radius: 24px;
    transform: rotate(45deg);
  }

  .shape-circle-3 {
    width: 80px;
    height: 80px;
    background: rgba(212, 160, 86, 0.15);
    top: 60%;
    right: 3%;
    border-radius: 50%;
  }

  .shape-dots {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    background-image: radial-gradient(circle, rgba(192, 96, 58, 0.15) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.6;
  }

  /* Hero Badge */
  .hero-badge {
    animation: fadeInUp 0.8s ease forwards;
  }

  /* Floating Animations */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

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

  .animate-float {
    animation: float 4s ease-in-out infinite;
  }

  .animate-float-delayed {
    animation: float-delayed 5s ease-in-out infinite;
    animation-delay: 1s;
  }

  /* Hero Content Animations */
  #hero h1, #hero p, #hero a, #hero .flex {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }

  #hero h1 { animation-delay: 0.2s; }
  #hero p { animation-delay: 0.4s; }
  #hero .flex:first-of-type { animation-delay: 0.5s; }
  #hero .flex:last-of-type { animation-delay: 0.6s; }
  #hero .flex:last-of-type > div:first-child { animation-delay: 0.7s; }
  #hero .flex:last-of-type > div:nth-child(2) { animation-delay: 0.8s; }
  #hero .flex:last-of-type > div:nth-child(3) { animation-delay: 0.9s; }

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

  /* Menu Cards */
  .menu-card {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .menu-card:nth-child(2) { transition-delay: 0.15s; }
  .menu-card:nth-child(3) { transition-delay: 0.3s; }

  /* Gallery */
  .gallery-item {
    cursor: pointer;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 34, 22, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
  }

  .gallery-item:hover::after {
    opacity: 1;
  }

  .gallery-item img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Scroll Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.visible {
    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; }

  /* Responsive */
  @media (max-width: 768px) {
    .shape-circle-1 {
      width: 300px;
      height: 300px;
    }
    .shape-rect-1 {
      width: 60px;
      height: 60px;
    }
    .shape-circle-3 {
      display: none;
    }
  }

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

  /* 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;
    }
    .reveal {
      opacity: 1;
      transform: none;
    }
    .menu-card {
      opacity: 1;
      transform: none;
    }
  }
