  /* Base & Utilities */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  ::selection {
    background-color: rgba(123, 36, 52, 0.2);
    color: #4e1721;
  }

  /* Scroll Reveal Animations */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 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; }
  .scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
  .scroll-reveal:nth-child(6) { transition-delay: 0.5s; }

  /* Hero Animations */
  .hero-anim {
    opacity: 0;
    transform: translateY(25px);
    animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero-anim:nth-child(1) { animation-delay: 0.2s; }
  .hero-anim:nth-child(2) { animation-delay: 0.4s; }
  .hero-anim:nth-child(3) { animation-delay: 0.6s; }
  .hero-anim:nth-child(4) { animation-delay: 0.8s; }
  .hero-anim:nth-child(5) { animation-delay: 1.0s; }

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

  /* Navbar Styles */
  #navbar {
    background: transparent;
  }

  #navbar.scrolled {
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 36, 52, 0.08);
    box-shadow: 0 4px 30px rgba(123, 36, 52, 0.06);
  }

  #navbar.scrolled .font-display {
    color: #7B2434 !important;
  }

  #navbar.scrolled .text-burgundy-600\/70 {
    color: #b8203a !important;
  }

  /* Nav link underline hover effect */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #7B2434;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
  }

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

  /* Mobile menu animations */
  #mobile-menu {
    animation: menuSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes menuSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-nav-link {
    animation: navLinkFade 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
  }

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

  @keyframes navLinkFade {
    to { opacity: 1; }
  }

  /* Subtle pattern overlay for sections */
  .pattern-dots {
    background-image: radial-gradient(circle, rgba(123, 36, 52, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  /* Input focus styles */
  input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(123, 36, 52, 0.1);
  }

  /* Smooth image loading */
  img {
    opacity: 1;
    transition: opacity 0.4s ease;
  }

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

  ::-webkit-scrollbar-track {
    background: #fdf9f3;
  }

  ::-webkit-scrollbar-thumb {
    background: #d9c8b8;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #b8a48a;
  }

  /* Print styles */
  @media print {
    #navbar, #mobile-menu, .scroll-reveal { display: none; }
    body { color: #000; background: #fff; }
  }
