:root {
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --accent: #8b2e2e;
  --bg: #fdfcf9;
  --rule: #e6e3dc;
  --max: 760px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

header.site { border-bottom: 1px solid var(--rule); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

nav.site {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 22px 0;
  align-items: baseline;
}
nav.site .name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 19px;
  margin-right: auto;
}
nav.site a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  font-size: 15px;
}
nav.site a:hover, nav.site a.active {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

main { padding: 36px 0 80px; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--text);
}
h1 { font-size: 32px; line-height: 1.25; margin: 0 0 8px; }
h2 { font-size: 22px; margin: 36px 0 12px; }
h3 { font-size: 18px; margin: 24px 0 6px; }
.tagline { color: var(--muted); margin: 0 0 28px; font-size: 17px; }
p { margin: 0 0 16px; }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 46, 46, 0.25);
}
a:hover { border-bottom-color: var(--accent); }

/* Home hero */
.hero {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.hero .photo {
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  background: #eceae3;
  border: 1px solid var(--rule);
  display: block;
}
.hero .intro { flex: 1; min-width: 0; }

@media (max-width: 560px) {
  .hero { flex-direction: column; }
  .hero .photo { width: 120px; height: 120px; flex: 0 0 auto; }
  h1 { font-size: 26px; }
  body { font-size: 16px; }
}

/* Publications */
.pub-list { list-style: none; padding: 0; margin: 0; }
.pub-list li { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.pub-list li:last-child { border-bottom: 0; }
.pub-links { font-size: 14px; margin-top: 6px; }
.pub-links a { margin-right: 14px; }
.year-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

/* Projects */
.project { padding: 16px 0; border-bottom: 1px solid var(--rule); }
.project:last-child { border-bottom: 0; }
.project h3 { margin: 0 0 4px; }
.project p { margin: 0; }

footer.site {
  border-top: 1px solid var(--rule);
  padding: 22px 0;
  font-size: 13px;
  color: var(--muted);
}
