
/* About page */
.about-page .about-hero {
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 58%, #fff8e8 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.about-hero-grid {
  padding: 68px 0;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 46px;
  align-items: center;
}
.about-eyebrow {
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 12px;
}
.about-hero h1 { margin-bottom: 10px; }
.about-story-line {
  font-family: Merriweather, Georgia, serif;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 900;
  margin: 0 0 22px;
}
.about-path-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.about-path-card img {
  width: min(210px, 72%);
  margin: 0 auto 24px;
}
.story-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  position: relative;
}
.story-path::before {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: 21px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green), var(--blue));
  opacity: .35;
}
.path-step { position: relative; text-align: center; font-weight: 900; color: var(--blue-dark); font-size: .78rem; }
.path-dot {
  width: 44px; height: 44px; margin: 0 auto 8px;
  border-radius: 50%; background: #fff; border: 3px solid var(--blue);
  display: grid; place-items: center; position: relative; z-index: 1;
  font-family: Merriweather, Georgia, serif;
}
.heart-copy { max-width: 900px; }
.heart-copy p { font-size: 1.12rem; color: var(--muted); }
.heart-copy p:first-of-type { font-size: 1.25rem; color: var(--ink); font-weight: 700; }
.pillar-card { text-align: center; }
.pillar-card .pillar-symbol {
  width: 52px; height: 52px; border-radius: 16px; margin: 0 auto 14px;
  background: #eef5fb; color: var(--blue-dark); display: grid; place-items: center;
  font-family: Merriweather, Georgia, serif; font-weight: 900; font-size: 1.25rem;
}
.action-card { height: 100%; display: flex; flex-direction: column; }
.action-card .btn { margin-top: auto; align-self: flex-start; }
.founder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.founder-card { display: grid; grid-template-columns: 78px 1fr; gap: 20px; align-items: start; }
.founder-mark {
  width: 78px; height: 78px; border-radius: 22px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff;
  font-family: Merriweather, Georgia, serif; font-size: 1.55rem; font-weight: 900;
}
.founder-role { color: var(--blue-dark); font-weight: 900; margin: -8px 0 10px; }
.nonprofit-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  padding: 32px; box-shadow: var(--shadow);
}
.nonprofit-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.nonprofit-fact { background: var(--soft); border-radius: 16px; padding: 18px; }
.nonprofit-fact strong { display: block; color: var(--blue-dark); margin-bottom: 4px; }
.about-note { color: var(--muted); font-size: .92rem; margin-top: 18px; }
@media (max-width: 900px) {
  .about-hero-grid, .founder-grid, .nonprofit-facts { grid-template-columns: 1fr; }
  .story-path { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .story-path::before { display: none; }
}
@media (max-width: 560px) {
  .about-hero-grid { padding: 48px 0; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-mark { width: 64px; height: 64px; }
}
