:root {
  --paper: #f3f0e8;
  --paper-deep: #e9e3d7;
  --ink: #16253d;
  --charcoal: #202327;
  --soft-ink: #4f5661;
  --gold: #b58a2b;
  --brick: #994a3a;
  --rule: rgba(22, 37, 61, 0.25);
  --rule-strong: rgba(22, 37, 61, 0.55);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --content-max: 1460px;
  --rail-width: 118px;
  --header-height: 106px;
  --gutter: clamp(20px, 3vw, 52px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(181, 138, 43, 0.045), transparent 34%),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.075'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 11px 15px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--rule);
  background: rgba(243, 240, 232, 0.95);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(100%, var(--content-max));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 15px 22px;
}

.brand {
  display: flex;
  flex: 0 1 610px;
  align-items: center;
  gap: 18px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-right: 1px solid var(--rule-strong);
  padding-right: 18px;
}

.brand-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.brand-copy strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--soft-ink);
  font-size: clamp(0.68rem, 0.95vw, 0.86rem);
  line-height: 1.35;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(13px, 1.45vw, 24px);
}

.primary-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 9px 0;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:not(.cv-link)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a[aria-current="page"] {
  color: var(--brick);
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav .cv-link {
  padding: 12px 14px;
  border: 1px solid var(--gold);
  color: #8a6312;
}

.primary-nav .cv-link:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-button {
  display: none;
}

.page-shell {
  display: grid;
  grid-template-columns: var(--rail-width) minmax(0, 1fr);
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.index-rail {
  position: relative;
  border-right: 1px solid var(--rule);
}

.index-rail > * {
  position: sticky;
}

.rail-title {
  top: calc(var(--header-height) + 42px);
  margin: 0;
  padding: 50px 0 0;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.index-rail nav {
  top: calc(var(--header-height) + 210px);
  display: grid;
  margin-top: 160px;
}

.rail-link {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 108px;
  padding: 20px 8px;
  border-top: 1px solid var(--rule);
  color: var(--soft-ink);
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.rail-link:last-child {
  border-bottom: 1px solid var(--rule);
}

.rail-link span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.rail-link small {
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rail-link:hover,
.rail-link.is-active {
  color: var(--ink);
  background: rgba(181, 138, 43, 0.08);
}

.rail-link.is-active {
  box-shadow: inset 3px 0 0 var(--gold);
}

.page-content {
  min-width: 0;
}

.hero {
  border-bottom: 1px solid var(--rule-strong);
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.74fr) 210px;
  gap: clamp(28px, 3.2vw, 56px);
  align-items: stretch;
  min-height: 520px;
  padding: clamp(40px, 5vw, 78px) var(--gutter) 34px;
}

.hero-copy {
  align-self: center;
}

.folio-label,
.note-label {
  margin: 0 0 22px;
  color: var(--brick);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.lab-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(3.6rem, 5.8vw, 6.1rem);
  line-height: 0.92;
}

.hero h1::after {
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 25px;
  content: "";
  background: var(--gold);
}

.hero-deck {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-solid {
  color: var(--paper);
  background: var(--ink);
}

.button-solid:hover {
  background: var(--charcoal);
}

.button-text {
  min-height: auto;
  padding: 12px 0 8px;
  border-bottom: 1px solid var(--brick);
  color: var(--brick);
}

.research-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin: 28px 0 0;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 0.83rem;
}

.research-themes span:not(:last-child)::after {
  margin-left: 13px;
  content: "·";
  color: var(--gold);
}

.portrait {
  display: grid;
  grid-template-rows: 1fr auto;
  align-self: stretch;
  margin: 0;
  padding-left: clamp(20px, 2vw, 35px);
  border-left: 1px solid var(--rule-strong);
}

.portrait-frame {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  background: rgba(255, 255, 255, 0.28);
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  filter: contrast(1.05) sepia(0.04);
}

.portrait figcaption {
  display: none;
}

.profile-notes {
  display: grid;
  align-content: center;
  gap: 34px;
  padding-left: 26px;
  border-left: 1px dashed var(--rule-strong);
}

.margin-note {
  position: relative;
  padding-top: 10px;
}

.margin-note::before {
  position: absolute;
  top: 0;
  left: -26px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--rule-strong);
}

.margin-note > span {
  position: absolute;
  top: -3px;
  right: 0;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.margin-note .note-label {
  margin-bottom: 11px;
  color: var(--soft-ink);
  font-size: 0.55rem;
}

.margin-note > p:last-child {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.35;
}

.margin-note ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.margin-note li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 0.82rem;
  line-height: 1.35;
}

.icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  color: var(--ink);
}

.icon.globe {
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon.globe::before,
.icon.globe::after {
  position: absolute;
  content: "";
  border: 1px solid currentColor;
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.icon.globe::before {
  inset: 1px 5px;
}

.icon.globe::after {
  top: 9px;
  right: 1px;
  left: 1px;
  height: 1px;
  border: 0;
  background: currentColor;
}

.icon.book {
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.icon.book::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  content: "";
  background: currentColor;
}

.icon.personalization::before,
.icon.personalization::after {
  position: absolute;
  box-sizing: border-box;
  content: "";
  border: 1.5px solid currentColor;
}

.icon.personalization::before {
  top: 1px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.icon.personalization::after {
  right: 3px;
  bottom: 1px;
  left: 3px;
  height: 10px;
  border-radius: 9px 9px 2px 2px;
}

.icon.privacy-security::before,
.icon.privacy-security::after {
  position: absolute;
  box-sizing: border-box;
  content: "";
  border: 1.5px solid currentColor;
}

.icon.privacy-security::before {
  top: 1px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.icon.privacy-security::after {
  right: 3px;
  bottom: 1px;
  left: 3px;
  height: 12px;
  border-radius: 2px;
  background: radial-gradient(
    circle at 50% 48%,
    currentColor 0 1.25px,
    transparent 1.5px
  );
}

.icon.archive {
  border: 1.5px solid currentColor;
}

.icon.archive::before {
  position: absolute;
  top: -4px;
  right: -2px;
  left: -2px;
  height: 3px;
  content: "";
  border: 1.5px solid currentColor;
}

.icon.archive::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 6px;
  height: 4px;
  content: "";
  border: 1px solid currentColor;
}

.overview-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-strong);
}

.overview-band article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  min-height: 326px;
  padding: 28px clamp(20px, 2.2vw, 34px);
  border-right: 1px solid var(--rule);
}

.overview-band article:last-child {
  border-right: 0;
}

.entry-index {
  margin: 3px 0 0;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.overview-band h2 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-band h2::after {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 12px;
  content: "";
  background: var(--gold);
}

.overview-band ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.overview-band li {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
}

.overview-band li:last-child {
  border-bottom: 0;
}

.overview-band li strong {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.25;
}

.overview-band li span {
  color: var(--soft-ink);
  font-size: 0.72rem;
  line-height: 1.45;
}

.overview-band article a,
.people-grid article a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 19px;
  color: var(--brick);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  padding: clamp(90px, 11vw, 150px) var(--gutter);
  border-bottom: 1px solid var(--rule-strong);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.72fr);
  gap: clamp(44px, 6vw, 100px);
  align-items: end;
}

.section-heading.compact h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.section-heading h2 {
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.section-heading > p {
  margin: 0 0 5px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-strong);
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.65;
}

.research-register {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.research-register article {
  min-height: 380px;
  padding: 28px clamp(20px, 2.6vw, 42px);
  border-right: 1px solid var(--rule);
}

.research-register article:last-child {
  border-right: 0;
}

.register-number {
  margin: 0 0 54px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.research-register h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 500;
}

.research-register article > p:not(.register-number) {
  min-height: 90px;
  margin: 18px 0 28px;
  color: var(--soft-ink);
  line-height: 1.62;
}

.research-register ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.research-register li {
  color: var(--soft-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-ledger {
  margin-top: 65px;
  border-top: 1px solid var(--rule-strong);
}

.project-ledger article {
  display: grid;
  grid-template-columns: 190px 1fr 40px;
  gap: 35px;
  align-items: center;
  min-height: 160px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}

.project-meta {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
}

.project-meta span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.project-meta p {
  margin: 0;
  color: var(--brick);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-ledger h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}

.project-ledger article > div:nth-child(2) > p {
  max-width: 820px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

.project-ledger article > a {
  color: var(--brick);
  font-size: 1.35rem;
  text-decoration: none;
}

.publication-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 55px 0 24px;
}

.publication-filter-panel {
  display: grid;
  gap: 22px;
  margin: 55px 0 24px;
  padding: 22px;
  border: 1px solid var(--rule-strong);
  background: var(--paper-deep);
}

.publication-filter-group {
  display: grid;
  grid-template-columns: minmax(120px, 165px) 1fr;
  gap: 20px;
  align-items: start;
}

.filter-label {
  margin: 11px 0 0;
  color: var(--brick);
  font: 800 0.62rem/1.2 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.publication-filter-panel .publication-toolbar {
  margin: 0;
}

.tag-filter-button {
  letter-spacing: 0.07em;
}

.publication-filter-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.publication-result-count {
  margin: 0;
  color: var(--soft-ink);
  font: 700 0.7rem/1.4 var(--sans);
  letter-spacing: 0.04em;
}

.publication-filter-reset {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--brick);
  background: transparent;
  font: 800 0.62rem/1.2 var(--sans);
  letter-spacing: 0.09em;
  cursor: pointer;
  text-transform: uppercase;
}

.publication-filter-reset:disabled {
  color: var(--soft-ink);
  cursor: default;
  opacity: 0.45;
}

.filter-button {
  padding: 10px 14px;
  border: 1px solid var(--rule);
  color: var(--soft-ink);
  background: transparent;
  font: 800 0.61rem/1 var(--sans);
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.publication-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
  list-style: none;
}

.publication-list li {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  gap: 24px;
  align-items: start;
  padding: 28px 5px;
  border-bottom: 1px solid var(--rule);
}

.publication-list li[hidden] {
  display: none;
}

.publication-year {
  margin: 2px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.publication-venue {
  margin: 0;
  color: var(--brick);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.publication-list h3 {
  max-width: 940px;
  margin: 7px 0 9px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.28;
}

.publication-authors {
  max-width: 960px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.78rem;
  line-height: 1.5;
}

.publication-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.publication-tags li {
  display: inline-flex;
  width: auto;
  padding: 5px 8px;
  border: 1px solid rgba(181, 138, 43, 0.52);
  color: var(--ink);
  background: rgba(181, 138, 43, 0.12);
  font: 800 0.56rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-assets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.publication-assets a {
  padding: 7px 10px;
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.publication-assets a:hover {
  border-color: var(--brick);
  color: var(--paper);
  background: var(--brick);
}

.publication-list li > span {
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 0.72rem;
  text-align: right;
}

.publication-list .publication-empty-state {
  display: block;
  padding: 42px 5px;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
}

.publication-list .publication-empty-state[hidden] {
  display: none;
}

.bibliography-link {
  margin-top: 34px;
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.68fr;
  margin-top: 68px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.people-grid > * {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--rule);
}

.people-grid > *:last-child {
  border-right: 0;
}

.people-grid h3 {
  margin: 25px 0 15px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.people-grid article > p:not(.entry-index) {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.65;
}

.people-grid aside {
  background: var(--paper-deep);
}

.people-grid aside .note-label {
  margin-bottom: 25px;
  color: var(--brick);
}

.people-grid aside ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.people-grid aside li {
  padding-bottom: 11px;
  border-bottom: 1px dashed var(--rule);
  font-family: var(--serif);
}

.teaching-register {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.teaching-register article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 22px;
  min-height: 245px;
  padding: 30px;
  border-right: 1px solid var(--rule);
}

.teaching-register article:last-child {
  border-right: 0;
}

.teaching-register article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.teaching-register h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.teaching-register p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.6;
}

.lab-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  min-height: 500px;
  color: var(--paper);
  background: var(--ink);
}

.lab-monogram {
  position: relative;
  display: grid;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(243, 240, 232, 0.25);
}

.lab-monogram::before,
.lab-monogram::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(243, 240, 232, 0.22);
  border-radius: 50%;
}

.lab-monogram::before {
  width: 300px;
  height: 300px;
}

.lab-monogram::after {
  width: 220px;
  height: 220px;
  border-style: dashed;
}

.lab-monogram span {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 5.2rem;
  letter-spacing: -0.08em;
}

.lab-monogram small {
  position: relative;
  z-index: 2;
  color: rgba(243, 240, 232, 0.62);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lab-copy {
  align-self: center;
  padding: clamp(55px, 7vw, 100px);
}

.lab-copy .folio-label {
  color: #d4af63;
}

.lab-copy h2 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.lab-copy > p:not(.folio-label) {
  max-width: 760px;
  margin: 28px 0 34px;
  color: rgba(243, 240, 232, 0.72);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 80px;
  padding: clamp(90px, 11vw, 150px) var(--gutter);
  border-bottom: 1px solid var(--rule-strong);
}

.contact-section h2 {
  max-width: 850px;
  font-size: clamp(3.3rem, 5.8vw, 6.2rem);
  line-height: 0.95;
}

.contact-details {
  display: grid;
  gap: 38px;
  align-content: end;
}

.contact-details > div {
  padding-top: 18px;
  border-top: 1px solid var(--rule-strong);
}

.contact-details .note-label {
  margin-bottom: 11px;
  color: var(--brick);
}

.contact-details p,
.contact-details a {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.6;
}

.contact-details a {
  display: block;
  padding: 5px 0;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-height: 128px;
  padding: 28px var(--gutter);
  color: var(--paper);
  background: var(--charcoal);
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
}

.site-footer > p {
  color: rgba(243, 240, 232, 0.62);
  font-family: var(--serif);
  font-size: 0.83rem;
  font-style: italic;
  text-align: center;
}

.site-footer > a {
  justify-self: end;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Students & Collaborations */

.subpage .rail-title {
  letter-spacing: 0.14em;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, 0.58fr);
  min-height: 720px;
  border-bottom: 1px solid var(--rule-strong);
}

.subpage-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 125px) clamp(34px, 6vw, 92px);
}

.hero-kicker {
  margin: 58px 0 10px;
  color: var(--brick);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-style: italic;
}

.subpage-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 7.8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.subpage-hero .hero-deck {
  max-width: 690px;
}

.constellation {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 46px clamp(28px, 3.5vw, 52px);
  border-left: 1px solid var(--rule-strong);
  background:
    linear-gradient(rgba(22, 37, 61, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 37, 61, 0.025) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 24px 24px;
}

.constellation > .note-label {
  color: var(--brick);
}

.constellation-mark {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: auto;
}

.constellation-mark strong {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  transform: translate(-50%, -50%);
}

.constellation-mark .orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.constellation-mark .orbit-a {
  width: 68%;
  height: 68%;
}

.constellation-mark .orbit-b {
  width: 96%;
  height: 96%;
  border-style: dashed;
  opacity: 0.62;
}

.constellation-mark .node {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper-deep);
  border-radius: 50%;
  background: var(--brick);
  box-shadow: 0 0 0 1px var(--brick);
}

.constellation-mark .node-a {
  top: 17%;
  left: 47%;
}

.constellation-mark .node-b {
  top: 49%;
  right: 14%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.constellation-mark .node-c {
  bottom: 16%;
  left: 31%;
}

.constellation-mark .node-d {
  top: 39%;
  left: 14%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--rule-strong);
}

.stat-grid div {
  min-width: 0;
  padding: 17px 10px 0;
  border-right: 1px solid var(--rule);
}

.stat-grid div:first-child {
  padding-left: 0;
}

.stat-grid div:last-child {
  padding-right: 0;
  border-right: 0;
}

.stat-grid dt {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.stat-grid dd {
  margin: 5px 0 0;
  color: var(--soft-ink);
  font-size: 0.62rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-tight {
  padding: clamp(80px, 9vw, 130px) var(--gutter);
  border-bottom: 1px solid var(--rule);
}

.advising-intro {
  background: rgba(255, 255, 255, 0.16);
}

.advising-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.advising-principles article {
  min-height: 245px;
  padding: 30px;
  border-right: 1px solid var(--rule);
}

.advising-principles article:last-child {
  border-right: 0;
}

.advising-principles article > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.76rem;
}

.advising-principles h3 {
  margin: 52px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}

.advising-principles p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.65;
}

.person-ledger {
  margin-top: 70px;
  border-top: 1px solid var(--rule-strong);
}

.person-record {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 90px;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--rule-strong);
}

.person-meta {
  display: grid;
  gap: 20px;
}

.status-pill {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid var(--gold);
  color: #76520c;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.person-role {
  margin: 0 0 8px;
  color: var(--brick);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.person-copy h3 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.3vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.dissertation-label {
  margin: 0 0 7px;
  color: var(--soft-ink);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-copy .dissertation-title {
  max-width: 900px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
  line-height: 1.35;
}

.person-copy > p:last-child {
  max-width: 750px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.6;
}

.person-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.committee-section {
  background: var(--paper-deep);
}

.committee-ledger {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  margin-top: 68px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.committee-group {
  padding: 32px;
  border-right: 1px solid var(--rule-strong);
}

.committee-group:last-child {
  border-right: 0;
}

.committee-group > header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-bottom: 33px;
}

.committee-group .note-label {
  margin: 0 0 5px;
  color: var(--brick);
}

.committee-group h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.committee-list,
.dissertation-ledger {
  margin: 0;
  padding: 0;
  list-style: none;
}

.committee-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
}

.committee-list li:last-child {
  border-bottom: 0;
}

.committee-list span {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.committee-list small {
  color: var(--soft-ink);
  font-size: 0.64rem;
  text-align: right;
}

.dissertation-ledger {
  border-top: 1px solid var(--rule);
}

.dissertation-ledger li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px dashed var(--rule);
}

.dissertation-ledger li:last-child {
  border-bottom: 0;
}

.dissertation-ledger li > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.dissertation-ledger h4 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.dissertation-ledger p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.74rem;
  line-height: 1.5;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 70px;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}

.network-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  min-height: 370px;
  padding: 32px;
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.network-index {
  margin: 2px 0 0;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.network-card .note-label {
  margin: 0 0 22px;
  color: var(--brick);
}

.network-card h3 {
  max-width: 520px;
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.network-card > div > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.62;
}

.collaborator-list {
  grid-column: 2;
  align-self: end;
  margin: 30px 0 0;
  padding-top: 15px;
  border-top: 1px dashed var(--rule);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.76rem;
  font-style: italic;
  line-height: 1.55;
}

.join-section {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  color: var(--paper);
  background: var(--ink);
}

.join-copy,
.join-notes {
  padding: clamp(72px, 8vw, 120px) clamp(30px, 5vw, 78px);
}

.join-copy {
  border-right: 1px solid rgba(243, 240, 232, 0.25);
}

.join-copy .folio-label,
.join-notes .note-label {
  color: #d8b65c;
}

.join-copy h2 {
  max-width: 720px;
  margin: 28px 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.6vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.join-copy > p:not(.folio-label) {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(243, 240, 232, 0.72);
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.7;
}

.join-notes {
  align-self: center;
}

.join-notes ol {
  display: grid;
  gap: 0;
  margin: 35px 0 0;
  padding: 0;
  border-top: 1px solid rgba(243, 240, 232, 0.25);
  list-style: none;
}

.join-notes li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(243, 240, 232, 0.18);
}

.join-notes li > span {
  color: #d8b65c;
  font-family: var(--serif);
  font-size: 0.72rem;
}

.join-notes li p {
  margin: 0;
  color: rgba(243, 240, 232, 0.7);
  font-size: 0.78rem;
  line-height: 1.55;
}

.join-notes li strong {
  display: block;
  margin-bottom: 5px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
}

@media (max-width: 1230px) {
  :root {
    --header-height: 86px;
    --rail-width: 94px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    flex-basis: 480px;
  }

  .brand img {
    width: 58px;
    height: 58px;
    padding-right: 14px;
  }

  .brand-copy strong {
    font-size: 1.25rem;
  }

  .brand-copy small {
    font-size: 0.61rem;
  }

  .menu-button {
    display: grid;
    grid-template-columns: auto 20px;
    gap: 11px;
    align-items: center;
    padding: 12px 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: 800 0.65rem/1 var(--sans);
    letter-spacing: 0.12em;
    cursor: pointer;
    text-transform: uppercase;
  }

  .menu-button i,
  .menu-button i::after {
    display: block;
    width: 20px;
    height: 1px;
    content: "";
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button i::after {
    transform: translateY(6px);
  }

  .menu-button[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i::after {
    transform: rotate(90deg);
  }

  .primary-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 22px;
    padding: 22px var(--gutter) 28px;
    border-bottom: 1px solid var(--rule-strong);
    background: var(--paper);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 12px 0;
  }

  .primary-nav .cv-link {
    width: max-content;
  }

  .hero-main {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }

  .profile-notes {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 2fr;
    gap: 35px;
    padding: 23px 0 0;
    border-top: 1px dashed var(--rule-strong);
    border-left: 0;
  }

  .margin-note::before {
    display: none;
  }

  .margin-note ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .overview-band article {
    grid-template-columns: 34px 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --rail-width: 0px;
  }

  .page-shell {
    display: block;
  }

  .index-rail {
    display: none;
  }

  .hero-main {
    grid-template-columns: 1fr minmax(250px, 0.62fr);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 8vw, 5rem);
  }

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

  .margin-note ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .overview-band {
    grid-template-columns: 1fr;
  }

  .overview-band article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .overview-band article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .research-register {
    grid-template-columns: 1fr;
  }

  .research-register article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .research-register article:last-child {
    border-bottom: 0;
  }

  .register-number {
    margin-bottom: 30px;
  }

  .research-register article > p:not(.register-number) {
    min-height: 0;
  }

  .people-grid {
    grid-template-columns: 1fr 1fr;
  }

  .people-grid aside {
    grid-column: 1 / -1;
    min-height: 0;
    border-top: 1px solid var(--rule);
  }

  .people-grid aside ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .teaching-register {
    grid-template-columns: 1fr;
  }

  .teaching-register article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .teaching-register article:last-child {
    border-bottom: 0;
  }

  .lab-section {
    grid-template-columns: 1fr;
  }

  .lab-monogram {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid rgba(243, 240, 232, 0.25);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    padding: 10px 18px;
  }

  .brand {
    flex-basis: auto;
    gap: 10px;
  }

  .brand img {
    width: 49px;
    height: 49px;
    padding-right: 10px;
  }

  .brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .brand-copy small {
    display: none;
  }

  .primary-nav {
    grid-template-columns: 1fr 1fr;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 42px 22px 30px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .folio-label {
    order: 0;
  }

  .hero h1 {
    order: 1;
    font-size: clamp(3.4rem, 15.5vw, 5.4rem);
  }

  .hero-deck {
    order: 2;
    margin-top: -10px;
  }

  .hero-actions {
    order: 3;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0;
  }

  .research-themes {
    order: 5;
    margin-top: 0;
  }

  .portrait {
    order: 4;
    padding-left: 0;
    border-left: 0;
  }

  .portrait img {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .portrait figcaption {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 2px 10px;
    padding: 14px 0 0;
  }

  .portrait figcaption span {
    grid-row: 1 / 3;
    color: var(--brick);
    font-family: var(--serif);
  }

  .portrait figcaption small {
    color: var(--soft-ink);
    font-size: 0.7rem;
  }

  .profile-notes {
    order: 6;
    padding-top: 24px;
  }

  .margin-note ul {
    grid-template-columns: 1fr;
  }

  .overview-band article {
    grid-template-columns: 32px 1fr;
    padding: 28px 21px;
  }

  .section {
    padding: 88px 22px;
  }

  .section-heading h2,
  .section-heading.compact h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .research-register {
    margin-top: 50px;
  }

  .research-register article {
    padding: 31px 3px;
  }

  .project-ledger article {
    grid-template-columns: 1fr 28px;
    gap: 18px;
    padding: 28px 0;
  }

  .project-meta {
    grid-column: 1 / -1;
    grid-template-columns: 40px 1fr;
  }

  .project-ledger article > a {
    grid-column: 2;
    grid-row: 2;
  }

  .publication-list li {
    grid-template-columns: 58px 1fr 20px;
    gap: 12px;
  }

  .publication-list h3 {
    font-size: 1.16rem;
  }

  .publication-authors {
    font-size: 0.7rem;
  }

  .bibliography-link {
    width: 100%;
    text-align: center;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .people-grid > * {
    min-height: 0;
    padding: 30px 3px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .people-grid aside {
    grid-column: auto;
    padding: 30px;
  }

  .people-grid aside ul {
    grid-template-columns: 1fr;
  }

  .teaching-register article {
    padding: 30px 4px;
  }

  .lab-monogram {
    min-height: 350px;
  }

  .lab-copy {
    padding: 62px 22px 75px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 65px;
    padding: 90px 22px;
  }

  .contact-section h2 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer > p {
    text-align: left;
  }

  .site-footer > a {
    justify-self: start;
  }
}

@media (max-width: 1230px) {
  .subpage-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  }

  .subpage-hero-copy {
    padding-right: clamp(34px, 4vw, 62px);
    padding-left: clamp(34px, 4vw, 62px);
  }

  .subpage-hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
  }

  .person-record {
    grid-template-columns: 160px minmax(0, 1fr) 80px;
  }
}

@media (max-width: 900px) {
  .subpage-hero {
    grid-template-columns: 1fr;
  }

  .subpage-hero-copy {
    min-height: 630px;
  }

  .constellation {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    border-top: 1px solid var(--rule-strong);
    border-left: 0;
  }

  .constellation > .note-label {
    grid-column: 1 / -1;
  }

  .constellation-mark {
    width: min(100%, 280px);
  }

  .stat-grid {
    grid-template-columns: 1fr;
    align-self: stretch;
  }

  .stat-grid div,
  .stat-grid div:first-child,
  .stat-grid div:last-child {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    align-items: baseline;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .stat-grid div:last-child {
    border-bottom: 0;
  }

  .advising-principles {
    grid-template-columns: 1fr;
  }

  .advising-principles article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .advising-principles article:last-child {
    border-bottom: 0;
  }

  .advising-principles h3 {
    margin-top: 28px;
  }

  .person-record {
    grid-template-columns: 135px minmax(0, 1fr);
  }

  .person-link {
    grid-column: 2;
    width: max-content;
  }

  .committee-ledger {
    grid-template-columns: 1fr;
  }

  .committee-group {
    border-right: 0;
    border-bottom: 1px solid var(--rule-strong);
  }

  .committee-group:last-child {
    border-bottom: 0;
  }

  .collaboration-grid {
    grid-template-columns: 1fr;
  }

  .network-card {
    min-height: 330px;
  }

  .join-section {
    grid-template-columns: 1fr;
  }

  .join-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(243, 240, 232, 0.25);
  }
}

@media (max-width: 680px) {
  .subpage-hero-copy {
    min-height: 0;
    padding: 58px 22px 72px;
  }

  .hero-kicker {
    margin-top: 48px;
  }

  .subpage-hero h1 {
    font-size: clamp(3.8rem, 17vw, 6rem);
  }

  .subpage-hero .hero-deck {
    margin-top: 25px;
  }

  .constellation {
    display: block;
    padding: 35px 22px;
  }

  .constellation-mark {
    margin: 35px auto;
  }

  .section-tight {
    padding: 88px 22px;
  }

  .advising-principles {
    margin-top: 50px;
  }

  .advising-principles article {
    padding: 30px 3px;
  }

  .person-ledger {
    margin-top: 50px;
  }

  .person-record {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .person-meta {
    grid-template-columns: 35px 1fr;
    align-items: start;
  }

  .person-copy h3 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .person-link {
    grid-column: 1;
  }

  .committee-ledger {
    margin-top: 50px;
  }

  .committee-group {
    padding: 30px 3px;
  }

  .committee-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .committee-list small {
    text-align: left;
  }

  .collaboration-grid {
    margin-top: 50px;
    border-left: 0;
  }

  .network-card {
    grid-template-columns: 32px 1fr;
    min-height: 0;
    padding: 30px 3px;
    border-right: 0;
  }

  .join-copy,
  .join-notes {
    padding: 76px 22px;
  }

  .join-copy h2 {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
  }
}

/* Shared editorial subpages */

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, 0.58fr);
  min-height: 720px;
  border-bottom: 1px solid var(--rule-strong);
}

.editorial-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.35rem, 7.6vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.87;
}

.editorial-hero .hero-deck {
  max-width: 720px;
}

.hero-register {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(46px, 5vw, 78px) clamp(28px, 3.5vw, 52px);
  border-left: 1px solid var(--rule-strong);
  background:
    linear-gradient(rgba(22, 37, 61, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 37, 61, 0.025) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 24px 24px;
}

.hero-register > .note-label {
  margin-bottom: 45px;
  color: var(--brick);
}

.hero-register ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
  list-style: none;
}

.hero-register li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--rule);
}

.hero-register li > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.hero-register li p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.72rem;
  line-height: 1.5;
}

.hero-register li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
}

.register-note {
  margin: 42px 0 0;
  padding-top: 19px;
  border-top: 1px solid var(--rule-strong);
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
}

.section-muted {
  background: var(--paper-deep);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}

.route-grid > a {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.route-grid > a:hover {
  color: var(--paper);
  background: var(--ink);
}

.route-grid > a > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.route-grid .note-label {
  margin: 42px 0 10px;
  color: var(--brick);
}

.route-grid h3 {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.route-grid > a > p:not(.note-label) {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.62;
}

.route-grid > a:hover > p:not(.note-label) {
  color: rgba(243, 240, 232, 0.72);
}

.route-grid strong {
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-register {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.method-register article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--rule);
}

.method-register article:last-child {
  border-right: 0;
}

.method-register article > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.76rem;
}

.method-register .note-label {
  margin: 0 0 13px;
  color: var(--brick);
}

.method-register h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 400;
}

.method-register article > p {
  grid-column: 2;
  align-self: end;
  margin: 36px 0 0;
  color: var(--soft-ink);
  line-height: 1.62;
}

.project-cases {
  margin-top: 70px;
  border-top: 1px solid var(--rule-strong);
}

.project-cases > article {
  display: grid;
  grid-template-columns: 155px minmax(260px, 0.75fr) minmax(340px, 1fr) 110px;
  gap: clamp(24px, 3.4vw, 54px);
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--rule-strong);
}

