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

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

  body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  ::selection {
    background: #F9CFD8;
    color: #5c1520;
  }

  /* ========== NAVBAR ========== */
  #navbar {
    background: transparent;
  }

  #navbar.scrolled {
    background: rgba(253, 240, 242, 0.95);
    backdrop-blur-md;
    box-shadow: 0 1px 20px rgba(123, 30, 43, 0.08);
  }

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

  #navbar.scrolled a:not([class*="bg-"]) {
    color: #4A3F42 !important;
  }

  /* ========== MOBILE MENU ========== */
  #mobile-menu.open .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #mobile-menu.open .menu-line:nth-child(2) {
    opacity: 0;
  }
  #mobile-menu.open .menu-line:nth-child(3) {
    width: 1.25rem;
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #fce4e8;
  }

  .mobile-link:last-child {
    border-bottom: none;
  }

  /* ========== FLOATING CARDS ========== */
  @media (prefers-reduced-motion: no-preference) {
    .floating-card {
      animation: float 6s ease-in-out infinite;
    }
    .card-beer { animation-delay: 0s; }
    .card-food { animation-delay: -1.5s; }
    .card-cocktail { animation-delay: -3s; }
    .card-neighborhood { animation-delay: -4.5s; }
  }

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

  /* ========== SCROLL REVEAL ========== */
  .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(30px);
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ========== BUTTON HOVER EFFECTS ========== */
  a[class*="inline-flex"][class*="bg-burgundy"] {
    position: relative;
    overflow: hidden;
  }

  a[class*="inline-flex"][class*="bg-burgundy"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  a[class*="inline-flex"][class*="bg-burgundy"]:hover::after {
    opacity: 1;
  }

  /* ========== FORM STYLES ========== */
  input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(123, 30, 43, 0.15);
  }

  /* ========== DECORATIVE ELEMENTS ========== */
  .section-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, #F9CFD8, #ec6f8e, #F9CFD8, transparent);
    border: none;
    border-radius: 2px;
    margin: 0;
  }

  /* ========== UTILITY ========== */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
