/* ═══════════════════════════════════════════════
   HOME PAGE STYLES  (index.html)
═══════════════════════════════════════════════ */

#bio {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem;
}

.bio-inner {
  max-width: 840px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s ease forwards 0.2s;
}

.bio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.bio-eyebrow::before {
  /*content: '';*/
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
}

/* Override shared h1 size for the large hero headline */
#bio h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
#bio h1 em { font-style: italic; color: var(--ink-muted); }

.bio-body { max-width: 600px; }
.bio-body p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.bio-body p strong { color: var(--ink); font-weight: 500; }

.bio-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 2.5rem 0;
}

.bio-highlight {
  background: var(--bg);
  padding: 1.5rem;
  transition: background 0.2s;
}
.bio-highlight:hover { background: var(--white); }

.bh-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.bh-label { font-size: 0.78rem; color: var(--ink-muted); }

.btn-group { margin-top: 2.5rem; }

/* Responsive */
@media (max-width: 900px) {
  #bio { padding: 3rem 1.5rem; }
  .bio-highlights { grid-template-columns: 1fr 1fr; }
}
