:root {
  --primary: #2e7d32;
  --secondary: #66bb6a;
  --accent: #ffb300;
  --bg: #fffdf7;
  --text: #212121;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

h1,
h2,
h3,
.font-heading {
  font-family: "Poppins", system-ui, sans-serif;
}

.glass {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(33, 33, 33, 0.11);
  backdrop-filter: blur(18px);
}

.nav-scrolled {
  background: rgba(255, 253, 247, 0.95);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.12);
  backdrop-filter: blur(18px);
}

.hero-parallax {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero-parallax {
    background-attachment: scroll;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-reveal {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 700ms ease, transform 700ms ease;
}

.zoom-reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hover-lift {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.hover-lift:hover,
.hover-lift:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(46, 125, 50, 0.16);
  border-color: rgba(102, 187, 106, 0.7);
}

.about-photo img {
  transition: transform 900ms ease;
}

.about-photo:hover img {
  transform: scale(1.045);
}

.logo-badge {
  animation: logoFloat 4.8s ease-in-out infinite;
}

.why-card {
  position: relative;
  isolation: isolate;
  min-height: 132px;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.14), transparent 42%, rgba(102, 187, 106, 0.14));
  opacity: 0;
  transition: opacity 280ms ease;
}

.why-card:hover::after,
.why-card:focus-within::after {
  opacity: 1;
}

.why-card svg {
  animation: iconBreath 3.8s ease-in-out infinite;
  transform-origin: center;
}

.why-card:nth-child(2n) svg {
  animation-delay: 0.45s;
}

.why-card:nth-child(3n) svg {
  animation-delay: 0.9s;
}

@media (max-width: 640px) {
  .why-card {
    min-height: 118px;
  }
}

.float-food {
  /* Subtle ambient movement for food badges without disturbing layout. */
  animation: floatFood 5s ease-in-out infinite;
}

.float-food:nth-child(2) {
  animation-delay: 1s;
}

.float-food:nth-child(3) {
  animation-delay: 1.8s;
}

@keyframes floatFood {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 22px 45px rgba(46, 125, 50, 0.18);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.25);
  }
}

@keyframes iconBreath {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.testimonial-track {
  transition: transform 500ms ease;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-item.active .faq-panel {
  max-height: 180px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.focus-ring:focus-visible {
  outline: 3px solid rgba(255, 179, 0, 0.7);
  outline-offset: 3px;
}
