/* ============================================================
   KAGEZI SEEDS — about.css
   ============================================================ */

/* ── STORY SECTION ── */
#about-story { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.story-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.highlight-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.highlight-item h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.highlight-item p  { font-size: 13px; color: var(--text-mid); }

/* ── MISSION VISION ── */
#about-mission { background: var(--cream); }
.mv-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-top: 4px solid var(--green-light);
  box-shadow: var(--shadow-sm);
}
.mv-full-card.gold-top { border-top-color: var(--gold); }
.mv-full-card-icon {
  font-size: 32px;
  margin-bottom: 18px;
}
.mv-full-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.mv-full-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ── VALUES ── */
#about-values { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
}
.value-card-icon {
  font-size: 32px;
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* ── TEAM ── */
#about-team {
  background: var(--cream);
  padding: 96px 5%;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
}
.team-card-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--green-pale);
  transition: border-color 0.3s ease;
}
.team-card:hover .team-card-img-wrap {
  border-color: var(--gold);
}
.team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 13px;
  color: var(--green-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── MILESTONES ── */
#about-milestones { background: var(--white); }
.milestones-list {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.milestones-list::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.milestone-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.milestone-year {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-mid);
  width: 60px;
  flex-shrink: 0;
  text-align: right;
  line-height: 1.3;
}
.milestone-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-light);
  border: 3px solid var(--cream);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.milestone-content h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.milestone-content p  { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── PARTNERS ── */
#about-partners { background: var(--green-pale); padding: 64px 5%; }
.partners-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.partners-inner h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 36px;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .story-grid  { grid-template-columns: 1fr; }
  .story-img   { height: 340px; }
  .mv-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
}
