/* About page styles */
.page-hero-bg--about {
  background-image: url("../../../gallery-13.JPG");
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(49, 79, 115, 0.3);
}
.about-image-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}
.about-image-badge-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.container-narrow-640 {
  max-width: 640px;
  margin: 0 auto;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.mvv-card:hover {
  border-color: var(--navy-light);
  box-shadow: 0 8px 32px rgba(49, 79, 115, 0.1);
  transform: translateY(-4px);
}
.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.mvv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.mvv-card p {
  font-size: 0.92rem;
}
.team-strip {
  background: var(--navy);
  padding: 5rem 0;
}
.team-strip h2 {
  color: var(--white);
}
.team-strip p {
  color: rgba(253, 252, 250, 0.8);
  max-width: 600px;
  margin: 1rem 0 0;
}
.farm-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.farm-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
}
.farm-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.produce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.produce-item {
  background: var(--navy-pale);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--navy);
  text-align: center;
  font-weight: 500;
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy-light), var(--gold));
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy-light);
}
.timeline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.timeline-item p {
  font-size: 0.88rem;
}
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 60% 50%, rgba(74, 107, 143, 0.4) 0%, transparent 60%);
}
.cta-banner h2,
.cta-banner p,
.cta-banner .flex {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--white);
}
.cta-banner p {
  color: rgba(253, 252, 250, 0.8);
  max-width: 520px;
  margin: 1rem auto 2.5rem;
}
.cta-banner .flex {
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .mvv-grid,
  .about-intro-grid,
  .farm-feature,
  .produce-grid {
    grid-template-columns: 1fr;
  }
  .farm-feature-img {
    height: 280px;
  }
}
