* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans', sans-serif;
}

:root {
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --border: #e0e0e0;
}

body {
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-size: 1.125rem;
}

h1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  line-height: 1.6;
}

.bio {
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.bio p {
  margin-bottom: 1.25rem;
}

.bio p:last-child {
  margin-bottom: 0;
}

.links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  font-size: 0.95rem;
}

.links a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.links a:hover {
  border-bottom-color: var(--text);
}

section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--text-light);
}

section ul {
  list-style: none;
}

section li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

section li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-light);
}

section a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

section a:hover {
  border-bottom-color: var(--text);
}

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 600px) {
  body {
    padding: 2rem 1.5rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