.project-cases header {
  display: grid;
  gap: 20px;
}

.project-status {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 6px 9px;
  border: 1px solid var(--gold);
  color: #76520c;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-title .note-label {
  margin: 0 0 13px;
  color: var(--brick);
}

.case-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.case-body > p {
  margin: 0 0 26px;
  color: var(--soft-ink);
  line-height: 1.65;
}

.case-body dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
}

.case-body dl > div {
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.case-body dt {
  margin-bottom: 6px;
  color: var(--brick);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-body dd {
  margin: 0;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 0.8rem;
  line-height: 1.5;
}

.project-cases article > a {
  display: inline-flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}

.system-grid article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.system-grid article > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.74rem;
}

.system-grid .note-label {
  margin: 38px 0 9px;
  color: var(--brick);
}

.system-grid h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.system-grid article > p:last-child {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.58;
}

.timeline-register {
  margin: 68px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
  list-style: none;
}

.timeline-register li {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-strong);
}

.timeline-register li > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.timeline-register .note-label {
  margin: 0 0 7px;
  color: var(--brick);
}

.timeline-register h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 400;
}

.timeline-register p:last-child {
  max-width: 850px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.58;
}

.course-register {
  margin-top: 70px;
  border-top: 1px solid var(--rule-strong);
}

