/* =========================================================
   About — homey
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.5fr;
  gap: clamp(40px, 6vw, 112px);
  align-items: start;
}
.about-grid__photo {
  aspect-ratio: 1 / 1;
  max-width: 460px;
  position: sticky;
  top: 110px;
}

.about-bio .eyebrow { margin-bottom: var(--space-5); }
.about-bio h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: var(--space-7);
  max-width: 18ch;
}
.about-bio p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  max-width: 56ch;
}
.about-bio p.lede {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: var(--space-7);
  font-weight: 400;
}

.credentials {
  margin-top: var(--space-9);
  padding: var(--space-8);
  background: var(--surface);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.credentials::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-tint) 0%, transparent 70%);
  z-index: 0;
}
.credentials > * { position: relative; z-index: 1; }
.credentials .eyebrow { margin-bottom: var(--space-5); }
.credentials__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.credentials__list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-5);
  align-items: baseline;
  font-size: 15px;
  color: var(--ink);
  padding: var(--space-4) 0;
  border-bottom: 1px dashed var(--border-strong);
}
.credentials__list li:last-child { border-bottom: 0; }
.credentials__list li strong {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.credentials__list li span { color: var(--ink); font-weight: 500; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__photo { position: static; max-width: 100%; }
  .credentials__list li { grid-template-columns: 1fr; gap: 4px; padding: var(--space-3) 0; }
}
