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

  /* ── Scrollbar ──────────────────────────────────── */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: #064e3b; }
  ::-webkit-scrollbar-thumb { background: #15803d; border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: #166534; }

  /* ── Selection ──────────────────────────────────── */
  ::selection { background: #d4a574; color: #064e3b; }

  /* ── Reveal Animation ───────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    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; }

  /* ── Hero Animations ────────────────────────────── */
  .hero-anim {
    opacity: 0;
    transform: translateY(24px);
    animation: heroIn 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 heroIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── Nav Link Hover ─────────────────────────────── */
  .nav-link {
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a574;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after { width: 100%; }

  /* ── Mobile Link ────────────────────────────────── */
  .mobile-link {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  body.menu-open .mobile-link {
    opacity: 1;
    transform: translateY(0);
  }
  body.menu-open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
  body.menu-open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
  body.menu-open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
  body.menu-open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
  body.menu-open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

  /* ── Image Hover ────────────────────────────────── */
  .group img {
    will-change: transform;
  }

  /* ── Focus Styles ───────────────────────────────── */
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
  }

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