  /* 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;
  }

  img {
    display: block;
    max-width: 100%;
  }

  /* Hero Zoom Animation */
  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
  }

  .animate-hero-zoom {
    animation: heroZoom 1.5s ease-out forwards;
  }

  /* Hero Element Stagger Animation */
  .hero-element {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
  }

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

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

  /* Scroll Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal:nth-child(2) { transition-delay: 0.1s; }
  .reveal:nth-child(3) { transition-delay: 0.2s; }
  .reveal:nth-child(4) { transition-delay: 0.3s; }

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

  #navbar.scrolled {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  /* Nav Link Hover Effect */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2dd4bf, #14b8a6);
    transition: width 0.3s ease;
    border-radius: 1px;
  }

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

  .nav-link::after {
    left: 0;
  }

  /* Mobile Link */
  .mobile-link {
    display: block;
    padding: 0.5rem 0;
  }

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

  ::-webkit-scrollbar-track {
    background: #0f172a;
  }

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

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

  /* Selection */
  ::selection {
    background: rgba(45, 212, 191, 0.3);
    color: #f0fdfa;
  }

  /* Focus Styles */
  input:focus, select:focus, textarea:focus {
    outline: none;
  }

  /* Smooth image loading */
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  /* Beer card shimmer on hover */
  .group:hover .aspect-\[4\/3\] img {
    filter: brightness(1.05);
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .font-serif {
      line-height: 1.1;
    }
  }

  @media (min-width: 768px) {
    .reveal {
      transition-delay: 0.15s;
    }
  }
