/* ============================================================
   ABOUT PAGE
   The long-form story that the homepage teaser links out to.
   Section scaffolding + tokens come from theme.css.
   ============================================================ */

.about-page {
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--shell);
  margin-inline: auto;
  padding-block: clamp(40px, 6vw, 80px) var(--sp-section);
}

.about-page__header { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 60px); }
.about-page__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.about-page__title em { font-style: normal; color: var(--red); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) { .about-inner { grid-template-columns: 1.05fr .95fr; } }

.about-lead { font-size: 1.06rem; color: var(--ink-body); margin-bottom: 14px; }
.about-text { color: var(--ink-muted); margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.about-stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.about-media { position: relative; }
.about-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ── Closing CTA back into the site ───────────────────────── */
.about-outro {
  margin-top: var(--sp-section);
  padding-top: clamp(34px, 4vw, 52px);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.about-outro p { margin: 0; flex: 1 1 22ch; color: var(--ink-muted); }
