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

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

  body {
    overflow-x: hidden;
  }

  /* ─── Hero ─── */
  .hero-bg {
    will-change: transform;
  }

  .hero-scrim {
    background: linear-gradient(
      to bottom,
      rgba(5, 46, 22, 0.55) 0%,
      rgba(5, 46, 22, 0.40) 40%,
      rgba(5, 46, 22, 0.70) 100%
    );
  }

  .hero-eyebrow {
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.8s ease forwards 0.3s;
  }

  .hero-headline {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s ease forwards 0.5s;
  }

  .hero-sub {
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.8s ease forwards 0.7s;
  }

  .hero-btn {
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.8s ease forwards 0.9s;
  }

  @keyframes heroFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ─── Scroll Reveal ─── */
  @media (prefers-reduced-motion: no-preference) {
    .reveal-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

  /* Default visible state for reduced-motion or no-JS */
  @media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-left,
    .reveal-right {
      opacity: 1;
      transform: none;
    }
  }

  /* ─── Section Eyebrow ─── */
  .section-eyebrow {
    letter-spacing: 0.25em;
  }

  /* ─── Navigation ─── */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
  }

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

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

  #mobile-menu.open .mobile-link {
    animation: mobileLinkIn 0.4s ease forwards;
    opacity: 0;
  }

  #mobile-menu.open .mobile-link:nth-child(1) { animation-delay: 0.05s; }
  #mobile-menu.open .mobile-link:nth-child(2) { animation-delay: 0.1s; }
  #mobile-menu.open .mobile-link:nth-child(3) { animation-delay: 0.15s; }
  #mobile-menu.open .mobile-link:nth-child(4) { animation-delay: 0.2s; }

  @keyframes mobileLinkIn {
    to {
      opacity: 1;
    }
  }

  /* ─── Menu Items Hover ─── */
  #menu li:hover {
    background: rgba(22, 101, 52, 0.03);
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    transition: all 0.2s ease;
  }

  /* ─── Photo Grid Hover ─── */
  .aspect-square img,
  .aspect-\[4\/5\] img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* ─── Form Focus ─── */
  input:focus,
  textarea:focus {
    border-color: #16a34a !important;
  }

  /* ─── Custom Scrollbar ─── */
  ::-webkit-scrollbar {
    width: 6px;
  }

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

  ::-webkit-scrollbar-thumb {
    background: #bbf7d0;
    border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #86efac;
  }

  /* ─── Selection ─── */
  ::selection {
    background: #166534;
    color: #fdfcfa;
  }
