/* About Page */

/* ── Mission / Vision cards ── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.mv-card {
  background: var(--white); border-radius: 20px; padding: 38px 32px;
  box-shadow: var(--sh-sm); border-top: 4px solid var(--g4);
  transition: var(--ease);
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.mv-ico {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--g4), var(--g7));
  border-radius: 15px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; color: var(--white); margin-bottom: 18px;
}
.mv-title { font-family: var(--ff-h); font-size: 1.35rem; color: var(--brown); margin-bottom: 12px; }
.mv-text  { font-size: 14.5px; color: var(--gray); line-height: 1.75; }

/* ── Milestones / Timeline ── */
.timeline { position: relative; padding-left: 32px; margin-top: 44px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--g4), var(--g8));
}
.tl-item { position: relative; margin-bottom: 36px; }
.tl-dot {
  position: absolute; left: -28px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g4), var(--g8));
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--g4);
}
.tl-year {
  font-size: 11px; font-weight: 700; color: var(--g6);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px;
}
.tl-title { font-family: var(--ff-h); font-size: 1.05rem; color: var(--brown); margin-bottom: 5px; }
.tl-desc  { font-size: 13.5px; color: var(--gray); line-height: 1.65; }

/* ── Founder section ── */
.founder-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center; }
.founder-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--sh-lg); }
.founder-img-wrap img { height: 460px; width: 100%; }
.founder-quote {
  font-family: var(--ff-h); font-size: 1.15rem; font-style: italic;
  color: var(--g7); line-height: 1.7; margin: 22px 0 18px;
  padding-left: 18px; border-left: 3px solid var(--g4);
}
.founder-sig { font-family: var(--ff-h); font-size: 1.5rem; color: var(--brown); margin-top: 22px; }
.founder-role { font-size: 12px; color: var(--g6); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

/* ── Values grid ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.val-card {
  text-align: center; padding: 34px 22px;
  background: var(--white); border-radius: 18px; box-shadow: var(--sh-sm);
  transition: var(--ease);
}
.val-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.val-ico {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gl), var(--g3));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 22px; color: var(--g7);
}
.val-title { font-family: var(--ff-h); font-size: 1rem; color: var(--brown); margin-bottom: 9px; }
.val-text  { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ── About FAQs section bg ── */
#about-faq { background: var(--creamD); }

@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-img-wrap img { height: 320px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
