/* ============================================================
   BIO PAGE — peter-saddington.html
   ============================================================ */

html, body { height: auto; overflow: auto; }

.bio-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HERO ---- */
.bio-hero {
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
}
.bio-hero-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
}
.bio-name {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.bio-tagline {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.bio-contact-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bio-hero-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.bio-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ---- SECTIONS ---- */
.bio-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.bio-section .section-heading {
  margin-bottom: 28px;
}

/* ---- STATS GRID ---- */
.bio-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bio-stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bio-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.bio-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- TEXT CONTENT ---- */
.bio-text-content {
  max-width: 720px;
}
.bio-text-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.bio-text-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.bio-text-content h3:first-of-type {
  margin-top: 28px;
}
.bio-text-content a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.bio-text-content a:hover {
  border-bottom-color: var(--orange);
}
.bio-text-content em {
  font-style: italic;
  color: var(--text);
}

/* ---- PRESS GRID ---- */
.bio-press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.bio-press-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---- LINKS GRID ---- */
.bio-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bio-link-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.bio-link-card:hover {
  border-color: var(--orange);
  background: var(--bg-3);
}
.bio-link-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.bio-link-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* ---- CTA ---- */
.bio-cta {
  padding: 60px 0;
  text-align: center;
}
.bio-cta .section-heading {
  margin-bottom: 12px;
}
.bio-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---- FOOTER LINKS ---- */
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--orange);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .bio-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bio-hero-image {
    max-width: 240px;
    order: -1;
  }
  .bio-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bio-press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bio-links-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .bio-stats-grid {
    grid-template-columns: 1fr;
  }
}
