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

:root {
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --purple-faint: #f3eeff;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --bg: #fafaf9;
  --border: #e5e7eb;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

.site-header {
  background: linear-gradient(to bottom, #eee6ff 0%, var(--bg) 100%);
  text-align: center;
  padding: 4.5rem 1.5rem 3.5rem;
}

.headshot {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: 0 auto 1.75rem;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 3px var(--purple-light),
    0 8px 40px rgba(124, 58, 237, 0.18);
}

.site-header h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.tagline {
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.link-btn {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  border: 1.5px solid var(--purple);
  border-radius: 100px;
  color: var(--purple);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.link-btn:hover {
  background: var(--purple);
  color: #fff;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bio {
  padding: 1rem 0 3.5rem;
}

h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.bio p {
  font-size: 1rem;
  color: #4b4b4b;
  max-width: 58ch;
  line-height: 1.8;
}

.bio p + p {
  margin-top: 0.9rem;
}

footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 500px) {
  .site-header h1 {
    font-size: 1.9rem;
  }

  .opening {
    font-size: 1.1rem;
  }
}
