/* ─────────────────────────────────────────────────────────────────────────
   About / brand-story page. Class-prefixed `about-` to namespace against
   the rest of the site. Reuses the editorial vibe of `theme.css`,
   `faq.css`, and `onboard.css` — warm cream background, Fraunces serif
   for headings, generous spacing, no rounded card-on-card look.
   ───────────────────────────────────────────────────────────────────────── */

body.about-page {
  background: var(--bg);
  color: var(--text);
}

.about-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 48px 96px;
}

/* ── Header ────────────────────────────────────────────────────────────── */

.about-header {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.about-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Sections ──────────────────────────────────────────────────────────── */

.about-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.about-section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.about-section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-section-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

.about-section-body p {
  margin-bottom: 1em;
}

.about-section-body p:last-child {
  margin-bottom: 0;
}

/* ── CTA ───────────────────────────────────────────────────────────────── */

.about-section-cta {
  padding-bottom: 0;
}

.about-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-inv);
  background: var(--text);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 160ms ease;
}

.about-cta:hover,
.about-cta:focus-visible {
  background: var(--accent);
  color: var(--text-inv);
  outline: none;
}

/* ── Mobile ────────────────────────────────────────────────────────────── */

@media (max-width: 700px) {
  .about-main {
    padding: 56px 24px 64px;
  }
  .about-headline {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }
  .about-section {
    padding: 40px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-cta { transition: none; }
}
