.profile-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 66vh;
}

.profile-hero-text {
  background: var(--beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 64px;
}

.profile-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}

.credentials {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin: 0 0 30px;
}

.role-list {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
  font-family: var(--font-display);
  font-size: 18px;
}

.role-list li { margin-bottom: 6px; }

.profile-hero-photo { overflow: hidden; }
.profile-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-section {
  padding: 90px 0;
  text-align: center;
}

.stats-inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 30px;
}

.stats-list {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--stone);
}

.stats-list li { margin-bottom: 6px; }

.about-section {
  background: var(--beige);
  padding: 80px 0;
}

.about-inner {
  max-width: 680px;
}

.about-inner p:not(.eyebrow) {
  font-size: 19px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 860px) {
  .profile-hero { grid-template-columns: 1fr; min-height: auto; }
  .profile-hero-text { padding: 110px 32px 48px; order: 2; }
  .profile-hero-photo { order: 1; height: 46vh; }
  .stats-section, .about-section { padding: 60px 0; }
}
