/* ============================================================
   InTheMude — About / How-it-works page
   Page-specific layout ONLY. All tokens, components, header,
   footer, buttons, pills, steps, privacy-band, etc. come from
   /styles.css. Nothing here redefines a brand token or color.
   Strict CSP: no inline styles anywhere — this file is linked.
   ============================================================ */

/* ---------- About hero (text-led, centered, no visual panel) ---------- */
.about-hero {
  text-align: center;
  padding-block: clamp(56px, 9vw, 116px) clamp(40px, 6vw, 80px);
}

.about-hero__inner {
  max-width: 760px;
  margin-inline: auto;
}

.about-hero h1 {
  font-size: var(--fs-h1);
}

.about-hero h1 em {
  font-style: italic;
  color: var(--brass);
}

.about-hero .lead {
  margin-top: var(--sp-5);
  margin-inline: auto;
  max-width: 640px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

/* ---------- Brand story — two readable prose columns ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.story-col {
  display: grid;
  gap: var(--sp-4);
}

.story-col h3 {
  font-size: 1.34rem;
}

.story-col p {
  color: var(--muted);
}

.story-col .lead {
  color: var(--cream);
}

/* ---------- Pull quote — quiet editorial moment ---------- */
.about-quote {
  max-width: 740px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
  border: 1px solid var(--brass-line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(130% 100% at 50% 0%, rgba(122, 30, 44, 0.20), transparent 70%),
    var(--bg-raise);
  box-shadow: var(--shadow-sm);
}

.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--cream);
}

.about-quote cite {
  display: block;
  margin-top: var(--sp-4);
  font-style: normal;
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- Requirements / device band ---------- */
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
}

.req-card {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raise);
}

.req-card .mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--brass-line);
  color: var(--brass);
  background: var(--brass-soft);
  font-size: 1.2rem;
}

.req-card h3 {
  font-size: 1.12rem;
}

.req-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- The promise — three editorial vows ---------- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
}

.promise-card {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raise);
}

.promise-card .pill {
  justify-self: start;
}

.promise-card h3 {
  font-size: 1.16rem;
}

.promise-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- Closing call to action ---------- */
.about-cta {
  text-align: center;
}

.about-cta__inner {
  max-width: 640px;
  margin-inline: auto;
}

.about-cta .lead {
  margin-top: var(--sp-4);
  margin-inline: auto;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .story-grid,
  .req-grid,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .story-grid,
  .req-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }
}
