/* ============================================
   About Page Styles — Geothermal Insider
   ============================================ */

/* ---- Page Hero ---- */
.page-hero {
  padding: 100px 0 80px;
  text-align: center;
}
.page-hero .label {
  display: block;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-on-dark-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Origin Story ---- */
.about-story {
  max-width: 820px;
  margin: 0 auto;
}
.story-intro {
  text-align: center;
  margin-bottom: 56px;
}
.story-intro h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 12px;
}
.story-body p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.story-lead {
  font-size: 1.25rem !important;
  font-weight: 500;
  color: var(--text-dark) !important;
}
.story-callout {
  margin: 2.5em 0;
  border-left: 4px solid var(--accent);
  padding: 24px 32px;
  background: var(--cream-deep);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.story-callout blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}
.story-callout cite {
  display: block;
  margin-top: 14px;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* ---- Mission Section ---- */
.about-mission {
  text-align: center;
}
.about-mission .section-title p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-on-dark-muted);
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap-lg);
  margin-top: 56px;
  text-align: left;
}
.pillar {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--accent);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.pillar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

/* ---- Team Grid ---- */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 56px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.team-member {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--cream-deep);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.team-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white-pure);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.team-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-info p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .team-member {
    flex-direction: column;
    gap: 16px;
  }
  .mission-pillars {
    grid-template-columns: 1fr;
  }
  .story-callout {
    padding: 20px;
  }
}
