.about-page {
  --max-width: 1100px;
  --text: #0f1720;
  --emphasis: #0b1220;
}

.about-page .page-shell {
  padding: 0.5rem 0 3rem;
}

.about-page .page-nav {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
}

.about-page .page-hero {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem 0 2rem;
  max-width: 54rem;
}

.about-page .eyebrow {
  min-height: 2.1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(47, 49, 146, 0.1);
  color: var(--brand-dark);
  justify-self: start;
}

.about-page h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: none;
  color: var(--emphasis);
}

.about-page h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.about-page .page-hero p,
.about-page .owner-bio p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 66ch;
}

.about-page .page-hero p {
  max-width: 58ch;
  text-wrap: balance;
}

.about-page .owners-stack {
  display: grid;
  gap: 1.25rem;
}

.about-page .owner-bio {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(213, 220, 229, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.about-page .owner-top {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.about-page .owner-top img {
  width: 100%;
  max-width: 220px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center top;
}

.about-page .silhouette {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #f3f4f6;
  color: #9ca3af;
  overflow: hidden;
}

.about-page .silhouette svg {
  width: 60%;
  height: 60%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page .owner-meta {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.about-page .owner-role {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-page .owner-subheading {
  margin: 0.35rem 0 0;
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--emphasis);
}

.about-page .page-footer-nav {
  margin-top: 1rem;
}


@media (min-width: 760px) {
  .about-page .owner-top {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}
