.avatar-wrap {
  position: relative;
  margin-bottom: 3rem;
}

.avatar-arc-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  width: 320px;
  height: 380px;
  pointer-events: none;
}

.avatar-arc-text text {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 20px;
  fill: var(--color-text-muted);
  letter-spacing: 0.08em;
}

.avatar {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #b0aba3;
  outline: 10px solid #d2cec7;
  outline-offset: -1px;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.25),
    inset 0 -2px 3px rgba(0, 0, 0, 0.2),
    2px 3px 6px rgba(0, 0, 0, 0.15),
    5px 6px 14px rgba(0, 0, 0, 0.3),
    -2px -2px 8px rgba(255, 255, 255, 0.1);
}

.avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.45),
              inset 0 -2px 6px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 2;
}

.avatar-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  object-position: -5px 0
}

.avatar-overlay {
  position: absolute;
  inset: 0;
  transform: scale(1.2);
  display: none;
}

.avatar-overlay.active {
  display: block;
}

.avatar-overlay svg {
  display: block;
  width: 100%;
  height: 100%;
}

.avatar polygon {
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

.tagline {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

.links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.icon-link {
  color: var(--color-link);
  transition: color 0.2s ease;
}

.icon-link:hover {
  color: var(--color-link-hover);
}

.icon-link svg {
  display: block;
}

.highlights {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 420px;
}

.highlights h2 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight-list a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--color-text-muted);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.highlight-list a:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}
