:root {
  --bg: #fbfaf7;
  --text: #1c1c1a;
  --muted: #6b6a63;
  --accent: #6b1f2a;      /* deep burgundy — headings, section labels */
  --accent-soft: #8a3742;
  --link: #cf2e2e;        /* vibrant red — clickable links */
  --link-hover: #a81f1f;
  --rule: #e4e1d8;
  --max: 720px;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
a:hover { color: var(--link-hover); border-bottom-color: var(--link-hover); }

/* HEADER / NAV */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--rule);
  z-index: 10;
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  border: none;
}
.nav-links {
  display: flex;
  gap: 18px;
  font-family: var(--sans);
  font-size: 14px;
}
.nav-links a { color: var(--muted); border: none; }
.nav-links a:hover { color: var(--link); }

/* LAYOUT */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 64px;
}

section { padding: 40px 0; border-top: 1px solid var(--rule); }
section:first-of-type { border-top: none; }

/* HERO */
.hero {
  padding-top: 64px;
  padding-bottom: 48px;
  border-top: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 1 1 auto; min-width: 0; }
.hero-photo { flex: 0 0 auto; }
.portrait {
  display: block;
  width: 220px;
  height: 290px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 6px;
  background: #ece9e1;
  border: 1px solid var(--rule);
}
.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.hero h1 .alias {
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  font-size: 0.62em;
}
.tagline {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 40em;
}
.contact-line {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.contact-line .sep { margin: 0 8px; color: var(--rule); }

/* HEADINGS */
h2 {
  font-size: 15px;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 24px;
}
h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ENTRIES */
.entry { margin-bottom: 32px; }
.entry:last-child { margin-bottom: 0; }
.meta {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 10px;
}
.links { font-family: var(--sans); font-size: 15px; }
.links .sep { margin: 0 6px; color: var(--rule); }

/* HONORS LIST */
.honors-list { margin: 0; padding: 0; list-style: none; }
.honors-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 18px;
}
.honors-list li:last-child { margin-bottom: 0; }
.honors-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 28px 24px;
  text-align: center;
}
.site-footer p {
  max-width: var(--max);
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  body { font-size: 18px; }
  .hero { flex-direction: column-reverse; align-items: flex-start; gap: 24px; }
  .portrait { width: 160px; height: 210px; }
  .hero h1 { font-size: 34px; }
  .tagline { font-size: 18px; }
  .nav { padding: 12px 20px; }
  main { padding: 0 20px 48px; }
  .contact-line .sep { display: block; height: 0; margin: 4px 0; visibility: hidden; }
}
