:root {
  color-scheme: light;
  --page: #f6f4ef;
  --surface: #ffffff;
  --ink: #17201f;
  --muted: #65706d;
  --line: #d9dedb;
  --accent: #245b51;
  --accent-strong: #153f38;
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 76rem;
  --measure: 72ch;
  --radius: 0;
  --shadow: 0 1rem 3rem rgb(20 35 31 / 8%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-strong);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-200%);
}

.skip-link:focus {
  color: var(--surface);
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-frame {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.site-header {
  min-height: 5.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.site-mark {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-initials {
  display: grid;
  width: 2.25rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 32rem;
  display: grid;
  align-items: end;
  padding-block: clamp(5rem, 10vw, 9rem) clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 37rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.5;
}

.content-section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2,
.profile-card h2 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading--with-count {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.section-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-count strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.interest-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.interest-list li {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.25;
}

.interest-index {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.timeline,
.presentation-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li,
.presentation-list li,
.education-entry {
  display: grid;
  grid-template-columns: minmax(8rem, 0.3fr) 1fr;
  gap: 2rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
}

.timeline h3,
.education-entry h3,
.presentation-list h3 {
  max-width: 46rem;
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.timeline p,
.education-entry p,
.presentation-list p {
  max-width: var(--measure);
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.entry-period {
  color: var(--accent) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.education-list {
  border-bottom: 1px solid var(--line);
}

.institution {
  color: var(--ink) !important;
  font-weight: 650;
}

.entry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.entry-links a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.entry-links a:hover {
  border-color: currentColor;
}

.publication-year {
  display: grid;
  grid-template-columns: minmax(5rem, 0.2fr) 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.publication-year > h3 {
  position: sticky;
  top: 1rem;
  align-self: start;
  margin: 1.5rem 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
}

.publication {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.publication-number {
  padding-top: 0.1rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.publication h4,
.featured-card h3 {
  max-width: 54rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.25;
}

.authors {
  max-width: 67rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.author-self {
  color: var(--ink);
  font-weight: 750;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--surface);
}

.profile-card .profile-photo {
  width: min(100%, 11.25rem);
  aspect-ratio: 180 / 238;
  object-fit: cover;
  filter: saturate(0.75);
}

.profile-card h2 {
  margin-block: 0 2rem;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.profile-role {
  margin: 0 0 0.75rem;
  color: color-mix(in srgb, var(--surface) 68%, transparent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-card address {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--surface) 72%, transparent);
  font-style: normal;
}

.contact-name {
  color: var(--surface);
  font-weight: 700;
}

.contact-list,
.profile-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list {
  margin-bottom: 1.4rem;
  color: color-mix(in srgb, var(--surface) 72%, transparent);
}

.contact-label {
  display: inline-block;
  min-width: 3.4rem;
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.profile-card a {
  color: var(--surface);
}

.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
}

.career-grid > .content-section {
  min-width: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.featured-card {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--surface);
}

.featured-card .entry-links {
  margin-top: auto;
  padding-top: 1.5rem;
}

.publication-tools {
  display: none;
  grid-template-columns: minmax(15rem, 2fr) repeat(2, minmax(9rem, 1fr)) auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 3rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.filters-ready .publication-tools {
  display: grid;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-field label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-field input,
.filter-field select,
.publication-tools button {
  width: 100%;
  min-height: 3rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--page);
}

.publication-tools button {
  width: auto;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
}

.filter-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.no-results {
  padding: 2rem;
  border: 1px solid var(--line);
  text-align: center;
}

[hidden] {
  display: none !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem 4rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 68rem) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 1rem;
    overflow-x: auto;
  }

  .site-nav ul {
    width: max-content;
    justify-content: start;
  }

  .career-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .publication-tools {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .publication-tools button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 46rem) {
  html {
    scroll-padding-top: 1rem;
  }

  .site-frame {
    width: min(calc(100% - 2rem), var(--content));
  }

  .site-header {
    min-height: 4.5rem;
    gap: 0.5rem 1rem;
  }

  .site-mark > span:last-child {
    display: none;
  }

  .hero {
    min-height: 27rem;
  }

  .interest-list,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .interest-list li {
    min-height: 10rem;
  }

  .timeline li,
  .presentation-list li,
  .education-entry,
  .publication-year {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .publication-year > h3 {
    position: static;
    margin: 2.5rem 0 0;
  }

  .publication {
    grid-template-columns: 2rem 1fr;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-card .profile-photo {
    width: min(58vw, 14rem);
  }

  .publication-tools,
  .filters-ready .publication-tools {
    grid-template-columns: 1fr;
  }

  .publication-tools button,
  .filter-status {
    grid-column: auto;
  }

  .section-heading--with-count {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


:root {
  --page: #fff;
  --surface: #fff;
  --ink: #717171;
  --muted: #717171;
  --line: #e4e4e4;
  --accent: #3e7e1b;
  --accent-strong: #2e660d;
  --display: Arial, Helvetica, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --content: 58rem;
}

.theme-archive-classic {
  font-size: 0.8125rem;
  line-height: 1.45;
}

.theme-archive-classic .site-frame {
  padding-top: 3.5rem;
}

.archive-header {
  display: flex;
  min-height: 4rem;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  border: 0;
}

.archive-header h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.archive-header h1 a {
  color: #717171;
  text-decoration: none;
}

.archive-header .site-nav ul {
  justify-content: end;
  gap: 0.8rem;
}

.archive-header .site-nav a {
  color: #717171;
  font-size: 0.67rem;
  letter-spacing: 0;
  text-transform: none;
}

.archive-rule {
  height: 0.8rem;
  margin-block: 0.7rem 1.2rem;
  border-top: 1px solid #ddd;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(15rem, 1fr);
  gap: 2.5rem;
}

.theme-archive-classic .content-section {
  padding: 0 0 1.1rem;
  border: 0;
}

.theme-archive-classic .section-heading {
  margin: 0 0 0.35rem;
}

.theme-archive-classic .section-kicker,
.theme-archive-classic .section-count,
.theme-archive-classic .interest-index,
.theme-archive-classic .publication-number {
  display: none;
}

.theme-archive-classic .section-heading h2,
.theme-archive-classic .profile-card h2 {
  max-width: none;
  margin: 0.3rem 0;
  padding: 0.3rem 0;
  color: #717171;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-decoration: underline;
}

.theme-archive-classic .section-heading--with-count {
  display: block;
}

.theme-archive-classic .interest-list {
  display: block;
  margin: 0 0 0.75rem 1.6rem;
  padding: 0;
  border: 0;
  background: none;
  list-style: disc;
}

.theme-archive-classic .interest-list li {
  min-height: auto;
  display: list-item;
  padding: 0;
  background: none;
  font: inherit;
}

.theme-archive-classic .classic-experience,
.theme-archive-classic .classic-education {
  margin: 0 0 0.75rem 1.65rem;
  padding: 0;
  list-style: disc;
}

.theme-archive-classic .classic-experience li,
.theme-archive-classic .classic-education li {
  padding-bottom: 0.25rem;
}

.theme-archive-classic .classic-education p {
  display: block;
  margin: 0;
}

.theme-archive-classic .timeline,
.theme-archive-classic .presentation-list {
  margin-left: 1.65rem;
  list-style: disc;
}

.theme-archive-classic .timeline li,
.theme-archive-classic .presentation-list li,
.theme-archive-classic .education-entry {
  display: list-item;
  padding: 0 0 0.25rem;
  border: 0;
}

.theme-archive-classic .timeline h3,
.theme-archive-classic .presentation-list h3,
.theme-archive-classic .education-entry h3 {
  display: inline;
  font-size: inherit;
  font-weight: 400;
}

.theme-archive-classic .timeline p,
.theme-archive-classic .presentation-list p,
.theme-archive-classic .education-entry p {
  display: inline;
  color: inherit;
  font-size: inherit;
}

.theme-archive-classic .entry-period {
  color: inherit !important;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.theme-archive-classic .entry-period::after {
  content: " — ";
}

.theme-archive-classic .presentation-list .entry-period::after {
  content: " ";
}

.theme-archive-classic .presentation-content {
  display: contents;
}

.theme-archive-classic .presentation-list .presentation-detail,
.theme-archive-classic .presentation-list .entry-links {
  display: block;
  margin: 0;
}

.theme-archive-classic .education-list {
  margin-left: 1.65rem;
  border: 0;
  list-style: disc;
}

.theme-archive-classic .education-entry {
  display: list-item;
}

.theme-archive-classic .education-entry > div {
  display: inline;
}

.theme-archive-classic .education-details {
  display: block !important;
}

.theme-archive-classic .entry-links {
  display: inline;
  margin: 0;
}

.theme-archive-classic .entry-links a {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: 400;
}

.theme-archive-classic .entry-links a + a::before {
  content: " · ";
  color: #aaa;
}

.theme-archive-classic .presentation-list .entry-links::before {
  content: none;
}

.theme-archive-classic .publication-year {
  display: block;
  border: 0;
}

.theme-archive-classic .publication-year > h3 {
  position: static;
  margin: 0.7rem 0 0.2rem;
  color: #717171;
  font-size: 0.8rem;
  font-weight: 700;
}

.theme-archive-classic .publication-list {
  counter-reset: archive-publication;
}

.theme-archive-classic .publication {
  counter-increment: archive-publication;
  display: list-item;
  margin-left: 1.65rem;
  padding: 0 0 0.75rem;
  border: 0;
  list-style: decimal;
}

.theme-archive-classic .publication h4 {
  margin: 0;
  font: italic 700 0.8rem/1.45 Arial, Helvetica, sans-serif;
}

.theme-archive-classic .authors {
  margin: 0;
  color: inherit;
  font-size: 0.76rem;
}

.theme-archive-classic .profile-card {
  display: block;
  padding: 0;
  background: transparent;
  color: #717171;
}

.theme-archive-classic .profile-card .profile-photo {
  width: 11.25rem;
  margin-bottom: 0.8rem;
  filter: none;
}

.theme-archive-classic .profile-role {
  display: none;
}

.theme-archive-classic .profile-card address,
.theme-archive-classic .contact-list {
  color: inherit;
}

@media (min-width: 47rem) {
  .theme-archive-classic .profile-card address span,
  .theme-archive-classic .contact-list li {
    white-space: nowrap;
  }
}

.theme-archive-classic .profile-card a {
  color: var(--accent);
}

.theme-archive-classic .contact-label {
  color: inherit;
  min-width: auto;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.theme-archive-classic .profile-links {
  display: block;
}

.theme-archive-classic .site-footer {
  border-top: 1px solid #eee;
  color: #717171;
  font-size: 0.65rem;
}

@media (max-width: 46rem) {
  .theme-archive-classic {
    font-size: 1rem;
    line-height: 1.6;
  }

  .theme-archive-classic .site-frame {
    padding-top: 1rem;
  }

  .archive-header {
    display: block;
  }

  .archive-header h1 {
    font-size: 1.65rem;
  }

  .archive-header .site-nav {
    padding-top: 1rem;
  }

  .archive-header .site-nav ul {
    justify-content: start;
  }

  .archive-header .site-nav a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
  }

  .archive-layout {
    display: flex;
    flex-direction: column;
  }

  .theme-archive-classic .profile-card {
    order: -1;
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
  }

  .theme-archive-classic .profile-card .profile-photo {
    width: 7.5rem;
  }

  .theme-archive-classic .profile-card h2 {
    margin-top: 0;
  }

  .theme-archive-classic .publication h4,
  .theme-archive-classic .authors {
    font-size: 0.95rem;
  }
}
