  /* Base */
  *, *::before, *::after {
    box-sizing: border-box;
  }

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

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

  /* Scroll reveal — progressive enhancement */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

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

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

  /* Card hover */
  .card {
    padding: 2rem;
    border-radius: 1.25rem;
    background: white;
    border: 1px solid rgba(232, 201, 160, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .card:hover {
    box-shadow: 0 20px 60px -20px rgba(192, 114, 86, 0.15);
    transform: translateY(-4px);
  }

  /* Menu item */
  .menu-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(232, 201, 160, 0.3);
    transition: padding-left 0.2s ease;
  }

  .menu-item:last-child {
    border-bottom: none;
  }

  .menu-item:hover {
    padding-left: 0.5rem;
  }

  /* Navbar glass */
  #navbar.scrolled {
    background: rgba(253, 248, 240, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(160, 112, 60, 0.08);
  }

  /* Mobile link */
  .mobile-link {
    display: block;
    transition: color 0.2s, padding-left 0.2s;
  }

  .mobile-link:hover {
    color: #C07256;
    padding-left: 0.5rem;
  }

  /* Nav link underline on scroll */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C07256;
    transition: width 0.3s ease;
    border-radius: 1px;
  }

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

  /* Selection color */
  ::selection {
    background: rgba(192, 114, 86, 0.2);
    color: #3D2B1F;
  }

  /* Focus visible */
  :focus-visible {
    outline: 2px solid #C07256;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Smooth image loading */
  img {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

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

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

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

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