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

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

  body {
    overflow-x: hidden;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #FDF8F5;
  }
  ::-webkit-scrollbar-thumb {
    background: #d4a0a8;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #6B1D2A;
  }

  /* Button Primary */
  .btn-primary {
    background: #6B1D2A;
    transition: all 0.3s ease;
  }
  .btn-primary:hover {
    background: #5a1723;
    box-shadow: 0 10px 40px rgba(107, 29, 42, 0.3);
  }

  /* Button Secondary */
  .btn-secondary {
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    background: #6B1D2A;
    color: white !important;
  }

  /* Input Field */
  .input-field {
    background: #FDF8F5;
  }
  .input-field:focus {
    background: white;
    box-shadow: 0 0 0 4px rgba(107, 29, 42, 0.08);
  }

  /* Menu Card */
  .menu-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .menu-card:hover {
    transform: translateY(-8px);
  }

  /* Gallery Item */
  .gallery-item {
    cursor: pointer;
  }
  .gallery-item img {
    transition: transform 0.7s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.08);
  }

  /* Navigation */
  #navbar {
    background: transparent;
  }
  #navbar.scrolled {
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(107, 29, 42, 0.08);
  }
  .nav-link {
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #6B1D2A;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }

  /* Hamburger */
  .hamburger-line {
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }
  #menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  #menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 1.5rem;
  }

  /* Mobile Menu */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  #mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
  }
  #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
  #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
  #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
  #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
  #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

  /* Animations */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
  }

  /* Hero Animations */
  .hero-text > * {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s ease forwards;
  }
  .hero-text > *:nth-child(1) { animation-delay: 0.2s; }
  .hero-text > *:nth-child(2) { animation-delay: 0.4s; }
  .hero-text > *:nth-child(3) { animation-delay: 0.6s; }
  .hero-text > *:nth-child(4) { animation-delay: 0.8s; }

  .hero-image > * {
    opacity: 0;
    transform: scale(0.95);
    animation: heroImageReveal 1s ease forwards;
    animation-delay: 0.5s;
  }

  @keyframes heroReveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes heroImageReveal {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Decorative divider */
  .section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6B1D2A, #d4a0a8);
    margin-bottom: 1.5rem;
  }
  .section-divider.center {
    margin-left: auto;
    margin-right: auto;
  }
