:root {
  --zogo-green: #0f4b3f;
  --zogo-market: #188866;
  --zogo-leaf: #0b6f55;
  --zogo-orange: #f47721;
  --zogo-yellow: #ffb318;
  --zogo-red: #cf2e2e;
  --zogo-cream: #fff5e4;
  --zogo-paper: #fffdf8;
  --zogo-ink: #252525;
  --zogo-muted: #6a625b;
  --zogo-border: #eadfce;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Trebuchet MS", "Aptos", sans-serif;
}

a {
  text-decoration: none;
}

.brand-logo {
  width: min(240px, 52vw);
  height: auto;
}

.nav-square {
  min-width: 44px;
  min-height: 44px;
}

.hero-section {
  background: var(--zogo-green);
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(15, 75, 63, 0.15), rgba(15, 75, 63, 0.02)),
    url("https://images.unsplash.com/photo-1488459716781-31db52582fe9?auto=format&fit=crop&w=1800&q=86") center / cover;
}

.min-vh-hero {
  min-height: 560px;
}

.hero-panel {
  position: relative;
  background: var(--zogo-green);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.hero-panel::before {
  position: absolute;
  inset: 0 100% 0 -50vw;
  background: var(--zogo-green);
  content: "";
}

.hero-panel > * {
  position: relative;
}

.fresh-card {
  border-top: 8px solid var(--bs-danger) !important;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promise-item + .promise-item {
  border-left: 1px solid rgba(123, 54, 11, 0.28);
}

.promise-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  font-size: 0.8rem;
}

.department-card {
  min-height: 175px;
  overflow: hidden;
  transition: transform 180ms ease;
}

.department-card > img {
  min-width: 0;
}

.department-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 75, 63, 0.08), rgba(15, 75, 63, 0.9));
  content: "";
}

.department-card .card-img-overlay {
  z-index: 1;
}

.department-card:hover {
  transform: translateY(-3px);
}

.add-button {
  position: absolute;
  top: -24px;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  line-height: 1;
}

.story-image {
  min-height: 400px;
  background: url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1200&q=85") center / cover;
}

.story-content {
  max-width: 580px;
}

.site-footer {
  background: var(--zogo-green);
}

.site-footer .nav-link:hover,
.site-footer .nav-link:focus {
  color: #fff !important;
}

.footer-logo {
  width: min(300px, 100%);
}

@media (max-width: 767.98px) {
  .hero-panel {
    clip-path: none;
  }

  .hero-panel::before {
    display: none;
  }

  .min-vh-hero {
    min-height: 620px;
  }

  .promise-item + .promise-item {
    border-top: 1px solid rgba(123, 54, 11, 0.28);
    border-left: 0;
  }
}