html { scroll-behavior: smooth; }
body { background-color: #F3F5EC; color: #1C2618; }

/* Harvest ticket / crate tag shape — the site's signature motif */
.ticket {
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 6% 100%, 6% 62%, 0% 50%, 6% 38%, 6% 0%);
}
.ticket-hole {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F3F5EC;
}
@media (prefers-reduced-motion: no-preference) {
  .fade-up { animation: fadeUp 0.7s ease-out both; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.text-balance { text-wrap: balance; }
.bg-grain { background-image: radial-gradient(circle at 1px 1px, rgba(28,38,24,0.06) 1px, transparent 0); }

/* Active nav link on the current page */
.nav-active { color: #1F3B2C !important; font-weight: 700; }
