/* ==========================================================================
   ABOUT PAGE — page-specific components only.
   Loaded on about.php via $page_css. Everything else comes from site.css.
   ========================================================================== */

/* --- The name ------------------------------------------------------------- */
.name-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 80px;
  align-items: center;
}
.name-mark {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  border: var(--border-width) solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--paper);
}
.name-mark span { font-size: clamp(120px, 22vw, 200px); color: var(--ink); }
.name-copy { display: flex; flex-direction: column; gap: 22px; max-width: 520px; }
.name-copy p { font-size: 17px; line-height: 1.7; color: var(--body); }
.name-copy p strong { color: var(--ink); font-weight: var(--weight-medium); }
.name-copy p.emph { color: var(--ink); font-weight: var(--weight-medium); }