.course-register article {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 120px;
  gap: clamp(28px, 4vw, 66px);
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--rule-strong);
}

.course-term {
  display: grid;
  gap: 3px;
  font-family: var(--serif);
}

.course-term span {
  color: var(--brick);
  font-size: 0.75rem;
  font-style: italic;
}

.course-term strong {
  font-size: 2.1rem;
  font-weight: 400;
}

.course-register .note-label {
  margin: 0 0 8px;
  color: var(--brick);
}

.course-register h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.course-register article > div:nth-child(2) > p:last-child {
  max-width: 820px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.62;
}

.course-level {
  margin: 3px 0 0;
  padding-top: 11px;
  border-top: 1px solid var(--rule);
  color: var(--soft-ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-quote {
  max-width: 960px;
  margin: 70px auto 0;
  padding: 44px clamp(20px, 4vw, 65px);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
}

.editorial-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  font-style: italic;
  line-height: 1.25;
}

.lab-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1.38fr);
  min-height: 720px;
  border-bottom: 1px solid var(--rule-strong);
}

.lab-hero-mark {
  display: grid;
  place-items: center;
  min-height: 720px;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 50%, rgba(181, 138, 43, 0.15), transparent 45%),
    var(--ink);
}

.lab-hero-mark > div {
  display: grid;
  width: min(72%, 350px);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(243, 240, 232, 0.35);
  border-radius: 50%;
  text-align: center;
}

