/* =============================================
   ABOUT PAGE
   ============================================= */

.page-hero {
  padding: 4rem 0 0;
  background: var(--bg);
  text-align: center;
}

.page-hero .container {
  padding-bottom: 3rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .hero-divider {
  width: 100%;
  height: 2px;
  margin: 1rem 0;
}

.about-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.about-structural {
  text-align: center;
}

.about-structural .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.structural-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  padding: 0;
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}

.structural-highlights li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.structural-highlights li::before {
  content: '— ';
  color: var(--green);
}

@media (max-width: 640px) {
  .structural-highlights { flex-direction: column; gap: 0.75rem; max-width: none; }
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 70ch;
}

/* Pillars */
.about-pillars-section {
  background: var(--bg-surface);
}

.about-pillars-section > .container > h2 {
  text-align: center;
}

.section-label {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 52ch;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.pillar {
  border-top: 2px solid var(--green);
  padding-top: 1.5rem;
}

.pillar-number {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  margin-bottom: 0.6rem;
}

.pillar h3 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: normal;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Mutual commitments */
.about-commitments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.commitment-col .section-label {
  margin-bottom: 1.25rem;
  text-align: center;
}

.commitment-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.commitment-list li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 1.1rem;
  position: relative;
}

.commitment-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
}

/* Closing */
.about-closing {
  text-align: center;
}

.about-closing p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 60ch;
  font-style: italic;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

.closing-sig {
  font-style: normal !important;
  font-size: 0.9rem !important;
  color: var(--text-faint) !important;
  margin-top: 1rem !important;
  margin-bottom: 2rem !important;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr; }
  .about-commitments { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero { padding: 3rem 1.5rem; }
}
