* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #f0f0f0;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.headshot {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  margin-bottom: 40px;
}

h1 {
  font-family: "Cormorant", "Times New Roman", serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.35em;
  margin: 0 0 50px;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

nav a {
  color: #f0f0f0;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 15px;
}

nav a:hover { opacity: 0.7; }

.bio {
  max-width: 520px;
}

.bio p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.85;
}

.bio a {
  color: #f0f0f0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bio a:hover { opacity: 0.7; }

@media (max-width: 800px) {
  main {
    flex-direction: column;
    gap: 50px;
    padding: 60px 28px;
  }
  .headshot { width: 200px; height: 200px; margin-bottom: 30px; }
  h1 { font-size: 22px; margin-bottom: 32px; }
  .bio p { font-size: 14px; }
}