.lab-hero-mark span {
  font-family: var(--serif);
  font-size: clamp(4.8rem, 8vw, 8.4rem);
  letter-spacing: -0.06em;
}

.lab-hero-mark small {
  margin-top: 8px;
  color: #d8b65c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lab-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 125px) clamp(34px, 6vw, 92px);
}

.lab-hero-copy h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 7.8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.lab-hero-copy .hero-deck {
  max-width: 680px;
}

.lab-log-list {
  margin: 68px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
  list-style: none;
}

.lab-log-list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 32px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-strong);
}

.log-date {
  margin: 2px 0 0;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.lab-log-list .note-label {
  margin: 0 0 7px;
  color: var(--brick);
}

.lab-log-list h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 400;
}

.lab-log-list li div > p:last-child {
  max-width: 850px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

.lab-log-list li > span {
  color: var(--rule-strong);
  font-family: var(--serif);
  font-size: 0.75rem;
  text-align: right;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6vw, 90px) clamp(30px, 4vw, 62px);
  border-left: 1px solid var(--rule-strong);
  background: var(--paper-deep);
}

.contact-card .note-label {
  margin: 0 0 42px;
  color: var(--brick);
}

.contact-card h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.contact-card p,
.contact-card address {
  margin: 0 0 24px;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-style: normal;
  line-height: 1.65;
}

