  /* Base & Utilities */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

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

  body {
    overflow-x: hidden;
  }

  ::selection {
    background: #800020;
    color: #fff;
  }

  /* Reveal Animations */
  .reveal-up,
  .reveal-left,
  .reveal-right {
    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);
  }

  .reveal-left {
    transform: translateX(-40px);
  }

  .reveal-right {
    transform: translateX(40px);
  }

  .reveal-up.revealed,
  .reveal-left.revealed,
  .reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* Navbar */
  #navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(255, 245, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(128, 0, 32, 0.08);
  }

  /* Nav link underline animation */
  .nav-link::after {
    content: '';
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

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

  .menu-line:nth-child(1) {
    transform-origin: center;
  }

  .menu-line:nth-child(3) {
    transform-origin: center;
  }

  #menu-btn.active .menu-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  #menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
  }

  #menu-btn.active .menu-line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
    width: 1.25rem;
  }

  .mobile-nav-link {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

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

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

  /* Smooth image loading */
  img {
    background: linear-gradient(135deg, #fce4ea 0%, #f9c5d3 100%);
  }

  /* Subtle pattern overlay for sections */
  section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, rgba(128, 0, 32, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
  }

  /* Button focus styles */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid #d4a574;
    outline-offset: 3px;
    border-radius: 4px;
  }

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

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

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

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

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