.profile-head {
  padding: clamp(42px, 6vw, 76px) 0 clamp(32px, 4vw, 54px);
}

.profile-head h1,
.profile-head .lede,
.profile-page .body-copy,
.profile-page .journey p {
  max-width: none;
}

.profile-head .lede {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.13rem;
}

.profile-page .body-copy {
  margin-top: 16px;
  color: var(--ink-soft);
}

.journey {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.journey-summary,
.journey-era {
  position: relative;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lift-sm);
}

.journey-summary p,
.journey-era p {
  margin: 0;
  color: var(--ink-soft);
}

.journey-era {
  padding-left: 32px;
}

.journey-era::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  background: var(--primary);
  content: '';
}

.era-label {
  color: var(--primary);
  font: 600 0.72rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-era h3 {
  margin: 8px 0 3px;
}

.era-role {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font: 500 0.8rem var(--mono);
}

.profile-contact {
  margin-top: clamp(44px, 6vw, 76px);
  color: #eef4ff;
  background: #172b49;
}

.profile-contact .inner {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 4vw, 56px);
}

.profile-contact img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.profile-contact h2 {
  color: #fff;
}

.profile-contact p {
  max-width: none;
  margin-top: 12px;
}

.profile-contact a {
  color: #9dd9e5;
}

@media (max-width: 700px) {
  .profile-contact .inner {
    grid-template-columns: 1fr;
  }

  .profile-contact img {
    width: min(220px, 70vw);
  }
}
