/* About page — sits on top of design-system + home.css patterns */

/* ─── Hero ───────────────────────────────────────────────── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 980px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
}

/* ─── Story (centered editorial: lead → 2-col body) ───── */
.story-section { position: relative; }
.story-head {
  max-width: 880px;
  margin: 0 auto 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-hair);
}
.story-headline {
  max-width: 720px;
  margin: 0;
}
.story-lead {
  max-width: 880px;
  margin: 0 auto 56px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink-8);
  text-wrap: pretty;
}
.story-cols {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-body);
}
.story-cols .story-col p { margin: 0 0 20px; }
.story-cols .story-col p:last-child { margin-bottom: 0; }
.story-pivot {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  color: var(--brand-plum);
  letter-spacing: -0.01em;
  padding-left: 18px;
  border-left: 2px solid var(--brand-gold);
  margin: 0 0 22px !important;
}
@media (max-width: 880px) {
  .story-cols { grid-template-columns: 1fr; gap: 24px; }
  .story-head { margin-bottom: 32px; padding-bottom: 28px; }
  .story-lead { margin-bottom: 36px; }
}

/* ─── Promise (pull-quote band) ──────────────────────────── */
.promise-band {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--brand-slate-tint);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
}
.promise-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.promise-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 96px;
  line-height: 1;
  color: var(--brand-plum);
  opacity: 0.5;
  margin: 0 0 8px;
  display: block;
  height: 36px;
}
.promise-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--brand-plum-deep);
  margin: 0 0 28px;
  text-wrap: balance;
}
.promise-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-7);
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Commitment (3 principle cards) ─────────────────────── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.principle-card {
  background: var(--ink-0);
  border: 1px solid var(--border-hair);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.principle-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--brand-plum);
  margin-bottom: 24px;
}
.principle-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-plum-tint);
  color: var(--brand-plum);
  margin-bottom: 28px;
}
.principle-icon svg { width: 24px; height: 24px; }
.principle-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-8);
  margin: 0 0 14px;
}
.principle-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-body);
  margin: 0;
}
@media (max-width: 980px) {
  .principles-grid { grid-template-columns: 1fr; }
}

/* ─── Leadership (horizontal cards) ──────────────────────── */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--ink-0);
  border: 1px solid var(--border-hair);
  border-radius: 16px;
  padding: 36px;
}
.team-portrait {
  position: relative;
  width: 220px;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--brand-plum-tint);
  box-shadow: var(--shadow-1);
  flex-shrink: 0;
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 600ms var(--ease-emphasized);
}
.team-card:hover .team-portrait img { transform: scale(1.03); }
.team-body {
  display: flex;
  flex-direction: column;
}
.team-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-8);
  margin: 0 0 8px;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-plum);
  margin: 0 0 20px;
  font-weight: 600;
}
.team-bio {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-secondary);
  margin: 0 0 14px;
}
.team-bio:last-of-type { margin-bottom: 24px; }
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-plum);
  text-decoration: none;
  margin-top: auto;
  letter-spacing: -0.005em;
}
.team-link svg { width: 16px; height: 16px; }
.team-link:hover { color: var(--brand-plum-soft); }

@media (max-width: 860px) {
  .team-card { grid-template-columns: 1fr; gap: 24px; }
  .team-portrait { width: 180px; }
}
@media (max-width: 480px) {
  .team-card { padding: 24px; }
  .team-portrait { width: 140px; }
}

/* ─── Advisors (2 large cards) ───────────────────────────── */
.advisors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.advisor-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
  background: var(--ink-0);
  border: 1px solid var(--border-hair);
  border-radius: 16px;
  padding: 36px;
}
.advisor-portrait {
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--brand-plum-tint);
}
.advisor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.advisor-body { display: flex; flex-direction: column; }
.advisor-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-8);
  margin: 0 0 8px;
}
.advisor-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-plum);
  font-weight: 600;
  margin: 0 0 18px;
}
.advisor-bio {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-body);
  margin: 0;
}
@media (max-width: 600px) {
  .advisor-card { grid-template-columns: 1fr; gap: 22px; }
  .advisor-portrait { width: 160px; }
}

/* ─── Final CTA — re-uses .cta-h2 / .cta-sub from home.css ─ */