.contact-card > a {
  width: max-content;
  max-width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  text-decoration: none;
}

.contact-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}

.contact-directory > a {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.contact-directory > a:hover {
  color: var(--paper);
  background: var(--ink);
}

.contact-directory > a > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.76rem;
}

.contact-directory .note-label {
  margin: 34px 0 7px;
  color: var(--brick);
}

.contact-directory h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
}

.contact-directory > a > p:not(.note-label) {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

.contact-directory > a:hover > p:not(.note-label) {
  color: rgba(243, 240, 232, 0.7);
}

.contact-directory strong {
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}

.credential-grid article {
  min-height: 350px;
  padding: 30px;
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.credential-grid .note-label {
  margin: 42px 0 8px;
  color: var(--brick);
}

.credential-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  font-weight: 400;
}

.credential-field {
  margin: 5px 0 28px;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.credential-grid article > p:last-child {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.82rem;
  line-height: 1.62;
}

.funding-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.funding-strip > div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid var(--rule);
}

.funding-strip > div:last-child {
  border-right: 0;
}

.funding-strip span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.funding-strip p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.7rem;
  line-height: 1.5;
}

.funding-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.service-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.service-ledger article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--rule);
}

.service-ledger article:last-child {
  border-right: 0;
}

.service-ledger h3 {
  margin: 45px 0 12px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.service-ledger article > p:last-child {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.76rem;
  line-height: 1.55;
}

.expanded-publications li[hidden] {
  display: none;
}

.join-notes a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 1230px) {
  .editorial-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  }

  .editorial-hero .subpage-hero-copy {
    padding-right: clamp(34px, 4vw, 62px);
    padding-left: clamp(34px, 4vw, 62px);
  }

  .editorial-hero h1 {
    font-size: clamp(3.8rem, 7.6vw, 6.8rem);
  }

  .project-cases > article {
    grid-template-columns: 130px minmax(230px, 0.75fr) minmax(300px, 1fr);
  }

  .project-cases article > a {
    grid-column: 2 / -1;
    width: max-content;
  }

  .lab-hero {
    grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 900px) {
  .editorial-hero {
    grid-template-columns: 1fr;
  }

  .editorial-hero .subpage-hero-copy {
    min-height: 630px;
  }

  .hero-register,
  .contact-card {
    border-top: 1px solid var(--rule-strong);
    border-left: 0;
  }

  .route-grid,
  .system-grid,
  .contact-directory {
    grid-template-columns: 1fr 1fr;
  }

  .method-register {
    grid-template-columns: 1fr;
  }

  .method-register article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .method-register article:last-child {
    border-bottom: 0;
  }

  .project-cases > article {
    grid-template-columns: 125px minmax(0, 1fr);
  }

  .case-body {
    grid-column: 2;
  }

  .course-register article {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .course-level {
    grid-column: 2;
    width: max-content;
  }

  .lab-hero {
    grid-template-columns: 1fr;
  }

  .lab-hero-mark {
    min-height: 500px;
  }

  .lab-hero-mark > div {
    width: min(48%, 330px);
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid article {
    min-height: 0;
  }

  .funding-strip {
    grid-template-columns: 1fr;
  }

  .funding-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .funding-strip > div:last-child {
    border-bottom: 0;
  }

  .service-ledger {
    grid-template-columns: 1fr 1fr;
  }

  .service-ledger article:nth-child(2) {
    border-right: 0;
  }

  .service-ledger article {
    border-bottom: 1px solid var(--rule);
  }
}

@media (max-width: 680px) {
  .editorial-hero .subpage-hero-copy {
    min-height: 0;
  }

  .editorial-hero h1 {
    font-size: clamp(3.45rem, 16.5vw, 5.8rem);
  }

  .hero-register {
    padding: 42px 22px 55px;
  }

  .route-grid,
  .system-grid,
  .contact-directory {
    grid-template-columns: 1fr;
    margin-top: 50px;
    border-left: 0;
  }

  .route-grid > a,
  .system-grid article,
  .contact-directory > a {
    min-height: 0;
    padding: 30px 3px;
    border-right: 0;
  }

  .method-register {
    margin-top: 50px;
  }

  .method-register article {
    padding: 30px 3px;
  }

  .project-cases {
    margin-top: 50px;
  }

  .project-cases > article {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-cases header {
    grid-template-columns: 35px 1fr;
  }

  .case-body,
  .project-cases article > a {
    grid-column: 1;
  }

  .case-body dl {
    grid-template-columns: 1fr;
  }

  .timeline-register {
    margin-top: 50px;
  }

  .timeline-register li {
    grid-template-columns: 72px 1fr;
    gap: 20px;
  }

  .course-register {
    margin-top: 50px;
  }

  .course-register article {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .course-term {
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: baseline;
  }

  .course-level {
    grid-column: 1;
  }

  .lab-hero-mark {
    min-height: 390px;
  }

  .lab-hero-mark > div {
    width: min(72%, 300px);
  }

  .lab-hero-copy {
    padding: 65px 22px 78px;
  }

  .lab-hero-copy h1 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .lab-log-list {
    margin-top: 50px;
  }

  .lab-log-list li {
    grid-template-columns: 1fr 26px;
    gap: 20px;
  }

  .lab-log-list .log-date {
    grid-column: 1 / -1;
  }

  .contact-card {
    padding: 55px 22px 70px;
  }

  .credential-grid {
    margin-top: 50px;
    border-left: 0;
  }

  .credential-grid article {
    padding: 30px 3px;
    border-right: 0;
  }

  .funding-strip > div {
    grid-template-columns: 60px 1fr;
    padding: 22px 3px;
  }

  .service-ledger {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .service-ledger article,
  .service-ledger article:nth-child(2) {
    min-height: 0;
    padding: 30px 3px;
    border-right: 0;
  }
}

.data-loading,
.data-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.5;
}

.data-error {
  color: var(--brick);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

[aria-busy="true"] {
  min-height: 96px;
}

@media (max-width: 680px) {
  .publication-filter-panel {
    gap: 20px;
    margin-top: 38px;
    padding: 18px;
  }

  .publication-filter-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filter-label {
    margin-top: 0;
  }

  .publication-filter-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .publication-tags {
    margin-top: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
