/* ============================================
   ABOUT PAGE — about.css
   ============================================ */

/* ---- Active nav link ---- */
.main-nav a.active {
  color: var(--navy);
  background: var(--light-bg);
  font-weight: 700;
}

/* ---- Mission Section ---- */
.about-mission-section { background: var(--white); }
.about-mission-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.mission-statement-block p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.mission-statement-block h2 { margin-bottom: 24px; }

.mission-quote {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--green);
  background: var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.mission-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}
.mission-quote cite {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  font-style: normal;
}

/* Stat cards column */
.mission-stats-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 88px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--navy-light);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.stat-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- Why Grid ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 17px; margin-bottom: 10px; }
.why-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ---- Approach Grid ---- */
.approach-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.approach-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.approach-item:last-child { border-bottom: none; }
.approach-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
  padding-top: 4px;
  opacity: 0.85;
}
.approach-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.approach-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ---- Founder Section ---- */
.founder-section-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 88px;
}
.founder-avatar-lg {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-size: 50px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
}
.founder-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.founder-role-tag {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.founder-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}
.founder-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.15s;
}
.founder-contact-link:hover { opacity: 0.75; }
.founder-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}
.founder-location svg { color: var(--text-light); }

/* Founder story */
.founder-story-col p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.founder-story-col h2 { margin-bottom: 24px; }
.founder-story-col strong { color: var(--text-dark); }

.founder-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.founder-value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.founder-value-item svg { color: var(--green); flex-shrink: 0; }

/* ---- Nonprofit Grid ---- */
.nonprofit-section { background: var(--white); }
.nonprofit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nonprofit-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
}
.np-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-light);
  color: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.nonprofit-card h3 { font-size: 17px; margin-bottom: 10px; }
.nonprofit-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ---- Values Grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.bg-teal-light { background: var(--teal-light); color: var(--teal); }
.value-card h3 { font-size: 15px; margin-bottom: 8px; font-weight: 700; }
.value-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ---- Referral Section ---- */
.referral-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.referral-copy p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.referral-copy h2 { margin-bottom: 20px; }
.referral-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.referral-who {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.referral-who h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.referral-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.referral-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.4;
}
.referral-list svg { color: var(--green); flex-shrink: 0; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-mission-layout      { grid-template-columns: 1fr; }
  .mission-stats-col         { position: static; flex-direction: row; flex-wrap: wrap; }
  .stat-card                 { flex: 1; min-width: 200px; }
  .founder-section-layout    { grid-template-columns: 1fr; gap: 40px; }
  .founder-visual-col        { position: static; flex-direction: row; align-items: center; text-align: left; gap: 24px; }
  .founder-contact-block     { align-items: flex-start; }
  .nonprofit-grid            { grid-template-columns: 1fr 1fr; }
  .values-grid               { grid-template-columns: 1fr 1fr; }
  .referral-layout           { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .why-grid        { grid-template-columns: 1fr; }
  .nonprofit-grid  { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .approach-item   { flex-direction: column; gap: 12px; }
  .approach-num    { width: auto; text-align: left; font-size: 32px; }
  .founder-visual-col { flex-direction: column; text-align: center; align-items: center; }
  .founder-contact-block { align-items: center; }
  .mission-stats-col { flex-direction: column; }
  .referral-actions { flex-direction: column; }
}
