/* Only Veg — landing page */
.page-home {
  font-family: "Outfit", system-ui, sans-serif;
  background: #eef3ea;
  color: #132016;
}

.home-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.home-brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.home-brand em {
  font-style: normal;
  color: #b8f0c4;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.home-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.home-nav .nav-cta {
  background: #fff;
  color: #1b7f3a;
  text-shadow: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 28, 16, 0.35) 0%, rgba(12, 28, 16, 0.15) 35%, rgba(12, 28, 16, 0.72) 100%),
    linear-gradient(90deg, rgba(12, 28, 16, 0.45) 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 5.5rem 1.25rem 2.75rem;
  color: #fff;
  animation: rise 0.9s ease both;
}

.hero-brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-copy h1 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  max-width: 16ch;
  color: #fff;
}

.hero-sub {
  margin: 0 0 1.35rem;
  max-width: 34ch;
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 1.05s ease 0.12s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-hero.primary {
  background: #2ecc71;
  color: #0b2414;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn-hero.primary:hover {
  transform: translateY(-2px);
  background: #3ee081;
}

.btn-hero.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.btn-hero.secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.home-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3rem;
}

.home-panel {
  margin-bottom: 1.25rem;
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  animation: rise 0.8s ease 0.2s both;
}

.stat-pill {
  background: #fff;
  border: 1px solid #d7e3d5;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  text-align: center;
}

.stat-pill b {
  display: block;
  font-size: 1.6rem;
  color: #1b7f3a;
  font-weight: 700;
}

.stat-pill span {
  color: #5b675e;
  font-size: 0.88rem;
}

.how h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  margin: 0.5rem 0 0.85rem;
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  color: #2a382e;
  line-height: 1.7;
}

.fine {
  color: #5b675e;
  font-size: 0.95rem;
  margin: 0.9rem 0 0;
}

.home-footer {
  text-align: center;
  color: #5b675e;
  font-size: 0.85rem;
  margin-top: 2rem;
}

.home-footer a {
  color: #1b7f3a;
}

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

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
    min-height: 88dvh;
  }
  .hero-copy {
    padding-top: 6rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-hero {
    width: 100%;
  }
  .trust {
    grid-template-columns: 1fr;
  }
  .home-nav a:not(.nav-cta) {
    display: none;
  }
}
