:root {
  --ink: #1c1c1c;
  --muted: #5b5b5b;
  --line: #e6e3dd;
  --paper: #fdfcfa;
  --accent: #8a4b3b;
  --max: 44rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

header.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 2rem;
}

.site-title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.site-title a {
  color: var(--ink);
  text-decoration: none;
}

nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

nav.site-nav a:hover,
nav.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

h1 {
  font-size: 2rem;
  margin: 0 0 1.75rem;
  font-weight: 600;
}

h2 {
  font-size: 1.15rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.03em;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

h3 {
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  margin: 1.5rem 0 0.4rem;
}

p {
  margin: 0 0 1.25rem;
}

figure.portrait {
  float: right;
  margin: 0 0 1rem 2rem;
  width: 200px;
}

figure.portrait img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  display: block;
}

.lede {
  overflow: hidden;
}

.course-list {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
}

.course-list li {
  padding: 0.35rem 0;
  border-bottom: 1px dotted var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.course-list li:last-child {
  border-bottom: none;
}

.course-list .term {
  color: var(--muted);
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
}

.email-link {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
}

footer.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem;
}

footer.site-footer a {
  color: var(--muted);
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    padding: 1.25rem 1.25rem 1rem;
  }

  nav.site-nav ul {
    gap: 1rem;
  }

  main {
    padding: 2rem 1.25rem 3rem;
  }

  figure.portrait {
    float: none;
    width: 160px;
    margin: 0 0 1.25rem;
  }
}
