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

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #334155;
    background-color: #ffffff;
  }

  .font-playfair {
    font-family: 'Playfair Display', Georgia, serif;
  }

  .font-inter {
    font-family: 'Inter', sans-serif;
  }

  /* Scroll-triggered animations */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* Nav scroll state */
  nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  /* Mobile menu open state */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Menu icon animation */
  #mobile-menu.open .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  #mobile-menu.open .menu-line:nth-child(2) {
    opacity: 0;
  }
  #mobile-menu.open .menu-line:nth-child(3) {
    width: 6px;
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* Subtle image hover */
  .aspect-\[4\/5\] img,
  .aspect-\[4\/3\] img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .aspect-\[4\/5\]:hover img,
  .aspect-\[4\/3\]:hover img {
    transform: scale(1.02);
  }

  /* Menu item hover line */
  #menu div > div > div > div:first-child::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #0d4f5c;
    transition: width 0.3s ease;
    margin-top: 2px;
  }

  #menu div > div > div:hover > div:first-child::after {
    width: 100%;
  }

  /* Focus styles */
  input:focus, textarea:focus, button:focus {
    outline: none;
  }

  /* Selection color */
  ::selection {
    background: rgba(13, 79, 92, 0.15);
    color: #0d4f5c;
  }

  @media (max-width: 767px) {
    .font-playfair {
      font-size: 2.25rem;
    }

    section {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
