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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  padding: 3rem 1.5rem;
  max-width: 650px;
  margin: 0 auto;
}

a {
  color: #222;
  text-decoration-color: #aaa;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-color: #222;
}

.header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.headshot {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.header h1 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.header p {
  color: #666;
  font-size: 0.95rem;
}

section {
  margin-bottom: 2.5rem;
}

section h2 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 0.75rem;
}

section ul {
  list-style: none;
}

section li {
  margin-bottom: 0.35rem;
}

section li .year {
  color: #999;
  font-size: 0.85rem;
}

section li .note {
  color: #bbb;
  font-size: 0.8rem;
  font-style: italic;
}

section p {
  color: #444;
}

.contact {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 500px) {
  body {
    padding: 2rem 1.25rem;
  }

  .header {
    gap: 1rem;
  }

  .headshot {
    width: 72px;
    height: 72px;
  }

  .header h1 {
    font-size: 1.2rem;
  }
}
