/* ================================================================
   /about page-specific styles
   ================================================================ */

.about-hero {
  padding: 96px 0 64px;
  min-height: 40vh;
  display: flex;
  align-items: center;
}
.about-hero h1 {
  font-size: 56px;
  line-height: 1.1;
  max-width: 800px;
  margin: 16px auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .about-hero h1 { font-size: 36px; }
}
.about-hero .eyebrow { text-align: center; }

.about-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-prose p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.about-prose p.lead { color: var(--text-primary); }

.about-pullquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--accent);
  padding: 32px 0;
  margin: 24px 0;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}
@media (max-width: 768px) { .about-pullquote { font-size: 24px; } }

.about-founder {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .about-founder { grid-template-columns: 1fr; gap: 32px; } }
.about-founder__photo {
  width: 400px;
  height: 400px;
  border-radius: var(--r-large);
  border: 2px solid rgba(212, 165, 116, 0.2);
  overflow: hidden;
}
@media (max-width: 900px) {
  .about-founder__photo { width: 100%; max-width: 400px; height: auto; aspect-ratio: 1; }
}
.about-founder__photo .img-placeholder { width: 100%; height: 100%; }
.about-founder__role {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 8px 0 24px;
}
.about-founder__bio p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.about-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
@media (max-width: 900px) {
  .about-team { grid-template-columns: 1fr; gap: 40px; }
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  margin-bottom: 16px;
}
.team-card__photo .img-placeholder { width: 100%; height: 100%; }
.team-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.team-card__role {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}
.team-card__bio {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.methodology-rows {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.methodology-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: baseline;
}
@media (max-width: 768px) {
  .methodology-row { grid-template-columns: 64px 1fr; gap: 20px; }
}
.methodology-row__num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
@media (max-width: 768px) { .methodology-row__num { font-size: 42px; } }
.methodology-row h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.methodology-row p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.contact-card .eyebrow { color: var(--text-muted); margin-bottom: 12px; }
.contact-card.preferred {
  border-color: rgba(212, 165, 116, 0.3);
}
.contact-card.preferred .eyebrow { color: var(--accent); }
.contact-card h3 { font-size: 22px; margin-bottom: 12px; }
.contact-card p { color: var(--text-secondary); margin-bottom: 24px; flex: 1; }
.contact-card .btn { align-self: flex-start; }
.contact-card .form-fields .form-field { margin-bottom: 12px; }
.contact-card .form-success {
  display: none;
  border: 1px solid var(--success);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
