/* ==========================================================================
   ABOUT — loaded only by /about and /es/about.
   ========================================================================== */
/* --------------------------------------------------------------------------
   16. About page
   Same editorial language as `.why` on the homepage — hairlines, quiet ink,
   one blue cut mark, Clash Display used twice — but a different rhythm, so
   the two pages don't read as the same block. The homepage runs one sticky
   aside beside one list; this runs a document: a lede, then labelled blocks
   stacked down the page with the label held in the left margin.
   -------------------------------------------------------------------------- */
.abt { padding-block: 72px 96px; }
@media (min-width: 768px) { .abt { padding-block: 96px 128px; } }

/* --- Opener -------------------------------------------------------------- */
.abt__head { max-width: 46rem; }

.abt__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-300);
}

.abt__title {
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  word-spacing: 0.03em;
  color: var(--ink-950);
  text-wrap: balance;
}

.abt__lede {
  margin-top: 26px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-500);
  text-wrap: pretty;
}

/* --- Labelled blocks ----------------------------------------------------- */
.abt__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .abt__block {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: 64px;
  }
}

.abt__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-300);
}

.abt__body { max-width: 42rem; }

.abt__p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-700);
  text-wrap: pretty;
}
.abt__p + .abt__p { margin-top: 18px; }

/* The one signature moment on this page. Same cut mark as the homepage, but
   the line is set solid — the ghosted split belongs to the homepage thesis
   and repeating it would make the two pages read as one. */
.abt__quote {
  margin-top: 36px;
  padding-left: 26px;
  border-left: 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-950);
  text-wrap: balance;
}
.abt__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 4px;
  height: 1.1em;
  background: var(--blue-brand);
  border-radius: 1px;
  transform: skewX(-18deg);
}

.abt__by {
  margin-top: 16px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-500);
}
.abt__by b { font-weight: 600; color: var(--ink-950); }

/* --- Ordered steps ------------------------------------------------------- */
/* Numbered because this genuinely is a sequence — the order is the content. */
.abt__steps { margin-top: 30px; counter-reset: step; }

.abt__step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 18px;
  padding-block: 18px;
  border-top: 1px solid var(--border);
}
.abt__step:last-child { border-bottom: 1px solid var(--border); }

.abt__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-300);
  font-variant-numeric: tabular-nums;
}

.abt__step-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-950);
}
.abt__step-text {
  margin-top: 4px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-500);
}

/* --- Plain hairline rows ------------------------------------------------- */
.abt__rows { margin-top: 26px; }

.abt__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding-block: 18px;
  border-top: 1px solid var(--border);
}
.abt__row:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 640px) {
  .abt__row { grid-template-columns: 12rem minmax(0, 1fr); gap: 28px; align-items: start; }
}

.abt__row-title { font-size: 0.9375rem; font-weight: 600; color: var(--ink-950); }
.abt__row-text { font-size: 0.9375rem; line-height: 1.65; color: var(--ink-500); }
.abt__row-title a:hover { color: var(--blue-brand); text-decoration: underline; }

/* --- Client list --------------------------------------------------------- */
.abt__clients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 24px;
  list-style: none;
}
.abt__clients li {
  padding: 7px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

/* --- Close --------------------------------------------------------------- */
.abt__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
