:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #6c6c6c;
  --line: #ececec;
  --link: #1e3d8f;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page {
  width: min(100% - 32px, 640px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.portrait {
  display: block;
  width: 156px;
  height: 156px;
  margin: 0 auto 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

h1 {
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.intro {
  margin: 18px auto 42px;
  max-width: 32rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
  font-size: 1rem;
}

.links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.links li {
  padding: 18px 0 20px;
  border-top: 1px solid var(--line);
}

.links li:last-child {
  border-bottom: 1px solid var(--line);
}

.links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.07rem;
  line-height: 1.45;
}

.links a:hover {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.links p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 24px, 640px);
    padding: 52px 0 72px;
  }

  .portrait {
    width: 132px;
    height: 132px;
    margin-bottom: 22px;
  }

  .intro {
    margin-bottom: 34px;
  }
}
