  /* ── Base ── */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; }

  /* ── Nav scroll state ── */
  #nav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(107,58,110,0.08);
  }

  /* ── Stat cards ── */
  .stat-card {
    animation: floatCard 4s ease-in-out infinite;
  }
  .stat-card:nth-child(2) { animation-delay: -1.3s; }
  .stat-card:nth-child(3) { animation-delay: -2.6s; }

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

  /* ── Floating dots ── */
  .animate-float { animation: floatDot 5s ease-in-out infinite; }
  .animate-float2 { animation: floatDot 4s ease-in-out infinite 1s; }
  .animate-float3 { animation: floatDot 6s ease-in-out infinite 2s; }

  @keyframes floatDot {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-16px) scale(1.2); opacity: 1; }
  }

  /* ── Menu cards ── */
  .menu-card {
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .menu-card:hover { transform: translateY(-6px); }

  /* ── Scroll reveal ── */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Gallery items ── */
  .gallery-item {
    aspect-ratio: 1;
    cursor: pointer;
  }
  .gallery-item img {
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .gallery-item:hover img { transform: scale(1.1); }

  /* ── Mobile menu ── */
  #mobileMenu {
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── Mobile link ── */
  .mobile-link { display: block; }

  /* ── Selection ── */
  ::selection { background: rgba(245,197,24,0.3); }

  /* ── Focus visible ── */
  :focus-visible { outline: 2px solid #F5C518; outline-offset: 2px; }

  /* ── Responsive tweaks ── */
  @media (max-width: 640px) {
    .stat-card { display: none; }
  }
