:root {
  --terra-forest: #0f2919;
  --terra-accent: #e07020;
  --terra-sand: #e8dcc8;
  --terra-earth: #4a3728;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.hero-parallax {
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .hero-parallax {
    background-attachment: scroll;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.9s var(--ease-out) both;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }

.card-lift {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 41, 25, 0.18);
}

.cart-drawer {
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-hidden {
  transform: translateY(110%);
}

.cookie-banner {
  transition: transform 0.45s var(--ease-out);
}

.gradient-hero-mask {
  background: linear-gradient(
    120deg,
    rgba(15, 41, 25, 0.92) 0%,
    rgba(15, 41, 25, 0.55) 45%,
    rgba(224, 112, 32, 0.18) 100%
  );
}

.filter-chip {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
}

.prose-section h2 {
  font-family: inherit;
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
