* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #fff;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.wrap { max-width: 600px; margin: 0 auto; padding: 60px 24px 80px; }

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  font-size: 13px;
  color: #999;
}

nav a { color: inherit; text-decoration: none; }
nav a:hover { color: #111; }
.nav-links { display: flex; gap: 24px; list-style: none; }

.hero { margin-bottom: 80px; }

.hero-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%);
}

.hero-meta { display: flex; flex-direction: column; gap: 2px; }
.hero-name { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.eyebrow { font-size: 12px; color: #999; }

h1 {
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.bio { font-size: 15px; color: #444; max-width: 480px; line-height: 1.75; }
.bio p + p { margin-top: 16px; }

section { border-top: 1px solid #eee; padding: 40px 0; }

h2 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 28px;
}

.row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
}

.row:last-child { border: none; }
.row span { color: #999; font-size: 13px; }

.proj { padding: 20px 0; border-bottom: 1px solid #f2f2f2; }
.proj:last-child { border: none; }

.proj-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.proj-title { font-size: 15px; font-weight: 600; }
.proj-status { font-size: 11px; color: #999; }
.proj-desc { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 10px; }
.proj a { font-size: 12px; color: #999; text-decoration: none; }
.proj a:hover { color: #111; }

.field { margin-bottom: 16px; }
label { display: block; font-size: 12px; color: #999; margin-bottom: 6px; }

input, textarea {
  width: 100%;
  border: 1px solid #eee;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.15s;
}

input:focus, textarea:focus { border-color: #111; }
textarea { min-height: 100px; resize: vertical; }

button {
  background: #111;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 13px;
  padding: 12px 24px;
  cursor: pointer;
  transition: opacity 0.15s;
}

button:hover { opacity: 0.7; }

footer {
  border-top: 1px solid #eee;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #bbb;
}

footer a { color: #bbb; text-decoration: none; }
footer a:hover { color: #111; }
