:root {
  --bg: #171816;
  --surface: #22231f;
  --line: #41423b;
  --text: #f2efe8;
  --muted: #aaa89f;
  --accent: #8a7cf1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.link-page {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 50px;
}
.link-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.back-link,
.link-header button {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.link-header button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.profile-card {
  padding: clamp(34px, 8vw, 74px) 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 28px;
}
.profile-photo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  filter: saturate(.8);
}
.eyebrow {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1 {
  margin: 6px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}
.profile-card div > p:last-child { color: var(--muted); }
.links { border-top: 1px solid var(--line); }
.links a {
  min-height: 94px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr 1fr 30px;
  align-items: center;
  gap: 18px;
  transition: padding-left .2s ease, color .2s ease;
}
.links a:hover { padding-left: 10px; color: #fff; }
.links span { color: var(--accent); font-family: Georgia, serif; }
.links strong { font-size: 1.08rem; }
.links em { color: var(--muted); font-style: normal; font-size: .9rem; }
.links b { font-size: 1.15rem; font-weight: 500; }
footer {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .8rem;
}
footer img { width: 34px; height: 34px; object-fit: cover; border-radius: 50%; }
@media (max-width: 560px) {
  .profile-card { grid-template-columns: 90px 1fr; gap: 18px; }
  .profile-photo { width: 90px; height: 90px; }
  .links a { grid-template-columns: 35px 1fr 24px; }
  .links em { display: none; }
}
