.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.bio-portrait {
  aspect-ratio: 3/4;
  background: var(--bg-panel);
  border: 1px solid var(--rule-strong);
  position: relative;
  overflow: hidden;
}
.bio-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(194,65,12,0.08) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #1a0f08, #2a1a0e);
}
.bio-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}
.bio-portrait .ph-credit {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bio-body { display: flex; flex-direction: column; gap: 20px; }
.bio-body .lede {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.bio-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  text-wrap: pretty;
}
