  /* Base styles and custom utilities */
  :root {
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
  }

  html {
    scroll-behavior: smooth;
  }

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

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #f5f0e8;
  }
  ::-webkit-scrollbar-thumb {
    background: #1a4d2e;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #2d4f34;
  }

  /* Selection color */
  ::selection {
    background: #1a4d2e;
    color: #faf8f4;
  }

  /* Nav styles */
  #nav {
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 77, 46, 0.08);
  }

  #nav.scrolled {
    background: rgba(250, 248, 244, 0.95);
    box-shadow: 0 1px 20px rgba(26, 77, 46, 0.08);
  }

  .nav-link {
    position: relative;
    color: #2d4f34;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a4d2e;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }

  /* Hero animations */
  .hero-eyebrow {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.2s;
  }
  .hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.4s;
  }
  .hero-ctas {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.6s;
  }
  .hero-image {
    opacity: 0;
    transform: translateX(40px);
    animation: slideIn 1s ease forwards 0.3s;
  }

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

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

  /* Mobile menu */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .menu-line.active:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .menu-line.active:nth-child(2) {
    opacity: 0;
  }
  .menu-line.active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 1.25rem;
  }

  /* Mobile link animation */
  .mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
  }
  #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
  #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.2s; }
  #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.3s; }
  #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.4s; }
  #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.5s; }

  /* Photo strip hover */
  .overflow-hidden {
    will-change: transform;
  }

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