:root {
  --moss: #5d7041;
  --sage: #9eb18b;
  --cream: #f6f1e7;
  --earth: #7a5b42;
  --hay: #e8d6ad;
  --ink: #2f241d;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top right, rgba(158, 177, 139, 0.28), transparent 28rem),
    linear-gradient(180deg, #fbf8f1 0%, #f6f1e7 100%);
}

a,
button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(198, 106, 61, 0.25);
  outline-offset: 2px;
}

.texture-grid {
  position: relative;
}

.texture-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 91, 66, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 91, 66, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 80%);
}

.hero-glow {
  background: linear-gradient(135deg, rgba(232, 214, 173, 0.62), rgba(158, 177, 139, 0.18));
}

.section-shell {
  border: 1px solid rgba(93, 112, 65, 0.12);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 55px rgba(74, 51, 34, 0.12);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.eyebrow {
  color: var(--earth);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

.lead {
  max-width: 42rem;
  color: rgba(47, 36, 29, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn-primary,
.btn-secondary,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.95rem 1.35rem;
}

.btn-primary {
  background: var(--moss);
  box-shadow: 0 14px 28px rgba(93, 112, 65, 0.25);
  color: #fff;
}

.btn-primary:hover {
  background: #526338;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(93, 112, 65, 0.18);
  color: var(--ink);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(93, 112, 65, 0.28);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(19, 15, 11, 0.16);
}

.nav-link,
.footer-link {
  border-radius: 999px;
  color: rgba(47, 36, 29, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
}

.nav-link:hover,
.footer-link:hover {
  background: rgba(255, 255, 255, 0.75);
  color: var(--moss);
}

.nav-link-active {
  background: var(--moss);
  box-shadow: 0 14px 28px rgba(93, 112, 65, 0.18);
  color: #fff;
}

.nav-link-active:hover {
  color: #fff;
}

.chip,
.tag-pill,
.newsletter-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.45rem 0.8rem;
}

.chip,
.tag-pill {
  background: rgba(93, 112, 65, 0.1);
  color: var(--moss);
}

.newsletter-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.info-card,
.process-card,
.category-card,
.value-card,
.producer-card,
.pickup-card,
.faq-card {
  border: 1px solid rgba(93, 112, 65, 0.1);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.35rem;
}

.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 231, 0.92));
}

.process-card,
.category-card,
.value-card,
.producer-card,
.pickup-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(93, 112, 65, 0.12);
  color: var(--moss);
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-card {
  padding: 0.4rem;
}

.faq-card.is-open {
  border-color: rgba(93, 112, 65, 0.22);
  box-shadow: 0 18px 32px rgba(74, 51, 34, 0.08);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.3rem;
  padding: 1rem 1.1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-toggle:hover {
  background: rgba(93, 112, 65, 0.06);
}

.faq-symbol {
  color: var(--earth);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-answer {
  padding: 0 1.1rem 1rem;
  color: rgba(47, 36, 29, 0.76);
  font-size: 0.96rem;
  line-height: 1.8;
}

.pickup-card.hidden {
  display: none;
}

@media (max-width: 640px) {
  .nav-link,
  .btn-primary,
  .btn-secondary,
  .btn-light {
    width: 100%;
  }
}
